@girs/gee-1.0 1.0.0-3.0.0-beta.12
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/README.md +31 -0
- package/gee-1.0.cjs +9 -0
- package/gee-1.0.d.cts +3084 -0
- package/gee-1.0.d.ts +3089 -0
- package/gee-1.0.js +8 -0
- package/package.json +53 -0
- package/tsconfig.doc.json +19 -0
package/gee-1.0.d.cts
ADDED
|
@@ -0,0 +1,3084 @@
|
|
|
1
|
+
|
|
2
|
+
/*
|
|
3
|
+
* Type Definitions for Gjs (https://gjs.guide/)
|
|
4
|
+
*
|
|
5
|
+
* These type definitions are automatically generated, do not edit them by hand.
|
|
6
|
+
* If you found a bug fix it in `ts-for-gir` or create a bug report on https://github.com/gjsify/ts-for-gjs
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Gee-1.0
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
import type GObject from '@girs/gobject-2.0';
|
|
13
|
+
import type GLib from '@girs/glib-2.0';
|
|
14
|
+
|
|
15
|
+
export function functions_get_equal_func_for(t: GObject.GType): GLib.EqualFunc
|
|
16
|
+
export function functions_get_hash_func_for(t: GObject.GType): GLib.HashFunc
|
|
17
|
+
export function functions_get_compare_func_for(t: GObject.GType): GLib.CompareFunc
|
|
18
|
+
export function direct_compare(_val1?: any | null, _val2?: any | null): number
|
|
19
|
+
export module BidirIterator {
|
|
20
|
+
|
|
21
|
+
// Constructor properties interface
|
|
22
|
+
|
|
23
|
+
export interface ConstructorProperties extends Iterator.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface BidirIterator extends Iterator {
|
|
29
|
+
|
|
30
|
+
// Owm methods of Gee-1.0.Gee.BidirIterator
|
|
31
|
+
|
|
32
|
+
previous(): boolean
|
|
33
|
+
has_previous(): boolean
|
|
34
|
+
last(): boolean
|
|
35
|
+
|
|
36
|
+
// Own virtual methods of Gee-1.0.Gee.BidirIterator
|
|
37
|
+
|
|
38
|
+
vfunc_previous(): boolean
|
|
39
|
+
vfunc_has_previous(): boolean
|
|
40
|
+
vfunc_last(): boolean
|
|
41
|
+
|
|
42
|
+
// Class property signals of Gee-1.0.Gee.BidirIterator
|
|
43
|
+
|
|
44
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
45
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
46
|
+
emit(sigName: string, ...args: any[]): void
|
|
47
|
+
disconnect(id: number): void
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export class BidirIterator extends GObject.Object {
|
|
51
|
+
|
|
52
|
+
// Own properties of Gee-1.0.Gee.BidirIterator
|
|
53
|
+
|
|
54
|
+
static name: string
|
|
55
|
+
static $gtype: GObject.GType<BidirIterator>
|
|
56
|
+
|
|
57
|
+
// Constructors of Gee-1.0.Gee.BidirIterator
|
|
58
|
+
|
|
59
|
+
constructor(config?: BidirIterator.ConstructorProperties)
|
|
60
|
+
_init(config?: BidirIterator.ConstructorProperties): void
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export module Collection {
|
|
64
|
+
|
|
65
|
+
// Constructor properties interface
|
|
66
|
+
|
|
67
|
+
export interface ConstructorProperties extends Iterable.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export interface Collection extends Iterable {
|
|
73
|
+
|
|
74
|
+
// Own properties of Gee-1.0.Gee.Collection
|
|
75
|
+
|
|
76
|
+
readonly size: number
|
|
77
|
+
readonly is_empty: boolean
|
|
78
|
+
readonly read_only_view: Collection
|
|
79
|
+
|
|
80
|
+
// Owm methods of Gee-1.0.Gee.Collection
|
|
81
|
+
|
|
82
|
+
contains(item?: any | null): boolean
|
|
83
|
+
add(item?: any | null): boolean
|
|
84
|
+
remove(item?: any | null): boolean
|
|
85
|
+
clear(): void
|
|
86
|
+
add_all(collection: Collection): boolean
|
|
87
|
+
contains_all(collection: Collection): boolean
|
|
88
|
+
remove_all(collection: Collection): boolean
|
|
89
|
+
retain_all(collection: Collection): boolean
|
|
90
|
+
to_array(): any[]
|
|
91
|
+
|
|
92
|
+
// Own virtual methods of Gee-1.0.Gee.Collection
|
|
93
|
+
|
|
94
|
+
vfunc_contains(item?: any | null): boolean
|
|
95
|
+
vfunc_add(item?: any | null): boolean
|
|
96
|
+
vfunc_remove(item?: any | null): boolean
|
|
97
|
+
vfunc_clear(): void
|
|
98
|
+
vfunc_add_all(collection: Collection): boolean
|
|
99
|
+
vfunc_contains_all(collection: Collection): boolean
|
|
100
|
+
vfunc_remove_all(collection: Collection): boolean
|
|
101
|
+
vfunc_retain_all(collection: Collection): boolean
|
|
102
|
+
vfunc_to_array(): any[]
|
|
103
|
+
|
|
104
|
+
// Class property signals of Gee-1.0.Gee.Collection
|
|
105
|
+
|
|
106
|
+
connect(sigName: "notify::size", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
|
|
107
|
+
connect_after(sigName: "notify::size", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
|
|
108
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
109
|
+
connect(sigName: "notify::is-empty", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
|
|
110
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
|
|
111
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
112
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
|
|
113
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
|
|
114
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
115
|
+
connect(sigName: "notify::element-type", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
|
|
116
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: Collection, pspec: GObject.ParamSpec) => void)): number
|
|
117
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
118
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
119
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
120
|
+
emit(sigName: string, ...args: any[]): void
|
|
121
|
+
disconnect(id: number): void
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export class Collection extends GObject.Object {
|
|
125
|
+
|
|
126
|
+
// Own properties of Gee-1.0.Gee.Collection
|
|
127
|
+
|
|
128
|
+
static name: string
|
|
129
|
+
static $gtype: GObject.GType<Collection>
|
|
130
|
+
|
|
131
|
+
// Constructors of Gee-1.0.Gee.Collection
|
|
132
|
+
|
|
133
|
+
constructor(config?: Collection.ConstructorProperties)
|
|
134
|
+
_init(config?: Collection.ConstructorProperties): void
|
|
135
|
+
static empty(): Collection
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export module Comparable {
|
|
139
|
+
|
|
140
|
+
// Constructor properties interface
|
|
141
|
+
|
|
142
|
+
export interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export interface Comparable extends GObject.Object {
|
|
148
|
+
|
|
149
|
+
// Owm methods of Gee-1.0.Gee.Comparable
|
|
150
|
+
|
|
151
|
+
compare_to(object?: any | null): number
|
|
152
|
+
|
|
153
|
+
// Own virtual methods of Gee-1.0.Gee.Comparable
|
|
154
|
+
|
|
155
|
+
vfunc_compare_to(object?: any | null): number
|
|
156
|
+
|
|
157
|
+
// Class property signals of Gee-1.0.Gee.Comparable
|
|
158
|
+
|
|
159
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
160
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
161
|
+
emit(sigName: string, ...args: any[]): void
|
|
162
|
+
disconnect(id: number): void
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export class Comparable {
|
|
166
|
+
|
|
167
|
+
// Own properties of Gee-1.0.Gee.Comparable
|
|
168
|
+
|
|
169
|
+
static name: string
|
|
170
|
+
static $gtype: GObject.GType<Comparable>
|
|
171
|
+
|
|
172
|
+
// Constructors of Gee-1.0.Gee.Comparable
|
|
173
|
+
|
|
174
|
+
constructor(config?: Comparable.ConstructorProperties)
|
|
175
|
+
_init(config?: Comparable.ConstructorProperties): void
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export module Deque {
|
|
179
|
+
|
|
180
|
+
// Constructor properties interface
|
|
181
|
+
|
|
182
|
+
export interface ConstructorProperties extends Queue.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
export interface Deque extends Queue {
|
|
188
|
+
|
|
189
|
+
// Owm methods of Gee-1.0.Gee.Deque
|
|
190
|
+
|
|
191
|
+
offer_head(element?: any | null): boolean
|
|
192
|
+
peek_head(): any | null
|
|
193
|
+
poll_head(): any | null
|
|
194
|
+
drain_head(recipient: Collection, amount: number): number
|
|
195
|
+
offer_tail(element?: any | null): boolean
|
|
196
|
+
peek_tail(): any | null
|
|
197
|
+
poll_tail(): any | null
|
|
198
|
+
drain_tail(recipient: Collection, amount: number): number
|
|
199
|
+
|
|
200
|
+
// Own virtual methods of Gee-1.0.Gee.Deque
|
|
201
|
+
|
|
202
|
+
vfunc_offer_head(element?: any | null): boolean
|
|
203
|
+
vfunc_peek_head(): any | null
|
|
204
|
+
vfunc_poll_head(): any | null
|
|
205
|
+
vfunc_drain_head(recipient: Collection, amount: number): number
|
|
206
|
+
vfunc_offer_tail(element?: any | null): boolean
|
|
207
|
+
vfunc_peek_tail(): any | null
|
|
208
|
+
vfunc_poll_tail(): any | null
|
|
209
|
+
vfunc_drain_tail(recipient: Collection, amount: number): number
|
|
210
|
+
|
|
211
|
+
// Class property signals of Gee-1.0.Gee.Deque
|
|
212
|
+
|
|
213
|
+
connect(sigName: "notify::capacity", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
214
|
+
connect_after(sigName: "notify::capacity", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
215
|
+
emit(sigName: "notify::capacity", ...args: any[]): void
|
|
216
|
+
connect(sigName: "notify::remaining-capacity", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
217
|
+
connect_after(sigName: "notify::remaining-capacity", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
218
|
+
emit(sigName: "notify::remaining-capacity", ...args: any[]): void
|
|
219
|
+
connect(sigName: "notify::is-full", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
220
|
+
connect_after(sigName: "notify::is-full", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
221
|
+
emit(sigName: "notify::is-full", ...args: any[]): void
|
|
222
|
+
connect(sigName: "notify::size", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
223
|
+
connect_after(sigName: "notify::size", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
224
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
225
|
+
connect(sigName: "notify::is-empty", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
226
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
227
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
228
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
229
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
230
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
231
|
+
connect(sigName: "notify::element-type", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
232
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: Deque, pspec: GObject.ParamSpec) => void)): number
|
|
233
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
234
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
235
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
236
|
+
emit(sigName: string, ...args: any[]): void
|
|
237
|
+
disconnect(id: number): void
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export class Deque extends GObject.Object {
|
|
241
|
+
|
|
242
|
+
// Own properties of Gee-1.0.Gee.Deque
|
|
243
|
+
|
|
244
|
+
static name: string
|
|
245
|
+
static $gtype: GObject.GType<Deque>
|
|
246
|
+
|
|
247
|
+
// Constructors of Gee-1.0.Gee.Deque
|
|
248
|
+
|
|
249
|
+
constructor(config?: Deque.ConstructorProperties)
|
|
250
|
+
_init(config?: Deque.ConstructorProperties): void
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
export module Iterable {
|
|
254
|
+
|
|
255
|
+
// Constructor properties interface
|
|
256
|
+
|
|
257
|
+
export interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
export interface Iterable extends GObject.Object {
|
|
263
|
+
|
|
264
|
+
// Own properties of Gee-1.0.Gee.Iterable
|
|
265
|
+
|
|
266
|
+
readonly element_type: GObject.GType
|
|
267
|
+
|
|
268
|
+
// Owm methods of Gee-1.0.Gee.Iterable
|
|
269
|
+
|
|
270
|
+
iterator(): Iterator
|
|
271
|
+
|
|
272
|
+
// Own virtual methods of Gee-1.0.Gee.Iterable
|
|
273
|
+
|
|
274
|
+
vfunc_iterator(): Iterator
|
|
275
|
+
|
|
276
|
+
// Class property signals of Gee-1.0.Gee.Iterable
|
|
277
|
+
|
|
278
|
+
connect(sigName: "notify::element-type", callback: (($obj: Iterable, pspec: GObject.ParamSpec) => void)): number
|
|
279
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: Iterable, pspec: GObject.ParamSpec) => void)): number
|
|
280
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
281
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
282
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
283
|
+
emit(sigName: string, ...args: any[]): void
|
|
284
|
+
disconnect(id: number): void
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
export class Iterable {
|
|
288
|
+
|
|
289
|
+
// Own properties of Gee-1.0.Gee.Iterable
|
|
290
|
+
|
|
291
|
+
static name: string
|
|
292
|
+
static $gtype: GObject.GType<Iterable>
|
|
293
|
+
|
|
294
|
+
// Constructors of Gee-1.0.Gee.Iterable
|
|
295
|
+
|
|
296
|
+
constructor(config?: Iterable.ConstructorProperties)
|
|
297
|
+
_init(config?: Iterable.ConstructorProperties): void
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
export module Iterator {
|
|
301
|
+
|
|
302
|
+
// Constructor properties interface
|
|
303
|
+
|
|
304
|
+
export interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
export interface Iterator extends GObject.Object {
|
|
310
|
+
|
|
311
|
+
// Owm methods of Gee-1.0.Gee.Iterator
|
|
312
|
+
|
|
313
|
+
next(): boolean
|
|
314
|
+
has_next(): boolean
|
|
315
|
+
first(): boolean
|
|
316
|
+
get(): any | null
|
|
317
|
+
remove(): void
|
|
318
|
+
|
|
319
|
+
// Own virtual methods of Gee-1.0.Gee.Iterator
|
|
320
|
+
|
|
321
|
+
vfunc_next(): boolean
|
|
322
|
+
vfunc_has_next(): boolean
|
|
323
|
+
vfunc_first(): boolean
|
|
324
|
+
vfunc_get(): any | null
|
|
325
|
+
vfunc_remove(): void
|
|
326
|
+
|
|
327
|
+
// Class property signals of Gee-1.0.Gee.Iterator
|
|
328
|
+
|
|
329
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
330
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
331
|
+
emit(sigName: string, ...args: any[]): void
|
|
332
|
+
disconnect(id: number): void
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
export class Iterator {
|
|
336
|
+
|
|
337
|
+
// Own properties of Gee-1.0.Gee.Iterator
|
|
338
|
+
|
|
339
|
+
static name: string
|
|
340
|
+
static $gtype: GObject.GType<Iterator>
|
|
341
|
+
|
|
342
|
+
// Constructors of Gee-1.0.Gee.Iterator
|
|
343
|
+
|
|
344
|
+
constructor(config?: Iterator.ConstructorProperties)
|
|
345
|
+
_init(config?: Iterator.ConstructorProperties): void
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
export module List {
|
|
349
|
+
|
|
350
|
+
// Constructor properties interface
|
|
351
|
+
|
|
352
|
+
export interface ConstructorProperties extends Collection.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
export interface List extends Collection {
|
|
358
|
+
|
|
359
|
+
// Own properties of Gee-1.0.Gee.List
|
|
360
|
+
|
|
361
|
+
readonly read_only_view: any
|
|
362
|
+
|
|
363
|
+
// Owm methods of Gee-1.0.Gee.List
|
|
364
|
+
|
|
365
|
+
list_iterator(): ListIterator
|
|
366
|
+
get(index: number): any | null
|
|
367
|
+
set(index: number, item?: any | null): void
|
|
368
|
+
index_of(item?: any | null): number
|
|
369
|
+
insert(index: number, item?: any | null): void
|
|
370
|
+
remove_at(index: number): any | null
|
|
371
|
+
slice(start: number, stop: number): List | null
|
|
372
|
+
first(): any | null
|
|
373
|
+
last(): any | null
|
|
374
|
+
insert_all(index: number, collection: Collection): void
|
|
375
|
+
sort(compare_func?: GLib.CompareFunc | null): void
|
|
376
|
+
|
|
377
|
+
// Own virtual methods of Gee-1.0.Gee.List
|
|
378
|
+
|
|
379
|
+
vfunc_list_iterator(): ListIterator
|
|
380
|
+
vfunc_get(index: number): any | null
|
|
381
|
+
vfunc_set(index: number, item?: any | null): void
|
|
382
|
+
vfunc_index_of(item?: any | null): number
|
|
383
|
+
vfunc_insert(index: number, item?: any | null): void
|
|
384
|
+
vfunc_remove_at(index: number): any | null
|
|
385
|
+
vfunc_slice(start: number, stop: number): List | null
|
|
386
|
+
vfunc_first(): any | null
|
|
387
|
+
vfunc_last(): any | null
|
|
388
|
+
vfunc_insert_all(index: number, collection: Collection): void
|
|
389
|
+
vfunc_sort(compare_func?: GLib.CompareFunc | null): void
|
|
390
|
+
|
|
391
|
+
// Class property signals of Gee-1.0.Gee.List
|
|
392
|
+
|
|
393
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
|
|
394
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
|
|
395
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
396
|
+
connect(sigName: "notify::size", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
|
|
397
|
+
connect_after(sigName: "notify::size", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
|
|
398
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
399
|
+
connect(sigName: "notify::is-empty", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
|
|
400
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
|
|
401
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
402
|
+
connect(sigName: "notify::element-type", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
|
|
403
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: List, pspec: GObject.ParamSpec) => void)): number
|
|
404
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
405
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
406
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
407
|
+
emit(sigName: string, ...args: any[]): void
|
|
408
|
+
disconnect(id: number): void
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
export class List extends GObject.Object {
|
|
412
|
+
|
|
413
|
+
// Own properties of Gee-1.0.Gee.List
|
|
414
|
+
|
|
415
|
+
static name: string
|
|
416
|
+
static $gtype: GObject.GType<List>
|
|
417
|
+
|
|
418
|
+
// Constructors of Gee-1.0.Gee.List
|
|
419
|
+
|
|
420
|
+
constructor(config?: List.ConstructorProperties)
|
|
421
|
+
_init(config?: List.ConstructorProperties): void
|
|
422
|
+
static empty(): List
|
|
423
|
+
|
|
424
|
+
// Overloads of empty
|
|
425
|
+
|
|
426
|
+
static empty(): Collection
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
export module ListIterator {
|
|
430
|
+
|
|
431
|
+
// Constructor properties interface
|
|
432
|
+
|
|
433
|
+
export interface ConstructorProperties extends BidirIterator.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
export interface ListIterator extends BidirIterator {
|
|
439
|
+
|
|
440
|
+
// Owm methods of Gee-1.0.Gee.ListIterator
|
|
441
|
+
|
|
442
|
+
set(item?: any | null): void
|
|
443
|
+
insert(item?: any | null): void
|
|
444
|
+
add(item?: any | null): void
|
|
445
|
+
index(): number
|
|
446
|
+
|
|
447
|
+
// Own virtual methods of Gee-1.0.Gee.ListIterator
|
|
448
|
+
|
|
449
|
+
vfunc_set(item?: any | null): void
|
|
450
|
+
vfunc_insert(item?: any | null): void
|
|
451
|
+
vfunc_add(item?: any | null): void
|
|
452
|
+
vfunc_index(): number
|
|
453
|
+
|
|
454
|
+
// Class property signals of Gee-1.0.Gee.ListIterator
|
|
455
|
+
|
|
456
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
457
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
458
|
+
emit(sigName: string, ...args: any[]): void
|
|
459
|
+
disconnect(id: number): void
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
export class ListIterator extends GObject.Object {
|
|
463
|
+
|
|
464
|
+
// Own properties of Gee-1.0.Gee.ListIterator
|
|
465
|
+
|
|
466
|
+
static name: string
|
|
467
|
+
static $gtype: GObject.GType<ListIterator>
|
|
468
|
+
|
|
469
|
+
// Constructors of Gee-1.0.Gee.ListIterator
|
|
470
|
+
|
|
471
|
+
constructor(config?: ListIterator.ConstructorProperties)
|
|
472
|
+
_init(config?: ListIterator.ConstructorProperties): void
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
export module Map {
|
|
476
|
+
|
|
477
|
+
// Constructor properties interface
|
|
478
|
+
|
|
479
|
+
export interface ConstructorProperties extends GObject.Object.ConstructorProperties, Iterable.ConstructorProperties {
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
export interface Map extends GObject.Object, Iterable {
|
|
485
|
+
|
|
486
|
+
// Own properties of Gee-1.0.Gee.Map
|
|
487
|
+
|
|
488
|
+
readonly size: number
|
|
489
|
+
readonly is_empty: boolean
|
|
490
|
+
readonly keys: Set
|
|
491
|
+
readonly values: Collection
|
|
492
|
+
readonly entries: Set
|
|
493
|
+
readonly read_only_view: Map
|
|
494
|
+
readonly key_type: GObject.GType
|
|
495
|
+
readonly value_type: GObject.GType
|
|
496
|
+
|
|
497
|
+
// Owm methods of Gee-1.0.Gee.Map
|
|
498
|
+
|
|
499
|
+
has_key(key?: any | null): boolean
|
|
500
|
+
contains(key?: any | null): boolean
|
|
501
|
+
has(key?: any | null, value?: any | null): boolean
|
|
502
|
+
get(key?: any | null): any | null
|
|
503
|
+
set(key?: any | null, value?: any | null): void
|
|
504
|
+
unset(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
|
|
505
|
+
remove(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
|
|
506
|
+
clear(): void
|
|
507
|
+
map_iterator(): MapIterator
|
|
508
|
+
set_all(map: Map): void
|
|
509
|
+
unset_all(map: Map): boolean
|
|
510
|
+
remove_all(map: Map): boolean
|
|
511
|
+
has_all(map: Map): boolean
|
|
512
|
+
contains_all(map: Map): boolean
|
|
513
|
+
|
|
514
|
+
// Own virtual methods of Gee-1.0.Gee.Map
|
|
515
|
+
|
|
516
|
+
vfunc_has_key(key?: any | null): boolean
|
|
517
|
+
vfunc_contains(key?: any | null): boolean
|
|
518
|
+
vfunc_has(key?: any | null, value?: any | null): boolean
|
|
519
|
+
vfunc_get(key?: any | null): any | null
|
|
520
|
+
vfunc_set(key?: any | null, value?: any | null): void
|
|
521
|
+
vfunc_unset(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
|
|
522
|
+
vfunc_remove(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
|
|
523
|
+
vfunc_clear(): void
|
|
524
|
+
vfunc_map_iterator(): MapIterator
|
|
525
|
+
vfunc_set_all(map: Map): void
|
|
526
|
+
vfunc_unset_all(map: Map): boolean
|
|
527
|
+
vfunc_remove_all(map: Map): boolean
|
|
528
|
+
vfunc_has_all(map: Map): boolean
|
|
529
|
+
vfunc_contains_all(map: Map): boolean
|
|
530
|
+
|
|
531
|
+
// Class property signals of Gee-1.0.Gee.Map
|
|
532
|
+
|
|
533
|
+
connect(sigName: "notify::size", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
534
|
+
connect_after(sigName: "notify::size", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
535
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
536
|
+
connect(sigName: "notify::is-empty", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
537
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
538
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
539
|
+
connect(sigName: "notify::keys", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
540
|
+
connect_after(sigName: "notify::keys", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
541
|
+
emit(sigName: "notify::keys", ...args: any[]): void
|
|
542
|
+
connect(sigName: "notify::values", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
543
|
+
connect_after(sigName: "notify::values", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
544
|
+
emit(sigName: "notify::values", ...args: any[]): void
|
|
545
|
+
connect(sigName: "notify::entries", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
546
|
+
connect_after(sigName: "notify::entries", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
547
|
+
emit(sigName: "notify::entries", ...args: any[]): void
|
|
548
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
549
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
550
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
551
|
+
connect(sigName: "notify::key-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
552
|
+
connect_after(sigName: "notify::key-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
553
|
+
emit(sigName: "notify::key-type", ...args: any[]): void
|
|
554
|
+
connect(sigName: "notify::value-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
555
|
+
connect_after(sigName: "notify::value-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
556
|
+
emit(sigName: "notify::value-type", ...args: any[]): void
|
|
557
|
+
connect(sigName: "notify::element-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
558
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: Map, pspec: GObject.ParamSpec) => void)): number
|
|
559
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
560
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
561
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
562
|
+
emit(sigName: string, ...args: any[]): void
|
|
563
|
+
disconnect(id: number): void
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
export class Map {
|
|
567
|
+
|
|
568
|
+
// Own properties of Gee-1.0.Gee.Map
|
|
569
|
+
|
|
570
|
+
static name: string
|
|
571
|
+
static $gtype: GObject.GType<Map>
|
|
572
|
+
|
|
573
|
+
// Constructors of Gee-1.0.Gee.Map
|
|
574
|
+
|
|
575
|
+
constructor(config?: Map.ConstructorProperties)
|
|
576
|
+
_init(config?: Map.ConstructorProperties): void
|
|
577
|
+
static empty(): Map
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
export module MapIterator {
|
|
581
|
+
|
|
582
|
+
// Constructor properties interface
|
|
583
|
+
|
|
584
|
+
export interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
export interface MapIterator extends GObject.Object {
|
|
590
|
+
|
|
591
|
+
// Owm methods of Gee-1.0.Gee.MapIterator
|
|
592
|
+
|
|
593
|
+
next(): boolean
|
|
594
|
+
has_next(): boolean
|
|
595
|
+
first(): boolean
|
|
596
|
+
get_key(): any | null
|
|
597
|
+
get_value(): any | null
|
|
598
|
+
set_value(value?: any | null): void
|
|
599
|
+
unset(): void
|
|
600
|
+
|
|
601
|
+
// Own virtual methods of Gee-1.0.Gee.MapIterator
|
|
602
|
+
|
|
603
|
+
vfunc_next(): boolean
|
|
604
|
+
vfunc_has_next(): boolean
|
|
605
|
+
vfunc_first(): boolean
|
|
606
|
+
vfunc_get_key(): any | null
|
|
607
|
+
vfunc_get_value(): any | null
|
|
608
|
+
vfunc_set_value(value?: any | null): void
|
|
609
|
+
vfunc_unset(): void
|
|
610
|
+
|
|
611
|
+
// Class property signals of Gee-1.0.Gee.MapIterator
|
|
612
|
+
|
|
613
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
614
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
615
|
+
emit(sigName: string, ...args: any[]): void
|
|
616
|
+
disconnect(id: number): void
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
export class MapIterator {
|
|
620
|
+
|
|
621
|
+
// Own properties of Gee-1.0.Gee.MapIterator
|
|
622
|
+
|
|
623
|
+
static name: string
|
|
624
|
+
static $gtype: GObject.GType<MapIterator>
|
|
625
|
+
|
|
626
|
+
// Constructors of Gee-1.0.Gee.MapIterator
|
|
627
|
+
|
|
628
|
+
constructor(config?: MapIterator.ConstructorProperties)
|
|
629
|
+
_init(config?: MapIterator.ConstructorProperties): void
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
export module MultiMap {
|
|
633
|
+
|
|
634
|
+
// Constructor properties interface
|
|
635
|
+
|
|
636
|
+
export interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
export interface MultiMap extends GObject.Object {
|
|
642
|
+
|
|
643
|
+
// Own properties of Gee-1.0.Gee.MultiMap
|
|
644
|
+
|
|
645
|
+
readonly size: number
|
|
646
|
+
|
|
647
|
+
// Owm methods of Gee-1.0.Gee.MultiMap
|
|
648
|
+
|
|
649
|
+
get_keys(): Set
|
|
650
|
+
get_all_keys(): MultiSet
|
|
651
|
+
get_values(): Collection
|
|
652
|
+
contains(key?: any | null): boolean
|
|
653
|
+
get(key?: any | null): Collection
|
|
654
|
+
set(key?: any | null, value?: any | null): void
|
|
655
|
+
remove(key?: any | null, value?: any | null): boolean
|
|
656
|
+
remove_all(key?: any | null): boolean
|
|
657
|
+
clear(): void
|
|
658
|
+
|
|
659
|
+
// Own virtual methods of Gee-1.0.Gee.MultiMap
|
|
660
|
+
|
|
661
|
+
vfunc_get_keys(): Set
|
|
662
|
+
vfunc_get_all_keys(): MultiSet
|
|
663
|
+
vfunc_get_values(): Collection
|
|
664
|
+
vfunc_contains(key?: any | null): boolean
|
|
665
|
+
vfunc_get(key?: any | null): Collection
|
|
666
|
+
vfunc_set(key?: any | null, value?: any | null): void
|
|
667
|
+
vfunc_remove(key?: any | null, value?: any | null): boolean
|
|
668
|
+
vfunc_remove_all(key?: any | null): boolean
|
|
669
|
+
vfunc_clear(): void
|
|
670
|
+
|
|
671
|
+
// Class property signals of Gee-1.0.Gee.MultiMap
|
|
672
|
+
|
|
673
|
+
connect(sigName: "notify::size", callback: (($obj: MultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
674
|
+
connect_after(sigName: "notify::size", callback: (($obj: MultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
675
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
676
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
677
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
678
|
+
emit(sigName: string, ...args: any[]): void
|
|
679
|
+
disconnect(id: number): void
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
export class MultiMap {
|
|
683
|
+
|
|
684
|
+
// Own properties of Gee-1.0.Gee.MultiMap
|
|
685
|
+
|
|
686
|
+
static name: string
|
|
687
|
+
static $gtype: GObject.GType<MultiMap>
|
|
688
|
+
|
|
689
|
+
// Constructors of Gee-1.0.Gee.MultiMap
|
|
690
|
+
|
|
691
|
+
constructor(config?: MultiMap.ConstructorProperties)
|
|
692
|
+
_init(config?: MultiMap.ConstructorProperties): void
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
export module MultiSet {
|
|
696
|
+
|
|
697
|
+
// Constructor properties interface
|
|
698
|
+
|
|
699
|
+
export interface ConstructorProperties extends Collection.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
export interface MultiSet extends Collection {
|
|
705
|
+
|
|
706
|
+
// Owm methods of Gee-1.0.Gee.MultiSet
|
|
707
|
+
|
|
708
|
+
count(item?: any | null): number
|
|
709
|
+
|
|
710
|
+
// Own virtual methods of Gee-1.0.Gee.MultiSet
|
|
711
|
+
|
|
712
|
+
vfunc_count(item?: any | null): number
|
|
713
|
+
|
|
714
|
+
// Class property signals of Gee-1.0.Gee.MultiSet
|
|
715
|
+
|
|
716
|
+
connect(sigName: "notify::size", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
717
|
+
connect_after(sigName: "notify::size", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
718
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
719
|
+
connect(sigName: "notify::is-empty", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
720
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
721
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
722
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
723
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
724
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
725
|
+
connect(sigName: "notify::element-type", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
726
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: MultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
727
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
728
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
729
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
730
|
+
emit(sigName: string, ...args: any[]): void
|
|
731
|
+
disconnect(id: number): void
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
export class MultiSet extends GObject.Object {
|
|
735
|
+
|
|
736
|
+
// Own properties of Gee-1.0.Gee.MultiSet
|
|
737
|
+
|
|
738
|
+
static name: string
|
|
739
|
+
static $gtype: GObject.GType<MultiSet>
|
|
740
|
+
|
|
741
|
+
// Constructors of Gee-1.0.Gee.MultiSet
|
|
742
|
+
|
|
743
|
+
constructor(config?: MultiSet.ConstructorProperties)
|
|
744
|
+
_init(config?: MultiSet.ConstructorProperties): void
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
export module Queue {
|
|
748
|
+
|
|
749
|
+
// Constructor properties interface
|
|
750
|
+
|
|
751
|
+
export interface ConstructorProperties extends Collection.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
export interface Queue extends Collection {
|
|
757
|
+
|
|
758
|
+
// Own properties of Gee-1.0.Gee.Queue
|
|
759
|
+
|
|
760
|
+
readonly capacity: number
|
|
761
|
+
readonly remaining_capacity: number
|
|
762
|
+
readonly is_full: boolean
|
|
763
|
+
|
|
764
|
+
// Owm methods of Gee-1.0.Gee.Queue
|
|
765
|
+
|
|
766
|
+
offer(element?: any | null): boolean
|
|
767
|
+
peek(): any | null
|
|
768
|
+
poll(): any | null
|
|
769
|
+
drain(recipient: Collection, amount: number): number
|
|
770
|
+
|
|
771
|
+
// Own virtual methods of Gee-1.0.Gee.Queue
|
|
772
|
+
|
|
773
|
+
vfunc_offer(element?: any | null): boolean
|
|
774
|
+
vfunc_peek(): any | null
|
|
775
|
+
vfunc_poll(): any | null
|
|
776
|
+
vfunc_drain(recipient: Collection, amount: number): number
|
|
777
|
+
|
|
778
|
+
// Class property signals of Gee-1.0.Gee.Queue
|
|
779
|
+
|
|
780
|
+
connect(sigName: "notify::capacity", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
781
|
+
connect_after(sigName: "notify::capacity", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
782
|
+
emit(sigName: "notify::capacity", ...args: any[]): void
|
|
783
|
+
connect(sigName: "notify::remaining-capacity", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
784
|
+
connect_after(sigName: "notify::remaining-capacity", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
785
|
+
emit(sigName: "notify::remaining-capacity", ...args: any[]): void
|
|
786
|
+
connect(sigName: "notify::is-full", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
787
|
+
connect_after(sigName: "notify::is-full", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
788
|
+
emit(sigName: "notify::is-full", ...args: any[]): void
|
|
789
|
+
connect(sigName: "notify::size", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
790
|
+
connect_after(sigName: "notify::size", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
791
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
792
|
+
connect(sigName: "notify::is-empty", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
793
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
794
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
795
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
796
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
797
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
798
|
+
connect(sigName: "notify::element-type", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
799
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: Queue, pspec: GObject.ParamSpec) => void)): number
|
|
800
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
801
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
802
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
803
|
+
emit(sigName: string, ...args: any[]): void
|
|
804
|
+
disconnect(id: number): void
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
export class Queue extends GObject.Object {
|
|
808
|
+
|
|
809
|
+
// Own properties of Gee-1.0.Gee.Queue
|
|
810
|
+
|
|
811
|
+
static name: string
|
|
812
|
+
static $gtype: GObject.GType<Queue>
|
|
813
|
+
|
|
814
|
+
// Constructors of Gee-1.0.Gee.Queue
|
|
815
|
+
|
|
816
|
+
constructor(config?: Queue.ConstructorProperties)
|
|
817
|
+
_init(config?: Queue.ConstructorProperties): void
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
export module Set {
|
|
821
|
+
|
|
822
|
+
// Constructor properties interface
|
|
823
|
+
|
|
824
|
+
export interface ConstructorProperties extends Collection.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
export interface Set extends Collection {
|
|
830
|
+
|
|
831
|
+
// Own properties of Gee-1.0.Gee.Set
|
|
832
|
+
|
|
833
|
+
readonly read_only_view: any
|
|
834
|
+
|
|
835
|
+
// Class property signals of Gee-1.0.Gee.Set
|
|
836
|
+
|
|
837
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
|
|
838
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
|
|
839
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
840
|
+
connect(sigName: "notify::size", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
|
|
841
|
+
connect_after(sigName: "notify::size", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
|
|
842
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
843
|
+
connect(sigName: "notify::is-empty", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
|
|
844
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
|
|
845
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
846
|
+
connect(sigName: "notify::element-type", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
|
|
847
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: Set, pspec: GObject.ParamSpec) => void)): number
|
|
848
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
849
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
850
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
851
|
+
emit(sigName: string, ...args: any[]): void
|
|
852
|
+
disconnect(id: number): void
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
export class Set extends GObject.Object {
|
|
856
|
+
|
|
857
|
+
// Own properties of Gee-1.0.Gee.Set
|
|
858
|
+
|
|
859
|
+
static name: string
|
|
860
|
+
static $gtype: GObject.GType<Set>
|
|
861
|
+
|
|
862
|
+
// Constructors of Gee-1.0.Gee.Set
|
|
863
|
+
|
|
864
|
+
constructor(config?: Set.ConstructorProperties)
|
|
865
|
+
_init(config?: Set.ConstructorProperties): void
|
|
866
|
+
static empty(): Set
|
|
867
|
+
|
|
868
|
+
// Overloads of empty
|
|
869
|
+
|
|
870
|
+
static empty(): Collection
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
export module SortedSet {
|
|
874
|
+
|
|
875
|
+
// Constructor properties interface
|
|
876
|
+
|
|
877
|
+
export interface ConstructorProperties extends Set.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
export interface SortedSet extends Set {
|
|
883
|
+
|
|
884
|
+
// Conflicting properties
|
|
885
|
+
|
|
886
|
+
read_only_view: any
|
|
887
|
+
|
|
888
|
+
// Owm methods of Gee-1.0.Gee.SortedSet
|
|
889
|
+
|
|
890
|
+
first(): any | null
|
|
891
|
+
last(): any | null
|
|
892
|
+
bidir_iterator(): BidirIterator
|
|
893
|
+
iterator_at(element?: any | null): BidirIterator | null
|
|
894
|
+
lower(element?: any | null): any | null
|
|
895
|
+
higher(element?: any | null): any | null
|
|
896
|
+
floor(element?: any | null): any | null
|
|
897
|
+
ceil(element?: any | null): any | null
|
|
898
|
+
head_set(before?: any | null): SortedSet
|
|
899
|
+
tail_set(after?: any | null): SortedSet
|
|
900
|
+
sub_set(from?: any | null, to?: any | null): SortedSet
|
|
901
|
+
|
|
902
|
+
// Own virtual methods of Gee-1.0.Gee.SortedSet
|
|
903
|
+
|
|
904
|
+
vfunc_first(): any | null
|
|
905
|
+
vfunc_last(): any | null
|
|
906
|
+
vfunc_bidir_iterator(): BidirIterator
|
|
907
|
+
vfunc_iterator_at(element?: any | null): BidirIterator | null
|
|
908
|
+
vfunc_lower(element?: any | null): any | null
|
|
909
|
+
vfunc_higher(element?: any | null): any | null
|
|
910
|
+
vfunc_floor(element?: any | null): any | null
|
|
911
|
+
vfunc_ceil(element?: any | null): any | null
|
|
912
|
+
vfunc_head_set(before?: any | null): SortedSet
|
|
913
|
+
vfunc_tail_set(after?: any | null): SortedSet
|
|
914
|
+
vfunc_sub_set(from?: any | null, to?: any | null): SortedSet
|
|
915
|
+
|
|
916
|
+
// Class property signals of Gee-1.0.Gee.SortedSet
|
|
917
|
+
|
|
918
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
|
|
919
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
|
|
920
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
921
|
+
connect(sigName: "notify::size", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
|
|
922
|
+
connect_after(sigName: "notify::size", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
|
|
923
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
924
|
+
connect(sigName: "notify::is-empty", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
|
|
925
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
|
|
926
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
927
|
+
connect(sigName: "notify::element-type", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
|
|
928
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: SortedSet, pspec: GObject.ParamSpec) => void)): number
|
|
929
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
930
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
931
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
932
|
+
emit(sigName: string, ...args: any[]): void
|
|
933
|
+
disconnect(id: number): void
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
export class SortedSet extends GObject.Object {
|
|
937
|
+
|
|
938
|
+
// Own properties of Gee-1.0.Gee.SortedSet
|
|
939
|
+
|
|
940
|
+
static name: string
|
|
941
|
+
static $gtype: GObject.GType<SortedSet>
|
|
942
|
+
|
|
943
|
+
// Constructors of Gee-1.0.Gee.SortedSet
|
|
944
|
+
|
|
945
|
+
constructor(config?: SortedSet.ConstructorProperties)
|
|
946
|
+
_init(config?: SortedSet.ConstructorProperties): void
|
|
947
|
+
|
|
948
|
+
// Conflicting static methods
|
|
949
|
+
|
|
950
|
+
static empty(): Set
|
|
951
|
+
|
|
952
|
+
// Overloads of empty
|
|
953
|
+
|
|
954
|
+
static empty(): Collection
|
|
955
|
+
static empty(): Collection
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
export module AbstractCollection {
|
|
959
|
+
|
|
960
|
+
// Constructor properties interface
|
|
961
|
+
|
|
962
|
+
export interface ConstructorProperties extends Iterable.ConstructorProperties, Collection.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
export interface AbstractCollection extends Iterable, Collection {
|
|
968
|
+
|
|
969
|
+
// Own properties of Gee-1.0.Gee.AbstractCollection
|
|
970
|
+
|
|
971
|
+
readonly size: number
|
|
972
|
+
readonly is_empty: boolean
|
|
973
|
+
readonly read_only_view: Collection
|
|
974
|
+
|
|
975
|
+
// Own fields of Gee-1.0.Gee.AbstractCollection
|
|
976
|
+
|
|
977
|
+
parent_instance: GObject.Object
|
|
978
|
+
priv: AbstractCollectionPrivate
|
|
979
|
+
|
|
980
|
+
// Owm methods of Gee-1.0.Gee.AbstractCollection
|
|
981
|
+
|
|
982
|
+
contains(item?: any | null): boolean
|
|
983
|
+
add(item?: any | null): boolean
|
|
984
|
+
remove(item?: any | null): boolean
|
|
985
|
+
clear(): void
|
|
986
|
+
to_array(): any[]
|
|
987
|
+
add_all(collection: Collection): boolean
|
|
988
|
+
contains_all(collection: Collection): boolean
|
|
989
|
+
remove_all(collection: Collection): boolean
|
|
990
|
+
retain_all(collection: Collection): boolean
|
|
991
|
+
iterator(): Iterator
|
|
992
|
+
|
|
993
|
+
// Own virtual methods of Gee-1.0.Gee.AbstractCollection
|
|
994
|
+
|
|
995
|
+
vfunc_contains(item?: any | null): boolean
|
|
996
|
+
vfunc_add(item?: any | null): boolean
|
|
997
|
+
vfunc_remove(item?: any | null): boolean
|
|
998
|
+
vfunc_clear(): void
|
|
999
|
+
vfunc_to_array(): any[]
|
|
1000
|
+
vfunc_add_all(collection: Collection): boolean
|
|
1001
|
+
vfunc_contains_all(collection: Collection): boolean
|
|
1002
|
+
vfunc_remove_all(collection: Collection): boolean
|
|
1003
|
+
vfunc_retain_all(collection: Collection): boolean
|
|
1004
|
+
vfunc_iterator(): Iterator
|
|
1005
|
+
|
|
1006
|
+
// Class property signals of Gee-1.0.Gee.AbstractCollection
|
|
1007
|
+
|
|
1008
|
+
connect(sigName: "notify::size", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
|
|
1009
|
+
connect_after(sigName: "notify::size", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
|
|
1010
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1011
|
+
connect(sigName: "notify::is-empty", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
|
|
1012
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
|
|
1013
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1014
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
|
|
1015
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
|
|
1016
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1017
|
+
connect(sigName: "notify::element-type", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
|
|
1018
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: AbstractCollection, pspec: GObject.ParamSpec) => void)): number
|
|
1019
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
1020
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1021
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1022
|
+
emit(sigName: string, ...args: any[]): void
|
|
1023
|
+
disconnect(id: number): void
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
export class AbstractCollection extends GObject.Object {
|
|
1027
|
+
|
|
1028
|
+
// Own properties of Gee-1.0.Gee.AbstractCollection
|
|
1029
|
+
|
|
1030
|
+
static name: string
|
|
1031
|
+
static $gtype: GObject.GType<AbstractCollection>
|
|
1032
|
+
|
|
1033
|
+
// Constructors of Gee-1.0.Gee.AbstractCollection
|
|
1034
|
+
|
|
1035
|
+
constructor(config?: AbstractCollection.ConstructorProperties)
|
|
1036
|
+
_init(config?: AbstractCollection.ConstructorProperties): void
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
export module AbstractList {
|
|
1040
|
+
|
|
1041
|
+
// Constructor properties interface
|
|
1042
|
+
|
|
1043
|
+
export interface ConstructorProperties extends List.ConstructorProperties, AbstractCollection.ConstructorProperties {
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
export interface AbstractList extends List {
|
|
1049
|
+
|
|
1050
|
+
// Own properties of Gee-1.0.Gee.AbstractList
|
|
1051
|
+
|
|
1052
|
+
readonly read_only_view: any
|
|
1053
|
+
|
|
1054
|
+
// Own fields of Gee-1.0.Gee.AbstractList
|
|
1055
|
+
|
|
1056
|
+
parent_instance: AbstractCollection & GObject.Object
|
|
1057
|
+
priv: any
|
|
1058
|
+
|
|
1059
|
+
// Owm methods of Gee-1.0.Gee.AbstractList
|
|
1060
|
+
|
|
1061
|
+
list_iterator(): ListIterator
|
|
1062
|
+
get(index: number): any | null
|
|
1063
|
+
set(index: number, item?: any | null): void
|
|
1064
|
+
index_of(item?: any | null): number
|
|
1065
|
+
insert(index: number, item?: any | null): void
|
|
1066
|
+
remove_at(index: number): any | null
|
|
1067
|
+
slice(start: number, stop: number): List | null
|
|
1068
|
+
first(): any | null
|
|
1069
|
+
last(): any | null
|
|
1070
|
+
insert_all(index: number, collection: Collection): void
|
|
1071
|
+
|
|
1072
|
+
// Own virtual methods of Gee-1.0.Gee.AbstractList
|
|
1073
|
+
|
|
1074
|
+
vfunc_list_iterator(): ListIterator
|
|
1075
|
+
vfunc_get(index: number): any | null
|
|
1076
|
+
vfunc_set(index: number, item?: any | null): void
|
|
1077
|
+
vfunc_index_of(item?: any | null): number
|
|
1078
|
+
vfunc_insert(index: number, item?: any | null): void
|
|
1079
|
+
vfunc_remove_at(index: number): any | null
|
|
1080
|
+
vfunc_slice(start: number, stop: number): List | null
|
|
1081
|
+
vfunc_first(): any | null
|
|
1082
|
+
vfunc_last(): any | null
|
|
1083
|
+
vfunc_insert_all(index: number, collection: Collection): void
|
|
1084
|
+
|
|
1085
|
+
// Class property signals of Gee-1.0.Gee.AbstractList
|
|
1086
|
+
|
|
1087
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
|
|
1088
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
|
|
1089
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1090
|
+
connect(sigName: "notify::size", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
|
|
1091
|
+
connect_after(sigName: "notify::size", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
|
|
1092
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1093
|
+
connect(sigName: "notify::is-empty", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
|
|
1094
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
|
|
1095
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1096
|
+
connect(sigName: "notify::element-type", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
|
|
1097
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: AbstractList, pspec: GObject.ParamSpec) => void)): number
|
|
1098
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
1099
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1100
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1101
|
+
emit(sigName: string, ...args: any[]): void
|
|
1102
|
+
disconnect(id: number): void
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
export class AbstractList extends AbstractCollection {
|
|
1106
|
+
|
|
1107
|
+
// Own properties of Gee-1.0.Gee.AbstractList
|
|
1108
|
+
|
|
1109
|
+
static name: string
|
|
1110
|
+
static $gtype: GObject.GType<AbstractList>
|
|
1111
|
+
|
|
1112
|
+
// Constructors of Gee-1.0.Gee.AbstractList
|
|
1113
|
+
|
|
1114
|
+
constructor(config?: AbstractList.ConstructorProperties)
|
|
1115
|
+
_init(config?: AbstractList.ConstructorProperties): void
|
|
1116
|
+
|
|
1117
|
+
// Conflicting static methods
|
|
1118
|
+
|
|
1119
|
+
static empty(): List
|
|
1120
|
+
|
|
1121
|
+
// Overloads of empty
|
|
1122
|
+
|
|
1123
|
+
static empty(): Collection
|
|
1124
|
+
static empty(): Collection
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
export module AbstractMap {
|
|
1128
|
+
|
|
1129
|
+
// Constructor properties interface
|
|
1130
|
+
|
|
1131
|
+
export interface ConstructorProperties extends Iterable.ConstructorProperties, Map.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
export interface AbstractMap extends Iterable, Map {
|
|
1137
|
+
|
|
1138
|
+
// Own properties of Gee-1.0.Gee.AbstractMap
|
|
1139
|
+
|
|
1140
|
+
readonly size: number
|
|
1141
|
+
readonly is_empty: boolean
|
|
1142
|
+
readonly keys: Set
|
|
1143
|
+
readonly values: Collection
|
|
1144
|
+
readonly entries: Set
|
|
1145
|
+
readonly read_only_view: Map
|
|
1146
|
+
|
|
1147
|
+
// Own fields of Gee-1.0.Gee.AbstractMap
|
|
1148
|
+
|
|
1149
|
+
parent_instance: GObject.Object
|
|
1150
|
+
priv: AbstractMapPrivate
|
|
1151
|
+
|
|
1152
|
+
// Owm methods of Gee-1.0.Gee.AbstractMap
|
|
1153
|
+
|
|
1154
|
+
has_key(key?: any | null): boolean
|
|
1155
|
+
has(key?: any | null, value?: any | null): boolean
|
|
1156
|
+
get(key?: any | null): any | null
|
|
1157
|
+
set(key?: any | null, value?: any | null): void
|
|
1158
|
+
unset(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
|
|
1159
|
+
map_iterator(): MapIterator
|
|
1160
|
+
clear(): void
|
|
1161
|
+
set_all(map: Map): void
|
|
1162
|
+
unset_all(map: Map): boolean
|
|
1163
|
+
has_all(map: Map): boolean
|
|
1164
|
+
|
|
1165
|
+
// Own virtual methods of Gee-1.0.Gee.AbstractMap
|
|
1166
|
+
|
|
1167
|
+
vfunc_has_key(key?: any | null): boolean
|
|
1168
|
+
vfunc_has(key?: any | null, value?: any | null): boolean
|
|
1169
|
+
vfunc_get(key?: any | null): any | null
|
|
1170
|
+
vfunc_set(key?: any | null, value?: any | null): void
|
|
1171
|
+
vfunc_unset(key?: any | null): [ /* returnType */ boolean, /* value */ any | null ]
|
|
1172
|
+
vfunc_map_iterator(): MapIterator
|
|
1173
|
+
vfunc_clear(): void
|
|
1174
|
+
vfunc_set_all(map: Map): void
|
|
1175
|
+
vfunc_unset_all(map: Map): boolean
|
|
1176
|
+
vfunc_has_all(map: Map): boolean
|
|
1177
|
+
|
|
1178
|
+
// Class property signals of Gee-1.0.Gee.AbstractMap
|
|
1179
|
+
|
|
1180
|
+
connect(sigName: "notify::size", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1181
|
+
connect_after(sigName: "notify::size", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1182
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1183
|
+
connect(sigName: "notify::is-empty", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1184
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1185
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1186
|
+
connect(sigName: "notify::keys", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1187
|
+
connect_after(sigName: "notify::keys", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1188
|
+
emit(sigName: "notify::keys", ...args: any[]): void
|
|
1189
|
+
connect(sigName: "notify::values", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1190
|
+
connect_after(sigName: "notify::values", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1191
|
+
emit(sigName: "notify::values", ...args: any[]): void
|
|
1192
|
+
connect(sigName: "notify::entries", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1193
|
+
connect_after(sigName: "notify::entries", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1194
|
+
emit(sigName: "notify::entries", ...args: any[]): void
|
|
1195
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1196
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1197
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1198
|
+
connect(sigName: "notify::element-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1199
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1200
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
1201
|
+
connect(sigName: "notify::key-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1202
|
+
connect_after(sigName: "notify::key-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1203
|
+
emit(sigName: "notify::key-type", ...args: any[]): void
|
|
1204
|
+
connect(sigName: "notify::value-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1205
|
+
connect_after(sigName: "notify::value-type", callback: (($obj: AbstractMap, pspec: GObject.ParamSpec) => void)): number
|
|
1206
|
+
emit(sigName: "notify::value-type", ...args: any[]): void
|
|
1207
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1208
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1209
|
+
emit(sigName: string, ...args: any[]): void
|
|
1210
|
+
disconnect(id: number): void
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
export class AbstractMap extends GObject.Object {
|
|
1214
|
+
|
|
1215
|
+
// Own properties of Gee-1.0.Gee.AbstractMap
|
|
1216
|
+
|
|
1217
|
+
static name: string
|
|
1218
|
+
static $gtype: GObject.GType<AbstractMap>
|
|
1219
|
+
|
|
1220
|
+
// Constructors of Gee-1.0.Gee.AbstractMap
|
|
1221
|
+
|
|
1222
|
+
constructor(config?: AbstractMap.ConstructorProperties)
|
|
1223
|
+
_init(config?: AbstractMap.ConstructorProperties): void
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
export module AbstractMultiMap {
|
|
1227
|
+
|
|
1228
|
+
// Constructor properties interface
|
|
1229
|
+
|
|
1230
|
+
export interface ConstructorProperties extends MultiMap.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
export interface AbstractMultiMap extends MultiMap {
|
|
1236
|
+
|
|
1237
|
+
// Own fields of Gee-1.0.Gee.AbstractMultiMap
|
|
1238
|
+
|
|
1239
|
+
parent_instance: GObject.Object
|
|
1240
|
+
priv: AbstractMultiMapPrivate
|
|
1241
|
+
_storage_map: Map
|
|
1242
|
+
|
|
1243
|
+
// Owm methods of Gee-1.0.Gee.AbstractMultiMap
|
|
1244
|
+
|
|
1245
|
+
create_value_storage(): Collection
|
|
1246
|
+
create_multi_key_set(): MultiSet
|
|
1247
|
+
get_value_equal_func(): GLib.EqualFunc
|
|
1248
|
+
|
|
1249
|
+
// Own virtual methods of Gee-1.0.Gee.AbstractMultiMap
|
|
1250
|
+
|
|
1251
|
+
vfunc_create_value_storage(): Collection
|
|
1252
|
+
vfunc_create_multi_key_set(): MultiSet
|
|
1253
|
+
vfunc_get_value_equal_func(): GLib.EqualFunc
|
|
1254
|
+
|
|
1255
|
+
// Class property signals of Gee-1.0.Gee.AbstractMultiMap
|
|
1256
|
+
|
|
1257
|
+
connect(sigName: "notify::size", callback: (($obj: AbstractMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
1258
|
+
connect_after(sigName: "notify::size", callback: (($obj: AbstractMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
1259
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1260
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1261
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1262
|
+
emit(sigName: string, ...args: any[]): void
|
|
1263
|
+
disconnect(id: number): void
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
export class AbstractMultiMap extends GObject.Object {
|
|
1267
|
+
|
|
1268
|
+
// Own properties of Gee-1.0.Gee.AbstractMultiMap
|
|
1269
|
+
|
|
1270
|
+
static name: string
|
|
1271
|
+
static $gtype: GObject.GType<AbstractMultiMap>
|
|
1272
|
+
|
|
1273
|
+
// Constructors of Gee-1.0.Gee.AbstractMultiMap
|
|
1274
|
+
|
|
1275
|
+
constructor(config?: AbstractMultiMap.ConstructorProperties)
|
|
1276
|
+
_init(config?: AbstractMultiMap.ConstructorProperties): void
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
export module AbstractMultiSet {
|
|
1280
|
+
|
|
1281
|
+
// Constructor properties interface
|
|
1282
|
+
|
|
1283
|
+
export interface ConstructorProperties extends MultiSet.ConstructorProperties, AbstractCollection.ConstructorProperties {
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
export interface AbstractMultiSet extends MultiSet {
|
|
1289
|
+
|
|
1290
|
+
// Own fields of Gee-1.0.Gee.AbstractMultiSet
|
|
1291
|
+
|
|
1292
|
+
parent_instance: AbstractCollection & GObject.Object
|
|
1293
|
+
priv: any
|
|
1294
|
+
_storage_map: Map
|
|
1295
|
+
|
|
1296
|
+
// Class property signals of Gee-1.0.Gee.AbstractMultiSet
|
|
1297
|
+
|
|
1298
|
+
connect(sigName: "notify::size", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1299
|
+
connect_after(sigName: "notify::size", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1300
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1301
|
+
connect(sigName: "notify::is-empty", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1302
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1303
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1304
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1305
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1306
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1307
|
+
connect(sigName: "notify::element-type", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1308
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: AbstractMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1309
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
1310
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1311
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1312
|
+
emit(sigName: string, ...args: any[]): void
|
|
1313
|
+
disconnect(id: number): void
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
export class AbstractMultiSet extends AbstractCollection {
|
|
1317
|
+
|
|
1318
|
+
// Own properties of Gee-1.0.Gee.AbstractMultiSet
|
|
1319
|
+
|
|
1320
|
+
static name: string
|
|
1321
|
+
static $gtype: GObject.GType<AbstractMultiSet>
|
|
1322
|
+
|
|
1323
|
+
// Constructors of Gee-1.0.Gee.AbstractMultiSet
|
|
1324
|
+
|
|
1325
|
+
constructor(config?: AbstractMultiSet.ConstructorProperties)
|
|
1326
|
+
_init(config?: AbstractMultiSet.ConstructorProperties): void
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
export module AbstractQueue {
|
|
1330
|
+
|
|
1331
|
+
// Constructor properties interface
|
|
1332
|
+
|
|
1333
|
+
export interface ConstructorProperties extends Queue.ConstructorProperties, AbstractCollection.ConstructorProperties {
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
export interface AbstractQueue extends Queue {
|
|
1339
|
+
|
|
1340
|
+
// Own properties of Gee-1.0.Gee.AbstractQueue
|
|
1341
|
+
|
|
1342
|
+
readonly capacity: number
|
|
1343
|
+
readonly remaining_capacity: number
|
|
1344
|
+
readonly is_full: boolean
|
|
1345
|
+
|
|
1346
|
+
// Own fields of Gee-1.0.Gee.AbstractQueue
|
|
1347
|
+
|
|
1348
|
+
parent_instance: AbstractCollection & GObject.Object
|
|
1349
|
+
priv: any
|
|
1350
|
+
|
|
1351
|
+
// Owm methods of Gee-1.0.Gee.AbstractQueue
|
|
1352
|
+
|
|
1353
|
+
offer(element?: any | null): boolean
|
|
1354
|
+
peek(): any | null
|
|
1355
|
+
poll(): any | null
|
|
1356
|
+
drain(recipient: Collection, amount: number): number
|
|
1357
|
+
|
|
1358
|
+
// Own virtual methods of Gee-1.0.Gee.AbstractQueue
|
|
1359
|
+
|
|
1360
|
+
vfunc_offer(element?: any | null): boolean
|
|
1361
|
+
vfunc_peek(): any | null
|
|
1362
|
+
vfunc_poll(): any | null
|
|
1363
|
+
vfunc_drain(recipient: Collection, amount: number): number
|
|
1364
|
+
|
|
1365
|
+
// Class property signals of Gee-1.0.Gee.AbstractQueue
|
|
1366
|
+
|
|
1367
|
+
connect(sigName: "notify::capacity", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1368
|
+
connect_after(sigName: "notify::capacity", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1369
|
+
emit(sigName: "notify::capacity", ...args: any[]): void
|
|
1370
|
+
connect(sigName: "notify::remaining-capacity", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1371
|
+
connect_after(sigName: "notify::remaining-capacity", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1372
|
+
emit(sigName: "notify::remaining-capacity", ...args: any[]): void
|
|
1373
|
+
connect(sigName: "notify::is-full", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1374
|
+
connect_after(sigName: "notify::is-full", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1375
|
+
emit(sigName: "notify::is-full", ...args: any[]): void
|
|
1376
|
+
connect(sigName: "notify::size", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1377
|
+
connect_after(sigName: "notify::size", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1378
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1379
|
+
connect(sigName: "notify::is-empty", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1380
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1381
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1382
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1383
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1384
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1385
|
+
connect(sigName: "notify::element-type", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1386
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: AbstractQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1387
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
1388
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1389
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1390
|
+
emit(sigName: string, ...args: any[]): void
|
|
1391
|
+
disconnect(id: number): void
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
export class AbstractQueue extends AbstractCollection {
|
|
1395
|
+
|
|
1396
|
+
// Own properties of Gee-1.0.Gee.AbstractQueue
|
|
1397
|
+
|
|
1398
|
+
static name: string
|
|
1399
|
+
static $gtype: GObject.GType<AbstractQueue>
|
|
1400
|
+
|
|
1401
|
+
// Constructors of Gee-1.0.Gee.AbstractQueue
|
|
1402
|
+
|
|
1403
|
+
constructor(config?: AbstractQueue.ConstructorProperties)
|
|
1404
|
+
_init(config?: AbstractQueue.ConstructorProperties): void
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
export module AbstractSet {
|
|
1408
|
+
|
|
1409
|
+
// Constructor properties interface
|
|
1410
|
+
|
|
1411
|
+
export interface ConstructorProperties extends Set.ConstructorProperties, AbstractCollection.ConstructorProperties {
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
export interface AbstractSet extends Set {
|
|
1417
|
+
|
|
1418
|
+
// Own properties of Gee-1.0.Gee.AbstractSet
|
|
1419
|
+
|
|
1420
|
+
readonly read_only_view: any
|
|
1421
|
+
|
|
1422
|
+
// Own fields of Gee-1.0.Gee.AbstractSet
|
|
1423
|
+
|
|
1424
|
+
parent_instance: AbstractCollection & GObject.Object
|
|
1425
|
+
priv: any
|
|
1426
|
+
|
|
1427
|
+
// Class property signals of Gee-1.0.Gee.AbstractSet
|
|
1428
|
+
|
|
1429
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
|
|
1430
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
|
|
1431
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1432
|
+
connect(sigName: "notify::size", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
|
|
1433
|
+
connect_after(sigName: "notify::size", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
|
|
1434
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1435
|
+
connect(sigName: "notify::is-empty", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
|
|
1436
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
|
|
1437
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1438
|
+
connect(sigName: "notify::element-type", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
|
|
1439
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: AbstractSet, pspec: GObject.ParamSpec) => void)): number
|
|
1440
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
1441
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1442
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1443
|
+
emit(sigName: string, ...args: any[]): void
|
|
1444
|
+
disconnect(id: number): void
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
export class AbstractSet extends AbstractCollection {
|
|
1448
|
+
|
|
1449
|
+
// Own properties of Gee-1.0.Gee.AbstractSet
|
|
1450
|
+
|
|
1451
|
+
static name: string
|
|
1452
|
+
static $gtype: GObject.GType<AbstractSet>
|
|
1453
|
+
|
|
1454
|
+
// Constructors of Gee-1.0.Gee.AbstractSet
|
|
1455
|
+
|
|
1456
|
+
constructor(config?: AbstractSet.ConstructorProperties)
|
|
1457
|
+
_init(config?: AbstractSet.ConstructorProperties): void
|
|
1458
|
+
|
|
1459
|
+
// Conflicting static methods
|
|
1460
|
+
|
|
1461
|
+
static empty(): Set
|
|
1462
|
+
|
|
1463
|
+
// Overloads of empty
|
|
1464
|
+
|
|
1465
|
+
static empty(): Collection
|
|
1466
|
+
static empty(): Collection
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
export module ArrayList {
|
|
1470
|
+
|
|
1471
|
+
// Constructor properties interface
|
|
1472
|
+
|
|
1473
|
+
export interface ConstructorProperties extends AbstractList.ConstructorProperties {
|
|
1474
|
+
|
|
1475
|
+
// Own constructor properties of Gee-1.0.Gee.ArrayList
|
|
1476
|
+
|
|
1477
|
+
equal_func?: GLib.EqualFunc | null
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
export interface ArrayList {
|
|
1483
|
+
|
|
1484
|
+
// Own properties of Gee-1.0.Gee.ArrayList
|
|
1485
|
+
|
|
1486
|
+
equal_func: GLib.EqualFunc
|
|
1487
|
+
|
|
1488
|
+
// Conflicting properties
|
|
1489
|
+
|
|
1490
|
+
read_only_view: any
|
|
1491
|
+
|
|
1492
|
+
// Own fields of Gee-1.0.Gee.ArrayList
|
|
1493
|
+
|
|
1494
|
+
parent_instance: AbstractList & AbstractCollection & GObject.Object & GObject.Object
|
|
1495
|
+
priv: any
|
|
1496
|
+
|
|
1497
|
+
// Owm methods of Gee-1.0.Gee.ArrayList
|
|
1498
|
+
|
|
1499
|
+
sort_with_data(compare: GLib.CompareDataFunc): void
|
|
1500
|
+
|
|
1501
|
+
// Class property signals of Gee-1.0.Gee.ArrayList
|
|
1502
|
+
|
|
1503
|
+
connect(sigName: "notify::equal-func", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
|
|
1504
|
+
connect_after(sigName: "notify::equal-func", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
|
|
1505
|
+
emit(sigName: "notify::equal-func", ...args: any[]): void
|
|
1506
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
|
|
1507
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
|
|
1508
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1509
|
+
connect(sigName: "notify::size", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
|
|
1510
|
+
connect_after(sigName: "notify::size", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
|
|
1511
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1512
|
+
connect(sigName: "notify::is-empty", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
|
|
1513
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: ArrayList, pspec: GObject.ParamSpec) => void)): number
|
|
1514
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1515
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1516
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1517
|
+
emit(sigName: string, ...args: any[]): void
|
|
1518
|
+
disconnect(id: number): void
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
export class ArrayList extends AbstractList {
|
|
1522
|
+
|
|
1523
|
+
// Own properties of Gee-1.0.Gee.ArrayList
|
|
1524
|
+
|
|
1525
|
+
static name: string
|
|
1526
|
+
static $gtype: GObject.GType<ArrayList>
|
|
1527
|
+
|
|
1528
|
+
// Constructors of Gee-1.0.Gee.ArrayList
|
|
1529
|
+
|
|
1530
|
+
constructor(config?: ArrayList.ConstructorProperties)
|
|
1531
|
+
constructor(equal_func?: GLib.EqualFunc | null)
|
|
1532
|
+
static new(equal_func?: GLib.EqualFunc | null): ArrayList
|
|
1533
|
+
_init(config?: ArrayList.ConstructorProperties): void
|
|
1534
|
+
|
|
1535
|
+
// Conflicting static methods
|
|
1536
|
+
|
|
1537
|
+
static empty(): List
|
|
1538
|
+
|
|
1539
|
+
// Overloads of empty
|
|
1540
|
+
|
|
1541
|
+
static empty(): Collection
|
|
1542
|
+
static empty(): Collection
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
export module HashMap {
|
|
1546
|
+
|
|
1547
|
+
// Constructor properties interface
|
|
1548
|
+
|
|
1549
|
+
export interface ConstructorProperties extends AbstractMap.ConstructorProperties {
|
|
1550
|
+
|
|
1551
|
+
// Own constructor properties of Gee-1.0.Gee.HashMap
|
|
1552
|
+
|
|
1553
|
+
key_hash_func?: GLib.HashFunc | null
|
|
1554
|
+
key_equal_func?: GLib.EqualFunc | null
|
|
1555
|
+
value_equal_func?: GLib.EqualFunc | null
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
export interface HashMap {
|
|
1561
|
+
|
|
1562
|
+
// Own properties of Gee-1.0.Gee.HashMap
|
|
1563
|
+
|
|
1564
|
+
key_hash_func: GLib.HashFunc
|
|
1565
|
+
key_equal_func: GLib.EqualFunc
|
|
1566
|
+
value_equal_func: GLib.EqualFunc
|
|
1567
|
+
|
|
1568
|
+
// Own fields of Gee-1.0.Gee.HashMap
|
|
1569
|
+
|
|
1570
|
+
parent_instance: AbstractMap & GObject.Object
|
|
1571
|
+
priv: any
|
|
1572
|
+
|
|
1573
|
+
// Class property signals of Gee-1.0.Gee.HashMap
|
|
1574
|
+
|
|
1575
|
+
connect(sigName: "notify::key-hash-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1576
|
+
connect_after(sigName: "notify::key-hash-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1577
|
+
emit(sigName: "notify::key-hash-func", ...args: any[]): void
|
|
1578
|
+
connect(sigName: "notify::key-equal-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1579
|
+
connect_after(sigName: "notify::key-equal-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1580
|
+
emit(sigName: "notify::key-equal-func", ...args: any[]): void
|
|
1581
|
+
connect(sigName: "notify::value-equal-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1582
|
+
connect_after(sigName: "notify::value-equal-func", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1583
|
+
emit(sigName: "notify::value-equal-func", ...args: any[]): void
|
|
1584
|
+
connect(sigName: "notify::size", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1585
|
+
connect_after(sigName: "notify::size", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1586
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1587
|
+
connect(sigName: "notify::is-empty", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1588
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1589
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1590
|
+
connect(sigName: "notify::keys", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1591
|
+
connect_after(sigName: "notify::keys", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1592
|
+
emit(sigName: "notify::keys", ...args: any[]): void
|
|
1593
|
+
connect(sigName: "notify::values", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1594
|
+
connect_after(sigName: "notify::values", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1595
|
+
emit(sigName: "notify::values", ...args: any[]): void
|
|
1596
|
+
connect(sigName: "notify::entries", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1597
|
+
connect_after(sigName: "notify::entries", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1598
|
+
emit(sigName: "notify::entries", ...args: any[]): void
|
|
1599
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1600
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: HashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1601
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1602
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1603
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1604
|
+
emit(sigName: string, ...args: any[]): void
|
|
1605
|
+
disconnect(id: number): void
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
export class HashMap extends AbstractMap {
|
|
1609
|
+
|
|
1610
|
+
// Own properties of Gee-1.0.Gee.HashMap
|
|
1611
|
+
|
|
1612
|
+
static name: string
|
|
1613
|
+
static $gtype: GObject.GType<HashMap>
|
|
1614
|
+
|
|
1615
|
+
// Constructors of Gee-1.0.Gee.HashMap
|
|
1616
|
+
|
|
1617
|
+
constructor(config?: HashMap.ConstructorProperties)
|
|
1618
|
+
constructor(key_hash_func?: GLib.HashFunc | null, key_equal_func?: GLib.EqualFunc | null, value_equal_func?: GLib.EqualFunc | null)
|
|
1619
|
+
static new(key_hash_func?: GLib.HashFunc | null, key_equal_func?: GLib.EqualFunc | null, value_equal_func?: GLib.EqualFunc | null): HashMap
|
|
1620
|
+
_init(config?: HashMap.ConstructorProperties): void
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
export module HashMultiMap {
|
|
1624
|
+
|
|
1625
|
+
// Constructor properties interface
|
|
1626
|
+
|
|
1627
|
+
export interface ConstructorProperties extends AbstractMultiMap.ConstructorProperties {
|
|
1628
|
+
|
|
1629
|
+
// Own constructor properties of Gee-1.0.Gee.HashMultiMap
|
|
1630
|
+
|
|
1631
|
+
value_hash_func?: GLib.HashFunc | null
|
|
1632
|
+
value_equal_func?: GLib.EqualFunc | null
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
export interface HashMultiMap {
|
|
1638
|
+
|
|
1639
|
+
// Own properties of Gee-1.0.Gee.HashMultiMap
|
|
1640
|
+
|
|
1641
|
+
readonly key_hash_func: GLib.HashFunc
|
|
1642
|
+
readonly key_equal_func: GLib.EqualFunc
|
|
1643
|
+
value_hash_func: GLib.HashFunc
|
|
1644
|
+
value_equal_func: GLib.EqualFunc
|
|
1645
|
+
|
|
1646
|
+
// Own fields of Gee-1.0.Gee.HashMultiMap
|
|
1647
|
+
|
|
1648
|
+
parent_instance: AbstractMultiMap & GObject.Object
|
|
1649
|
+
priv: any
|
|
1650
|
+
|
|
1651
|
+
// Class property signals of Gee-1.0.Gee.HashMultiMap
|
|
1652
|
+
|
|
1653
|
+
connect(sigName: "notify::key-hash-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
1654
|
+
connect_after(sigName: "notify::key-hash-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
1655
|
+
emit(sigName: "notify::key-hash-func", ...args: any[]): void
|
|
1656
|
+
connect(sigName: "notify::key-equal-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
1657
|
+
connect_after(sigName: "notify::key-equal-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
1658
|
+
emit(sigName: "notify::key-equal-func", ...args: any[]): void
|
|
1659
|
+
connect(sigName: "notify::value-hash-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
1660
|
+
connect_after(sigName: "notify::value-hash-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
1661
|
+
emit(sigName: "notify::value-hash-func", ...args: any[]): void
|
|
1662
|
+
connect(sigName: "notify::value-equal-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
1663
|
+
connect_after(sigName: "notify::value-equal-func", callback: (($obj: HashMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
1664
|
+
emit(sigName: "notify::value-equal-func", ...args: any[]): void
|
|
1665
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1666
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1667
|
+
emit(sigName: string, ...args: any[]): void
|
|
1668
|
+
disconnect(id: number): void
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
export class HashMultiMap extends AbstractMultiMap {
|
|
1672
|
+
|
|
1673
|
+
// Own properties of Gee-1.0.Gee.HashMultiMap
|
|
1674
|
+
|
|
1675
|
+
static name: string
|
|
1676
|
+
static $gtype: GObject.GType<HashMultiMap>
|
|
1677
|
+
|
|
1678
|
+
// Constructors of Gee-1.0.Gee.HashMultiMap
|
|
1679
|
+
|
|
1680
|
+
constructor(config?: HashMultiMap.ConstructorProperties)
|
|
1681
|
+
constructor(key_hash_func?: GLib.HashFunc | null, key_equal_func?: GLib.EqualFunc | null, value_hash_func?: GLib.HashFunc | null, value_equal_func?: GLib.EqualFunc | null)
|
|
1682
|
+
static new(key_hash_func?: GLib.HashFunc | null, key_equal_func?: GLib.EqualFunc | null, value_hash_func?: GLib.HashFunc | null, value_equal_func?: GLib.EqualFunc | null): HashMultiMap
|
|
1683
|
+
_init(config?: HashMultiMap.ConstructorProperties): void
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
export module HashMultiSet {
|
|
1687
|
+
|
|
1688
|
+
// Constructor properties interface
|
|
1689
|
+
|
|
1690
|
+
export interface ConstructorProperties extends AbstractMultiSet.ConstructorProperties {
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
export interface HashMultiSet {
|
|
1696
|
+
|
|
1697
|
+
// Own properties of Gee-1.0.Gee.HashMultiSet
|
|
1698
|
+
|
|
1699
|
+
readonly hash_func: GLib.HashFunc
|
|
1700
|
+
readonly equal_func: GLib.EqualFunc
|
|
1701
|
+
|
|
1702
|
+
// Own fields of Gee-1.0.Gee.HashMultiSet
|
|
1703
|
+
|
|
1704
|
+
parent_instance: AbstractMultiSet & AbstractCollection & GObject.Object & GObject.Object
|
|
1705
|
+
priv: any
|
|
1706
|
+
|
|
1707
|
+
// Class property signals of Gee-1.0.Gee.HashMultiSet
|
|
1708
|
+
|
|
1709
|
+
connect(sigName: "notify::hash-func", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1710
|
+
connect_after(sigName: "notify::hash-func", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1711
|
+
emit(sigName: "notify::hash-func", ...args: any[]): void
|
|
1712
|
+
connect(sigName: "notify::equal-func", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1713
|
+
connect_after(sigName: "notify::equal-func", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1714
|
+
emit(sigName: "notify::equal-func", ...args: any[]): void
|
|
1715
|
+
connect(sigName: "notify::size", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1716
|
+
connect_after(sigName: "notify::size", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1717
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1718
|
+
connect(sigName: "notify::is-empty", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1719
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1720
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1721
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1722
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: HashMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
1723
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1724
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1725
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1726
|
+
emit(sigName: string, ...args: any[]): void
|
|
1727
|
+
disconnect(id: number): void
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
export class HashMultiSet extends AbstractMultiSet {
|
|
1731
|
+
|
|
1732
|
+
// Own properties of Gee-1.0.Gee.HashMultiSet
|
|
1733
|
+
|
|
1734
|
+
static name: string
|
|
1735
|
+
static $gtype: GObject.GType<HashMultiSet>
|
|
1736
|
+
|
|
1737
|
+
// Constructors of Gee-1.0.Gee.HashMultiSet
|
|
1738
|
+
|
|
1739
|
+
constructor(config?: HashMultiSet.ConstructorProperties)
|
|
1740
|
+
constructor(hash_func?: GLib.HashFunc | null, equal_func?: GLib.EqualFunc | null)
|
|
1741
|
+
static new(hash_func?: GLib.HashFunc | null, equal_func?: GLib.EqualFunc | null): HashMultiSet
|
|
1742
|
+
_init(config?: HashMultiSet.ConstructorProperties): void
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
export module HashSet {
|
|
1746
|
+
|
|
1747
|
+
// Constructor properties interface
|
|
1748
|
+
|
|
1749
|
+
export interface ConstructorProperties extends AbstractSet.ConstructorProperties {
|
|
1750
|
+
|
|
1751
|
+
// Own constructor properties of Gee-1.0.Gee.HashSet
|
|
1752
|
+
|
|
1753
|
+
hash_func?: GLib.HashFunc | null
|
|
1754
|
+
equal_func?: GLib.EqualFunc | null
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
export interface HashSet {
|
|
1760
|
+
|
|
1761
|
+
// Own properties of Gee-1.0.Gee.HashSet
|
|
1762
|
+
|
|
1763
|
+
hash_func: GLib.HashFunc
|
|
1764
|
+
equal_func: GLib.EqualFunc
|
|
1765
|
+
|
|
1766
|
+
// Conflicting properties
|
|
1767
|
+
|
|
1768
|
+
read_only_view: any
|
|
1769
|
+
|
|
1770
|
+
// Own fields of Gee-1.0.Gee.HashSet
|
|
1771
|
+
|
|
1772
|
+
parent_instance: AbstractSet & AbstractCollection & GObject.Object & GObject.Object
|
|
1773
|
+
priv: any
|
|
1774
|
+
|
|
1775
|
+
// Class property signals of Gee-1.0.Gee.HashSet
|
|
1776
|
+
|
|
1777
|
+
connect(sigName: "notify::hash-func", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
|
|
1778
|
+
connect_after(sigName: "notify::hash-func", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
|
|
1779
|
+
emit(sigName: "notify::hash-func", ...args: any[]): void
|
|
1780
|
+
connect(sigName: "notify::equal-func", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
|
|
1781
|
+
connect_after(sigName: "notify::equal-func", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
|
|
1782
|
+
emit(sigName: "notify::equal-func", ...args: any[]): void
|
|
1783
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
|
|
1784
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
|
|
1785
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1786
|
+
connect(sigName: "notify::size", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
|
|
1787
|
+
connect_after(sigName: "notify::size", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
|
|
1788
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1789
|
+
connect(sigName: "notify::is-empty", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
|
|
1790
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: HashSet, pspec: GObject.ParamSpec) => void)): number
|
|
1791
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1792
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1793
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1794
|
+
emit(sigName: string, ...args: any[]): void
|
|
1795
|
+
disconnect(id: number): void
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
export class HashSet extends AbstractSet {
|
|
1799
|
+
|
|
1800
|
+
// Own properties of Gee-1.0.Gee.HashSet
|
|
1801
|
+
|
|
1802
|
+
static name: string
|
|
1803
|
+
static $gtype: GObject.GType<HashSet>
|
|
1804
|
+
|
|
1805
|
+
// Constructors of Gee-1.0.Gee.HashSet
|
|
1806
|
+
|
|
1807
|
+
constructor(config?: HashSet.ConstructorProperties)
|
|
1808
|
+
constructor(hash_func?: GLib.HashFunc | null, equal_func?: GLib.EqualFunc | null)
|
|
1809
|
+
static new(hash_func?: GLib.HashFunc | null, equal_func?: GLib.EqualFunc | null): HashSet
|
|
1810
|
+
_init(config?: HashSet.ConstructorProperties): void
|
|
1811
|
+
|
|
1812
|
+
// Conflicting static methods
|
|
1813
|
+
|
|
1814
|
+
static empty(): Set
|
|
1815
|
+
|
|
1816
|
+
// Overloads of empty
|
|
1817
|
+
|
|
1818
|
+
static empty(): Collection
|
|
1819
|
+
static empty(): Collection
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
export module LinkedList {
|
|
1823
|
+
|
|
1824
|
+
// Constructor properties interface
|
|
1825
|
+
|
|
1826
|
+
export interface ConstructorProperties extends Queue.ConstructorProperties, Deque.ConstructorProperties, AbstractList.ConstructorProperties {
|
|
1827
|
+
|
|
1828
|
+
// Own constructor properties of Gee-1.0.Gee.LinkedList
|
|
1829
|
+
|
|
1830
|
+
equal_func?: GLib.EqualFunc | null
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
export interface LinkedList extends Queue, Deque {
|
|
1836
|
+
|
|
1837
|
+
// Own properties of Gee-1.0.Gee.LinkedList
|
|
1838
|
+
|
|
1839
|
+
equal_func: GLib.EqualFunc
|
|
1840
|
+
|
|
1841
|
+
// Conflicting properties
|
|
1842
|
+
|
|
1843
|
+
read_only_view: any
|
|
1844
|
+
|
|
1845
|
+
// Own fields of Gee-1.0.Gee.LinkedList
|
|
1846
|
+
|
|
1847
|
+
parent_instance: AbstractList & AbstractCollection & GObject.Object & GObject.Object
|
|
1848
|
+
priv: any
|
|
1849
|
+
|
|
1850
|
+
// Class property signals of Gee-1.0.Gee.LinkedList
|
|
1851
|
+
|
|
1852
|
+
connect(sigName: "notify::equal-func", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1853
|
+
connect_after(sigName: "notify::equal-func", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1854
|
+
emit(sigName: "notify::equal-func", ...args: any[]): void
|
|
1855
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1856
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1857
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1858
|
+
connect(sigName: "notify::size", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1859
|
+
connect_after(sigName: "notify::size", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1860
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1861
|
+
connect(sigName: "notify::is-empty", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1862
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1863
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1864
|
+
connect(sigName: "notify::capacity", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1865
|
+
connect_after(sigName: "notify::capacity", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1866
|
+
emit(sigName: "notify::capacity", ...args: any[]): void
|
|
1867
|
+
connect(sigName: "notify::remaining-capacity", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1868
|
+
connect_after(sigName: "notify::remaining-capacity", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1869
|
+
emit(sigName: "notify::remaining-capacity", ...args: any[]): void
|
|
1870
|
+
connect(sigName: "notify::is-full", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1871
|
+
connect_after(sigName: "notify::is-full", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1872
|
+
emit(sigName: "notify::is-full", ...args: any[]): void
|
|
1873
|
+
connect(sigName: "notify::element-type", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1874
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: LinkedList, pspec: GObject.ParamSpec) => void)): number
|
|
1875
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
1876
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1877
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1878
|
+
emit(sigName: string, ...args: any[]): void
|
|
1879
|
+
disconnect(id: number): void
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
export class LinkedList extends AbstractList {
|
|
1883
|
+
|
|
1884
|
+
// Own properties of Gee-1.0.Gee.LinkedList
|
|
1885
|
+
|
|
1886
|
+
static name: string
|
|
1887
|
+
static $gtype: GObject.GType<LinkedList>
|
|
1888
|
+
|
|
1889
|
+
// Constructors of Gee-1.0.Gee.LinkedList
|
|
1890
|
+
|
|
1891
|
+
constructor(config?: LinkedList.ConstructorProperties)
|
|
1892
|
+
constructor(equal_func?: GLib.EqualFunc | null)
|
|
1893
|
+
static new(equal_func?: GLib.EqualFunc | null): LinkedList
|
|
1894
|
+
_init(config?: LinkedList.ConstructorProperties): void
|
|
1895
|
+
|
|
1896
|
+
// Conflicting static methods
|
|
1897
|
+
|
|
1898
|
+
static empty(): Collection
|
|
1899
|
+
static empty(): List
|
|
1900
|
+
|
|
1901
|
+
// Overloads of empty
|
|
1902
|
+
|
|
1903
|
+
static empty(): Collection
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
export module PriorityQueue {
|
|
1907
|
+
|
|
1908
|
+
// Constructor properties interface
|
|
1909
|
+
|
|
1910
|
+
export interface ConstructorProperties extends AbstractQueue.ConstructorProperties {
|
|
1911
|
+
|
|
1912
|
+
// Own constructor properties of Gee-1.0.Gee.PriorityQueue
|
|
1913
|
+
|
|
1914
|
+
compare_func?: GLib.CompareFunc | null
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
export interface PriorityQueue {
|
|
1920
|
+
|
|
1921
|
+
// Own properties of Gee-1.0.Gee.PriorityQueue
|
|
1922
|
+
|
|
1923
|
+
compare_func: GLib.CompareFunc
|
|
1924
|
+
|
|
1925
|
+
// Own fields of Gee-1.0.Gee.PriorityQueue
|
|
1926
|
+
|
|
1927
|
+
parent_instance: AbstractQueue & AbstractCollection & GObject.Object & GObject.Object
|
|
1928
|
+
priv: any
|
|
1929
|
+
|
|
1930
|
+
// Class property signals of Gee-1.0.Gee.PriorityQueue
|
|
1931
|
+
|
|
1932
|
+
connect(sigName: "notify::compare-func", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1933
|
+
connect_after(sigName: "notify::compare-func", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1934
|
+
emit(sigName: "notify::compare-func", ...args: any[]): void
|
|
1935
|
+
connect(sigName: "notify::capacity", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1936
|
+
connect_after(sigName: "notify::capacity", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1937
|
+
emit(sigName: "notify::capacity", ...args: any[]): void
|
|
1938
|
+
connect(sigName: "notify::remaining-capacity", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1939
|
+
connect_after(sigName: "notify::remaining-capacity", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1940
|
+
emit(sigName: "notify::remaining-capacity", ...args: any[]): void
|
|
1941
|
+
connect(sigName: "notify::is-full", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1942
|
+
connect_after(sigName: "notify::is-full", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1943
|
+
emit(sigName: "notify::is-full", ...args: any[]): void
|
|
1944
|
+
connect(sigName: "notify::size", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1945
|
+
connect_after(sigName: "notify::size", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1946
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1947
|
+
connect(sigName: "notify::is-empty", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1948
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1949
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
1950
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1951
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: PriorityQueue, pspec: GObject.ParamSpec) => void)): number
|
|
1952
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1953
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1954
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1955
|
+
emit(sigName: string, ...args: any[]): void
|
|
1956
|
+
disconnect(id: number): void
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
export class PriorityQueue extends AbstractQueue {
|
|
1960
|
+
|
|
1961
|
+
// Own properties of Gee-1.0.Gee.PriorityQueue
|
|
1962
|
+
|
|
1963
|
+
static name: string
|
|
1964
|
+
static $gtype: GObject.GType<PriorityQueue>
|
|
1965
|
+
|
|
1966
|
+
// Constructors of Gee-1.0.Gee.PriorityQueue
|
|
1967
|
+
|
|
1968
|
+
constructor(config?: PriorityQueue.ConstructorProperties)
|
|
1969
|
+
constructor(compare_func?: GLib.CompareFunc | null)
|
|
1970
|
+
static new(compare_func?: GLib.CompareFunc | null): PriorityQueue
|
|
1971
|
+
_init(config?: PriorityQueue.ConstructorProperties): void
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
export module TreeMap {
|
|
1975
|
+
|
|
1976
|
+
// Constructor properties interface
|
|
1977
|
+
|
|
1978
|
+
export interface ConstructorProperties extends AbstractMap.ConstructorProperties {
|
|
1979
|
+
|
|
1980
|
+
// Own constructor properties of Gee-1.0.Gee.TreeMap
|
|
1981
|
+
|
|
1982
|
+
key_compare_func?: GLib.CompareFunc | null
|
|
1983
|
+
value_equal_func?: GLib.EqualFunc | null
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
export interface TreeMap {
|
|
1989
|
+
|
|
1990
|
+
// Own properties of Gee-1.0.Gee.TreeMap
|
|
1991
|
+
|
|
1992
|
+
key_compare_func: GLib.CompareFunc
|
|
1993
|
+
value_equal_func: GLib.EqualFunc
|
|
1994
|
+
|
|
1995
|
+
// Own fields of Gee-1.0.Gee.TreeMap
|
|
1996
|
+
|
|
1997
|
+
parent_instance: AbstractMap & GObject.Object
|
|
1998
|
+
priv: any
|
|
1999
|
+
|
|
2000
|
+
// Class property signals of Gee-1.0.Gee.TreeMap
|
|
2001
|
+
|
|
2002
|
+
connect(sigName: "notify::key-compare-func", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2003
|
+
connect_after(sigName: "notify::key-compare-func", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2004
|
+
emit(sigName: "notify::key-compare-func", ...args: any[]): void
|
|
2005
|
+
connect(sigName: "notify::value-equal-func", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2006
|
+
connect_after(sigName: "notify::value-equal-func", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2007
|
+
emit(sigName: "notify::value-equal-func", ...args: any[]): void
|
|
2008
|
+
connect(sigName: "notify::size", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2009
|
+
connect_after(sigName: "notify::size", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2010
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
2011
|
+
connect(sigName: "notify::is-empty", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2012
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2013
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
2014
|
+
connect(sigName: "notify::keys", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2015
|
+
connect_after(sigName: "notify::keys", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2016
|
+
emit(sigName: "notify::keys", ...args: any[]): void
|
|
2017
|
+
connect(sigName: "notify::values", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2018
|
+
connect_after(sigName: "notify::values", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2019
|
+
emit(sigName: "notify::values", ...args: any[]): void
|
|
2020
|
+
connect(sigName: "notify::entries", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2021
|
+
connect_after(sigName: "notify::entries", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2022
|
+
emit(sigName: "notify::entries", ...args: any[]): void
|
|
2023
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2024
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: TreeMap, pspec: GObject.ParamSpec) => void)): number
|
|
2025
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
2026
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2027
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2028
|
+
emit(sigName: string, ...args: any[]): void
|
|
2029
|
+
disconnect(id: number): void
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
export class TreeMap extends AbstractMap {
|
|
2033
|
+
|
|
2034
|
+
// Own properties of Gee-1.0.Gee.TreeMap
|
|
2035
|
+
|
|
2036
|
+
static name: string
|
|
2037
|
+
static $gtype: GObject.GType<TreeMap>
|
|
2038
|
+
|
|
2039
|
+
// Constructors of Gee-1.0.Gee.TreeMap
|
|
2040
|
+
|
|
2041
|
+
constructor(config?: TreeMap.ConstructorProperties)
|
|
2042
|
+
constructor(key_compare_func?: GLib.CompareFunc | null, value_equal_func?: GLib.EqualFunc | null)
|
|
2043
|
+
static new(key_compare_func?: GLib.CompareFunc | null, value_equal_func?: GLib.EqualFunc | null): TreeMap
|
|
2044
|
+
_init(config?: TreeMap.ConstructorProperties): void
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
export module TreeMultiMap {
|
|
2048
|
+
|
|
2049
|
+
// Constructor properties interface
|
|
2050
|
+
|
|
2051
|
+
export interface ConstructorProperties extends AbstractMultiMap.ConstructorProperties {
|
|
2052
|
+
|
|
2053
|
+
// Own constructor properties of Gee-1.0.Gee.TreeMultiMap
|
|
2054
|
+
|
|
2055
|
+
value_compare_func?: GLib.CompareFunc | null
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
export interface TreeMultiMap {
|
|
2061
|
+
|
|
2062
|
+
// Own properties of Gee-1.0.Gee.TreeMultiMap
|
|
2063
|
+
|
|
2064
|
+
readonly key_compare_func: GLib.CompareFunc
|
|
2065
|
+
value_compare_func: GLib.CompareFunc
|
|
2066
|
+
|
|
2067
|
+
// Own fields of Gee-1.0.Gee.TreeMultiMap
|
|
2068
|
+
|
|
2069
|
+
parent_instance: AbstractMultiMap & GObject.Object
|
|
2070
|
+
priv: any
|
|
2071
|
+
|
|
2072
|
+
// Class property signals of Gee-1.0.Gee.TreeMultiMap
|
|
2073
|
+
|
|
2074
|
+
connect(sigName: "notify::key-compare-func", callback: (($obj: TreeMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
2075
|
+
connect_after(sigName: "notify::key-compare-func", callback: (($obj: TreeMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
2076
|
+
emit(sigName: "notify::key-compare-func", ...args: any[]): void
|
|
2077
|
+
connect(sigName: "notify::value-compare-func", callback: (($obj: TreeMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
2078
|
+
connect_after(sigName: "notify::value-compare-func", callback: (($obj: TreeMultiMap, pspec: GObject.ParamSpec) => void)): number
|
|
2079
|
+
emit(sigName: "notify::value-compare-func", ...args: any[]): void
|
|
2080
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2081
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2082
|
+
emit(sigName: string, ...args: any[]): void
|
|
2083
|
+
disconnect(id: number): void
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
export class TreeMultiMap extends AbstractMultiMap {
|
|
2087
|
+
|
|
2088
|
+
// Own properties of Gee-1.0.Gee.TreeMultiMap
|
|
2089
|
+
|
|
2090
|
+
static name: string
|
|
2091
|
+
static $gtype: GObject.GType<TreeMultiMap>
|
|
2092
|
+
|
|
2093
|
+
// Constructors of Gee-1.0.Gee.TreeMultiMap
|
|
2094
|
+
|
|
2095
|
+
constructor(config?: TreeMultiMap.ConstructorProperties)
|
|
2096
|
+
constructor(key_compare_func?: GLib.CompareFunc | null, value_compare_func?: GLib.CompareFunc | null)
|
|
2097
|
+
static new(key_compare_func?: GLib.CompareFunc | null, value_compare_func?: GLib.CompareFunc | null): TreeMultiMap
|
|
2098
|
+
_init(config?: TreeMultiMap.ConstructorProperties): void
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
export module TreeMultiSet {
|
|
2102
|
+
|
|
2103
|
+
// Constructor properties interface
|
|
2104
|
+
|
|
2105
|
+
export interface ConstructorProperties extends AbstractMultiSet.ConstructorProperties {
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
export interface TreeMultiSet {
|
|
2111
|
+
|
|
2112
|
+
// Own properties of Gee-1.0.Gee.TreeMultiSet
|
|
2113
|
+
|
|
2114
|
+
readonly compare_func: GLib.CompareFunc
|
|
2115
|
+
|
|
2116
|
+
// Own fields of Gee-1.0.Gee.TreeMultiSet
|
|
2117
|
+
|
|
2118
|
+
parent_instance: AbstractMultiSet & AbstractCollection & GObject.Object & GObject.Object
|
|
2119
|
+
priv: any
|
|
2120
|
+
|
|
2121
|
+
// Class property signals of Gee-1.0.Gee.TreeMultiSet
|
|
2122
|
+
|
|
2123
|
+
connect(sigName: "notify::compare-func", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
2124
|
+
connect_after(sigName: "notify::compare-func", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
2125
|
+
emit(sigName: "notify::compare-func", ...args: any[]): void
|
|
2126
|
+
connect(sigName: "notify::size", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
2127
|
+
connect_after(sigName: "notify::size", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
2128
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
2129
|
+
connect(sigName: "notify::is-empty", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
2130
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
2131
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
2132
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
2133
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: TreeMultiSet, pspec: GObject.ParamSpec) => void)): number
|
|
2134
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
2135
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2136
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2137
|
+
emit(sigName: string, ...args: any[]): void
|
|
2138
|
+
disconnect(id: number): void
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
export class TreeMultiSet extends AbstractMultiSet {
|
|
2142
|
+
|
|
2143
|
+
// Own properties of Gee-1.0.Gee.TreeMultiSet
|
|
2144
|
+
|
|
2145
|
+
static name: string
|
|
2146
|
+
static $gtype: GObject.GType<TreeMultiSet>
|
|
2147
|
+
|
|
2148
|
+
// Constructors of Gee-1.0.Gee.TreeMultiSet
|
|
2149
|
+
|
|
2150
|
+
constructor(config?: TreeMultiSet.ConstructorProperties)
|
|
2151
|
+
constructor(compare_func?: GLib.CompareFunc | null)
|
|
2152
|
+
static new(compare_func?: GLib.CompareFunc | null): TreeMultiSet
|
|
2153
|
+
_init(config?: TreeMultiSet.ConstructorProperties): void
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
export module TreeSet {
|
|
2157
|
+
|
|
2158
|
+
// Constructor properties interface
|
|
2159
|
+
|
|
2160
|
+
export interface ConstructorProperties extends SortedSet.ConstructorProperties, AbstractSet.ConstructorProperties {
|
|
2161
|
+
|
|
2162
|
+
// Own constructor properties of Gee-1.0.Gee.TreeSet
|
|
2163
|
+
|
|
2164
|
+
compare_func?: GLib.CompareFunc | null
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2169
|
+
export interface TreeSet extends SortedSet {
|
|
2170
|
+
|
|
2171
|
+
// Own properties of Gee-1.0.Gee.TreeSet
|
|
2172
|
+
|
|
2173
|
+
compare_func: GLib.CompareFunc
|
|
2174
|
+
|
|
2175
|
+
// Conflicting properties
|
|
2176
|
+
|
|
2177
|
+
read_only_view: any
|
|
2178
|
+
|
|
2179
|
+
// Own fields of Gee-1.0.Gee.TreeSet
|
|
2180
|
+
|
|
2181
|
+
parent_instance: AbstractSet & AbstractCollection & GObject.Object & GObject.Object
|
|
2182
|
+
priv: any
|
|
2183
|
+
|
|
2184
|
+
// Class property signals of Gee-1.0.Gee.TreeSet
|
|
2185
|
+
|
|
2186
|
+
connect(sigName: "notify::compare-func", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
|
|
2187
|
+
connect_after(sigName: "notify::compare-func", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
|
|
2188
|
+
emit(sigName: "notify::compare-func", ...args: any[]): void
|
|
2189
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
|
|
2190
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
|
|
2191
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
2192
|
+
connect(sigName: "notify::size", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
|
|
2193
|
+
connect_after(sigName: "notify::size", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
|
|
2194
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
2195
|
+
connect(sigName: "notify::is-empty", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
|
|
2196
|
+
connect_after(sigName: "notify::is-empty", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
|
|
2197
|
+
emit(sigName: "notify::is-empty", ...args: any[]): void
|
|
2198
|
+
connect(sigName: "notify::element-type", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
|
|
2199
|
+
connect_after(sigName: "notify::element-type", callback: (($obj: TreeSet, pspec: GObject.ParamSpec) => void)): number
|
|
2200
|
+
emit(sigName: "notify::element-type", ...args: any[]): void
|
|
2201
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2202
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2203
|
+
emit(sigName: string, ...args: any[]): void
|
|
2204
|
+
disconnect(id: number): void
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
export class TreeSet extends AbstractSet {
|
|
2208
|
+
|
|
2209
|
+
// Own properties of Gee-1.0.Gee.TreeSet
|
|
2210
|
+
|
|
2211
|
+
static name: string
|
|
2212
|
+
static $gtype: GObject.GType<TreeSet>
|
|
2213
|
+
|
|
2214
|
+
// Constructors of Gee-1.0.Gee.TreeSet
|
|
2215
|
+
|
|
2216
|
+
constructor(config?: TreeSet.ConstructorProperties)
|
|
2217
|
+
constructor(compare_func?: GLib.CompareFunc | null)
|
|
2218
|
+
static new(compare_func?: GLib.CompareFunc | null): TreeSet
|
|
2219
|
+
_init(config?: TreeSet.ConstructorProperties): void
|
|
2220
|
+
|
|
2221
|
+
// Conflicting static methods
|
|
2222
|
+
|
|
2223
|
+
static empty(): Set
|
|
2224
|
+
|
|
2225
|
+
// Overloads of empty
|
|
2226
|
+
|
|
2227
|
+
static empty(): Collection
|
|
2228
|
+
static empty(): Collection
|
|
2229
|
+
}
|
|
2230
|
+
|
|
2231
|
+
export module MapEntry {
|
|
2232
|
+
|
|
2233
|
+
// Constructor properties interface
|
|
2234
|
+
|
|
2235
|
+
export interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
2236
|
+
|
|
2237
|
+
// Own constructor properties of Gee-1.0.Gee.MapEntry
|
|
2238
|
+
|
|
2239
|
+
value?: any | null
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
export interface MapEntry {
|
|
2245
|
+
|
|
2246
|
+
// Own properties of Gee-1.0.Gee.MapEntry
|
|
2247
|
+
|
|
2248
|
+
readonly key: any
|
|
2249
|
+
value: any
|
|
2250
|
+
|
|
2251
|
+
// Own fields of Gee-1.0.Gee.MapEntry
|
|
2252
|
+
|
|
2253
|
+
parent_instance: GObject.Object
|
|
2254
|
+
priv: EntryPrivate
|
|
2255
|
+
|
|
2256
|
+
// Class property signals of Gee-1.0.Gee.MapEntry
|
|
2257
|
+
|
|
2258
|
+
connect(sigName: "notify::key", callback: (($obj: MapEntry, pspec: GObject.ParamSpec) => void)): number
|
|
2259
|
+
connect_after(sigName: "notify::key", callback: (($obj: MapEntry, pspec: GObject.ParamSpec) => void)): number
|
|
2260
|
+
emit(sigName: "notify::key", ...args: any[]): void
|
|
2261
|
+
connect(sigName: "notify::value", callback: (($obj: MapEntry, pspec: GObject.ParamSpec) => void)): number
|
|
2262
|
+
connect_after(sigName: "notify::value", callback: (($obj: MapEntry, pspec: GObject.ParamSpec) => void)): number
|
|
2263
|
+
emit(sigName: "notify::value", ...args: any[]): void
|
|
2264
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2265
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2266
|
+
emit(sigName: string, ...args: any[]): void
|
|
2267
|
+
disconnect(id: number): void
|
|
2268
|
+
}
|
|
2269
|
+
|
|
2270
|
+
export class MapEntry extends GObject.Object {
|
|
2271
|
+
|
|
2272
|
+
// Own properties of Gee-1.0.Gee.MapEntry
|
|
2273
|
+
|
|
2274
|
+
static name: string
|
|
2275
|
+
static $gtype: GObject.GType<MapEntry>
|
|
2276
|
+
|
|
2277
|
+
// Constructors of Gee-1.0.Gee.MapEntry
|
|
2278
|
+
|
|
2279
|
+
constructor(config?: MapEntry.ConstructorProperties)
|
|
2280
|
+
_init(config?: MapEntry.ConstructorProperties): void
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
export interface AbstractCollectionClass {
|
|
2284
|
+
|
|
2285
|
+
// Own fields of Gee-1.0.Gee.AbstractCollectionClass
|
|
2286
|
+
|
|
2287
|
+
parent_class: GObject.ObjectClass
|
|
2288
|
+
contains: (self: AbstractCollection, item?: any | null) => boolean
|
|
2289
|
+
add: (self: AbstractCollection, item?: any | null) => boolean
|
|
2290
|
+
remove: (self: AbstractCollection, item?: any | null) => boolean
|
|
2291
|
+
clear: (self: AbstractCollection) => void
|
|
2292
|
+
to_array: (self: AbstractCollection) => any[]
|
|
2293
|
+
add_all: (self: AbstractCollection, collection: Collection) => boolean
|
|
2294
|
+
contains_all: (self: AbstractCollection, collection: Collection) => boolean
|
|
2295
|
+
remove_all: (self: AbstractCollection, collection: Collection) => boolean
|
|
2296
|
+
retain_all: (self: AbstractCollection, collection: Collection) => boolean
|
|
2297
|
+
iterator: (self: AbstractCollection) => Iterator
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
export abstract class AbstractCollectionClass {
|
|
2301
|
+
|
|
2302
|
+
// Own properties of Gee-1.0.Gee.AbstractCollectionClass
|
|
2303
|
+
|
|
2304
|
+
static name: string
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
export interface AbstractCollectionPrivate {
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
export class AbstractCollectionPrivate {
|
|
2311
|
+
|
|
2312
|
+
// Own properties of Gee-1.0.Gee.AbstractCollectionPrivate
|
|
2313
|
+
|
|
2314
|
+
static name: string
|
|
2315
|
+
}
|
|
2316
|
+
|
|
2317
|
+
export interface AbstractListClass {
|
|
2318
|
+
|
|
2319
|
+
// Own fields of Gee-1.0.Gee.AbstractListClass
|
|
2320
|
+
|
|
2321
|
+
parent_class: AbstractCollectionClass
|
|
2322
|
+
list_iterator: (self: AbstractList) => ListIterator
|
|
2323
|
+
get: (self: AbstractList, index: number) => any | null
|
|
2324
|
+
set: (self: AbstractList, index: number, item?: any | null) => void
|
|
2325
|
+
index_of: (self: AbstractList, item?: any | null) => number
|
|
2326
|
+
insert: (self: AbstractList, index: number, item?: any | null) => void
|
|
2327
|
+
remove_at: (self: AbstractList, index: number) => any | null
|
|
2328
|
+
slice: (self: AbstractList, start: number, stop: number) => List | null
|
|
2329
|
+
first: (self: AbstractList) => any | null
|
|
2330
|
+
last: (self: AbstractList) => any | null
|
|
2331
|
+
insert_all: (self: AbstractList, index: number, collection: Collection) => void
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
export abstract class AbstractListClass {
|
|
2335
|
+
|
|
2336
|
+
// Own properties of Gee-1.0.Gee.AbstractListClass
|
|
2337
|
+
|
|
2338
|
+
static name: string
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2341
|
+
export interface AbstractListPrivate {
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
export class AbstractListPrivate {
|
|
2345
|
+
|
|
2346
|
+
// Own properties of Gee-1.0.Gee.AbstractListPrivate
|
|
2347
|
+
|
|
2348
|
+
static name: string
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2351
|
+
export interface AbstractMapClass {
|
|
2352
|
+
|
|
2353
|
+
// Own fields of Gee-1.0.Gee.AbstractMapClass
|
|
2354
|
+
|
|
2355
|
+
parent_class: GObject.ObjectClass
|
|
2356
|
+
has_key: (self: AbstractMap, key?: any | null) => boolean
|
|
2357
|
+
has: (self: AbstractMap, key?: any | null, value?: any | null) => boolean
|
|
2358
|
+
get: (self: AbstractMap, key?: any | null) => any | null
|
|
2359
|
+
set: (self: AbstractMap, key?: any | null, value?: any | null) => void
|
|
2360
|
+
unset: (self: AbstractMap, key?: any | null) => [ /* returnType */ boolean, /* value */ any | null ]
|
|
2361
|
+
map_iterator: (self: AbstractMap) => MapIterator
|
|
2362
|
+
clear: (self: AbstractMap) => void
|
|
2363
|
+
set_all: (self: AbstractMap, map: Map) => void
|
|
2364
|
+
unset_all: (self: AbstractMap, map: Map) => boolean
|
|
2365
|
+
has_all: (self: AbstractMap, map: Map) => boolean
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
export abstract class AbstractMapClass {
|
|
2369
|
+
|
|
2370
|
+
// Own properties of Gee-1.0.Gee.AbstractMapClass
|
|
2371
|
+
|
|
2372
|
+
static name: string
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
export interface AbstractMapPrivate {
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2378
|
+
export class AbstractMapPrivate {
|
|
2379
|
+
|
|
2380
|
+
// Own properties of Gee-1.0.Gee.AbstractMapPrivate
|
|
2381
|
+
|
|
2382
|
+
static name: string
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
export interface AbstractMultiMapClass {
|
|
2386
|
+
|
|
2387
|
+
// Own fields of Gee-1.0.Gee.AbstractMultiMapClass
|
|
2388
|
+
|
|
2389
|
+
parent_class: GObject.ObjectClass
|
|
2390
|
+
create_value_storage: (self: AbstractMultiMap) => Collection
|
|
2391
|
+
create_multi_key_set: (self: AbstractMultiMap) => MultiSet
|
|
2392
|
+
get_value_equal_func: (self: AbstractMultiMap) => GLib.EqualFunc
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
export abstract class AbstractMultiMapClass {
|
|
2396
|
+
|
|
2397
|
+
// Own properties of Gee-1.0.Gee.AbstractMultiMapClass
|
|
2398
|
+
|
|
2399
|
+
static name: string
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2402
|
+
export interface AbstractMultiMapPrivate {
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2405
|
+
export class AbstractMultiMapPrivate {
|
|
2406
|
+
|
|
2407
|
+
// Own properties of Gee-1.0.Gee.AbstractMultiMapPrivate
|
|
2408
|
+
|
|
2409
|
+
static name: string
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
export interface AbstractMultiSetClass {
|
|
2413
|
+
|
|
2414
|
+
// Own fields of Gee-1.0.Gee.AbstractMultiSetClass
|
|
2415
|
+
|
|
2416
|
+
parent_class: AbstractCollectionClass
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
export abstract class AbstractMultiSetClass {
|
|
2420
|
+
|
|
2421
|
+
// Own properties of Gee-1.0.Gee.AbstractMultiSetClass
|
|
2422
|
+
|
|
2423
|
+
static name: string
|
|
2424
|
+
}
|
|
2425
|
+
|
|
2426
|
+
export interface AbstractMultiSetPrivate {
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2429
|
+
export class AbstractMultiSetPrivate {
|
|
2430
|
+
|
|
2431
|
+
// Own properties of Gee-1.0.Gee.AbstractMultiSetPrivate
|
|
2432
|
+
|
|
2433
|
+
static name: string
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
export interface AbstractQueueClass {
|
|
2437
|
+
|
|
2438
|
+
// Own fields of Gee-1.0.Gee.AbstractQueueClass
|
|
2439
|
+
|
|
2440
|
+
parent_class: AbstractCollectionClass
|
|
2441
|
+
offer: (self: AbstractQueue, element?: any | null) => boolean
|
|
2442
|
+
peek: (self: AbstractQueue) => any | null
|
|
2443
|
+
poll: (self: AbstractQueue) => any | null
|
|
2444
|
+
drain: (self: AbstractQueue, recipient: Collection, amount: number) => number
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
export abstract class AbstractQueueClass {
|
|
2448
|
+
|
|
2449
|
+
// Own properties of Gee-1.0.Gee.AbstractQueueClass
|
|
2450
|
+
|
|
2451
|
+
static name: string
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
export interface AbstractQueuePrivate {
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
export class AbstractQueuePrivate {
|
|
2458
|
+
|
|
2459
|
+
// Own properties of Gee-1.0.Gee.AbstractQueuePrivate
|
|
2460
|
+
|
|
2461
|
+
static name: string
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
export interface AbstractSetClass {
|
|
2465
|
+
|
|
2466
|
+
// Own fields of Gee-1.0.Gee.AbstractSetClass
|
|
2467
|
+
|
|
2468
|
+
parent_class: AbstractCollectionClass
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2471
|
+
export abstract class AbstractSetClass {
|
|
2472
|
+
|
|
2473
|
+
// Own properties of Gee-1.0.Gee.AbstractSetClass
|
|
2474
|
+
|
|
2475
|
+
static name: string
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2478
|
+
export interface AbstractSetPrivate {
|
|
2479
|
+
}
|
|
2480
|
+
|
|
2481
|
+
export class AbstractSetPrivate {
|
|
2482
|
+
|
|
2483
|
+
// Own properties of Gee-1.0.Gee.AbstractSetPrivate
|
|
2484
|
+
|
|
2485
|
+
static name: string
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
export interface ArrayListClass {
|
|
2489
|
+
|
|
2490
|
+
// Own fields of Gee-1.0.Gee.ArrayListClass
|
|
2491
|
+
|
|
2492
|
+
parent_class: AbstractListClass
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
export abstract class ArrayListClass {
|
|
2496
|
+
|
|
2497
|
+
// Own properties of Gee-1.0.Gee.ArrayListClass
|
|
2498
|
+
|
|
2499
|
+
static name: string
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2502
|
+
export interface ArrayListPrivate {
|
|
2503
|
+
}
|
|
2504
|
+
|
|
2505
|
+
export class ArrayListPrivate {
|
|
2506
|
+
|
|
2507
|
+
// Own properties of Gee-1.0.Gee.ArrayListPrivate
|
|
2508
|
+
|
|
2509
|
+
static name: string
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
export interface HashMapClass {
|
|
2513
|
+
|
|
2514
|
+
// Own fields of Gee-1.0.Gee.HashMapClass
|
|
2515
|
+
|
|
2516
|
+
parent_class: AbstractMapClass
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2519
|
+
export abstract class HashMapClass {
|
|
2520
|
+
|
|
2521
|
+
// Own properties of Gee-1.0.Gee.HashMapClass
|
|
2522
|
+
|
|
2523
|
+
static name: string
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
export interface HashMapPrivate {
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
export class HashMapPrivate {
|
|
2530
|
+
|
|
2531
|
+
// Own properties of Gee-1.0.Gee.HashMapPrivate
|
|
2532
|
+
|
|
2533
|
+
static name: string
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
export interface HashMultiMapClass {
|
|
2537
|
+
|
|
2538
|
+
// Own fields of Gee-1.0.Gee.HashMultiMapClass
|
|
2539
|
+
|
|
2540
|
+
parent_class: AbstractMultiMapClass
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
export abstract class HashMultiMapClass {
|
|
2544
|
+
|
|
2545
|
+
// Own properties of Gee-1.0.Gee.HashMultiMapClass
|
|
2546
|
+
|
|
2547
|
+
static name: string
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
export interface HashMultiMapPrivate {
|
|
2551
|
+
}
|
|
2552
|
+
|
|
2553
|
+
export class HashMultiMapPrivate {
|
|
2554
|
+
|
|
2555
|
+
// Own properties of Gee-1.0.Gee.HashMultiMapPrivate
|
|
2556
|
+
|
|
2557
|
+
static name: string
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
export interface HashMultiSetClass {
|
|
2561
|
+
|
|
2562
|
+
// Own fields of Gee-1.0.Gee.HashMultiSetClass
|
|
2563
|
+
|
|
2564
|
+
parent_class: AbstractMultiSetClass
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2567
|
+
export abstract class HashMultiSetClass {
|
|
2568
|
+
|
|
2569
|
+
// Own properties of Gee-1.0.Gee.HashMultiSetClass
|
|
2570
|
+
|
|
2571
|
+
static name: string
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
export interface HashMultiSetPrivate {
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
export class HashMultiSetPrivate {
|
|
2578
|
+
|
|
2579
|
+
// Own properties of Gee-1.0.Gee.HashMultiSetPrivate
|
|
2580
|
+
|
|
2581
|
+
static name: string
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
export interface HashSetClass {
|
|
2585
|
+
|
|
2586
|
+
// Own fields of Gee-1.0.Gee.HashSetClass
|
|
2587
|
+
|
|
2588
|
+
parent_class: AbstractSetClass
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
export abstract class HashSetClass {
|
|
2592
|
+
|
|
2593
|
+
// Own properties of Gee-1.0.Gee.HashSetClass
|
|
2594
|
+
|
|
2595
|
+
static name: string
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2598
|
+
export interface HashSetPrivate {
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
export class HashSetPrivate {
|
|
2602
|
+
|
|
2603
|
+
// Own properties of Gee-1.0.Gee.HashSetPrivate
|
|
2604
|
+
|
|
2605
|
+
static name: string
|
|
2606
|
+
}
|
|
2607
|
+
|
|
2608
|
+
export interface LinkedListClass {
|
|
2609
|
+
|
|
2610
|
+
// Own fields of Gee-1.0.Gee.LinkedListClass
|
|
2611
|
+
|
|
2612
|
+
parent_class: AbstractListClass
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
export abstract class LinkedListClass {
|
|
2616
|
+
|
|
2617
|
+
// Own properties of Gee-1.0.Gee.LinkedListClass
|
|
2618
|
+
|
|
2619
|
+
static name: string
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
export interface LinkedListPrivate {
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
export class LinkedListPrivate {
|
|
2626
|
+
|
|
2627
|
+
// Own properties of Gee-1.0.Gee.LinkedListPrivate
|
|
2628
|
+
|
|
2629
|
+
static name: string
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
export interface PriorityQueueClass {
|
|
2633
|
+
|
|
2634
|
+
// Own fields of Gee-1.0.Gee.PriorityQueueClass
|
|
2635
|
+
|
|
2636
|
+
parent_class: AbstractQueueClass
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
export abstract class PriorityQueueClass {
|
|
2640
|
+
|
|
2641
|
+
// Own properties of Gee-1.0.Gee.PriorityQueueClass
|
|
2642
|
+
|
|
2643
|
+
static name: string
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
export interface PriorityQueuePrivate {
|
|
2647
|
+
}
|
|
2648
|
+
|
|
2649
|
+
export class PriorityQueuePrivate {
|
|
2650
|
+
|
|
2651
|
+
// Own properties of Gee-1.0.Gee.PriorityQueuePrivate
|
|
2652
|
+
|
|
2653
|
+
static name: string
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2656
|
+
export interface TreeMapClass {
|
|
2657
|
+
|
|
2658
|
+
// Own fields of Gee-1.0.Gee.TreeMapClass
|
|
2659
|
+
|
|
2660
|
+
parent_class: AbstractMapClass
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
export abstract class TreeMapClass {
|
|
2664
|
+
|
|
2665
|
+
// Own properties of Gee-1.0.Gee.TreeMapClass
|
|
2666
|
+
|
|
2667
|
+
static name: string
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2670
|
+
export interface TreeMapPrivate {
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
export class TreeMapPrivate {
|
|
2674
|
+
|
|
2675
|
+
// Own properties of Gee-1.0.Gee.TreeMapPrivate
|
|
2676
|
+
|
|
2677
|
+
static name: string
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
export interface TreeMultiMapClass {
|
|
2681
|
+
|
|
2682
|
+
// Own fields of Gee-1.0.Gee.TreeMultiMapClass
|
|
2683
|
+
|
|
2684
|
+
parent_class: AbstractMultiMapClass
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
export abstract class TreeMultiMapClass {
|
|
2688
|
+
|
|
2689
|
+
// Own properties of Gee-1.0.Gee.TreeMultiMapClass
|
|
2690
|
+
|
|
2691
|
+
static name: string
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2694
|
+
export interface TreeMultiMapPrivate {
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2697
|
+
export class TreeMultiMapPrivate {
|
|
2698
|
+
|
|
2699
|
+
// Own properties of Gee-1.0.Gee.TreeMultiMapPrivate
|
|
2700
|
+
|
|
2701
|
+
static name: string
|
|
2702
|
+
}
|
|
2703
|
+
|
|
2704
|
+
export interface TreeMultiSetClass {
|
|
2705
|
+
|
|
2706
|
+
// Own fields of Gee-1.0.Gee.TreeMultiSetClass
|
|
2707
|
+
|
|
2708
|
+
parent_class: AbstractMultiSetClass
|
|
2709
|
+
}
|
|
2710
|
+
|
|
2711
|
+
export abstract class TreeMultiSetClass {
|
|
2712
|
+
|
|
2713
|
+
// Own properties of Gee-1.0.Gee.TreeMultiSetClass
|
|
2714
|
+
|
|
2715
|
+
static name: string
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2718
|
+
export interface TreeMultiSetPrivate {
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2721
|
+
export class TreeMultiSetPrivate {
|
|
2722
|
+
|
|
2723
|
+
// Own properties of Gee-1.0.Gee.TreeMultiSetPrivate
|
|
2724
|
+
|
|
2725
|
+
static name: string
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
export interface TreeSetClass {
|
|
2729
|
+
|
|
2730
|
+
// Own fields of Gee-1.0.Gee.TreeSetClass
|
|
2731
|
+
|
|
2732
|
+
parent_class: AbstractSetClass
|
|
2733
|
+
}
|
|
2734
|
+
|
|
2735
|
+
export abstract class TreeSetClass {
|
|
2736
|
+
|
|
2737
|
+
// Own properties of Gee-1.0.Gee.TreeSetClass
|
|
2738
|
+
|
|
2739
|
+
static name: string
|
|
2740
|
+
}
|
|
2741
|
+
|
|
2742
|
+
export interface TreeSetPrivate {
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2745
|
+
export class TreeSetPrivate {
|
|
2746
|
+
|
|
2747
|
+
// Own properties of Gee-1.0.Gee.TreeSetPrivate
|
|
2748
|
+
|
|
2749
|
+
static name: string
|
|
2750
|
+
}
|
|
2751
|
+
|
|
2752
|
+
export interface BidirIteratorIface {
|
|
2753
|
+
|
|
2754
|
+
// Own fields of Gee-1.0.Gee.BidirIteratorIface
|
|
2755
|
+
|
|
2756
|
+
parent_iface: GObject.TypeInterface
|
|
2757
|
+
previous: (self: BidirIterator) => boolean
|
|
2758
|
+
has_previous: (self: BidirIterator) => boolean
|
|
2759
|
+
last: (self: BidirIterator) => boolean
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
export abstract class BidirIteratorIface {
|
|
2763
|
+
|
|
2764
|
+
// Own properties of Gee-1.0.Gee.BidirIteratorIface
|
|
2765
|
+
|
|
2766
|
+
static name: string
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2769
|
+
export interface CollectionIface {
|
|
2770
|
+
|
|
2771
|
+
// Own fields of Gee-1.0.Gee.CollectionIface
|
|
2772
|
+
|
|
2773
|
+
parent_iface: GObject.TypeInterface
|
|
2774
|
+
contains: (self: Collection, item?: any | null) => boolean
|
|
2775
|
+
add: (self: Collection, item?: any | null) => boolean
|
|
2776
|
+
remove: (self: Collection, item?: any | null) => boolean
|
|
2777
|
+
clear: (self: Collection) => void
|
|
2778
|
+
add_all: (self: Collection, collection: Collection) => boolean
|
|
2779
|
+
contains_all: (self: Collection, collection: Collection) => boolean
|
|
2780
|
+
remove_all: (self: Collection, collection: Collection) => boolean
|
|
2781
|
+
retain_all: (self: Collection, collection: Collection) => boolean
|
|
2782
|
+
to_array: (self: Collection) => any[]
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2785
|
+
export abstract class CollectionIface {
|
|
2786
|
+
|
|
2787
|
+
// Own properties of Gee-1.0.Gee.CollectionIface
|
|
2788
|
+
|
|
2789
|
+
static name: string
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
export interface ComparableIface {
|
|
2793
|
+
|
|
2794
|
+
// Own fields of Gee-1.0.Gee.ComparableIface
|
|
2795
|
+
|
|
2796
|
+
parent_iface: GObject.TypeInterface
|
|
2797
|
+
compare_to: (self: Comparable, object?: any | null) => number
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2800
|
+
export abstract class ComparableIface {
|
|
2801
|
+
|
|
2802
|
+
// Own properties of Gee-1.0.Gee.ComparableIface
|
|
2803
|
+
|
|
2804
|
+
static name: string
|
|
2805
|
+
}
|
|
2806
|
+
|
|
2807
|
+
export interface DequeIface {
|
|
2808
|
+
|
|
2809
|
+
// Own fields of Gee-1.0.Gee.DequeIface
|
|
2810
|
+
|
|
2811
|
+
parent_iface: GObject.TypeInterface
|
|
2812
|
+
offer_head: (self: Deque, element?: any | null) => boolean
|
|
2813
|
+
peek_head: (self: Deque) => any | null
|
|
2814
|
+
poll_head: (self: Deque) => any | null
|
|
2815
|
+
drain_head: (self: Deque, recipient: Collection, amount: number) => number
|
|
2816
|
+
offer_tail: (self: Deque, element?: any | null) => boolean
|
|
2817
|
+
peek_tail: (self: Deque) => any | null
|
|
2818
|
+
poll_tail: (self: Deque) => any | null
|
|
2819
|
+
drain_tail: (self: Deque, recipient: Collection, amount: number) => number
|
|
2820
|
+
}
|
|
2821
|
+
|
|
2822
|
+
export abstract class DequeIface {
|
|
2823
|
+
|
|
2824
|
+
// Own properties of Gee-1.0.Gee.DequeIface
|
|
2825
|
+
|
|
2826
|
+
static name: string
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2829
|
+
export interface IterableIface {
|
|
2830
|
+
|
|
2831
|
+
// Own fields of Gee-1.0.Gee.IterableIface
|
|
2832
|
+
|
|
2833
|
+
parent_iface: GObject.TypeInterface
|
|
2834
|
+
iterator: (self: Iterable) => Iterator
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2837
|
+
export abstract class IterableIface {
|
|
2838
|
+
|
|
2839
|
+
// Own properties of Gee-1.0.Gee.IterableIface
|
|
2840
|
+
|
|
2841
|
+
static name: string
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
export interface IteratorIface {
|
|
2845
|
+
|
|
2846
|
+
// Own fields of Gee-1.0.Gee.IteratorIface
|
|
2847
|
+
|
|
2848
|
+
parent_iface: GObject.TypeInterface
|
|
2849
|
+
next: (self: Iterator) => boolean
|
|
2850
|
+
has_next: (self: Iterator) => boolean
|
|
2851
|
+
first: (self: Iterator) => boolean
|
|
2852
|
+
get: (self: Iterator) => any | null
|
|
2853
|
+
remove: (self: Iterator) => void
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2856
|
+
export abstract class IteratorIface {
|
|
2857
|
+
|
|
2858
|
+
// Own properties of Gee-1.0.Gee.IteratorIface
|
|
2859
|
+
|
|
2860
|
+
static name: string
|
|
2861
|
+
}
|
|
2862
|
+
|
|
2863
|
+
export interface ListIface {
|
|
2864
|
+
|
|
2865
|
+
// Own fields of Gee-1.0.Gee.ListIface
|
|
2866
|
+
|
|
2867
|
+
parent_iface: GObject.TypeInterface
|
|
2868
|
+
list_iterator: (self: List) => ListIterator
|
|
2869
|
+
get: (self: List, index: number) => any | null
|
|
2870
|
+
set: (self: List, index: number, item?: any | null) => void
|
|
2871
|
+
index_of: (self: List, item?: any | null) => number
|
|
2872
|
+
insert: (self: List, index: number, item?: any | null) => void
|
|
2873
|
+
remove_at: (self: List, index: number) => any | null
|
|
2874
|
+
slice: (self: List, start: number, stop: number) => List | null
|
|
2875
|
+
first: (self: List) => any | null
|
|
2876
|
+
last: (self: List) => any | null
|
|
2877
|
+
insert_all: (self: List, index: number, collection: Collection) => void
|
|
2878
|
+
sort: (self: List, compare_func?: GLib.CompareFunc | null) => void
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
export abstract class ListIface {
|
|
2882
|
+
|
|
2883
|
+
// Own properties of Gee-1.0.Gee.ListIface
|
|
2884
|
+
|
|
2885
|
+
static name: string
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
export interface ListIteratorIface {
|
|
2889
|
+
|
|
2890
|
+
// Own fields of Gee-1.0.Gee.ListIteratorIface
|
|
2891
|
+
|
|
2892
|
+
parent_iface: GObject.TypeInterface
|
|
2893
|
+
set: (self: ListIterator, item?: any | null) => void
|
|
2894
|
+
insert: (self: ListIterator, item?: any | null) => void
|
|
2895
|
+
add: (self: ListIterator, item?: any | null) => void
|
|
2896
|
+
index: (self: ListIterator) => number
|
|
2897
|
+
}
|
|
2898
|
+
|
|
2899
|
+
export abstract class ListIteratorIface {
|
|
2900
|
+
|
|
2901
|
+
// Own properties of Gee-1.0.Gee.ListIteratorIface
|
|
2902
|
+
|
|
2903
|
+
static name: string
|
|
2904
|
+
}
|
|
2905
|
+
|
|
2906
|
+
export interface MapIface {
|
|
2907
|
+
|
|
2908
|
+
// Own fields of Gee-1.0.Gee.MapIface
|
|
2909
|
+
|
|
2910
|
+
parent_iface: GObject.TypeInterface
|
|
2911
|
+
has_key: (self: Map, key?: any | null) => boolean
|
|
2912
|
+
contains: (self: Map, key?: any | null) => boolean
|
|
2913
|
+
has: (self: Map, key?: any | null, value?: any | null) => boolean
|
|
2914
|
+
get: (self: Map, key?: any | null) => any | null
|
|
2915
|
+
set: (self: Map, key?: any | null, value?: any | null) => void
|
|
2916
|
+
unset: (self: Map, key?: any | null) => [ /* returnType */ boolean, /* value */ any | null ]
|
|
2917
|
+
remove: (self: Map, key?: any | null) => [ /* returnType */ boolean, /* value */ any | null ]
|
|
2918
|
+
clear: (self: Map) => void
|
|
2919
|
+
map_iterator: (self: Map) => MapIterator
|
|
2920
|
+
set_all: (self: Map, map: Map) => void
|
|
2921
|
+
unset_all: (self: Map, map: Map) => boolean
|
|
2922
|
+
remove_all: (self: Map, map: Map) => boolean
|
|
2923
|
+
has_all: (self: Map, map: Map) => boolean
|
|
2924
|
+
contains_all: (self: Map, map: Map) => boolean
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2927
|
+
export abstract class MapIface {
|
|
2928
|
+
|
|
2929
|
+
// Own properties of Gee-1.0.Gee.MapIface
|
|
2930
|
+
|
|
2931
|
+
static name: string
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
export interface MapEntryClass {
|
|
2935
|
+
|
|
2936
|
+
// Own fields of Gee-1.0.Gee.MapEntryClass
|
|
2937
|
+
|
|
2938
|
+
parent_class: GObject.ObjectClass
|
|
2939
|
+
}
|
|
2940
|
+
|
|
2941
|
+
export abstract class MapEntryClass {
|
|
2942
|
+
|
|
2943
|
+
// Own properties of Gee-1.0.Gee.MapEntryClass
|
|
2944
|
+
|
|
2945
|
+
static name: string
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
export interface EntryPrivate {
|
|
2949
|
+
}
|
|
2950
|
+
|
|
2951
|
+
export class EntryPrivate {
|
|
2952
|
+
|
|
2953
|
+
// Own properties of Gee-1.0.Gee.EntryPrivate
|
|
2954
|
+
|
|
2955
|
+
static name: string
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2958
|
+
export interface MapIteratorIface {
|
|
2959
|
+
|
|
2960
|
+
// Own fields of Gee-1.0.Gee.MapIteratorIface
|
|
2961
|
+
|
|
2962
|
+
parent_iface: GObject.TypeInterface
|
|
2963
|
+
next: (self: MapIterator) => boolean
|
|
2964
|
+
has_next: (self: MapIterator) => boolean
|
|
2965
|
+
first: (self: MapIterator) => boolean
|
|
2966
|
+
get_key: (self: MapIterator) => any | null
|
|
2967
|
+
get_value: (self: MapIterator) => any | null
|
|
2968
|
+
set_value: (self: MapIterator, value?: any | null) => void
|
|
2969
|
+
unset: (self: MapIterator) => void
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
export abstract class MapIteratorIface {
|
|
2973
|
+
|
|
2974
|
+
// Own properties of Gee-1.0.Gee.MapIteratorIface
|
|
2975
|
+
|
|
2976
|
+
static name: string
|
|
2977
|
+
}
|
|
2978
|
+
|
|
2979
|
+
export interface MultiMapIface {
|
|
2980
|
+
|
|
2981
|
+
// Own fields of Gee-1.0.Gee.MultiMapIface
|
|
2982
|
+
|
|
2983
|
+
parent_iface: GObject.TypeInterface
|
|
2984
|
+
get_keys: (self: MultiMap) => Set
|
|
2985
|
+
get_all_keys: (self: MultiMap) => MultiSet
|
|
2986
|
+
get_values: (self: MultiMap) => Collection
|
|
2987
|
+
contains: (self: MultiMap, key?: any | null) => boolean
|
|
2988
|
+
get: (self: MultiMap, key?: any | null) => Collection
|
|
2989
|
+
set: (self: MultiMap, key?: any | null, value?: any | null) => void
|
|
2990
|
+
remove: (self: MultiMap, key?: any | null, value?: any | null) => boolean
|
|
2991
|
+
remove_all: (self: MultiMap, key?: any | null) => boolean
|
|
2992
|
+
clear: (self: MultiMap) => void
|
|
2993
|
+
}
|
|
2994
|
+
|
|
2995
|
+
export abstract class MultiMapIface {
|
|
2996
|
+
|
|
2997
|
+
// Own properties of Gee-1.0.Gee.MultiMapIface
|
|
2998
|
+
|
|
2999
|
+
static name: string
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
export interface MultiSetIface {
|
|
3003
|
+
|
|
3004
|
+
// Own fields of Gee-1.0.Gee.MultiSetIface
|
|
3005
|
+
|
|
3006
|
+
parent_iface: GObject.TypeInterface
|
|
3007
|
+
count: (self: MultiSet, item?: any | null) => number
|
|
3008
|
+
}
|
|
3009
|
+
|
|
3010
|
+
export abstract class MultiSetIface {
|
|
3011
|
+
|
|
3012
|
+
// Own properties of Gee-1.0.Gee.MultiSetIface
|
|
3013
|
+
|
|
3014
|
+
static name: string
|
|
3015
|
+
}
|
|
3016
|
+
|
|
3017
|
+
export interface QueueIface {
|
|
3018
|
+
|
|
3019
|
+
// Own fields of Gee-1.0.Gee.QueueIface
|
|
3020
|
+
|
|
3021
|
+
parent_iface: GObject.TypeInterface
|
|
3022
|
+
offer: (self: Queue, element?: any | null) => boolean
|
|
3023
|
+
peek: (self: Queue) => any | null
|
|
3024
|
+
poll: (self: Queue) => any | null
|
|
3025
|
+
drain: (self: Queue, recipient: Collection, amount: number) => number
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3028
|
+
export abstract class QueueIface {
|
|
3029
|
+
|
|
3030
|
+
// Own properties of Gee-1.0.Gee.QueueIface
|
|
3031
|
+
|
|
3032
|
+
static name: string
|
|
3033
|
+
}
|
|
3034
|
+
|
|
3035
|
+
export interface SetIface {
|
|
3036
|
+
|
|
3037
|
+
// Own fields of Gee-1.0.Gee.SetIface
|
|
3038
|
+
|
|
3039
|
+
parent_iface: GObject.TypeInterface
|
|
3040
|
+
}
|
|
3041
|
+
|
|
3042
|
+
export abstract class SetIface {
|
|
3043
|
+
|
|
3044
|
+
// Own properties of Gee-1.0.Gee.SetIface
|
|
3045
|
+
|
|
3046
|
+
static name: string
|
|
3047
|
+
}
|
|
3048
|
+
|
|
3049
|
+
export interface SortedSetIface {
|
|
3050
|
+
|
|
3051
|
+
// Own fields of Gee-1.0.Gee.SortedSetIface
|
|
3052
|
+
|
|
3053
|
+
parent_iface: GObject.TypeInterface
|
|
3054
|
+
first: (self: SortedSet) => any | null
|
|
3055
|
+
last: (self: SortedSet) => any | null
|
|
3056
|
+
bidir_iterator: (self: SortedSet) => BidirIterator
|
|
3057
|
+
iterator_at: (self: SortedSet, element?: any | null) => BidirIterator | null
|
|
3058
|
+
lower: (self: SortedSet, element?: any | null) => any | null
|
|
3059
|
+
higher: (self: SortedSet, element?: any | null) => any | null
|
|
3060
|
+
floor: (self: SortedSet, element?: any | null) => any | null
|
|
3061
|
+
ceil: (self: SortedSet, element?: any | null) => any | null
|
|
3062
|
+
head_set: (self: SortedSet, before?: any | null) => SortedSet
|
|
3063
|
+
tail_set: (self: SortedSet, after?: any | null) => SortedSet
|
|
3064
|
+
sub_set: (self: SortedSet, from?: any | null, to?: any | null) => SortedSet
|
|
3065
|
+
}
|
|
3066
|
+
|
|
3067
|
+
export abstract class SortedSetIface {
|
|
3068
|
+
|
|
3069
|
+
// Own properties of Gee-1.0.Gee.SortedSetIface
|
|
3070
|
+
|
|
3071
|
+
static name: string
|
|
3072
|
+
}
|
|
3073
|
+
|
|
3074
|
+
/**
|
|
3075
|
+
* Name of the imported GIR library
|
|
3076
|
+
* @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
|
|
3077
|
+
*/
|
|
3078
|
+
export const __name__: string
|
|
3079
|
+
/**
|
|
3080
|
+
* Version of the imported GIR library
|
|
3081
|
+
* @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L189
|
|
3082
|
+
*/
|
|
3083
|
+
export const __version__: string
|
|
3084
|
+
// END
|