@gtkx/gir 0.19.0 → 0.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +25 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +21 -10
- package/dist/index.js.map +1 -1
- package/dist/internal/loader.d.ts +30 -0
- package/dist/internal/loader.d.ts.map +1 -0
- package/dist/internal/loader.js +109 -0
- package/dist/internal/loader.js.map +1 -0
- package/dist/internal/normalizer.d.ts +98 -15
- package/dist/internal/normalizer.d.ts.map +1 -1
- package/dist/internal/normalizer.js +381 -412
- package/dist/internal/normalizer.js.map +1 -1
- package/dist/internal/parser.d.ts +23 -31
- package/dist/internal/parser.d.ts.map +1 -1
- package/dist/internal/parser.js +228 -244
- package/dist/internal/parser.js.map +1 -1
- package/dist/internal/raw-types.d.ts +58 -109
- package/dist/internal/raw-types.d.ts.map +1 -1
- package/dist/internal/raw-types.js +0 -8
- package/dist/internal/raw-types.js.map +1 -1
- package/dist/intrinsics.d.ts.map +1 -1
- package/dist/intrinsics.js +7 -0
- package/dist/intrinsics.js.map +1 -1
- package/dist/model/alias.d.ts +21 -0
- package/dist/model/alias.d.ts.map +1 -0
- package/dist/model/alias.js +22 -0
- package/dist/model/alias.js.map +1 -0
- package/dist/model/callables.d.ts +102 -0
- package/dist/model/callables.d.ts.map +1 -0
- package/dist/model/callables.js +123 -0
- package/dist/model/callables.js.map +1 -0
- package/dist/model/callback.d.ts +22 -0
- package/dist/model/callback.d.ts.map +1 -0
- package/dist/model/callback.js +20 -0
- package/dist/model/callback.js.map +1 -0
- package/dist/model/class.d.ts +92 -0
- package/dist/model/class.d.ts.map +1 -0
- package/dist/model/class.js +171 -0
- package/dist/model/class.js.map +1 -0
- package/dist/model/constant.d.ts +21 -0
- package/dist/model/constant.d.ts.map +1 -0
- package/dist/model/constant.js +20 -0
- package/dist/model/constant.js.map +1 -0
- package/dist/model/enumeration.d.ts +41 -0
- package/dist/model/enumeration.d.ts.map +1 -0
- package/dist/model/enumeration.js +47 -0
- package/dist/model/enumeration.js.map +1 -0
- package/dist/model/field.d.ts +21 -0
- package/dist/model/field.d.ts.map +1 -0
- package/dist/model/field.js +20 -0
- package/dist/model/field.js.map +1 -0
- package/dist/model/interface.d.ts +44 -0
- package/dist/model/interface.d.ts.map +1 -0
- package/dist/model/interface.js +67 -0
- package/dist/model/interface.js.map +1 -0
- package/dist/model/namespace.d.ts +44 -0
- package/dist/model/namespace.d.ts.map +1 -0
- package/dist/model/namespace.js +36 -0
- package/dist/model/namespace.js.map +1 -0
- package/dist/model/parameter.d.ts +43 -0
- package/dist/model/parameter.d.ts.map +1 -0
- package/dist/model/parameter.js +54 -0
- package/dist/model/parameter.js.map +1 -0
- package/dist/model/property.d.ts +62 -0
- package/dist/model/property.d.ts.map +1 -0
- package/dist/model/property.js +69 -0
- package/dist/model/property.js.map +1 -0
- package/dist/model/record.d.ts +56 -0
- package/dist/model/record.d.ts.map +1 -0
- package/dist/model/record.js +70 -0
- package/dist/model/record.js.map +1 -0
- package/dist/model/repository-like.d.ts +19 -0
- package/dist/model/repository-like.d.ts.map +1 -0
- package/dist/model/repository-like.js +2 -0
- package/dist/model/repository-like.js.map +1 -0
- package/dist/model/signal.d.ts +22 -0
- package/dist/model/signal.d.ts.map +1 -0
- package/dist/model/signal.js +22 -0
- package/dist/model/signal.js.map +1 -0
- package/dist/model/type.d.ts +71 -0
- package/dist/model/type.d.ts.map +1 -0
- package/dist/model/type.js +112 -0
- package/dist/model/type.js.map +1 -0
- package/dist/repository.d.ts +92 -138
- package/dist/repository.d.ts.map +1 -1
- package/dist/repository.js +155 -219
- package/dist/repository.js.map +1 -1
- package/package.json +4 -3
- package/src/index.ts +25 -39
- package/src/internal/loader.ts +127 -0
- package/src/internal/normalizer.ts +451 -475
- package/src/internal/parser.ts +242 -284
- package/src/internal/raw-types.ts +65 -116
- package/src/intrinsics.ts +7 -0
- package/src/model/alias.ts +31 -0
- package/src/model/callables.ts +172 -0
- package/src/model/callback.ts +30 -0
- package/src/model/class.ts +215 -0
- package/src/model/constant.ts +29 -0
- package/src/model/enumeration.ts +64 -0
- package/src/model/field.ts +29 -0
- package/src/model/interface.ts +89 -0
- package/src/model/namespace.ts +60 -0
- package/src/model/parameter.ts +74 -0
- package/src/model/property.ts +97 -0
- package/src/model/record.ts +97 -0
- package/src/model/repository-like.ts +20 -0
- package/src/model/signal.ts +32 -0
- package/src/model/type.ts +143 -0
- package/src/repository.ts +197 -283
- package/dist/types.d.ts +0 -655
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js +0 -879
- package/dist/types.js.map +0 -1
- package/src/types.ts +0 -1192
package/dist/types.d.ts
DELETED
|
@@ -1,655 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Normalized GIR types with helper methods.
|
|
3
|
-
*
|
|
4
|
-
* All type references use fully qualified names (Namespace.TypeName)
|
|
5
|
-
* except for intrinsic types which remain unqualified.
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
* A fully qualified type name.
|
|
9
|
-
* Always in the format "Namespace.TypeName" (e.g., "Gtk.Widget", "GLib.Variant").
|
|
10
|
-
* Intrinsic types like "gint" are NOT QualifiedNames.
|
|
11
|
-
*/
|
|
12
|
-
export type QualifiedName = string & {
|
|
13
|
-
readonly __brand: "QualifiedName";
|
|
14
|
-
};
|
|
15
|
-
/**
|
|
16
|
-
* Creates a QualifiedName from namespace and type name.
|
|
17
|
-
*/
|
|
18
|
-
export declare const qualifiedName: (namespace: string, name: string) => QualifiedName;
|
|
19
|
-
/**
|
|
20
|
-
* Parses a QualifiedName into its parts.
|
|
21
|
-
*/
|
|
22
|
-
export declare const parseQualifiedName: (qn: QualifiedName) => {
|
|
23
|
-
namespace: string;
|
|
24
|
-
name: string;
|
|
25
|
-
};
|
|
26
|
-
/**
|
|
27
|
-
* The kind of a user-defined type (not intrinsic).
|
|
28
|
-
*/
|
|
29
|
-
export type TypeKind = "class" | "interface" | "record" | "enum" | "flags" | "callback";
|
|
30
|
-
/**
|
|
31
|
-
* Container type discriminator for generic GLib containers.
|
|
32
|
-
*/
|
|
33
|
-
export type ContainerType = "ghashtable" | "gptrarray" | "garray" | "glist" | "gslist";
|
|
34
|
-
/**
|
|
35
|
-
* Parsed default value from GIR property definitions.
|
|
36
|
-
*/
|
|
37
|
-
export type DefaultValue = {
|
|
38
|
-
kind: "null";
|
|
39
|
-
} | {
|
|
40
|
-
kind: "boolean";
|
|
41
|
-
value: boolean;
|
|
42
|
-
} | {
|
|
43
|
-
kind: "number";
|
|
44
|
-
value: number;
|
|
45
|
-
} | {
|
|
46
|
-
kind: "string";
|
|
47
|
-
value: string;
|
|
48
|
-
} | {
|
|
49
|
-
kind: "enum";
|
|
50
|
-
cIdentifier: string;
|
|
51
|
-
} | {
|
|
52
|
-
kind: "unknown";
|
|
53
|
-
raw: string;
|
|
54
|
-
};
|
|
55
|
-
/**
|
|
56
|
-
* Parses a raw default value string from GIR into a typed DefaultValue.
|
|
57
|
-
*/
|
|
58
|
-
export declare function parseDefaultValue(raw: string | undefined): DefaultValue | null;
|
|
59
|
-
type RepositoryLike = {
|
|
60
|
-
resolveClass(name: QualifiedName): GirClass | null;
|
|
61
|
-
resolveInterface(name: QualifiedName): GirInterface | null;
|
|
62
|
-
resolveRecord(name: QualifiedName): GirRecord | null;
|
|
63
|
-
resolveEnum(name: QualifiedName): GirEnumeration | null;
|
|
64
|
-
resolveFlags(name: QualifiedName): GirEnumeration | null;
|
|
65
|
-
resolveCallback(name: QualifiedName): GirCallback | null;
|
|
66
|
-
getTypeKind(name: QualifiedName): TypeKind | null;
|
|
67
|
-
findClasses(predicate: (cls: GirClass) => boolean): GirClass[];
|
|
68
|
-
};
|
|
69
|
-
/**
|
|
70
|
-
* Normalized namespace containing all resolved types.
|
|
71
|
-
*/
|
|
72
|
-
export declare class GirNamespace {
|
|
73
|
-
readonly name: string;
|
|
74
|
-
readonly version: string;
|
|
75
|
-
readonly sharedLibrary: string;
|
|
76
|
-
readonly cPrefix: string;
|
|
77
|
-
readonly classes: Map<string, GirClass>;
|
|
78
|
-
readonly interfaces: Map<string, GirInterface>;
|
|
79
|
-
readonly records: Map<string, GirRecord>;
|
|
80
|
-
readonly enumerations: Map<string, GirEnumeration>;
|
|
81
|
-
readonly bitfields: Map<string, GirEnumeration>;
|
|
82
|
-
readonly callbacks: Map<string, GirCallback>;
|
|
83
|
-
readonly functions: Map<string, GirFunction>;
|
|
84
|
-
readonly constants: Map<string, GirConstant>;
|
|
85
|
-
readonly aliases: Map<string, GirAlias>;
|
|
86
|
-
readonly doc?: string;
|
|
87
|
-
constructor(data: {
|
|
88
|
-
name: string;
|
|
89
|
-
version: string;
|
|
90
|
-
sharedLibrary: string;
|
|
91
|
-
cPrefix: string;
|
|
92
|
-
classes: Map<string, GirClass>;
|
|
93
|
-
interfaces: Map<string, GirInterface>;
|
|
94
|
-
records: Map<string, GirRecord>;
|
|
95
|
-
enumerations: Map<string, GirEnumeration>;
|
|
96
|
-
bitfields: Map<string, GirEnumeration>;
|
|
97
|
-
callbacks: Map<string, GirCallback>;
|
|
98
|
-
functions: Map<string, GirFunction>;
|
|
99
|
-
constants: Map<string, GirConstant>;
|
|
100
|
-
aliases: Map<string, GirAlias>;
|
|
101
|
-
doc?: string;
|
|
102
|
-
});
|
|
103
|
-
}
|
|
104
|
-
/**
|
|
105
|
-
* Normalized class with helper methods.
|
|
106
|
-
*/
|
|
107
|
-
export declare class GirClass {
|
|
108
|
-
readonly name: string;
|
|
109
|
-
readonly qualifiedName: QualifiedName;
|
|
110
|
-
readonly cType: string;
|
|
111
|
-
readonly parent: QualifiedName | null;
|
|
112
|
-
readonly abstract: boolean;
|
|
113
|
-
readonly glibTypeName?: string;
|
|
114
|
-
readonly glibGetType?: string;
|
|
115
|
-
readonly cSymbolPrefix?: string;
|
|
116
|
-
readonly fundamental: boolean;
|
|
117
|
-
readonly refFunc?: string;
|
|
118
|
-
readonly unrefFunc?: string;
|
|
119
|
-
readonly implements: QualifiedName[];
|
|
120
|
-
readonly methods: GirMethod[];
|
|
121
|
-
readonly constructors: GirConstructor[];
|
|
122
|
-
readonly staticFunctions: GirFunction[];
|
|
123
|
-
readonly properties: GirProperty[];
|
|
124
|
-
readonly signals: GirSignal[];
|
|
125
|
-
readonly doc?: string;
|
|
126
|
-
/** @internal */
|
|
127
|
-
private _repo?;
|
|
128
|
-
constructor(data: {
|
|
129
|
-
name: string;
|
|
130
|
-
qualifiedName: QualifiedName;
|
|
131
|
-
cType: string;
|
|
132
|
-
parent: QualifiedName | null;
|
|
133
|
-
abstract: boolean;
|
|
134
|
-
glibTypeName?: string;
|
|
135
|
-
glibGetType?: string;
|
|
136
|
-
cSymbolPrefix?: string;
|
|
137
|
-
fundamental?: boolean;
|
|
138
|
-
refFunc?: string;
|
|
139
|
-
unrefFunc?: string;
|
|
140
|
-
implements: QualifiedName[];
|
|
141
|
-
methods: GirMethod[];
|
|
142
|
-
constructors: GirConstructor[];
|
|
143
|
-
staticFunctions: GirFunction[];
|
|
144
|
-
properties: GirProperty[];
|
|
145
|
-
signals: GirSignal[];
|
|
146
|
-
doc?: string;
|
|
147
|
-
});
|
|
148
|
-
/** @internal */
|
|
149
|
-
_setRepository(repo: RepositoryLike): void;
|
|
150
|
-
/** Checks if this class is a subclass of another (direct or transitive). */
|
|
151
|
-
isSubclassOf(qualifiedName: QualifiedName): boolean;
|
|
152
|
-
/** Gets the full inheritance chain from this class to the root. */
|
|
153
|
-
getInheritanceChain(): QualifiedName[];
|
|
154
|
-
/** Gets the parent class object, or null if this is a root class. */
|
|
155
|
-
getParent(): GirClass | null;
|
|
156
|
-
/** Checks if this class directly or transitively implements an interface. */
|
|
157
|
-
implementsInterface(qualifiedName: QualifiedName): boolean;
|
|
158
|
-
/** Gets all implemented interfaces including inherited ones. */
|
|
159
|
-
getAllImplementedInterfaces(): QualifiedName[];
|
|
160
|
-
/** Finds a method defined on this class by name. */
|
|
161
|
-
getMethod(name: string): GirMethod | null;
|
|
162
|
-
/** Finds a property defined on this class by name. */
|
|
163
|
-
getProperty(name: string): GirProperty | null;
|
|
164
|
-
/** Finds a signal defined on this class by name. */
|
|
165
|
-
getSignal(name: string): GirSignal | null;
|
|
166
|
-
/** Finds a constructor by name. */
|
|
167
|
-
getConstructor(name: string): GirConstructor | null;
|
|
168
|
-
/** Gets all methods including inherited ones. */
|
|
169
|
-
getAllMethods(): GirMethod[];
|
|
170
|
-
/** Gets all properties including inherited ones. */
|
|
171
|
-
getAllProperties(): GirProperty[];
|
|
172
|
-
/** Gets all signals including inherited ones. */
|
|
173
|
-
getAllSignals(): GirSignal[];
|
|
174
|
-
/** Finds a method by name, searching up the inheritance chain. */
|
|
175
|
-
findMethod(name: string): GirMethod | null;
|
|
176
|
-
/** Finds a method by its C identifier. */
|
|
177
|
-
getMethodByCIdentifier(cIdentifier: string): GirMethod | null;
|
|
178
|
-
/** Finds a property by name, searching up the inheritance chain. */
|
|
179
|
-
findProperty(name: string): GirProperty | null;
|
|
180
|
-
/** Finds a signal by name, searching up the inheritance chain. */
|
|
181
|
-
findSignal(name: string): GirSignal | null;
|
|
182
|
-
/** True if this is an abstract class. */
|
|
183
|
-
isAbstract(): boolean;
|
|
184
|
-
/** True if this has a GType (most GObject classes do). */
|
|
185
|
-
hasGType(): boolean;
|
|
186
|
-
/** True if this is a fundamental type with custom ref/unref functions. */
|
|
187
|
-
isFundamental(): boolean;
|
|
188
|
-
/** Gets direct subclasses of this class. */
|
|
189
|
-
getDirectSubclasses(): GirClass[];
|
|
190
|
-
}
|
|
191
|
-
/**
|
|
192
|
-
* Normalized interface with helper methods.
|
|
193
|
-
*/
|
|
194
|
-
export declare class GirInterface {
|
|
195
|
-
readonly name: string;
|
|
196
|
-
readonly qualifiedName: QualifiedName;
|
|
197
|
-
readonly cType: string;
|
|
198
|
-
readonly glibTypeName?: string;
|
|
199
|
-
readonly prerequisites: QualifiedName[];
|
|
200
|
-
readonly methods: GirMethod[];
|
|
201
|
-
readonly properties: GirProperty[];
|
|
202
|
-
readonly signals: GirSignal[];
|
|
203
|
-
readonly doc?: string;
|
|
204
|
-
/** @internal */
|
|
205
|
-
private _repo?;
|
|
206
|
-
constructor(data: {
|
|
207
|
-
name: string;
|
|
208
|
-
qualifiedName: QualifiedName;
|
|
209
|
-
cType: string;
|
|
210
|
-
glibTypeName?: string;
|
|
211
|
-
prerequisites: QualifiedName[];
|
|
212
|
-
methods: GirMethod[];
|
|
213
|
-
properties: GirProperty[];
|
|
214
|
-
signals: GirSignal[];
|
|
215
|
-
doc?: string;
|
|
216
|
-
});
|
|
217
|
-
/** @internal */
|
|
218
|
-
_setRepository(repo: RepositoryLike): void;
|
|
219
|
-
/** Checks if this interface has a prerequisite (direct or transitive). */
|
|
220
|
-
hasPrerequisite(qualifiedName: QualifiedName): boolean;
|
|
221
|
-
/** Gets all prerequisites including transitive ones. */
|
|
222
|
-
getAllPrerequisites(): QualifiedName[];
|
|
223
|
-
/** Finds a method by name. */
|
|
224
|
-
getMethod(name: string): GirMethod | null;
|
|
225
|
-
/** Finds a property by name. */
|
|
226
|
-
getProperty(name: string): GirProperty | null;
|
|
227
|
-
/** Finds a signal by name. */
|
|
228
|
-
getSignal(name: string): GirSignal | null;
|
|
229
|
-
}
|
|
230
|
-
/**
|
|
231
|
-
* Normalized record (boxed type or plain struct) with helper methods.
|
|
232
|
-
*/
|
|
233
|
-
export declare class GirRecord {
|
|
234
|
-
readonly name: string;
|
|
235
|
-
readonly qualifiedName: QualifiedName;
|
|
236
|
-
readonly cType: string;
|
|
237
|
-
readonly opaque: boolean;
|
|
238
|
-
readonly disguised: boolean;
|
|
239
|
-
readonly glibTypeName?: string;
|
|
240
|
-
readonly glibGetType?: string;
|
|
241
|
-
readonly isGtypeStructFor?: string;
|
|
242
|
-
readonly copyFunction?: string;
|
|
243
|
-
readonly freeFunction?: string;
|
|
244
|
-
readonly fields: GirField[];
|
|
245
|
-
readonly methods: GirMethod[];
|
|
246
|
-
readonly constructors: GirConstructor[];
|
|
247
|
-
readonly staticFunctions: GirFunction[];
|
|
248
|
-
readonly doc?: string;
|
|
249
|
-
constructor(data: {
|
|
250
|
-
name: string;
|
|
251
|
-
qualifiedName: QualifiedName;
|
|
252
|
-
cType: string;
|
|
253
|
-
opaque: boolean;
|
|
254
|
-
disguised: boolean;
|
|
255
|
-
glibTypeName?: string;
|
|
256
|
-
glibGetType?: string;
|
|
257
|
-
isGtypeStructFor?: string;
|
|
258
|
-
copyFunction?: string;
|
|
259
|
-
freeFunction?: string;
|
|
260
|
-
fields: GirField[];
|
|
261
|
-
methods: GirMethod[];
|
|
262
|
-
constructors: GirConstructor[];
|
|
263
|
-
staticFunctions: GirFunction[];
|
|
264
|
-
doc?: string;
|
|
265
|
-
});
|
|
266
|
-
/** True if this is a fundamental type with custom copy/free functions. */
|
|
267
|
-
isFundamental(): boolean;
|
|
268
|
-
/** True if this is a GLib boxed type (has glibTypeName). */
|
|
269
|
-
isBoxed(): boolean;
|
|
270
|
-
/** True if this is a GType struct (vtable for a class/interface). */
|
|
271
|
-
isGtypeStruct(): boolean;
|
|
272
|
-
/** True if this is a plain C struct (no GType, has public fields). */
|
|
273
|
-
isPlainStruct(): boolean;
|
|
274
|
-
/** Gets public (non-private) fields only. */
|
|
275
|
-
getPublicFields(): GirField[];
|
|
276
|
-
/** Finds a method by name. */
|
|
277
|
-
getMethod(name: string): GirMethod | null;
|
|
278
|
-
/** Finds a field by name. */
|
|
279
|
-
getField(name: string): GirField | null;
|
|
280
|
-
/** Finds a constructor by name. */
|
|
281
|
-
getConstructor(name: string): GirConstructor | null;
|
|
282
|
-
}
|
|
283
|
-
/**
|
|
284
|
-
* Normalized enumeration with helper methods.
|
|
285
|
-
*/
|
|
286
|
-
export declare class GirEnumeration {
|
|
287
|
-
readonly name: string;
|
|
288
|
-
readonly qualifiedName: QualifiedName;
|
|
289
|
-
readonly cType: string;
|
|
290
|
-
readonly members: GirEnumerationMember[];
|
|
291
|
-
readonly glibGetType?: string;
|
|
292
|
-
readonly doc?: string;
|
|
293
|
-
constructor(data: {
|
|
294
|
-
name: string;
|
|
295
|
-
qualifiedName: QualifiedName;
|
|
296
|
-
cType: string;
|
|
297
|
-
members: GirEnumerationMember[];
|
|
298
|
-
glibGetType?: string;
|
|
299
|
-
doc?: string;
|
|
300
|
-
});
|
|
301
|
-
/** Finds a member by name. */
|
|
302
|
-
getMember(name: string): GirEnumerationMember | null;
|
|
303
|
-
/** Finds a member by value. */
|
|
304
|
-
getMemberByValue(value: string): GirEnumerationMember | null;
|
|
305
|
-
/** Gets all member names. */
|
|
306
|
-
getMemberNames(): string[];
|
|
307
|
-
}
|
|
308
|
-
/**
|
|
309
|
-
* Normalized enumeration member.
|
|
310
|
-
*/
|
|
311
|
-
export declare class GirEnumerationMember {
|
|
312
|
-
readonly name: string;
|
|
313
|
-
readonly value: string;
|
|
314
|
-
readonly cIdentifier: string;
|
|
315
|
-
readonly doc?: string;
|
|
316
|
-
constructor(data: {
|
|
317
|
-
name: string;
|
|
318
|
-
value: string;
|
|
319
|
-
cIdentifier: string;
|
|
320
|
-
doc?: string;
|
|
321
|
-
});
|
|
322
|
-
}
|
|
323
|
-
/**
|
|
324
|
-
* Normalized callback type.
|
|
325
|
-
*/
|
|
326
|
-
export declare class GirCallback {
|
|
327
|
-
readonly name: string;
|
|
328
|
-
readonly qualifiedName: QualifiedName;
|
|
329
|
-
readonly cType: string;
|
|
330
|
-
readonly returnType: GirType;
|
|
331
|
-
readonly parameters: GirParameter[];
|
|
332
|
-
readonly doc?: string;
|
|
333
|
-
constructor(data: {
|
|
334
|
-
name: string;
|
|
335
|
-
qualifiedName: QualifiedName;
|
|
336
|
-
cType: string;
|
|
337
|
-
returnType: GirType;
|
|
338
|
-
parameters: GirParameter[];
|
|
339
|
-
doc?: string;
|
|
340
|
-
});
|
|
341
|
-
}
|
|
342
|
-
/**
|
|
343
|
-
* Normalized constant.
|
|
344
|
-
*/
|
|
345
|
-
export declare class GirConstant {
|
|
346
|
-
readonly name: string;
|
|
347
|
-
readonly qualifiedName: QualifiedName;
|
|
348
|
-
readonly cType: string;
|
|
349
|
-
readonly value: string;
|
|
350
|
-
readonly type: GirType;
|
|
351
|
-
readonly doc?: string;
|
|
352
|
-
constructor(data: {
|
|
353
|
-
name: string;
|
|
354
|
-
qualifiedName: QualifiedName;
|
|
355
|
-
cType: string;
|
|
356
|
-
value: string;
|
|
357
|
-
type: GirType;
|
|
358
|
-
doc?: string;
|
|
359
|
-
});
|
|
360
|
-
}
|
|
361
|
-
/**
|
|
362
|
-
* Normalized type alias.
|
|
363
|
-
*/
|
|
364
|
-
export declare class GirAlias {
|
|
365
|
-
readonly name: string;
|
|
366
|
-
readonly qualifiedName: QualifiedName;
|
|
367
|
-
readonly cType: string;
|
|
368
|
-
readonly targetType: GirType;
|
|
369
|
-
readonly doc?: string;
|
|
370
|
-
constructor(data: {
|
|
371
|
-
name: string;
|
|
372
|
-
qualifiedName: QualifiedName;
|
|
373
|
-
cType: string;
|
|
374
|
-
targetType: GirType;
|
|
375
|
-
doc?: string;
|
|
376
|
-
});
|
|
377
|
-
isRecordAlias(): boolean;
|
|
378
|
-
}
|
|
379
|
-
/**
|
|
380
|
-
* Normalized method with helper methods.
|
|
381
|
-
*/
|
|
382
|
-
export declare class GirMethod {
|
|
383
|
-
readonly name: string;
|
|
384
|
-
readonly cIdentifier: string;
|
|
385
|
-
readonly returnType: GirType;
|
|
386
|
-
readonly parameters: GirParameter[];
|
|
387
|
-
readonly instanceParameter?: GirParameter;
|
|
388
|
-
readonly throws: boolean;
|
|
389
|
-
readonly doc?: string;
|
|
390
|
-
readonly returnDoc?: string;
|
|
391
|
-
/** For async methods, the name of the corresponding finish function */
|
|
392
|
-
readonly finishFunc?: string;
|
|
393
|
-
readonly shadows?: string;
|
|
394
|
-
readonly shadowedBy?: string;
|
|
395
|
-
constructor(data: {
|
|
396
|
-
name: string;
|
|
397
|
-
cIdentifier: string;
|
|
398
|
-
returnType: GirType;
|
|
399
|
-
parameters: GirParameter[];
|
|
400
|
-
instanceParameter?: GirParameter;
|
|
401
|
-
throws: boolean;
|
|
402
|
-
doc?: string;
|
|
403
|
-
returnDoc?: string;
|
|
404
|
-
finishFunc?: string;
|
|
405
|
-
shadows?: string;
|
|
406
|
-
shadowedBy?: string;
|
|
407
|
-
});
|
|
408
|
-
/** True if this follows the async/finish pattern. */
|
|
409
|
-
isAsync(): boolean;
|
|
410
|
-
/** True if this is a _finish method for an async operation. */
|
|
411
|
-
isAsyncFinish(): boolean;
|
|
412
|
-
/** Gets the corresponding _finish method name if this is async. */
|
|
413
|
-
getFinishMethodName(): string | null;
|
|
414
|
-
/** Gets required (non-optional, non-nullable) parameters. */
|
|
415
|
-
getRequiredParameters(): GirParameter[];
|
|
416
|
-
/** Gets optional parameters. */
|
|
417
|
-
getOptionalParameters(): GirParameter[];
|
|
418
|
-
/** True if any parameter is an out parameter. */
|
|
419
|
-
hasOutParameters(): boolean;
|
|
420
|
-
/** Gets out parameters only. */
|
|
421
|
-
getOutParameters(): GirParameter[];
|
|
422
|
-
}
|
|
423
|
-
/**
|
|
424
|
-
* Normalized constructor.
|
|
425
|
-
*/
|
|
426
|
-
export declare class GirConstructor {
|
|
427
|
-
readonly name: string;
|
|
428
|
-
readonly cIdentifier: string;
|
|
429
|
-
readonly returnType: GirType;
|
|
430
|
-
readonly parameters: GirParameter[];
|
|
431
|
-
readonly throws: boolean;
|
|
432
|
-
readonly doc?: string;
|
|
433
|
-
readonly returnDoc?: string;
|
|
434
|
-
readonly shadows?: string;
|
|
435
|
-
readonly shadowedBy?: string;
|
|
436
|
-
constructor(data: {
|
|
437
|
-
name: string;
|
|
438
|
-
cIdentifier: string;
|
|
439
|
-
returnType: GirType;
|
|
440
|
-
parameters: GirParameter[];
|
|
441
|
-
throws: boolean;
|
|
442
|
-
doc?: string;
|
|
443
|
-
returnDoc?: string;
|
|
444
|
-
shadows?: string;
|
|
445
|
-
shadowedBy?: string;
|
|
446
|
-
});
|
|
447
|
-
/** Gets required (non-optional, non-nullable) parameters. */
|
|
448
|
-
getRequiredParameters(): GirParameter[];
|
|
449
|
-
}
|
|
450
|
-
/**
|
|
451
|
-
* Normalized standalone function.
|
|
452
|
-
*/
|
|
453
|
-
export declare class GirFunction {
|
|
454
|
-
readonly name: string;
|
|
455
|
-
readonly cIdentifier: string;
|
|
456
|
-
readonly returnType: GirType;
|
|
457
|
-
readonly parameters: GirParameter[];
|
|
458
|
-
readonly throws: boolean;
|
|
459
|
-
readonly doc?: string;
|
|
460
|
-
readonly returnDoc?: string;
|
|
461
|
-
readonly shadows?: string;
|
|
462
|
-
readonly shadowedBy?: string;
|
|
463
|
-
constructor(data: {
|
|
464
|
-
name: string;
|
|
465
|
-
cIdentifier: string;
|
|
466
|
-
returnType: GirType;
|
|
467
|
-
parameters: GirParameter[];
|
|
468
|
-
throws: boolean;
|
|
469
|
-
doc?: string;
|
|
470
|
-
returnDoc?: string;
|
|
471
|
-
shadows?: string;
|
|
472
|
-
shadowedBy?: string;
|
|
473
|
-
});
|
|
474
|
-
/** True if this follows the async/finish pattern. */
|
|
475
|
-
isAsync(): boolean;
|
|
476
|
-
/** Gets required parameters. */
|
|
477
|
-
getRequiredParameters(): GirParameter[];
|
|
478
|
-
}
|
|
479
|
-
/**
|
|
480
|
-
* Normalized parameter with helper methods.
|
|
481
|
-
*/
|
|
482
|
-
export declare class GirParameter {
|
|
483
|
-
readonly name: string;
|
|
484
|
-
readonly type: GirType;
|
|
485
|
-
readonly direction: "in" | "out" | "inout";
|
|
486
|
-
readonly callerAllocates: boolean;
|
|
487
|
-
readonly nullable: boolean;
|
|
488
|
-
readonly optional: boolean;
|
|
489
|
-
readonly scope?: "async" | "call" | "notified";
|
|
490
|
-
readonly closure?: number;
|
|
491
|
-
readonly destroy?: number;
|
|
492
|
-
readonly transferOwnership?: "none" | "full" | "container";
|
|
493
|
-
readonly doc?: string;
|
|
494
|
-
constructor(data: {
|
|
495
|
-
name: string;
|
|
496
|
-
type: GirType;
|
|
497
|
-
direction: "in" | "out" | "inout";
|
|
498
|
-
callerAllocates: boolean;
|
|
499
|
-
nullable: boolean;
|
|
500
|
-
optional: boolean;
|
|
501
|
-
scope?: "async" | "call" | "notified";
|
|
502
|
-
closure?: number;
|
|
503
|
-
destroy?: number;
|
|
504
|
-
transferOwnership?: "none" | "full" | "container";
|
|
505
|
-
doc?: string;
|
|
506
|
-
});
|
|
507
|
-
/** True if this is an input parameter. */
|
|
508
|
-
isIn(): boolean;
|
|
509
|
-
/** True if this is an output parameter. */
|
|
510
|
-
isOut(): boolean;
|
|
511
|
-
/** True if this is a callback parameter (has scope). */
|
|
512
|
-
isCallback(): boolean;
|
|
513
|
-
/** True if this is the user_data for a callback. */
|
|
514
|
-
isClosureData(): boolean;
|
|
515
|
-
/** True if this is a destroy notify for a callback. */
|
|
516
|
-
isDestroyNotify(): boolean;
|
|
517
|
-
/** True if caller must allocate memory for this out param. */
|
|
518
|
-
requiresCallerAllocation(): boolean;
|
|
519
|
-
}
|
|
520
|
-
/**
|
|
521
|
-
* Normalized property with helper methods.
|
|
522
|
-
*/
|
|
523
|
-
export declare class GirProperty {
|
|
524
|
-
readonly name: string;
|
|
525
|
-
readonly type: GirType;
|
|
526
|
-
readonly readable: boolean;
|
|
527
|
-
readonly writable: boolean;
|
|
528
|
-
readonly constructOnly: boolean;
|
|
529
|
-
readonly defaultValue: DefaultValue | null;
|
|
530
|
-
readonly getter?: string;
|
|
531
|
-
readonly setter?: string;
|
|
532
|
-
readonly doc?: string;
|
|
533
|
-
constructor(data: {
|
|
534
|
-
name: string;
|
|
535
|
-
type: GirType;
|
|
536
|
-
readable: boolean;
|
|
537
|
-
writable: boolean;
|
|
538
|
-
constructOnly: boolean;
|
|
539
|
-
defaultValue: DefaultValue | null;
|
|
540
|
-
getter?: string;
|
|
541
|
-
setter?: string;
|
|
542
|
-
doc?: string;
|
|
543
|
-
});
|
|
544
|
-
get hasDefault(): boolean;
|
|
545
|
-
/** True if readable but not writable. */
|
|
546
|
-
isReadOnly(): boolean;
|
|
547
|
-
/** True if writable but not readable. */
|
|
548
|
-
isWriteOnly(): boolean;
|
|
549
|
-
/** True if can only be set during construction. */
|
|
550
|
-
isConstructOnly(): boolean;
|
|
551
|
-
/** True if has both getter and setter methods. */
|
|
552
|
-
hasAccessors(): boolean;
|
|
553
|
-
}
|
|
554
|
-
/**
|
|
555
|
-
* Normalized signal with helper methods.
|
|
556
|
-
*/
|
|
557
|
-
export declare class GirSignal {
|
|
558
|
-
readonly name: string;
|
|
559
|
-
readonly when: "first" | "last" | "cleanup";
|
|
560
|
-
readonly returnType: GirType | null;
|
|
561
|
-
readonly parameters: GirParameter[];
|
|
562
|
-
readonly doc?: string;
|
|
563
|
-
constructor(data: {
|
|
564
|
-
name: string;
|
|
565
|
-
when: "first" | "last" | "cleanup";
|
|
566
|
-
returnType: GirType | null;
|
|
567
|
-
parameters: GirParameter[];
|
|
568
|
-
doc?: string;
|
|
569
|
-
});
|
|
570
|
-
/** True if the signal returns a value. */
|
|
571
|
-
hasReturnValue(): boolean;
|
|
572
|
-
}
|
|
573
|
-
/**
|
|
574
|
-
* Normalized field.
|
|
575
|
-
*/
|
|
576
|
-
export declare class GirField {
|
|
577
|
-
readonly name: string;
|
|
578
|
-
readonly type: GirType;
|
|
579
|
-
readonly writable: boolean;
|
|
580
|
-
readonly readable: boolean;
|
|
581
|
-
readonly private: boolean;
|
|
582
|
-
readonly doc?: string;
|
|
583
|
-
constructor(data: {
|
|
584
|
-
name: string;
|
|
585
|
-
type: GirType;
|
|
586
|
-
writable: boolean;
|
|
587
|
-
readable: boolean;
|
|
588
|
-
private: boolean;
|
|
589
|
-
doc?: string;
|
|
590
|
-
});
|
|
591
|
-
}
|
|
592
|
-
/**
|
|
593
|
-
* Normalized type reference with helper methods.
|
|
594
|
-
*/
|
|
595
|
-
export declare class GirType {
|
|
596
|
-
/** Type name - either a QualifiedName or an intrinsic type string */
|
|
597
|
-
readonly name: QualifiedName | string;
|
|
598
|
-
readonly cType?: string;
|
|
599
|
-
readonly isArray: boolean;
|
|
600
|
-
readonly elementType: GirType | null;
|
|
601
|
-
readonly typeParameters: readonly GirType[];
|
|
602
|
-
readonly containerType?: ContainerType;
|
|
603
|
-
readonly transferOwnership?: "none" | "full" | "container";
|
|
604
|
-
readonly nullable: boolean;
|
|
605
|
-
readonly sizeParamIndex?: number;
|
|
606
|
-
readonly zeroTerminated?: boolean;
|
|
607
|
-
readonly fixedSize?: number;
|
|
608
|
-
constructor(data: {
|
|
609
|
-
name: QualifiedName | string;
|
|
610
|
-
cType?: string;
|
|
611
|
-
isArray: boolean;
|
|
612
|
-
elementType: GirType | null;
|
|
613
|
-
typeParameters?: readonly GirType[];
|
|
614
|
-
containerType?: ContainerType;
|
|
615
|
-
transferOwnership?: "none" | "full" | "container";
|
|
616
|
-
nullable: boolean;
|
|
617
|
-
sizeParamIndex?: number;
|
|
618
|
-
zeroTerminated?: boolean;
|
|
619
|
-
fixedSize?: number;
|
|
620
|
-
});
|
|
621
|
-
/** True if this is an intrinsic/primitive type. */
|
|
622
|
-
isIntrinsic(): boolean;
|
|
623
|
-
/** True if this is a string type (utf8 or filename). */
|
|
624
|
-
isString(): boolean;
|
|
625
|
-
/** True if this is a numeric type. */
|
|
626
|
-
isNumeric(): boolean;
|
|
627
|
-
/** True if this is a boolean type. */
|
|
628
|
-
isBoolean(): boolean;
|
|
629
|
-
/** True if this is void. */
|
|
630
|
-
isVoid(): boolean;
|
|
631
|
-
/** True if this is GVariant. */
|
|
632
|
-
isVariant(): boolean;
|
|
633
|
-
/** True if this is GParamSpec. */
|
|
634
|
-
isParamSpec(): boolean;
|
|
635
|
-
/** True if this is a GHashTable container. */
|
|
636
|
-
isHashTable(): boolean;
|
|
637
|
-
/** True if this is a GPtrArray container. */
|
|
638
|
-
isPtrArray(): boolean;
|
|
639
|
-
/** True if this is a GArray container. */
|
|
640
|
-
isGArray(): boolean;
|
|
641
|
-
/** True if this is a GList or GSList container. */
|
|
642
|
-
isList(): boolean;
|
|
643
|
-
/** True if this is any generic container type. */
|
|
644
|
-
isGenericContainer(): boolean;
|
|
645
|
-
/** Gets the key type for GHashTable, or null for other types. */
|
|
646
|
-
getKeyType(): GirType | null;
|
|
647
|
-
/** Gets the value type for GHashTable, or null for other types. */
|
|
648
|
-
getValueType(): GirType | null;
|
|
649
|
-
/** Gets the namespace part of a qualified name, or null for intrinsics. */
|
|
650
|
-
getNamespace(): string | null;
|
|
651
|
-
/** Gets the simple name part (without namespace). */
|
|
652
|
-
getSimpleName(): string;
|
|
653
|
-
}
|
|
654
|
-
export {};
|
|
655
|
-
//# sourceMappingURL=types.d.ts.map
|
package/dist/types.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|