@girs/egg-1.0 1.0.0-3.2.6 → 1.0.0-3.2.8
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 +1 -1
- package/egg-1.0-ambient.js +2 -0
- package/egg-1.0-import.js +3 -0
- package/egg-1.0.d.cts +157 -265
- package/egg-1.0.d.ts +157 -265
- package/package.json +24 -18
package/egg-1.0.d.ts
CHANGED
|
@@ -117,7 +117,7 @@ module Animation {
|
|
|
117
117
|
* animation should run before being completed.
|
|
118
118
|
*/
|
|
119
119
|
duration?: number | null
|
|
120
|
-
|
|
120
|
+
frameClock?: Gdk.FrameClock | null
|
|
121
121
|
/**
|
|
122
122
|
* The "mode" property is the Alpha function that should be used to
|
|
123
123
|
* determine the offset within the animation based on the current
|
|
@@ -129,7 +129,6 @@ module Animation {
|
|
|
129
129
|
* animated.
|
|
130
130
|
*/
|
|
131
131
|
target?: GObject.Object | null
|
|
132
|
-
frameClock?: Gdk.FrameClock | null
|
|
133
132
|
}
|
|
134
133
|
|
|
135
134
|
}
|
|
@@ -143,7 +142,6 @@ interface Animation {
|
|
|
143
142
|
* animation should run before being completed.
|
|
144
143
|
*/
|
|
145
144
|
readonly duration: number
|
|
146
|
-
readonly frame_clock: Gdk.FrameClock
|
|
147
145
|
readonly frameClock: Gdk.FrameClock
|
|
148
146
|
/**
|
|
149
147
|
* The "mode" property is the Alpha function that should be used to
|
|
@@ -262,7 +260,7 @@ interface BindingGroup {
|
|
|
262
260
|
* @param target_property the property on `target` to bind
|
|
263
261
|
* @param flags the flags used to create the #GBinding
|
|
264
262
|
*/
|
|
265
|
-
bind(source_property: string
|
|
263
|
+
bind(source_property: string, target: GObject.Object, target_property: string, flags: GObject.BindingFlags): void
|
|
266
264
|
/**
|
|
267
265
|
* Creates a binding between `source_property` on the source object and
|
|
268
266
|
* `target_property` on `target,` allowing you to set the transformation
|
|
@@ -281,7 +279,7 @@ interface BindingGroup {
|
|
|
281
279
|
* @param transform_to a #GClosure wrapping the transformation function from the source object to the `target,` or %NULL to use the default
|
|
282
280
|
* @param transform_from a #GClosure wrapping the transformation function from the `target` to the source object, or %NULL to use the default
|
|
283
281
|
*/
|
|
284
|
-
bind_full(source_property: string
|
|
282
|
+
bind_full(source_property: string, target: GObject.Object, target_property: string, flags: GObject.BindingFlags, transform_to: GObject.TClosure | null, transform_from: GObject.TClosure | null): void
|
|
285
283
|
/**
|
|
286
284
|
* Gets the source object used for binding properties.
|
|
287
285
|
* @returns the source object.
|
|
@@ -353,7 +351,6 @@ module Box {
|
|
|
353
351
|
|
|
354
352
|
// Own constructor properties of Egg-1.0.Egg.Box
|
|
355
353
|
|
|
356
|
-
max_width_request?: number | null
|
|
357
354
|
maxWidthRequest?: number | null
|
|
358
355
|
}
|
|
359
356
|
|
|
@@ -363,7 +360,6 @@ interface Box extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
363
360
|
|
|
364
361
|
// Own properties of Egg-1.0.Egg.Box
|
|
365
362
|
|
|
366
|
-
max_width_request: number
|
|
367
363
|
maxWidthRequest: number
|
|
368
364
|
|
|
369
365
|
// Own fields of Egg-1.0.Egg.Box
|
|
@@ -388,7 +384,7 @@ interface Box extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
388
384
|
* @param child the child widget
|
|
389
385
|
* @param child_property the name of a child property installed on the class of `container`
|
|
390
386
|
*/
|
|
391
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
387
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
392
388
|
|
|
393
389
|
// Overloads of child_notify
|
|
394
390
|
|
|
@@ -402,7 +398,7 @@ interface Box extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
402
398
|
* Also see gtk_container_child_notify().
|
|
403
399
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
404
400
|
*/
|
|
405
|
-
child_notify(child_property: string
|
|
401
|
+
child_notify(child_property: string): void
|
|
406
402
|
/**
|
|
407
403
|
* Emits a #GtkWidget::child-notify signal for the
|
|
408
404
|
* [child property][child-properties] `child_property`
|
|
@@ -413,7 +409,7 @@ interface Box extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
413
409
|
* Also see gtk_container_child_notify().
|
|
414
410
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
415
411
|
*/
|
|
416
|
-
child_notify(child_property: string
|
|
412
|
+
child_notify(child_property: string): void
|
|
417
413
|
|
|
418
414
|
// Class property signals of Egg-1.0.Egg.Box
|
|
419
415
|
|
|
@@ -598,7 +594,6 @@ module CenteringBin {
|
|
|
598
594
|
|
|
599
595
|
// Own constructor properties of Egg-1.0.Egg.CenteringBin
|
|
600
596
|
|
|
601
|
-
max_width_request?: number | null
|
|
602
597
|
maxWidthRequest?: number | null
|
|
603
598
|
}
|
|
604
599
|
|
|
@@ -608,7 +603,6 @@ interface CenteringBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
608
603
|
|
|
609
604
|
// Own properties of Egg-1.0.Egg.CenteringBin
|
|
610
605
|
|
|
611
|
-
max_width_request: number
|
|
612
606
|
maxWidthRequest: number
|
|
613
607
|
|
|
614
608
|
// Own fields of Egg-1.0.Egg.CenteringBin
|
|
@@ -628,7 +622,7 @@ interface CenteringBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
628
622
|
* @param child the child widget
|
|
629
623
|
* @param child_property the name of a child property installed on the class of `container`
|
|
630
624
|
*/
|
|
631
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
625
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
632
626
|
|
|
633
627
|
// Overloads of child_notify
|
|
634
628
|
|
|
@@ -642,7 +636,7 @@ interface CenteringBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
642
636
|
* Also see gtk_container_child_notify().
|
|
643
637
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
644
638
|
*/
|
|
645
|
-
child_notify(child_property: string
|
|
639
|
+
child_notify(child_property: string): void
|
|
646
640
|
/**
|
|
647
641
|
* Emits a #GtkWidget::child-notify signal for the
|
|
648
642
|
* [child property][child-properties] `child_property`
|
|
@@ -653,7 +647,7 @@ interface CenteringBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
653
647
|
* Also see gtk_container_child_notify().
|
|
654
648
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
655
649
|
*/
|
|
656
|
-
child_notify(child_property: string
|
|
650
|
+
child_notify(child_property: string): void
|
|
657
651
|
|
|
658
652
|
// Class property signals of Egg-1.0.Egg.CenteringBin
|
|
659
653
|
|
|
@@ -825,10 +819,6 @@ module ColumnLayout {
|
|
|
825
819
|
|
|
826
820
|
// Own constructor properties of Egg-1.0.Egg.ColumnLayout
|
|
827
821
|
|
|
828
|
-
column_spacing?: number | null
|
|
829
|
-
column_width?: number | null
|
|
830
|
-
max_columns?: number | null
|
|
831
|
-
row_spacing?: number | null
|
|
832
822
|
columnSpacing?: number | null
|
|
833
823
|
columnWidth?: number | null
|
|
834
824
|
maxColumns?: number | null
|
|
@@ -841,13 +831,9 @@ interface ColumnLayout extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
841
831
|
|
|
842
832
|
// Own properties of Egg-1.0.Egg.ColumnLayout
|
|
843
833
|
|
|
844
|
-
column_spacing: number
|
|
845
834
|
columnSpacing: number
|
|
846
|
-
column_width: number
|
|
847
835
|
columnWidth: number
|
|
848
|
-
max_columns: number
|
|
849
836
|
maxColumns: number
|
|
850
|
-
row_spacing: number
|
|
851
837
|
rowSpacing: number
|
|
852
838
|
|
|
853
839
|
// Own fields of Egg-1.0.Egg.ColumnLayout
|
|
@@ -878,7 +864,7 @@ interface ColumnLayout extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
878
864
|
* @param child the child widget
|
|
879
865
|
* @param child_property the name of a child property installed on the class of `container`
|
|
880
866
|
*/
|
|
881
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
867
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
882
868
|
|
|
883
869
|
// Overloads of child_notify
|
|
884
870
|
|
|
@@ -892,7 +878,7 @@ interface ColumnLayout extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
892
878
|
* Also see gtk_container_child_notify().
|
|
893
879
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
894
880
|
*/
|
|
895
|
-
child_notify(child_property: string
|
|
881
|
+
child_notify(child_property: string): void
|
|
896
882
|
/**
|
|
897
883
|
* Emits a #GtkWidget::child-notify signal for the
|
|
898
884
|
* [child property][child-properties] `child_property`
|
|
@@ -903,7 +889,7 @@ interface ColumnLayout extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
903
889
|
* Also see gtk_container_child_notify().
|
|
904
890
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
905
891
|
*/
|
|
906
|
-
child_notify(child_property: string
|
|
892
|
+
child_notify(child_property: string): void
|
|
907
893
|
|
|
908
894
|
// Class property signals of Egg-1.0.Egg.ColumnLayout
|
|
909
895
|
|
|
@@ -1094,7 +1080,7 @@ interface ElasticBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1094
1080
|
* @param child the child widget
|
|
1095
1081
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1096
1082
|
*/
|
|
1097
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1083
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1098
1084
|
|
|
1099
1085
|
// Overloads of child_notify
|
|
1100
1086
|
|
|
@@ -1108,7 +1094,7 @@ interface ElasticBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1108
1094
|
* Also see gtk_container_child_notify().
|
|
1109
1095
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1110
1096
|
*/
|
|
1111
|
-
child_notify(child_property: string
|
|
1097
|
+
child_notify(child_property: string): void
|
|
1112
1098
|
/**
|
|
1113
1099
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1114
1100
|
* [child property][child-properties] `child_property`
|
|
@@ -1119,7 +1105,7 @@ interface ElasticBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1119
1105
|
* Also see gtk_container_child_notify().
|
|
1120
1106
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1121
1107
|
*/
|
|
1122
|
-
child_notify(child_property: string
|
|
1108
|
+
child_notify(child_property: string): void
|
|
1123
1109
|
|
|
1124
1110
|
// Class property signals of Egg-1.0.Egg.ElasticBin
|
|
1125
1111
|
|
|
@@ -1278,13 +1264,11 @@ module EmptyState {
|
|
|
1278
1264
|
|
|
1279
1265
|
// Own constructor properties of Egg-1.0.Egg.EmptyState
|
|
1280
1266
|
|
|
1281
|
-
|
|
1282
|
-
|
|
1267
|
+
iconName?: string | null
|
|
1268
|
+
pixelSize?: number | null
|
|
1283
1269
|
resource?: string | null
|
|
1284
1270
|
subtitle?: string | null
|
|
1285
1271
|
title?: string | null
|
|
1286
|
-
iconName?: string | null
|
|
1287
|
-
pixelSize?: number | null
|
|
1288
1272
|
}
|
|
1289
1273
|
|
|
1290
1274
|
}
|
|
@@ -1293,9 +1277,7 @@ interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1293
1277
|
|
|
1294
1278
|
// Own properties of Egg-1.0.Egg.EmptyState
|
|
1295
1279
|
|
|
1296
|
-
icon_name: string | null
|
|
1297
1280
|
iconName: string | null
|
|
1298
|
-
pixel_size: number
|
|
1299
1281
|
pixelSize: number
|
|
1300
1282
|
resource: string | null
|
|
1301
1283
|
subtitle: string | null
|
|
@@ -1307,13 +1289,13 @@ interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1307
1289
|
|
|
1308
1290
|
// Owm methods of Egg-1.0.Egg.EmptyState
|
|
1309
1291
|
|
|
1310
|
-
get_icon_name(): string
|
|
1311
|
-
get_subtitle(): string
|
|
1312
|
-
get_title(): string
|
|
1313
|
-
set_icon_name(icon_name: string
|
|
1314
|
-
set_resource(resource: string
|
|
1315
|
-
set_subtitle(title: string
|
|
1316
|
-
set_title(title: string
|
|
1292
|
+
get_icon_name(): string
|
|
1293
|
+
get_subtitle(): string
|
|
1294
|
+
get_title(): string
|
|
1295
|
+
set_icon_name(icon_name: string): void
|
|
1296
|
+
set_resource(resource: string): void
|
|
1297
|
+
set_subtitle(title: string): void
|
|
1298
|
+
set_title(title: string): void
|
|
1317
1299
|
|
|
1318
1300
|
// Conflicting methods
|
|
1319
1301
|
|
|
@@ -1328,7 +1310,7 @@ interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1328
1310
|
* @param child the child widget
|
|
1329
1311
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1330
1312
|
*/
|
|
1331
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1313
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1332
1314
|
|
|
1333
1315
|
// Overloads of child_notify
|
|
1334
1316
|
|
|
@@ -1342,7 +1324,7 @@ interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1342
1324
|
* Also see gtk_container_child_notify().
|
|
1343
1325
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1344
1326
|
*/
|
|
1345
|
-
child_notify(child_property: string
|
|
1327
|
+
child_notify(child_property: string): void
|
|
1346
1328
|
/**
|
|
1347
1329
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1348
1330
|
* [child property][child-properties] `child_property`
|
|
@@ -1353,7 +1335,7 @@ interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1353
1335
|
* Also see gtk_container_child_notify().
|
|
1354
1336
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1355
1337
|
*/
|
|
1356
|
-
child_notify(child_property: string
|
|
1338
|
+
child_notify(child_property: string): void
|
|
1357
1339
|
|
|
1358
1340
|
// Class property signals of Egg-1.0.Egg.EmptyState
|
|
1359
1341
|
|
|
@@ -1527,7 +1509,6 @@ module EntryBox {
|
|
|
1527
1509
|
|
|
1528
1510
|
// Own constructor properties of Egg-1.0.Egg.EntryBox
|
|
1529
1511
|
|
|
1530
|
-
max_width_chars?: number | null
|
|
1531
1512
|
maxWidthChars?: number | null
|
|
1532
1513
|
}
|
|
1533
1514
|
|
|
@@ -1537,7 +1518,6 @@ interface EntryBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1537
1518
|
|
|
1538
1519
|
// Own properties of Egg-1.0.Egg.EntryBox
|
|
1539
1520
|
|
|
1540
|
-
max_width_chars: number
|
|
1541
1521
|
maxWidthChars: number
|
|
1542
1522
|
|
|
1543
1523
|
// Conflicting methods
|
|
@@ -1553,7 +1533,7 @@ interface EntryBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1553
1533
|
* @param child the child widget
|
|
1554
1534
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1555
1535
|
*/
|
|
1556
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1536
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1557
1537
|
|
|
1558
1538
|
// Overloads of child_notify
|
|
1559
1539
|
|
|
@@ -1567,7 +1547,7 @@ interface EntryBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1567
1547
|
* Also see gtk_container_child_notify().
|
|
1568
1548
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1569
1549
|
*/
|
|
1570
|
-
child_notify(child_property: string
|
|
1550
|
+
child_notify(child_property: string): void
|
|
1571
1551
|
/**
|
|
1572
1552
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1573
1553
|
* [child property][child-properties] `child_property`
|
|
@@ -1578,7 +1558,7 @@ interface EntryBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1578
1558
|
* Also see gtk_container_child_notify().
|
|
1579
1559
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1580
1560
|
*/
|
|
1581
|
-
child_notify(child_property: string
|
|
1561
|
+
child_notify(child_property: string): void
|
|
1582
1562
|
|
|
1583
1563
|
// Class property signals of Egg-1.0.Egg.EntryBox
|
|
1584
1564
|
|
|
@@ -1764,19 +1744,14 @@ module FileChooserEntry {
|
|
|
1764
1744
|
// Own constructor properties of Egg-1.0.Egg.FileChooserEntry
|
|
1765
1745
|
|
|
1766
1746
|
action?: Gtk.FileChooserAction | null
|
|
1767
|
-
create_folders?: boolean | null
|
|
1768
|
-
do_overwrite_confirmation?: boolean | null
|
|
1769
|
-
file?: Gio.File | null
|
|
1770
|
-
filter?: Gtk.FileFilter | null
|
|
1771
|
-
local_only?: boolean | null
|
|
1772
|
-
max_width_chars?: number | null
|
|
1773
|
-
show_hidden?: boolean | null
|
|
1774
|
-
title?: string | null
|
|
1775
1747
|
createFolders?: boolean | null
|
|
1776
1748
|
doOverwriteConfirmation?: boolean | null
|
|
1749
|
+
file?: Gio.File | null
|
|
1750
|
+
filter?: Gtk.FileFilter | null
|
|
1777
1751
|
localOnly?: boolean | null
|
|
1778
1752
|
maxWidthChars?: number | null
|
|
1779
1753
|
showHidden?: boolean | null
|
|
1754
|
+
title?: string | null
|
|
1780
1755
|
}
|
|
1781
1756
|
|
|
1782
1757
|
}
|
|
@@ -1786,17 +1761,12 @@ interface FileChooserEntry extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1786
1761
|
// Own properties of Egg-1.0.Egg.FileChooserEntry
|
|
1787
1762
|
|
|
1788
1763
|
action: Gtk.FileChooserAction
|
|
1789
|
-
create_folders: boolean
|
|
1790
1764
|
createFolders: boolean
|
|
1791
|
-
do_overwrite_confirmation: boolean
|
|
1792
1765
|
doOverwriteConfirmation: boolean
|
|
1793
1766
|
file: Gio.File
|
|
1794
1767
|
filter: Gtk.FileFilter
|
|
1795
|
-
local_only: boolean
|
|
1796
1768
|
localOnly: boolean
|
|
1797
|
-
max_width_chars: number
|
|
1798
1769
|
maxWidthChars: number
|
|
1799
|
-
show_hidden: boolean
|
|
1800
1770
|
showHidden: boolean
|
|
1801
1771
|
title: string | null
|
|
1802
1772
|
|
|
@@ -1826,7 +1796,7 @@ interface FileChooserEntry extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1826
1796
|
* @param child the child widget
|
|
1827
1797
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1828
1798
|
*/
|
|
1829
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1799
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1830
1800
|
|
|
1831
1801
|
// Overloads of child_notify
|
|
1832
1802
|
|
|
@@ -1840,7 +1810,7 @@ interface FileChooserEntry extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1840
1810
|
* Also see gtk_container_child_notify().
|
|
1841
1811
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1842
1812
|
*/
|
|
1843
|
-
child_notify(child_property: string
|
|
1813
|
+
child_notify(child_property: string): void
|
|
1844
1814
|
/**
|
|
1845
1815
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1846
1816
|
* [child property][child-properties] `child_property`
|
|
@@ -1851,7 +1821,7 @@ interface FileChooserEntry extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1851
1821
|
* Also see gtk_container_child_notify().
|
|
1852
1822
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1853
1823
|
*/
|
|
1854
|
-
child_notify(child_property: string
|
|
1824
|
+
child_notify(child_property: string): void
|
|
1855
1825
|
|
|
1856
1826
|
// Class property signals of Egg-1.0.Egg.FileChooserEntry
|
|
1857
1827
|
|
|
@@ -2024,8 +1994,8 @@ class FileChooserEntry extends Gtk.Bin {
|
|
|
2024
1994
|
// Constructors of Egg-1.0.Egg.FileChooserEntry
|
|
2025
1995
|
|
|
2026
1996
|
constructor(config?: FileChooserEntry.ConstructorProperties)
|
|
2027
|
-
constructor(title: string
|
|
2028
|
-
static new(title: string
|
|
1997
|
+
constructor(title: string, action: Gtk.FileChooserAction)
|
|
1998
|
+
static new(title: string, action: Gtk.FileChooserAction): FileChooserEntry
|
|
2029
1999
|
_init(config?: FileChooserEntry.ConstructorProperties): void
|
|
2030
2000
|
}
|
|
2031
2001
|
|
|
@@ -2037,9 +2007,6 @@ module ListBox {
|
|
|
2037
2007
|
|
|
2038
2008
|
// Own constructor properties of Egg-1.0.Egg.ListBox
|
|
2039
2009
|
|
|
2040
|
-
property_name?: string | null
|
|
2041
|
-
row_type?: GObject.GType | null
|
|
2042
|
-
row_type_name?: string | null
|
|
2043
2010
|
propertyName?: string | null
|
|
2044
2011
|
rowType?: GObject.GType | null
|
|
2045
2012
|
rowTypeName?: string | null
|
|
@@ -2051,11 +2018,8 @@ interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2051
2018
|
|
|
2052
2019
|
// Own properties of Egg-1.0.Egg.ListBox
|
|
2053
2020
|
|
|
2054
|
-
readonly property_name: string | null
|
|
2055
2021
|
readonly propertyName: string | null
|
|
2056
|
-
readonly row_type: GObject.GType
|
|
2057
2022
|
readonly rowType: GObject.GType
|
|
2058
|
-
readonly row_type_name: string | null
|
|
2059
2023
|
readonly rowTypeName: string | null
|
|
2060
2024
|
|
|
2061
2025
|
// Own fields of Egg-1.0.Egg.ListBox
|
|
@@ -2065,7 +2029,7 @@ interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2065
2029
|
// Owm methods of Egg-1.0.Egg.ListBox
|
|
2066
2030
|
|
|
2067
2031
|
get_model(): Gio.ListModel | null
|
|
2068
|
-
get_property_name(): string
|
|
2032
|
+
get_property_name(): string
|
|
2069
2033
|
get_row_type(): GObject.GType
|
|
2070
2034
|
set_model(model: Gio.ListModel): void
|
|
2071
2035
|
|
|
@@ -2082,7 +2046,7 @@ interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2082
2046
|
* @param child the child widget
|
|
2083
2047
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2084
2048
|
*/
|
|
2085
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2049
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2086
2050
|
|
|
2087
2051
|
// Overloads of child_notify
|
|
2088
2052
|
|
|
@@ -2096,7 +2060,7 @@ interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2096
2060
|
* Also see gtk_container_child_notify().
|
|
2097
2061
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2098
2062
|
*/
|
|
2099
|
-
child_notify(child_property: string
|
|
2063
|
+
child_notify(child_property: string): void
|
|
2100
2064
|
/**
|
|
2101
2065
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2102
2066
|
* [child property][child-properties] `child_property`
|
|
@@ -2107,7 +2071,7 @@ interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2107
2071
|
* Also see gtk_container_child_notify().
|
|
2108
2072
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2109
2073
|
*/
|
|
2110
|
-
child_notify(child_property: string
|
|
2074
|
+
child_notify(child_property: string): void
|
|
2111
2075
|
|
|
2112
2076
|
// Class property signals of Egg-1.0.Egg.ListBox
|
|
2113
2077
|
|
|
@@ -2268,8 +2232,8 @@ class ListBox extends Gtk.ListBox {
|
|
|
2268
2232
|
// Constructors of Egg-1.0.Egg.ListBox
|
|
2269
2233
|
|
|
2270
2234
|
constructor(config?: ListBox.ConstructorProperties)
|
|
2271
|
-
constructor(row_type: GObject.GType, property_name: string
|
|
2272
|
-
static new(row_type: GObject.GType, property_name: string
|
|
2235
|
+
constructor(row_type: GObject.GType, property_name: string)
|
|
2236
|
+
static new(row_type: GObject.GType, property_name: string): ListBox
|
|
2273
2237
|
|
|
2274
2238
|
// Overloads of new
|
|
2275
2239
|
|
|
@@ -2295,9 +2259,9 @@ interface MenuManager {
|
|
|
2295
2259
|
|
|
2296
2260
|
// Owm methods of Egg-1.0.Egg.MenuManager
|
|
2297
2261
|
|
|
2298
|
-
add_filename(filename: string
|
|
2299
|
-
add_resource(resource: string
|
|
2300
|
-
get_menu_by_id(menu_id: string
|
|
2262
|
+
add_filename(filename: string): number
|
|
2263
|
+
add_resource(resource: string): number
|
|
2264
|
+
get_menu_by_id(menu_id: string): Gio.Menu
|
|
2301
2265
|
remove(merge_id: number): void
|
|
2302
2266
|
|
|
2303
2267
|
// Class property signals of Egg-1.0.Egg.MenuManager
|
|
@@ -2365,8 +2329,8 @@ interface PillBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2365
2329
|
|
|
2366
2330
|
// Owm methods of Egg-1.0.Egg.PillBox
|
|
2367
2331
|
|
|
2368
|
-
get_label(): string
|
|
2369
|
-
set_label(label: string
|
|
2332
|
+
get_label(): string
|
|
2333
|
+
set_label(label: string): void
|
|
2370
2334
|
|
|
2371
2335
|
// Conflicting methods
|
|
2372
2336
|
|
|
@@ -2381,7 +2345,7 @@ interface PillBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2381
2345
|
* @param child the child widget
|
|
2382
2346
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2383
2347
|
*/
|
|
2384
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2348
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2385
2349
|
|
|
2386
2350
|
// Overloads of child_notify
|
|
2387
2351
|
|
|
@@ -2395,7 +2359,7 @@ interface PillBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2395
2359
|
* Also see gtk_container_child_notify().
|
|
2396
2360
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2397
2361
|
*/
|
|
2398
|
-
child_notify(child_property: string
|
|
2362
|
+
child_notify(child_property: string): void
|
|
2399
2363
|
/**
|
|
2400
2364
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2401
2365
|
* [child property][child-properties] `child_property`
|
|
@@ -2406,7 +2370,7 @@ interface PillBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2406
2370
|
* Also see gtk_container_child_notify().
|
|
2407
2371
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2408
2372
|
*/
|
|
2409
|
-
child_notify(child_property: string
|
|
2373
|
+
child_notify(child_property: string): void
|
|
2410
2374
|
|
|
2411
2375
|
// Class property signals of Egg-1.0.Egg.PillBox
|
|
2412
2376
|
|
|
@@ -2561,8 +2525,8 @@ class PillBox extends Gtk.EventBox {
|
|
|
2561
2525
|
// Constructors of Egg-1.0.Egg.PillBox
|
|
2562
2526
|
|
|
2563
2527
|
constructor(config?: PillBox.ConstructorProperties)
|
|
2564
|
-
constructor(label: string
|
|
2565
|
-
static new(label: string
|
|
2528
|
+
constructor(label: string)
|
|
2529
|
+
static new(label: string): PillBox
|
|
2566
2530
|
|
|
2567
2531
|
// Overloads of new
|
|
2568
2532
|
|
|
@@ -2603,7 +2567,7 @@ interface PriorityBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientabl
|
|
|
2603
2567
|
* @param child the child widget
|
|
2604
2568
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2605
2569
|
*/
|
|
2606
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2570
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2607
2571
|
|
|
2608
2572
|
// Overloads of child_notify
|
|
2609
2573
|
|
|
@@ -2617,7 +2581,7 @@ interface PriorityBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientabl
|
|
|
2617
2581
|
* Also see gtk_container_child_notify().
|
|
2618
2582
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2619
2583
|
*/
|
|
2620
|
-
child_notify(child_property: string
|
|
2584
|
+
child_notify(child_property: string): void
|
|
2621
2585
|
/**
|
|
2622
2586
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2623
2587
|
* [child property][child-properties] `child_property`
|
|
@@ -2628,7 +2592,7 @@ interface PriorityBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientabl
|
|
|
2628
2592
|
* Also see gtk_container_child_notify().
|
|
2629
2593
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2630
2594
|
*/
|
|
2631
|
-
child_notify(child_property: string
|
|
2595
|
+
child_notify(child_property: string): void
|
|
2632
2596
|
|
|
2633
2597
|
// Class property signals of Egg-1.0.Egg.PriorityBox
|
|
2634
2598
|
|
|
@@ -2815,7 +2779,6 @@ module ProgressButton {
|
|
|
2815
2779
|
// Own constructor properties of Egg-1.0.Egg.ProgressButton
|
|
2816
2780
|
|
|
2817
2781
|
progress?: number | null
|
|
2818
|
-
show_progress?: boolean | null
|
|
2819
2782
|
showProgress?: boolean | null
|
|
2820
2783
|
}
|
|
2821
2784
|
|
|
@@ -2826,7 +2789,6 @@ interface ProgressButton extends Atk.ImplementorIface, Gtk.Actionable, Gtk.Activ
|
|
|
2826
2789
|
// Own properties of Egg-1.0.Egg.ProgressButton
|
|
2827
2790
|
|
|
2828
2791
|
progress: number
|
|
2829
|
-
show_progress: boolean
|
|
2830
2792
|
showProgress: boolean
|
|
2831
2793
|
|
|
2832
2794
|
// Own fields of Egg-1.0.Egg.ProgressButton
|
|
@@ -2852,7 +2814,7 @@ interface ProgressButton extends Atk.ImplementorIface, Gtk.Actionable, Gtk.Activ
|
|
|
2852
2814
|
* Also see gtk_container_child_notify().
|
|
2853
2815
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2854
2816
|
*/
|
|
2855
|
-
child_notify(child_property: string
|
|
2817
|
+
child_notify(child_property: string): void
|
|
2856
2818
|
/**
|
|
2857
2819
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2858
2820
|
* [child property][child-properties]
|
|
@@ -2864,7 +2826,7 @@ interface ProgressButton extends Atk.ImplementorIface, Gtk.Actionable, Gtk.Activ
|
|
|
2864
2826
|
* @param child the child widget
|
|
2865
2827
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2866
2828
|
*/
|
|
2867
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2829
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2868
2830
|
|
|
2869
2831
|
// Overloads of child_notify
|
|
2870
2832
|
|
|
@@ -2878,7 +2840,7 @@ interface ProgressButton extends Atk.ImplementorIface, Gtk.Actionable, Gtk.Activ
|
|
|
2878
2840
|
* Also see gtk_container_child_notify().
|
|
2879
2841
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2880
2842
|
*/
|
|
2881
|
-
child_notify(child_property: string
|
|
2843
|
+
child_notify(child_property: string): void
|
|
2882
2844
|
|
|
2883
2845
|
// Class property signals of Egg-1.0.Egg.ProgressButton
|
|
2884
2846
|
|
|
@@ -3092,8 +3054,6 @@ module RadioBox {
|
|
|
3092
3054
|
|
|
3093
3055
|
// Own constructor properties of Egg-1.0.Egg.RadioBox
|
|
3094
3056
|
|
|
3095
|
-
active_id?: string | null
|
|
3096
|
-
show_more?: boolean | null
|
|
3097
3057
|
activeId?: string | null
|
|
3098
3058
|
showMore?: boolean | null
|
|
3099
3059
|
}
|
|
@@ -3104,11 +3064,8 @@ interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3104
3064
|
|
|
3105
3065
|
// Own properties of Egg-1.0.Egg.RadioBox
|
|
3106
3066
|
|
|
3107
|
-
active_id: string | null
|
|
3108
3067
|
activeId: string | null
|
|
3109
|
-
readonly has_more: boolean
|
|
3110
3068
|
readonly hasMore: boolean
|
|
3111
|
-
show_more: boolean
|
|
3112
3069
|
showMore: boolean
|
|
3113
3070
|
|
|
3114
3071
|
// Own fields of Egg-1.0.Egg.RadioBox
|
|
@@ -3117,9 +3074,9 @@ interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3117
3074
|
|
|
3118
3075
|
// Owm methods of Egg-1.0.Egg.RadioBox
|
|
3119
3076
|
|
|
3120
|
-
add_item(id: string
|
|
3121
|
-
get_active_id(): string
|
|
3122
|
-
set_active_id(id: string
|
|
3077
|
+
add_item(id: string, text: string): void
|
|
3078
|
+
get_active_id(): string
|
|
3079
|
+
set_active_id(id: string): void
|
|
3123
3080
|
|
|
3124
3081
|
// Conflicting methods
|
|
3125
3082
|
|
|
@@ -3134,7 +3091,7 @@ interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3134
3091
|
* @param child the child widget
|
|
3135
3092
|
* @param child_property the name of a child property installed on the class of `container`
|
|
3136
3093
|
*/
|
|
3137
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
3094
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
3138
3095
|
|
|
3139
3096
|
// Overloads of child_notify
|
|
3140
3097
|
|
|
@@ -3148,7 +3105,7 @@ interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3148
3105
|
* Also see gtk_container_child_notify().
|
|
3149
3106
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3150
3107
|
*/
|
|
3151
|
-
child_notify(child_property: string
|
|
3108
|
+
child_notify(child_property: string): void
|
|
3152
3109
|
/**
|
|
3153
3110
|
* Emits a #GtkWidget::child-notify signal for the
|
|
3154
3111
|
* [child property][child-properties] `child_property`
|
|
@@ -3159,7 +3116,7 @@ interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3159
3116
|
* Also see gtk_container_child_notify().
|
|
3160
3117
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3161
3118
|
*/
|
|
3162
|
-
child_notify(child_property: string
|
|
3119
|
+
child_notify(child_property: string): void
|
|
3163
3120
|
|
|
3164
3121
|
// Own signals of Egg-1.0.Egg.RadioBox
|
|
3165
3122
|
|
|
@@ -3353,7 +3310,7 @@ interface ScrolledWindow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3353
3310
|
* @param child the child widget
|
|
3354
3311
|
* @param child_property the name of a child property installed on the class of `container`
|
|
3355
3312
|
*/
|
|
3356
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
3313
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
3357
3314
|
|
|
3358
3315
|
// Overloads of child_notify
|
|
3359
3316
|
|
|
@@ -3367,7 +3324,7 @@ interface ScrolledWindow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3367
3324
|
* Also see gtk_container_child_notify().
|
|
3368
3325
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3369
3326
|
*/
|
|
3370
|
-
child_notify(child_property: string
|
|
3327
|
+
child_notify(child_property: string): void
|
|
3371
3328
|
/**
|
|
3372
3329
|
* Emits a #GtkWidget::child-notify signal for the
|
|
3373
3330
|
* [child property][child-properties] `child_property`
|
|
@@ -3378,7 +3335,7 @@ interface ScrolledWindow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3378
3335
|
* Also see gtk_container_child_notify().
|
|
3379
3336
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3380
3337
|
*/
|
|
3381
|
-
child_notify(child_property: string
|
|
3338
|
+
child_notify(child_property: string): void
|
|
3382
3339
|
|
|
3383
3340
|
// Class property signals of Egg-1.0.Egg.ScrolledWindow
|
|
3384
3341
|
|
|
@@ -3597,8 +3554,6 @@ module SearchBar {
|
|
|
3597
3554
|
|
|
3598
3555
|
// Own constructor properties of Egg-1.0.Egg.SearchBar
|
|
3599
3556
|
|
|
3600
|
-
search_mode_enabled?: boolean | null
|
|
3601
|
-
show_close_button?: boolean | null
|
|
3602
3557
|
searchModeEnabled?: boolean | null
|
|
3603
3558
|
showCloseButton?: boolean | null
|
|
3604
3559
|
}
|
|
@@ -3609,9 +3564,7 @@ interface SearchBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3609
3564
|
|
|
3610
3565
|
// Own properties of Egg-1.0.Egg.SearchBar
|
|
3611
3566
|
|
|
3612
|
-
search_mode_enabled: boolean
|
|
3613
3567
|
searchModeEnabled: boolean
|
|
3614
|
-
show_close_button: boolean
|
|
3615
3568
|
showCloseButton: boolean
|
|
3616
3569
|
|
|
3617
3570
|
// Own fields of Egg-1.0.Egg.SearchBar
|
|
@@ -3639,7 +3592,7 @@ interface SearchBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3639
3592
|
* @param child the child widget
|
|
3640
3593
|
* @param child_property the name of a child property installed on the class of `container`
|
|
3641
3594
|
*/
|
|
3642
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
3595
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
3643
3596
|
|
|
3644
3597
|
// Overloads of child_notify
|
|
3645
3598
|
|
|
@@ -3653,7 +3606,7 @@ interface SearchBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3653
3606
|
* Also see gtk_container_child_notify().
|
|
3654
3607
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3655
3608
|
*/
|
|
3656
|
-
child_notify(child_property: string
|
|
3609
|
+
child_notify(child_property: string): void
|
|
3657
3610
|
/**
|
|
3658
3611
|
* Emits a #GtkWidget::child-notify signal for the
|
|
3659
3612
|
* [child property][child-properties] `child_property`
|
|
@@ -3664,7 +3617,7 @@ interface SearchBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3664
3617
|
* Also see gtk_container_child_notify().
|
|
3665
3618
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3666
3619
|
*/
|
|
3667
|
-
child_notify(child_property: string
|
|
3620
|
+
child_notify(child_property: string): void
|
|
3668
3621
|
|
|
3669
3622
|
// Own signals of Egg-1.0.Egg.SearchBar
|
|
3670
3623
|
|
|
@@ -3838,9 +3791,6 @@ module SettingsFlagAction {
|
|
|
3838
3791
|
|
|
3839
3792
|
// Own constructor properties of Egg-1.0.Egg.SettingsFlagAction
|
|
3840
3793
|
|
|
3841
|
-
flag_nick?: string | null
|
|
3842
|
-
schema_id?: string | null
|
|
3843
|
-
schema_key?: string | null
|
|
3844
3794
|
flagNick?: string | null
|
|
3845
3795
|
schemaId?: string | null
|
|
3846
3796
|
schemaKey?: string | null
|
|
@@ -3852,11 +3802,8 @@ interface SettingsFlagAction extends Gio.Action {
|
|
|
3852
3802
|
|
|
3853
3803
|
// Own properties of Egg-1.0.Egg.SettingsFlagAction
|
|
3854
3804
|
|
|
3855
|
-
readonly flag_nick: string | null
|
|
3856
3805
|
readonly flagNick: string | null
|
|
3857
|
-
readonly schema_id: string | null
|
|
3858
3806
|
readonly schemaId: string | null
|
|
3859
|
-
schema_key: string | null
|
|
3860
3807
|
schemaKey: string | null
|
|
3861
3808
|
|
|
3862
3809
|
// Class property signals of Egg-1.0.Egg.SettingsFlagAction
|
|
@@ -3910,7 +3857,7 @@ class SettingsFlagAction extends GObject.Object {
|
|
|
3910
3857
|
* @param flag_nick
|
|
3911
3858
|
* @returns A new #GAction.
|
|
3912
3859
|
*/
|
|
3913
|
-
static new(schema_id: string
|
|
3860
|
+
static new(schema_id: string, schema_key: string, flag_nick: string): Gio.Action
|
|
3914
3861
|
}
|
|
3915
3862
|
|
|
3916
3863
|
module SettingsSandwich {
|
|
@@ -3922,7 +3869,6 @@ module SettingsSandwich {
|
|
|
3922
3869
|
// Own constructor properties of Egg-1.0.Egg.SettingsSandwich
|
|
3923
3870
|
|
|
3924
3871
|
path?: string | null
|
|
3925
|
-
schema_id?: string | null
|
|
3926
3872
|
schemaId?: string | null
|
|
3927
3873
|
}
|
|
3928
3874
|
|
|
@@ -3933,13 +3879,12 @@ interface SettingsSandwich {
|
|
|
3933
3879
|
// Own properties of Egg-1.0.Egg.SettingsSandwich
|
|
3934
3880
|
|
|
3935
3881
|
readonly path: string | null
|
|
3936
|
-
readonly schema_id: string | null
|
|
3937
3882
|
readonly schemaId: string | null
|
|
3938
3883
|
|
|
3939
3884
|
// Owm methods of Egg-1.0.Egg.SettingsSandwich
|
|
3940
3885
|
|
|
3941
3886
|
append(settings: Gio.Settings): void
|
|
3942
|
-
bind(key: string
|
|
3887
|
+
bind(key: string, object: any | null, property: string, flags: Gio.SettingsBindFlags): void
|
|
3943
3888
|
/**
|
|
3944
3889
|
* Creates a new binding similar to g_settings_bind_with_mapping() but applying
|
|
3945
3890
|
* from the resolved value via the settings sandwich.
|
|
@@ -3950,22 +3895,22 @@ interface SettingsSandwich {
|
|
|
3950
3895
|
* @param get_mapping the get mapping function
|
|
3951
3896
|
* @param set_mapping the set mapping function
|
|
3952
3897
|
*/
|
|
3953
|
-
bind_with_mapping(key: string
|
|
3954
|
-
get_boolean(key: string
|
|
3955
|
-
get_default_value(key: string
|
|
3956
|
-
get_double(key: string
|
|
3957
|
-
get_int(key: string
|
|
3958
|
-
get_string(key: string
|
|
3959
|
-
get_uint(key: string
|
|
3960
|
-
get_user_value(key: string
|
|
3961
|
-
get_value(key: string
|
|
3962
|
-
set_boolean(key: string
|
|
3963
|
-
set_double(key: string
|
|
3964
|
-
set_int(key: string
|
|
3965
|
-
set_string(key: string
|
|
3966
|
-
set_uint(key: string
|
|
3967
|
-
set_value(key: string
|
|
3968
|
-
unbind(property: string
|
|
3898
|
+
bind_with_mapping(key: string, object: any | null, property: string, flags: Gio.SettingsBindFlags, get_mapping: Gio.SettingsBindGetMapping, set_mapping: Gio.SettingsBindSetMapping): void
|
|
3899
|
+
get_boolean(key: string): boolean
|
|
3900
|
+
get_default_value(key: string): GLib.Variant
|
|
3901
|
+
get_double(key: string): number
|
|
3902
|
+
get_int(key: string): number
|
|
3903
|
+
get_string(key: string): string | null
|
|
3904
|
+
get_uint(key: string): number
|
|
3905
|
+
get_user_value(key: string): GLib.Variant
|
|
3906
|
+
get_value(key: string): GLib.Variant
|
|
3907
|
+
set_boolean(key: string, val: boolean): void
|
|
3908
|
+
set_double(key: string, val: number): void
|
|
3909
|
+
set_int(key: string, val: number): void
|
|
3910
|
+
set_string(key: string, val: string): void
|
|
3911
|
+
set_uint(key: string, val: number): void
|
|
3912
|
+
set_value(key: string, value: GLib.Variant): void
|
|
3913
|
+
unbind(property: string): void
|
|
3969
3914
|
|
|
3970
3915
|
// Class property signals of Egg-1.0.Egg.SettingsSandwich
|
|
3971
3916
|
|
|
@@ -3991,8 +3936,8 @@ class SettingsSandwich extends GObject.Object {
|
|
|
3991
3936
|
// Constructors of Egg-1.0.Egg.SettingsSandwich
|
|
3992
3937
|
|
|
3993
3938
|
constructor(config?: SettingsSandwich.ConstructorProperties)
|
|
3994
|
-
constructor(schema_id: string
|
|
3995
|
-
static new(schema_id: string
|
|
3939
|
+
constructor(schema_id: string, path: string)
|
|
3940
|
+
static new(schema_id: string, path: string): SettingsSandwich
|
|
3996
3941
|
_init(config?: SettingsSandwich.ConstructorProperties): void
|
|
3997
3942
|
}
|
|
3998
3943
|
|
|
@@ -4025,10 +3970,6 @@ module SignalGroup {
|
|
|
4025
3970
|
* The target instance used when connecting signals.
|
|
4026
3971
|
*/
|
|
4027
3972
|
target?: GObject.Object | null
|
|
4028
|
-
/**
|
|
4029
|
-
* The GType of the target property.
|
|
4030
|
-
*/
|
|
4031
|
-
target_type?: GObject.GType | null
|
|
4032
3973
|
/**
|
|
4033
3974
|
* The GType of the target property.
|
|
4034
3975
|
*/
|
|
@@ -4045,10 +3986,6 @@ interface SignalGroup {
|
|
|
4045
3986
|
* The target instance used when connecting signals.
|
|
4046
3987
|
*/
|
|
4047
3988
|
target: GObject.Object
|
|
4048
|
-
/**
|
|
4049
|
-
* The GType of the target property.
|
|
4050
|
-
*/
|
|
4051
|
-
readonly target_type: GObject.GType
|
|
4052
3989
|
/**
|
|
4053
3990
|
* The GType of the target property.
|
|
4054
3991
|
*/
|
|
@@ -4075,7 +4012,7 @@ interface SignalGroup {
|
|
|
4075
4012
|
* @param c_handler the #GCallback to connect
|
|
4076
4013
|
* @param flags the flags used to create the signal connection
|
|
4077
4014
|
*/
|
|
4078
|
-
connect_data(detailed_signal: string
|
|
4015
|
+
connect_data(detailed_signal: string, c_handler: GObject.Callback, flags: GObject.ConnectFlags): void
|
|
4079
4016
|
/**
|
|
4080
4017
|
* Connects `callback` to the signal `detailed_signal`
|
|
4081
4018
|
* on the target instance of `self`.
|
|
@@ -4087,7 +4024,7 @@ interface SignalGroup {
|
|
|
4087
4024
|
* @param detailed_signal a string of the form "signal-name::detail"
|
|
4088
4025
|
* @param c_handler the #GCallback to connect
|
|
4089
4026
|
*/
|
|
4090
|
-
connect_swapped(detailed_signal: string
|
|
4027
|
+
connect_swapped(detailed_signal: string, c_handler: GObject.Callback): void
|
|
4091
4028
|
/**
|
|
4092
4029
|
* Gets the target instance used when connecting signals.
|
|
4093
4030
|
* @returns The target instance.
|
|
@@ -4193,9 +4130,8 @@ module SimpleLabel {
|
|
|
4193
4130
|
// Own constructor properties of Egg-1.0.Egg.SimpleLabel
|
|
4194
4131
|
|
|
4195
4132
|
label?: string | null
|
|
4196
|
-
width_chars?: number | null
|
|
4197
|
-
xalign?: number | null
|
|
4198
4133
|
widthChars?: number | null
|
|
4134
|
+
xalign?: number | null
|
|
4199
4135
|
}
|
|
4200
4136
|
|
|
4201
4137
|
}
|
|
@@ -4205,16 +4141,15 @@ interface SimpleLabel extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4205
4141
|
// Own properties of Egg-1.0.Egg.SimpleLabel
|
|
4206
4142
|
|
|
4207
4143
|
label: string | null
|
|
4208
|
-
width_chars: number
|
|
4209
4144
|
widthChars: number
|
|
4210
4145
|
xalign: number
|
|
4211
4146
|
|
|
4212
4147
|
// Owm methods of Egg-1.0.Egg.SimpleLabel
|
|
4213
4148
|
|
|
4214
|
-
get_label(): string
|
|
4149
|
+
get_label(): string
|
|
4215
4150
|
get_width_chars(): number
|
|
4216
4151
|
get_xalign(): number
|
|
4217
|
-
set_label(label: string
|
|
4152
|
+
set_label(label: string): void
|
|
4218
4153
|
set_width_chars(width_chars: number): void
|
|
4219
4154
|
set_xalign(xalign: number): void
|
|
4220
4155
|
|
|
@@ -4362,8 +4297,8 @@ class SimpleLabel extends Gtk.Widget {
|
|
|
4362
4297
|
// Constructors of Egg-1.0.Egg.SimpleLabel
|
|
4363
4298
|
|
|
4364
4299
|
constructor(config?: SimpleLabel.ConstructorProperties)
|
|
4365
|
-
constructor(label: string
|
|
4366
|
-
static new(label: string
|
|
4300
|
+
constructor(label: string)
|
|
4301
|
+
static new(label: string): SimpleLabel
|
|
4367
4302
|
_init(config?: SimpleLabel.ConstructorProperties): void
|
|
4368
4303
|
}
|
|
4369
4304
|
|
|
@@ -4399,12 +4334,11 @@ module SimplePopover {
|
|
|
4399
4334
|
|
|
4400
4335
|
// Own constructor properties of Egg-1.0.Egg.SimplePopover
|
|
4401
4336
|
|
|
4402
|
-
|
|
4337
|
+
buttonText?: string | null
|
|
4403
4338
|
message?: string | null
|
|
4404
4339
|
ready?: boolean | null
|
|
4405
4340
|
text?: string | null
|
|
4406
4341
|
title?: string | null
|
|
4407
|
-
buttonText?: string | null
|
|
4408
4342
|
}
|
|
4409
4343
|
|
|
4410
4344
|
}
|
|
@@ -4413,7 +4347,6 @@ interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4413
4347
|
|
|
4414
4348
|
// Own properties of Egg-1.0.Egg.SimplePopover
|
|
4415
4349
|
|
|
4416
|
-
button_text: string | null
|
|
4417
4350
|
buttonText: string | null
|
|
4418
4351
|
message: string | null
|
|
4419
4352
|
ready: boolean
|
|
@@ -4426,16 +4359,16 @@ interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4426
4359
|
|
|
4427
4360
|
// Owm methods of Egg-1.0.Egg.SimplePopover
|
|
4428
4361
|
|
|
4429
|
-
get_button_text(): string
|
|
4430
|
-
get_message(): string
|
|
4362
|
+
get_button_text(): string
|
|
4363
|
+
get_message(): string
|
|
4431
4364
|
get_ready(): boolean
|
|
4432
|
-
get_text(): string
|
|
4433
|
-
get_title(): string
|
|
4434
|
-
set_button_text(button_text: string
|
|
4435
|
-
set_message(message: string
|
|
4365
|
+
get_text(): string
|
|
4366
|
+
get_title(): string
|
|
4367
|
+
set_button_text(button_text: string): void
|
|
4368
|
+
set_message(message: string): void
|
|
4436
4369
|
set_ready(ready: boolean): void
|
|
4437
|
-
set_text(text: string
|
|
4438
|
-
set_title(title: string
|
|
4370
|
+
set_text(text: string): void
|
|
4371
|
+
set_title(title: string): void
|
|
4439
4372
|
|
|
4440
4373
|
// Conflicting methods
|
|
4441
4374
|
|
|
@@ -4450,7 +4383,7 @@ interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4450
4383
|
* @param child the child widget
|
|
4451
4384
|
* @param child_property the name of a child property installed on the class of `container`
|
|
4452
4385
|
*/
|
|
4453
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
4386
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
4454
4387
|
|
|
4455
4388
|
// Overloads of child_notify
|
|
4456
4389
|
|
|
@@ -4464,7 +4397,7 @@ interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4464
4397
|
* Also see gtk_container_child_notify().
|
|
4465
4398
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
4466
4399
|
*/
|
|
4467
|
-
child_notify(child_property: string
|
|
4400
|
+
child_notify(child_property: string): void
|
|
4468
4401
|
/**
|
|
4469
4402
|
* Emits a #GtkWidget::child-notify signal for the
|
|
4470
4403
|
* [child property][child-properties] `child_property`
|
|
@@ -4475,13 +4408,13 @@ interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4475
4408
|
* Also see gtk_container_child_notify().
|
|
4476
4409
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
4477
4410
|
*/
|
|
4478
|
-
child_notify(child_property: string
|
|
4411
|
+
child_notify(child_property: string): void
|
|
4479
4412
|
|
|
4480
4413
|
// Own virtual methods of Egg-1.0.Egg.SimplePopover
|
|
4481
4414
|
|
|
4482
|
-
vfunc_activate(text: string
|
|
4415
|
+
vfunc_activate(text: string): void
|
|
4483
4416
|
vfunc_changed(): void
|
|
4484
|
-
vfunc_insert_text(position: number, chars: string
|
|
4417
|
+
vfunc_insert_text(position: number, chars: string, n_chars: number): boolean
|
|
4485
4418
|
|
|
4486
4419
|
// Own signals of Egg-1.0.Egg.SimplePopover
|
|
4487
4420
|
|
|
@@ -4729,7 +4662,7 @@ interface Slider extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4729
4662
|
* @param child the child widget
|
|
4730
4663
|
* @param child_property the name of a child property installed on the class of `container`
|
|
4731
4664
|
*/
|
|
4732
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
4665
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
4733
4666
|
|
|
4734
4667
|
// Overloads of child_notify
|
|
4735
4668
|
|
|
@@ -4743,7 +4676,7 @@ interface Slider extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4743
4676
|
* Also see gtk_container_child_notify().
|
|
4744
4677
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
4745
4678
|
*/
|
|
4746
|
-
child_notify(child_property: string
|
|
4679
|
+
child_notify(child_property: string): void
|
|
4747
4680
|
/**
|
|
4748
4681
|
* Emits a #GtkWidget::child-notify signal for the
|
|
4749
4682
|
* [child property][child-properties] `child_property`
|
|
@@ -4754,7 +4687,7 @@ interface Slider extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4754
4687
|
* Also see gtk_container_child_notify().
|
|
4755
4688
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
4756
4689
|
*/
|
|
4757
|
-
child_notify(child_property: string
|
|
4690
|
+
child_notify(child_property: string): void
|
|
4758
4691
|
|
|
4759
4692
|
// Class property signals of Egg-1.0.Egg.Slider
|
|
4760
4693
|
|
|
@@ -4933,9 +4866,9 @@ interface StateMachine extends Gtk.Buildable {
|
|
|
4933
4866
|
|
|
4934
4867
|
// Owm methods of Egg-1.0.Egg.StateMachine
|
|
4935
4868
|
|
|
4936
|
-
add_binding(state: string
|
|
4937
|
-
add_propertyv(state: string
|
|
4938
|
-
add_style(state: string
|
|
4869
|
+
add_binding(state: string, source_object: any | null, source_property: string, target_object: any | null, target_property: string, flags: GObject.BindingFlags): void
|
|
4870
|
+
add_propertyv(state: string, object: any | null, property: string, value: any): void
|
|
4871
|
+
add_style(state: string, widget: Gtk.Widget, style: string): void
|
|
4939
4872
|
/**
|
|
4940
4873
|
* Creates a new #GAction with the name of `name`.
|
|
4941
4874
|
*
|
|
@@ -4944,13 +4877,13 @@ interface StateMachine extends Gtk.Buildable {
|
|
|
4944
4877
|
* @param name the name of the action.
|
|
4945
4878
|
* @returns A newly created #GAction.
|
|
4946
4879
|
*/
|
|
4947
|
-
create_action(name: string
|
|
4880
|
+
create_action(name: string): Gio.Action
|
|
4948
4881
|
/**
|
|
4949
4882
|
* Gets the #EggStateMachine:state property. This is the name of the
|
|
4950
4883
|
* current state of the machine.
|
|
4951
4884
|
* @returns The current state of the machine.
|
|
4952
4885
|
*/
|
|
4953
|
-
get_state(): string
|
|
4886
|
+
get_state(): string
|
|
4954
4887
|
/**
|
|
4955
4888
|
* Sets the #EggStateMachine:state property.
|
|
4956
4889
|
*
|
|
@@ -4961,7 +4894,7 @@ interface StateMachine extends Gtk.Buildable {
|
|
|
4961
4894
|
* the last state before the cycle was detected.
|
|
4962
4895
|
* @param state
|
|
4963
4896
|
*/
|
|
4964
|
-
set_state(state: string
|
|
4897
|
+
set_state(state: string): void
|
|
4965
4898
|
|
|
4966
4899
|
// Class property signals of Egg-1.0.Egg.StateMachine
|
|
4967
4900
|
|
|
@@ -5014,11 +4947,10 @@ module Suggestion {
|
|
|
5014
4947
|
|
|
5015
4948
|
// Own constructor properties of Egg-1.0.Egg.Suggestion
|
|
5016
4949
|
|
|
5017
|
-
|
|
4950
|
+
iconName?: string | null
|
|
5018
4951
|
id?: string | null
|
|
5019
4952
|
subtitle?: string | null
|
|
5020
4953
|
title?: string | null
|
|
5021
|
-
iconName?: string | null
|
|
5022
4954
|
}
|
|
5023
4955
|
|
|
5024
4956
|
}
|
|
@@ -5027,7 +4959,6 @@ interface Suggestion {
|
|
|
5027
4959
|
|
|
5028
4960
|
// Own properties of Egg-1.0.Egg.Suggestion
|
|
5029
4961
|
|
|
5030
|
-
icon_name: string | null
|
|
5031
4962
|
iconName: string | null
|
|
5032
4963
|
id: string | null
|
|
5033
4964
|
subtitle: string | null
|
|
@@ -5039,10 +4970,10 @@ interface Suggestion {
|
|
|
5039
4970
|
|
|
5040
4971
|
// Owm methods of Egg-1.0.Egg.Suggestion
|
|
5041
4972
|
|
|
5042
|
-
get_icon_name(): string
|
|
5043
|
-
get_id(): string
|
|
5044
|
-
get_subtitle(): string
|
|
5045
|
-
get_title(): string
|
|
4973
|
+
get_icon_name(): string
|
|
4974
|
+
get_id(): string
|
|
4975
|
+
get_subtitle(): string
|
|
4976
|
+
get_title(): string
|
|
5046
4977
|
/**
|
|
5047
4978
|
* This function is meant to be used to replace the text in the entry with text
|
|
5048
4979
|
* that represents the suggestion most accurately. This happens when the user
|
|
@@ -5053,11 +4984,11 @@ interface Suggestion {
|
|
|
5053
4984
|
* @param typed_text the text that was typed into the entry
|
|
5054
4985
|
* @returns The replacement text to insert into the entry when "tab" is pressed to complete the insertion.
|
|
5055
4986
|
*/
|
|
5056
|
-
replace_typed_text(typed_text: string
|
|
5057
|
-
set_icon_name(icon_name: string
|
|
5058
|
-
set_id(id: string
|
|
5059
|
-
set_subtitle(subtitle: string
|
|
5060
|
-
set_title(title: string
|
|
4987
|
+
replace_typed_text(typed_text: string): string | null
|
|
4988
|
+
set_icon_name(icon_name: string): void
|
|
4989
|
+
set_id(id: string): void
|
|
4990
|
+
set_subtitle(subtitle: string): void
|
|
4991
|
+
set_title(title: string): void
|
|
5061
4992
|
/**
|
|
5062
4993
|
* This function requests potential text to append to `typed_text` to make it
|
|
5063
4994
|
* more clear to the user what they will be activating by selecting this
|
|
@@ -5066,7 +4997,7 @@ interface Suggestion {
|
|
|
5066
4997
|
* @param typed_text The user entered text
|
|
5067
4998
|
* @returns Suffix to append to @typed_text or %NULL to leave it unchanged.
|
|
5068
4999
|
*/
|
|
5069
|
-
suggest_suffix(typed_text: string
|
|
5000
|
+
suggest_suffix(typed_text: string): string | null
|
|
5070
5001
|
|
|
5071
5002
|
// Own virtual methods of Egg-1.0.Egg.Suggestion
|
|
5072
5003
|
|
|
@@ -5081,7 +5012,7 @@ interface Suggestion {
|
|
|
5081
5012
|
* @param typed_text the text that was typed into the entry
|
|
5082
5013
|
* @returns The replacement text to insert into the entry when "tab" is pressed to complete the insertion.
|
|
5083
5014
|
*/
|
|
5084
|
-
vfunc_replace_typed_text(typed_text: string
|
|
5015
|
+
vfunc_replace_typed_text(typed_text: string): string | null
|
|
5085
5016
|
/**
|
|
5086
5017
|
* This function requests potential text to append to `typed_text` to make it
|
|
5087
5018
|
* more clear to the user what they will be activating by selecting this
|
|
@@ -5091,7 +5022,7 @@ interface Suggestion {
|
|
|
5091
5022
|
* @param typed_text The user entered text
|
|
5092
5023
|
* @returns Suffix to append to @typed_text or %NULL to leave it unchanged.
|
|
5093
5024
|
*/
|
|
5094
|
-
vfunc_suggest_suffix(typed_text: string
|
|
5025
|
+
vfunc_suggest_suffix(typed_text: string): string | null
|
|
5095
5026
|
|
|
5096
5027
|
// Own signals of Egg-1.0.Egg.Suggestion
|
|
5097
5028
|
|
|
@@ -5193,7 +5124,6 @@ interface SuggestionEntry extends Atk.ImplementorIface, Gtk.Buildable, Gtk.CellE
|
|
|
5193
5124
|
// Own properties of Egg-1.0.Egg.SuggestionEntry
|
|
5194
5125
|
|
|
5195
5126
|
model: Gio.ListModel
|
|
5196
|
-
readonly typed_text: string | null
|
|
5197
5127
|
readonly typedText: string | null
|
|
5198
5128
|
|
|
5199
5129
|
// Own fields of Egg-1.0.Egg.SuggestionEntry
|
|
@@ -5212,7 +5142,7 @@ interface SuggestionEntry extends Atk.ImplementorIface, Gtk.Buildable, Gtk.CellE
|
|
|
5212
5142
|
* @returns An #EggSuggestion or %NULL.
|
|
5213
5143
|
*/
|
|
5214
5144
|
get_suggestion(): Suggestion | null
|
|
5215
|
-
get_typed_text(): string
|
|
5145
|
+
get_typed_text(): string
|
|
5216
5146
|
set_model(model: Gio.ListModel): void
|
|
5217
5147
|
set_suggestion(suggestion: Suggestion): void
|
|
5218
5148
|
|
|
@@ -5576,7 +5506,7 @@ interface SuggestionEntryBuffer {
|
|
|
5576
5506
|
*/
|
|
5577
5507
|
get_suggestion(): Suggestion | null
|
|
5578
5508
|
get_typed_length(): number
|
|
5579
|
-
get_typed_text(): string
|
|
5509
|
+
get_typed_text(): string
|
|
5580
5510
|
/**
|
|
5581
5511
|
* Sets the current suggestion for the entry buffer.
|
|
5582
5512
|
*
|
|
@@ -5654,9 +5584,8 @@ module SuggestionPopover {
|
|
|
5654
5584
|
// Own constructor properties of Egg-1.0.Egg.SuggestionPopover
|
|
5655
5585
|
|
|
5656
5586
|
model?: Suggestion | null
|
|
5657
|
-
relative_to?: Gtk.Widget | null
|
|
5658
|
-
selected?: Suggestion | null
|
|
5659
5587
|
relativeTo?: Gtk.Widget | null
|
|
5588
|
+
selected?: Suggestion | null
|
|
5660
5589
|
}
|
|
5661
5590
|
|
|
5662
5591
|
}
|
|
@@ -5666,7 +5595,6 @@ interface SuggestionPopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
5666
5595
|
// Own properties of Egg-1.0.Egg.SuggestionPopover
|
|
5667
5596
|
|
|
5668
5597
|
model: Suggestion
|
|
5669
|
-
relative_to: Gtk.Widget
|
|
5670
5598
|
relativeTo: Gtk.Widget
|
|
5671
5599
|
selected: Suggestion
|
|
5672
5600
|
|
|
@@ -5726,7 +5654,7 @@ interface SuggestionPopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
5726
5654
|
* @param child the child widget
|
|
5727
5655
|
* @param child_property the name of a child property installed on the class of `container`
|
|
5728
5656
|
*/
|
|
5729
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
5657
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
5730
5658
|
|
|
5731
5659
|
// Overloads of child_notify
|
|
5732
5660
|
|
|
@@ -5740,7 +5668,7 @@ interface SuggestionPopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
5740
5668
|
* Also see gtk_container_child_notify().
|
|
5741
5669
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
5742
5670
|
*/
|
|
5743
|
-
child_notify(child_property: string
|
|
5671
|
+
child_notify(child_property: string): void
|
|
5744
5672
|
/**
|
|
5745
5673
|
* Emits a #GtkWidget::child-notify signal for the
|
|
5746
5674
|
* [child property][child-properties] `child_property`
|
|
@@ -5751,7 +5679,7 @@ interface SuggestionPopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
5751
5679
|
* Also see gtk_container_child_notify().
|
|
5752
5680
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
5753
5681
|
*/
|
|
5754
|
-
child_notify(child_property: string
|
|
5682
|
+
child_notify(child_property: string): void
|
|
5755
5683
|
|
|
5756
5684
|
// Own signals of Egg-1.0.Egg.SuggestionPopover
|
|
5757
5685
|
|
|
@@ -6089,7 +6017,7 @@ interface SuggestionRow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6089
6017
|
* Also see gtk_container_child_notify().
|
|
6090
6018
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
6091
6019
|
*/
|
|
6092
|
-
child_notify(child_property: string
|
|
6020
|
+
child_notify(child_property: string): void
|
|
6093
6021
|
/**
|
|
6094
6022
|
* Emits a #GtkWidget::child-notify signal for the
|
|
6095
6023
|
* [child property][child-properties]
|
|
@@ -6101,7 +6029,7 @@ interface SuggestionRow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6101
6029
|
* @param child the child widget
|
|
6102
6030
|
* @param child_property the name of a child property installed on the class of `container`
|
|
6103
6031
|
*/
|
|
6104
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
6032
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
6105
6033
|
|
|
6106
6034
|
// Overloads of child_notify
|
|
6107
6035
|
|
|
@@ -6115,7 +6043,7 @@ interface SuggestionRow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6115
6043
|
* Also see gtk_container_child_notify().
|
|
6116
6044
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
6117
6045
|
*/
|
|
6118
|
-
child_notify(child_property: string
|
|
6046
|
+
child_notify(child_property: string): void
|
|
6119
6047
|
|
|
6120
6048
|
// Class property signals of Egg-1.0.Egg.SuggestionRow
|
|
6121
6049
|
|
|
@@ -6283,22 +6211,6 @@ module TaskCache {
|
|
|
6283
6211
|
|
|
6284
6212
|
// Own constructor properties of Egg-1.0.Egg.TaskCache
|
|
6285
6213
|
|
|
6286
|
-
key_copy_func?: any | null
|
|
6287
|
-
key_destroy_func?: any | null
|
|
6288
|
-
key_equal_func?: any | null
|
|
6289
|
-
key_hash_func?: any | null
|
|
6290
|
-
populate_callback?: any | null
|
|
6291
|
-
populate_callback_data?: any | null
|
|
6292
|
-
populate_callback_data_destroy?: any | null
|
|
6293
|
-
/**
|
|
6294
|
-
* This is the number of milliseconds before an item should be evicted
|
|
6295
|
-
* from the cache.
|
|
6296
|
-
*
|
|
6297
|
-
* A value of zero indicates no eviction.
|
|
6298
|
-
*/
|
|
6299
|
-
time_to_live?: number | null
|
|
6300
|
-
value_copy_func?: any | null
|
|
6301
|
-
value_destroy_func?: any | null
|
|
6302
6214
|
keyCopyFunc?: any | null
|
|
6303
6215
|
keyDestroyFunc?: any | null
|
|
6304
6216
|
keyEqualFunc?: any | null
|
|
@@ -6323,27 +6235,13 @@ interface TaskCache {
|
|
|
6323
6235
|
|
|
6324
6236
|
// Own properties of Egg-1.0.Egg.TaskCache
|
|
6325
6237
|
|
|
6326
|
-
readonly key_copy_func: any
|
|
6327
6238
|
readonly keyCopyFunc: any
|
|
6328
|
-
readonly key_destroy_func: any
|
|
6329
6239
|
readonly keyDestroyFunc: any
|
|
6330
|
-
readonly key_equal_func: any
|
|
6331
6240
|
readonly keyEqualFunc: any
|
|
6332
|
-
readonly key_hash_func: any
|
|
6333
6241
|
readonly keyHashFunc: any
|
|
6334
|
-
readonly populate_callback: any
|
|
6335
6242
|
readonly populateCallback: any
|
|
6336
|
-
readonly populate_callback_data: any
|
|
6337
6243
|
readonly populateCallbackData: any
|
|
6338
|
-
readonly populate_callback_data_destroy: any
|
|
6339
6244
|
readonly populateCallbackDataDestroy: any
|
|
6340
|
-
/**
|
|
6341
|
-
* This is the number of milliseconds before an item should be evicted
|
|
6342
|
-
* from the cache.
|
|
6343
|
-
*
|
|
6344
|
-
* A value of zero indicates no eviction.
|
|
6345
|
-
*/
|
|
6346
|
-
readonly time_to_live: number
|
|
6347
6245
|
/**
|
|
6348
6246
|
* This is the number of milliseconds before an item should be evicted
|
|
6349
6247
|
* from the cache.
|
|
@@ -6351,9 +6249,7 @@ interface TaskCache {
|
|
|
6351
6249
|
* A value of zero indicates no eviction.
|
|
6352
6250
|
*/
|
|
6353
6251
|
readonly timeToLive: number
|
|
6354
|
-
readonly value_copy_func: any
|
|
6355
6252
|
readonly valueCopyFunc: any
|
|
6356
|
-
readonly value_destroy_func: any
|
|
6357
6253
|
readonly valueDestroyFunc: any
|
|
6358
6254
|
|
|
6359
6255
|
// Owm methods of Egg-1.0.Egg.TaskCache
|
|
@@ -6391,7 +6287,7 @@ interface TaskCache {
|
|
|
6391
6287
|
* @returns A #GObject or %NULL if the key was not found in the cache.
|
|
6392
6288
|
*/
|
|
6393
6289
|
peek(key: any | null): GObject.Object | null
|
|
6394
|
-
set_name(name: string
|
|
6290
|
+
set_name(name: string): void
|
|
6395
6291
|
|
|
6396
6292
|
// Class property signals of Egg-1.0.Egg.TaskCache
|
|
6397
6293
|
|
|
@@ -6452,8 +6348,6 @@ module ThreeGrid {
|
|
|
6452
6348
|
|
|
6453
6349
|
// Own constructor properties of Egg-1.0.Egg.ThreeGrid
|
|
6454
6350
|
|
|
6455
|
-
column_spacing?: number | null
|
|
6456
|
-
row_spacing?: number | null
|
|
6457
6351
|
columnSpacing?: number | null
|
|
6458
6352
|
rowSpacing?: number | null
|
|
6459
6353
|
}
|
|
@@ -6464,9 +6358,7 @@ interface ThreeGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6464
6358
|
|
|
6465
6359
|
// Own properties of Egg-1.0.Egg.ThreeGrid
|
|
6466
6360
|
|
|
6467
|
-
column_spacing: number
|
|
6468
6361
|
columnSpacing: number
|
|
6469
|
-
row_spacing: number
|
|
6470
6362
|
rowSpacing: number
|
|
6471
6363
|
|
|
6472
6364
|
// Own fields of Egg-1.0.Egg.ThreeGrid
|
|
@@ -6486,7 +6378,7 @@ interface ThreeGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6486
6378
|
* @param child the child widget
|
|
6487
6379
|
* @param child_property the name of a child property installed on the class of `container`
|
|
6488
6380
|
*/
|
|
6489
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
6381
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
6490
6382
|
|
|
6491
6383
|
// Overloads of child_notify
|
|
6492
6384
|
|
|
@@ -6500,7 +6392,7 @@ interface ThreeGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6500
6392
|
* Also see gtk_container_child_notify().
|
|
6501
6393
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
6502
6394
|
*/
|
|
6503
|
-
child_notify(child_property: string
|
|
6395
|
+
child_notify(child_property: string): void
|
|
6504
6396
|
/**
|
|
6505
6397
|
* Emits a #GtkWidget::child-notify signal for the
|
|
6506
6398
|
* [child property][child-properties] `child_property`
|
|
@@ -6511,7 +6403,7 @@ interface ThreeGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6511
6403
|
* Also see gtk_container_child_notify().
|
|
6512
6404
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
6513
6405
|
*/
|
|
6514
|
-
child_notify(child_property: string
|
|
6406
|
+
child_notify(child_property: string): void
|
|
6515
6407
|
|
|
6516
6408
|
// Class property signals of Egg-1.0.Egg.ThreeGrid
|
|
6517
6409
|
|
|
@@ -6689,7 +6581,7 @@ interface WidgetActionGroup extends Gio.ActionGroup {
|
|
|
6689
6581
|
|
|
6690
6582
|
// Owm methods of Egg-1.0.Egg.WidgetActionGroup
|
|
6691
6583
|
|
|
6692
|
-
set_action_enabled(action_name: string
|
|
6584
|
+
set_action_enabled(action_name: string, enabled: boolean): void
|
|
6693
6585
|
|
|
6694
6586
|
// Class property signals of Egg-1.0.Egg.WidgetActionGroup
|
|
6695
6587
|
|
|
@@ -6720,7 +6612,7 @@ class WidgetActionGroup extends GObject.Object {
|
|
|
6720
6612
|
* @param widget A #GtkWidget
|
|
6721
6613
|
* @param group_name the group name to use for the action group
|
|
6722
6614
|
*/
|
|
6723
|
-
static attach(widget: Gtk.Widget, group_name: string
|
|
6615
|
+
static attach(widget: Gtk.Widget, group_name: string): void
|
|
6724
6616
|
}
|
|
6725
6617
|
|
|
6726
6618
|
interface AnimationClass {
|
|
@@ -6798,9 +6690,9 @@ interface Counter {
|
|
|
6798
6690
|
// Own fields of Egg-1.0.Egg.Counter
|
|
6799
6691
|
|
|
6800
6692
|
values: CounterValue
|
|
6801
|
-
category: string
|
|
6802
|
-
name: string
|
|
6803
|
-
description: string
|
|
6693
|
+
category: string
|
|
6694
|
+
name: string
|
|
6695
|
+
description: string
|
|
6804
6696
|
|
|
6805
6697
|
// Owm methods of Egg-1.0.Egg.Counter
|
|
6806
6698
|
|
|
@@ -7214,8 +7106,8 @@ interface SimplePopoverClass {
|
|
|
7214
7106
|
// Own fields of Egg-1.0.Egg.SimplePopoverClass
|
|
7215
7107
|
|
|
7216
7108
|
parent: Gtk.PopoverClass
|
|
7217
|
-
activate: (self: SimplePopover, text: string
|
|
7218
|
-
insert_text: (self: SimplePopover, position: number, chars: string
|
|
7109
|
+
activate: (self: SimplePopover, text: string) => void
|
|
7110
|
+
insert_text: (self: SimplePopover, position: number, chars: string, n_chars: number) => boolean
|
|
7219
7111
|
changed: (self: SimplePopover) => void
|
|
7220
7112
|
}
|
|
7221
7113
|
|
|
@@ -7259,8 +7151,8 @@ interface SuggestionClass {
|
|
|
7259
7151
|
// Own fields of Egg-1.0.Egg.SuggestionClass
|
|
7260
7152
|
|
|
7261
7153
|
parent_class: GObject.ObjectClass
|
|
7262
|
-
suggest_suffix: (self: Suggestion, typed_text: string
|
|
7263
|
-
replace_typed_text: (self: Suggestion, typed_text: string
|
|
7154
|
+
suggest_suffix: (self: Suggestion, typed_text: string) => string | null
|
|
7155
|
+
replace_typed_text: (self: Suggestion, typed_text: string) => string | null
|
|
7264
7156
|
_reserved1: any
|
|
7265
7157
|
_reserved2: any
|
|
7266
7158
|
_reserved3: any
|