@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.cts
CHANGED
|
@@ -115,7 +115,7 @@ export module Animation {
|
|
|
115
115
|
* animation should run before being completed.
|
|
116
116
|
*/
|
|
117
117
|
duration?: number | null
|
|
118
|
-
|
|
118
|
+
frameClock?: Gdk.FrameClock | null
|
|
119
119
|
/**
|
|
120
120
|
* The "mode" property is the Alpha function that should be used to
|
|
121
121
|
* determine the offset within the animation based on the current
|
|
@@ -127,7 +127,6 @@ export module Animation {
|
|
|
127
127
|
* animated.
|
|
128
128
|
*/
|
|
129
129
|
target?: GObject.Object | null
|
|
130
|
-
frameClock?: Gdk.FrameClock | null
|
|
131
130
|
}
|
|
132
131
|
|
|
133
132
|
}
|
|
@@ -141,7 +140,6 @@ export interface Animation {
|
|
|
141
140
|
* animation should run before being completed.
|
|
142
141
|
*/
|
|
143
142
|
readonly duration: number
|
|
144
|
-
readonly frame_clock: Gdk.FrameClock
|
|
145
143
|
readonly frameClock: Gdk.FrameClock
|
|
146
144
|
/**
|
|
147
145
|
* The "mode" property is the Alpha function that should be used to
|
|
@@ -260,7 +258,7 @@ export interface BindingGroup {
|
|
|
260
258
|
* @param target_property the property on `target` to bind
|
|
261
259
|
* @param flags the flags used to create the #GBinding
|
|
262
260
|
*/
|
|
263
|
-
bind(source_property: string
|
|
261
|
+
bind(source_property: string, target: GObject.Object, target_property: string, flags: GObject.BindingFlags): void
|
|
264
262
|
/**
|
|
265
263
|
* Creates a binding between `source_property` on the source object and
|
|
266
264
|
* `target_property` on `target,` allowing you to set the transformation
|
|
@@ -279,7 +277,7 @@ export interface BindingGroup {
|
|
|
279
277
|
* @param transform_to a #GClosure wrapping the transformation function from the source object to the `target,` or %NULL to use the default
|
|
280
278
|
* @param transform_from a #GClosure wrapping the transformation function from the `target` to the source object, or %NULL to use the default
|
|
281
279
|
*/
|
|
282
|
-
bind_full(source_property: string
|
|
280
|
+
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
|
|
283
281
|
/**
|
|
284
282
|
* Gets the source object used for binding properties.
|
|
285
283
|
* @returns the source object.
|
|
@@ -351,7 +349,6 @@ export module Box {
|
|
|
351
349
|
|
|
352
350
|
// Own constructor properties of Egg-1.0.Egg.Box
|
|
353
351
|
|
|
354
|
-
max_width_request?: number | null
|
|
355
352
|
maxWidthRequest?: number | null
|
|
356
353
|
}
|
|
357
354
|
|
|
@@ -361,7 +358,6 @@ export interface Box extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
361
358
|
|
|
362
359
|
// Own properties of Egg-1.0.Egg.Box
|
|
363
360
|
|
|
364
|
-
max_width_request: number
|
|
365
361
|
maxWidthRequest: number
|
|
366
362
|
|
|
367
363
|
// Own fields of Egg-1.0.Egg.Box
|
|
@@ -386,7 +382,7 @@ export interface Box extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
386
382
|
* @param child the child widget
|
|
387
383
|
* @param child_property the name of a child property installed on the class of `container`
|
|
388
384
|
*/
|
|
389
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
385
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
390
386
|
|
|
391
387
|
// Overloads of child_notify
|
|
392
388
|
|
|
@@ -400,7 +396,7 @@ export interface Box extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
400
396
|
* Also see gtk_container_child_notify().
|
|
401
397
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
402
398
|
*/
|
|
403
|
-
child_notify(child_property: string
|
|
399
|
+
child_notify(child_property: string): void
|
|
404
400
|
/**
|
|
405
401
|
* Emits a #GtkWidget::child-notify signal for the
|
|
406
402
|
* [child property][child-properties] `child_property`
|
|
@@ -411,7 +407,7 @@ export interface Box extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
411
407
|
* Also see gtk_container_child_notify().
|
|
412
408
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
413
409
|
*/
|
|
414
|
-
child_notify(child_property: string
|
|
410
|
+
child_notify(child_property: string): void
|
|
415
411
|
|
|
416
412
|
// Class property signals of Egg-1.0.Egg.Box
|
|
417
413
|
|
|
@@ -596,7 +592,6 @@ export module CenteringBin {
|
|
|
596
592
|
|
|
597
593
|
// Own constructor properties of Egg-1.0.Egg.CenteringBin
|
|
598
594
|
|
|
599
|
-
max_width_request?: number | null
|
|
600
595
|
maxWidthRequest?: number | null
|
|
601
596
|
}
|
|
602
597
|
|
|
@@ -606,7 +601,6 @@ export interface CenteringBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
606
601
|
|
|
607
602
|
// Own properties of Egg-1.0.Egg.CenteringBin
|
|
608
603
|
|
|
609
|
-
max_width_request: number
|
|
610
604
|
maxWidthRequest: number
|
|
611
605
|
|
|
612
606
|
// Own fields of Egg-1.0.Egg.CenteringBin
|
|
@@ -626,7 +620,7 @@ export interface CenteringBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
626
620
|
* @param child the child widget
|
|
627
621
|
* @param child_property the name of a child property installed on the class of `container`
|
|
628
622
|
*/
|
|
629
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
623
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
630
624
|
|
|
631
625
|
// Overloads of child_notify
|
|
632
626
|
|
|
@@ -640,7 +634,7 @@ export interface CenteringBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
640
634
|
* Also see gtk_container_child_notify().
|
|
641
635
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
642
636
|
*/
|
|
643
|
-
child_notify(child_property: string
|
|
637
|
+
child_notify(child_property: string): void
|
|
644
638
|
/**
|
|
645
639
|
* Emits a #GtkWidget::child-notify signal for the
|
|
646
640
|
* [child property][child-properties] `child_property`
|
|
@@ -651,7 +645,7 @@ export interface CenteringBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
651
645
|
* Also see gtk_container_child_notify().
|
|
652
646
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
653
647
|
*/
|
|
654
|
-
child_notify(child_property: string
|
|
648
|
+
child_notify(child_property: string): void
|
|
655
649
|
|
|
656
650
|
// Class property signals of Egg-1.0.Egg.CenteringBin
|
|
657
651
|
|
|
@@ -823,10 +817,6 @@ export module ColumnLayout {
|
|
|
823
817
|
|
|
824
818
|
// Own constructor properties of Egg-1.0.Egg.ColumnLayout
|
|
825
819
|
|
|
826
|
-
column_spacing?: number | null
|
|
827
|
-
column_width?: number | null
|
|
828
|
-
max_columns?: number | null
|
|
829
|
-
row_spacing?: number | null
|
|
830
820
|
columnSpacing?: number | null
|
|
831
821
|
columnWidth?: number | null
|
|
832
822
|
maxColumns?: number | null
|
|
@@ -839,13 +829,9 @@ export interface ColumnLayout extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
839
829
|
|
|
840
830
|
// Own properties of Egg-1.0.Egg.ColumnLayout
|
|
841
831
|
|
|
842
|
-
column_spacing: number
|
|
843
832
|
columnSpacing: number
|
|
844
|
-
column_width: number
|
|
845
833
|
columnWidth: number
|
|
846
|
-
max_columns: number
|
|
847
834
|
maxColumns: number
|
|
848
|
-
row_spacing: number
|
|
849
835
|
rowSpacing: number
|
|
850
836
|
|
|
851
837
|
// Own fields of Egg-1.0.Egg.ColumnLayout
|
|
@@ -876,7 +862,7 @@ export interface ColumnLayout extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
876
862
|
* @param child the child widget
|
|
877
863
|
* @param child_property the name of a child property installed on the class of `container`
|
|
878
864
|
*/
|
|
879
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
865
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
880
866
|
|
|
881
867
|
// Overloads of child_notify
|
|
882
868
|
|
|
@@ -890,7 +876,7 @@ export interface ColumnLayout extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
890
876
|
* Also see gtk_container_child_notify().
|
|
891
877
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
892
878
|
*/
|
|
893
|
-
child_notify(child_property: string
|
|
879
|
+
child_notify(child_property: string): void
|
|
894
880
|
/**
|
|
895
881
|
* Emits a #GtkWidget::child-notify signal for the
|
|
896
882
|
* [child property][child-properties] `child_property`
|
|
@@ -901,7 +887,7 @@ export interface ColumnLayout extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
901
887
|
* Also see gtk_container_child_notify().
|
|
902
888
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
903
889
|
*/
|
|
904
|
-
child_notify(child_property: string
|
|
890
|
+
child_notify(child_property: string): void
|
|
905
891
|
|
|
906
892
|
// Class property signals of Egg-1.0.Egg.ColumnLayout
|
|
907
893
|
|
|
@@ -1092,7 +1078,7 @@ export interface ElasticBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1092
1078
|
* @param child the child widget
|
|
1093
1079
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1094
1080
|
*/
|
|
1095
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1081
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1096
1082
|
|
|
1097
1083
|
// Overloads of child_notify
|
|
1098
1084
|
|
|
@@ -1106,7 +1092,7 @@ export interface ElasticBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1106
1092
|
* Also see gtk_container_child_notify().
|
|
1107
1093
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1108
1094
|
*/
|
|
1109
|
-
child_notify(child_property: string
|
|
1095
|
+
child_notify(child_property: string): void
|
|
1110
1096
|
/**
|
|
1111
1097
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1112
1098
|
* [child property][child-properties] `child_property`
|
|
@@ -1117,7 +1103,7 @@ export interface ElasticBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1117
1103
|
* Also see gtk_container_child_notify().
|
|
1118
1104
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1119
1105
|
*/
|
|
1120
|
-
child_notify(child_property: string
|
|
1106
|
+
child_notify(child_property: string): void
|
|
1121
1107
|
|
|
1122
1108
|
// Class property signals of Egg-1.0.Egg.ElasticBin
|
|
1123
1109
|
|
|
@@ -1276,13 +1262,11 @@ export module EmptyState {
|
|
|
1276
1262
|
|
|
1277
1263
|
// Own constructor properties of Egg-1.0.Egg.EmptyState
|
|
1278
1264
|
|
|
1279
|
-
|
|
1280
|
-
|
|
1265
|
+
iconName?: string | null
|
|
1266
|
+
pixelSize?: number | null
|
|
1281
1267
|
resource?: string | null
|
|
1282
1268
|
subtitle?: string | null
|
|
1283
1269
|
title?: string | null
|
|
1284
|
-
iconName?: string | null
|
|
1285
|
-
pixelSize?: number | null
|
|
1286
1270
|
}
|
|
1287
1271
|
|
|
1288
1272
|
}
|
|
@@ -1291,9 +1275,7 @@ export interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1291
1275
|
|
|
1292
1276
|
// Own properties of Egg-1.0.Egg.EmptyState
|
|
1293
1277
|
|
|
1294
|
-
icon_name: string | null
|
|
1295
1278
|
iconName: string | null
|
|
1296
|
-
pixel_size: number
|
|
1297
1279
|
pixelSize: number
|
|
1298
1280
|
resource: string | null
|
|
1299
1281
|
subtitle: string | null
|
|
@@ -1305,13 +1287,13 @@ export interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1305
1287
|
|
|
1306
1288
|
// Owm methods of Egg-1.0.Egg.EmptyState
|
|
1307
1289
|
|
|
1308
|
-
get_icon_name(): string
|
|
1309
|
-
get_subtitle(): string
|
|
1310
|
-
get_title(): string
|
|
1311
|
-
set_icon_name(icon_name: string
|
|
1312
|
-
set_resource(resource: string
|
|
1313
|
-
set_subtitle(title: string
|
|
1314
|
-
set_title(title: string
|
|
1290
|
+
get_icon_name(): string
|
|
1291
|
+
get_subtitle(): string
|
|
1292
|
+
get_title(): string
|
|
1293
|
+
set_icon_name(icon_name: string): void
|
|
1294
|
+
set_resource(resource: string): void
|
|
1295
|
+
set_subtitle(title: string): void
|
|
1296
|
+
set_title(title: string): void
|
|
1315
1297
|
|
|
1316
1298
|
// Conflicting methods
|
|
1317
1299
|
|
|
@@ -1326,7 +1308,7 @@ export interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1326
1308
|
* @param child the child widget
|
|
1327
1309
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1328
1310
|
*/
|
|
1329
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1311
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1330
1312
|
|
|
1331
1313
|
// Overloads of child_notify
|
|
1332
1314
|
|
|
@@ -1340,7 +1322,7 @@ export interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1340
1322
|
* Also see gtk_container_child_notify().
|
|
1341
1323
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1342
1324
|
*/
|
|
1343
|
-
child_notify(child_property: string
|
|
1325
|
+
child_notify(child_property: string): void
|
|
1344
1326
|
/**
|
|
1345
1327
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1346
1328
|
* [child property][child-properties] `child_property`
|
|
@@ -1351,7 +1333,7 @@ export interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1351
1333
|
* Also see gtk_container_child_notify().
|
|
1352
1334
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1353
1335
|
*/
|
|
1354
|
-
child_notify(child_property: string
|
|
1336
|
+
child_notify(child_property: string): void
|
|
1355
1337
|
|
|
1356
1338
|
// Class property signals of Egg-1.0.Egg.EmptyState
|
|
1357
1339
|
|
|
@@ -1525,7 +1507,6 @@ export module EntryBox {
|
|
|
1525
1507
|
|
|
1526
1508
|
// Own constructor properties of Egg-1.0.Egg.EntryBox
|
|
1527
1509
|
|
|
1528
|
-
max_width_chars?: number | null
|
|
1529
1510
|
maxWidthChars?: number | null
|
|
1530
1511
|
}
|
|
1531
1512
|
|
|
@@ -1535,7 +1516,6 @@ export interface EntryBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orien
|
|
|
1535
1516
|
|
|
1536
1517
|
// Own properties of Egg-1.0.Egg.EntryBox
|
|
1537
1518
|
|
|
1538
|
-
max_width_chars: number
|
|
1539
1519
|
maxWidthChars: number
|
|
1540
1520
|
|
|
1541
1521
|
// Conflicting methods
|
|
@@ -1551,7 +1531,7 @@ export interface EntryBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orien
|
|
|
1551
1531
|
* @param child the child widget
|
|
1552
1532
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1553
1533
|
*/
|
|
1554
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1534
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1555
1535
|
|
|
1556
1536
|
// Overloads of child_notify
|
|
1557
1537
|
|
|
@@ -1565,7 +1545,7 @@ export interface EntryBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orien
|
|
|
1565
1545
|
* Also see gtk_container_child_notify().
|
|
1566
1546
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1567
1547
|
*/
|
|
1568
|
-
child_notify(child_property: string
|
|
1548
|
+
child_notify(child_property: string): void
|
|
1569
1549
|
/**
|
|
1570
1550
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1571
1551
|
* [child property][child-properties] `child_property`
|
|
@@ -1576,7 +1556,7 @@ export interface EntryBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orien
|
|
|
1576
1556
|
* Also see gtk_container_child_notify().
|
|
1577
1557
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1578
1558
|
*/
|
|
1579
|
-
child_notify(child_property: string
|
|
1559
|
+
child_notify(child_property: string): void
|
|
1580
1560
|
|
|
1581
1561
|
// Class property signals of Egg-1.0.Egg.EntryBox
|
|
1582
1562
|
|
|
@@ -1762,19 +1742,14 @@ export module FileChooserEntry {
|
|
|
1762
1742
|
// Own constructor properties of Egg-1.0.Egg.FileChooserEntry
|
|
1763
1743
|
|
|
1764
1744
|
action?: Gtk.FileChooserAction | null
|
|
1765
|
-
create_folders?: boolean | null
|
|
1766
|
-
do_overwrite_confirmation?: boolean | null
|
|
1767
|
-
file?: Gio.File | null
|
|
1768
|
-
filter?: Gtk.FileFilter | null
|
|
1769
|
-
local_only?: boolean | null
|
|
1770
|
-
max_width_chars?: number | null
|
|
1771
|
-
show_hidden?: boolean | null
|
|
1772
|
-
title?: string | null
|
|
1773
1745
|
createFolders?: boolean | null
|
|
1774
1746
|
doOverwriteConfirmation?: boolean | null
|
|
1747
|
+
file?: Gio.File | null
|
|
1748
|
+
filter?: Gtk.FileFilter | null
|
|
1775
1749
|
localOnly?: boolean | null
|
|
1776
1750
|
maxWidthChars?: number | null
|
|
1777
1751
|
showHidden?: boolean | null
|
|
1752
|
+
title?: string | null
|
|
1778
1753
|
}
|
|
1779
1754
|
|
|
1780
1755
|
}
|
|
@@ -1784,17 +1759,12 @@ export interface FileChooserEntry extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1784
1759
|
// Own properties of Egg-1.0.Egg.FileChooserEntry
|
|
1785
1760
|
|
|
1786
1761
|
action: Gtk.FileChooserAction
|
|
1787
|
-
create_folders: boolean
|
|
1788
1762
|
createFolders: boolean
|
|
1789
|
-
do_overwrite_confirmation: boolean
|
|
1790
1763
|
doOverwriteConfirmation: boolean
|
|
1791
1764
|
file: Gio.File
|
|
1792
1765
|
filter: Gtk.FileFilter
|
|
1793
|
-
local_only: boolean
|
|
1794
1766
|
localOnly: boolean
|
|
1795
|
-
max_width_chars: number
|
|
1796
1767
|
maxWidthChars: number
|
|
1797
|
-
show_hidden: boolean
|
|
1798
1768
|
showHidden: boolean
|
|
1799
1769
|
title: string | null
|
|
1800
1770
|
|
|
@@ -1824,7 +1794,7 @@ export interface FileChooserEntry extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1824
1794
|
* @param child the child widget
|
|
1825
1795
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1826
1796
|
*/
|
|
1827
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1797
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1828
1798
|
|
|
1829
1799
|
// Overloads of child_notify
|
|
1830
1800
|
|
|
@@ -1838,7 +1808,7 @@ export interface FileChooserEntry extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1838
1808
|
* Also see gtk_container_child_notify().
|
|
1839
1809
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1840
1810
|
*/
|
|
1841
|
-
child_notify(child_property: string
|
|
1811
|
+
child_notify(child_property: string): void
|
|
1842
1812
|
/**
|
|
1843
1813
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1844
1814
|
* [child property][child-properties] `child_property`
|
|
@@ -1849,7 +1819,7 @@ export interface FileChooserEntry extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1849
1819
|
* Also see gtk_container_child_notify().
|
|
1850
1820
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1851
1821
|
*/
|
|
1852
|
-
child_notify(child_property: string
|
|
1822
|
+
child_notify(child_property: string): void
|
|
1853
1823
|
|
|
1854
1824
|
// Class property signals of Egg-1.0.Egg.FileChooserEntry
|
|
1855
1825
|
|
|
@@ -2022,8 +1992,8 @@ export class FileChooserEntry extends Gtk.Bin {
|
|
|
2022
1992
|
// Constructors of Egg-1.0.Egg.FileChooserEntry
|
|
2023
1993
|
|
|
2024
1994
|
constructor(config?: FileChooserEntry.ConstructorProperties)
|
|
2025
|
-
constructor(title: string
|
|
2026
|
-
static new(title: string
|
|
1995
|
+
constructor(title: string, action: Gtk.FileChooserAction)
|
|
1996
|
+
static new(title: string, action: Gtk.FileChooserAction): FileChooserEntry
|
|
2027
1997
|
_init(config?: FileChooserEntry.ConstructorProperties): void
|
|
2028
1998
|
}
|
|
2029
1999
|
|
|
@@ -2035,9 +2005,6 @@ export module ListBox {
|
|
|
2035
2005
|
|
|
2036
2006
|
// Own constructor properties of Egg-1.0.Egg.ListBox
|
|
2037
2007
|
|
|
2038
|
-
property_name?: string | null
|
|
2039
|
-
row_type?: GObject.GType | null
|
|
2040
|
-
row_type_name?: string | null
|
|
2041
2008
|
propertyName?: string | null
|
|
2042
2009
|
rowType?: GObject.GType | null
|
|
2043
2010
|
rowTypeName?: string | null
|
|
@@ -2049,11 +2016,8 @@ export interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2049
2016
|
|
|
2050
2017
|
// Own properties of Egg-1.0.Egg.ListBox
|
|
2051
2018
|
|
|
2052
|
-
readonly property_name: string | null
|
|
2053
2019
|
readonly propertyName: string | null
|
|
2054
|
-
readonly row_type: GObject.GType
|
|
2055
2020
|
readonly rowType: GObject.GType
|
|
2056
|
-
readonly row_type_name: string | null
|
|
2057
2021
|
readonly rowTypeName: string | null
|
|
2058
2022
|
|
|
2059
2023
|
// Own fields of Egg-1.0.Egg.ListBox
|
|
@@ -2063,7 +2027,7 @@ export interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2063
2027
|
// Owm methods of Egg-1.0.Egg.ListBox
|
|
2064
2028
|
|
|
2065
2029
|
get_model(): Gio.ListModel | null
|
|
2066
|
-
get_property_name(): string
|
|
2030
|
+
get_property_name(): string
|
|
2067
2031
|
get_row_type(): GObject.GType
|
|
2068
2032
|
set_model(model: Gio.ListModel): void
|
|
2069
2033
|
|
|
@@ -2080,7 +2044,7 @@ export interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2080
2044
|
* @param child the child widget
|
|
2081
2045
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2082
2046
|
*/
|
|
2083
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2047
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2084
2048
|
|
|
2085
2049
|
// Overloads of child_notify
|
|
2086
2050
|
|
|
@@ -2094,7 +2058,7 @@ export interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2094
2058
|
* Also see gtk_container_child_notify().
|
|
2095
2059
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2096
2060
|
*/
|
|
2097
|
-
child_notify(child_property: string
|
|
2061
|
+
child_notify(child_property: string): void
|
|
2098
2062
|
/**
|
|
2099
2063
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2100
2064
|
* [child property][child-properties] `child_property`
|
|
@@ -2105,7 +2069,7 @@ export interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2105
2069
|
* Also see gtk_container_child_notify().
|
|
2106
2070
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2107
2071
|
*/
|
|
2108
|
-
child_notify(child_property: string
|
|
2072
|
+
child_notify(child_property: string): void
|
|
2109
2073
|
|
|
2110
2074
|
// Class property signals of Egg-1.0.Egg.ListBox
|
|
2111
2075
|
|
|
@@ -2266,8 +2230,8 @@ export class ListBox extends Gtk.ListBox {
|
|
|
2266
2230
|
// Constructors of Egg-1.0.Egg.ListBox
|
|
2267
2231
|
|
|
2268
2232
|
constructor(config?: ListBox.ConstructorProperties)
|
|
2269
|
-
constructor(row_type: GObject.GType, property_name: string
|
|
2270
|
-
static new(row_type: GObject.GType, property_name: string
|
|
2233
|
+
constructor(row_type: GObject.GType, property_name: string)
|
|
2234
|
+
static new(row_type: GObject.GType, property_name: string): ListBox
|
|
2271
2235
|
|
|
2272
2236
|
// Overloads of new
|
|
2273
2237
|
|
|
@@ -2293,9 +2257,9 @@ export interface MenuManager {
|
|
|
2293
2257
|
|
|
2294
2258
|
// Owm methods of Egg-1.0.Egg.MenuManager
|
|
2295
2259
|
|
|
2296
|
-
add_filename(filename: string
|
|
2297
|
-
add_resource(resource: string
|
|
2298
|
-
get_menu_by_id(menu_id: string
|
|
2260
|
+
add_filename(filename: string): number
|
|
2261
|
+
add_resource(resource: string): number
|
|
2262
|
+
get_menu_by_id(menu_id: string): Gio.Menu
|
|
2299
2263
|
remove(merge_id: number): void
|
|
2300
2264
|
|
|
2301
2265
|
// Class property signals of Egg-1.0.Egg.MenuManager
|
|
@@ -2363,8 +2327,8 @@ export interface PillBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2363
2327
|
|
|
2364
2328
|
// Owm methods of Egg-1.0.Egg.PillBox
|
|
2365
2329
|
|
|
2366
|
-
get_label(): string
|
|
2367
|
-
set_label(label: string
|
|
2330
|
+
get_label(): string
|
|
2331
|
+
set_label(label: string): void
|
|
2368
2332
|
|
|
2369
2333
|
// Conflicting methods
|
|
2370
2334
|
|
|
@@ -2379,7 +2343,7 @@ export interface PillBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2379
2343
|
* @param child the child widget
|
|
2380
2344
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2381
2345
|
*/
|
|
2382
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2346
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2383
2347
|
|
|
2384
2348
|
// Overloads of child_notify
|
|
2385
2349
|
|
|
@@ -2393,7 +2357,7 @@ export interface PillBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2393
2357
|
* Also see gtk_container_child_notify().
|
|
2394
2358
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2395
2359
|
*/
|
|
2396
|
-
child_notify(child_property: string
|
|
2360
|
+
child_notify(child_property: string): void
|
|
2397
2361
|
/**
|
|
2398
2362
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2399
2363
|
* [child property][child-properties] `child_property`
|
|
@@ -2404,7 +2368,7 @@ export interface PillBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2404
2368
|
* Also see gtk_container_child_notify().
|
|
2405
2369
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2406
2370
|
*/
|
|
2407
|
-
child_notify(child_property: string
|
|
2371
|
+
child_notify(child_property: string): void
|
|
2408
2372
|
|
|
2409
2373
|
// Class property signals of Egg-1.0.Egg.PillBox
|
|
2410
2374
|
|
|
@@ -2559,8 +2523,8 @@ export class PillBox extends Gtk.EventBox {
|
|
|
2559
2523
|
// Constructors of Egg-1.0.Egg.PillBox
|
|
2560
2524
|
|
|
2561
2525
|
constructor(config?: PillBox.ConstructorProperties)
|
|
2562
|
-
constructor(label: string
|
|
2563
|
-
static new(label: string
|
|
2526
|
+
constructor(label: string)
|
|
2527
|
+
static new(label: string): PillBox
|
|
2564
2528
|
|
|
2565
2529
|
// Overloads of new
|
|
2566
2530
|
|
|
@@ -2601,7 +2565,7 @@ export interface PriorityBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Or
|
|
|
2601
2565
|
* @param child the child widget
|
|
2602
2566
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2603
2567
|
*/
|
|
2604
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2568
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2605
2569
|
|
|
2606
2570
|
// Overloads of child_notify
|
|
2607
2571
|
|
|
@@ -2615,7 +2579,7 @@ export interface PriorityBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Or
|
|
|
2615
2579
|
* Also see gtk_container_child_notify().
|
|
2616
2580
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2617
2581
|
*/
|
|
2618
|
-
child_notify(child_property: string
|
|
2582
|
+
child_notify(child_property: string): void
|
|
2619
2583
|
/**
|
|
2620
2584
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2621
2585
|
* [child property][child-properties] `child_property`
|
|
@@ -2626,7 +2590,7 @@ export interface PriorityBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Or
|
|
|
2626
2590
|
* Also see gtk_container_child_notify().
|
|
2627
2591
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2628
2592
|
*/
|
|
2629
|
-
child_notify(child_property: string
|
|
2593
|
+
child_notify(child_property: string): void
|
|
2630
2594
|
|
|
2631
2595
|
// Class property signals of Egg-1.0.Egg.PriorityBox
|
|
2632
2596
|
|
|
@@ -2813,7 +2777,6 @@ export module ProgressButton {
|
|
|
2813
2777
|
// Own constructor properties of Egg-1.0.Egg.ProgressButton
|
|
2814
2778
|
|
|
2815
2779
|
progress?: number | null
|
|
2816
|
-
show_progress?: boolean | null
|
|
2817
2780
|
showProgress?: boolean | null
|
|
2818
2781
|
}
|
|
2819
2782
|
|
|
@@ -2824,7 +2787,6 @@ export interface ProgressButton extends Atk.ImplementorIface, Gtk.Actionable, Gt
|
|
|
2824
2787
|
// Own properties of Egg-1.0.Egg.ProgressButton
|
|
2825
2788
|
|
|
2826
2789
|
progress: number
|
|
2827
|
-
show_progress: boolean
|
|
2828
2790
|
showProgress: boolean
|
|
2829
2791
|
|
|
2830
2792
|
// Own fields of Egg-1.0.Egg.ProgressButton
|
|
@@ -2850,7 +2812,7 @@ export interface ProgressButton extends Atk.ImplementorIface, Gtk.Actionable, Gt
|
|
|
2850
2812
|
* Also see gtk_container_child_notify().
|
|
2851
2813
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2852
2814
|
*/
|
|
2853
|
-
child_notify(child_property: string
|
|
2815
|
+
child_notify(child_property: string): void
|
|
2854
2816
|
/**
|
|
2855
2817
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2856
2818
|
* [child property][child-properties]
|
|
@@ -2862,7 +2824,7 @@ export interface ProgressButton extends Atk.ImplementorIface, Gtk.Actionable, Gt
|
|
|
2862
2824
|
* @param child the child widget
|
|
2863
2825
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2864
2826
|
*/
|
|
2865
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2827
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2866
2828
|
|
|
2867
2829
|
// Overloads of child_notify
|
|
2868
2830
|
|
|
@@ -2876,7 +2838,7 @@ export interface ProgressButton extends Atk.ImplementorIface, Gtk.Actionable, Gt
|
|
|
2876
2838
|
* Also see gtk_container_child_notify().
|
|
2877
2839
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2878
2840
|
*/
|
|
2879
|
-
child_notify(child_property: string
|
|
2841
|
+
child_notify(child_property: string): void
|
|
2880
2842
|
|
|
2881
2843
|
// Class property signals of Egg-1.0.Egg.ProgressButton
|
|
2882
2844
|
|
|
@@ -3090,8 +3052,6 @@ export module RadioBox {
|
|
|
3090
3052
|
|
|
3091
3053
|
// Own constructor properties of Egg-1.0.Egg.RadioBox
|
|
3092
3054
|
|
|
3093
|
-
active_id?: string | null
|
|
3094
|
-
show_more?: boolean | null
|
|
3095
3055
|
activeId?: string | null
|
|
3096
3056
|
showMore?: boolean | null
|
|
3097
3057
|
}
|
|
@@ -3102,11 +3062,8 @@ export interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3102
3062
|
|
|
3103
3063
|
// Own properties of Egg-1.0.Egg.RadioBox
|
|
3104
3064
|
|
|
3105
|
-
active_id: string | null
|
|
3106
3065
|
activeId: string | null
|
|
3107
|
-
readonly has_more: boolean
|
|
3108
3066
|
readonly hasMore: boolean
|
|
3109
|
-
show_more: boolean
|
|
3110
3067
|
showMore: boolean
|
|
3111
3068
|
|
|
3112
3069
|
// Own fields of Egg-1.0.Egg.RadioBox
|
|
@@ -3115,9 +3072,9 @@ export interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3115
3072
|
|
|
3116
3073
|
// Owm methods of Egg-1.0.Egg.RadioBox
|
|
3117
3074
|
|
|
3118
|
-
add_item(id: string
|
|
3119
|
-
get_active_id(): string
|
|
3120
|
-
set_active_id(id: string
|
|
3075
|
+
add_item(id: string, text: string): void
|
|
3076
|
+
get_active_id(): string
|
|
3077
|
+
set_active_id(id: string): void
|
|
3121
3078
|
|
|
3122
3079
|
// Conflicting methods
|
|
3123
3080
|
|
|
@@ -3132,7 +3089,7 @@ export interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3132
3089
|
* @param child the child widget
|
|
3133
3090
|
* @param child_property the name of a child property installed on the class of `container`
|
|
3134
3091
|
*/
|
|
3135
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
3092
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
3136
3093
|
|
|
3137
3094
|
// Overloads of child_notify
|
|
3138
3095
|
|
|
@@ -3146,7 +3103,7 @@ export interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3146
3103
|
* Also see gtk_container_child_notify().
|
|
3147
3104
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3148
3105
|
*/
|
|
3149
|
-
child_notify(child_property: string
|
|
3106
|
+
child_notify(child_property: string): void
|
|
3150
3107
|
/**
|
|
3151
3108
|
* Emits a #GtkWidget::child-notify signal for the
|
|
3152
3109
|
* [child property][child-properties] `child_property`
|
|
@@ -3157,7 +3114,7 @@ export interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3157
3114
|
* Also see gtk_container_child_notify().
|
|
3158
3115
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3159
3116
|
*/
|
|
3160
|
-
child_notify(child_property: string
|
|
3117
|
+
child_notify(child_property: string): void
|
|
3161
3118
|
|
|
3162
3119
|
// Own signals of Egg-1.0.Egg.RadioBox
|
|
3163
3120
|
|
|
@@ -3351,7 +3308,7 @@ export interface ScrolledWindow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3351
3308
|
* @param child the child widget
|
|
3352
3309
|
* @param child_property the name of a child property installed on the class of `container`
|
|
3353
3310
|
*/
|
|
3354
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
3311
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
3355
3312
|
|
|
3356
3313
|
// Overloads of child_notify
|
|
3357
3314
|
|
|
@@ -3365,7 +3322,7 @@ export interface ScrolledWindow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3365
3322
|
* Also see gtk_container_child_notify().
|
|
3366
3323
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3367
3324
|
*/
|
|
3368
|
-
child_notify(child_property: string
|
|
3325
|
+
child_notify(child_property: string): void
|
|
3369
3326
|
/**
|
|
3370
3327
|
* Emits a #GtkWidget::child-notify signal for the
|
|
3371
3328
|
* [child property][child-properties] `child_property`
|
|
@@ -3376,7 +3333,7 @@ export interface ScrolledWindow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3376
3333
|
* Also see gtk_container_child_notify().
|
|
3377
3334
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3378
3335
|
*/
|
|
3379
|
-
child_notify(child_property: string
|
|
3336
|
+
child_notify(child_property: string): void
|
|
3380
3337
|
|
|
3381
3338
|
// Class property signals of Egg-1.0.Egg.ScrolledWindow
|
|
3382
3339
|
|
|
@@ -3595,8 +3552,6 @@ export module SearchBar {
|
|
|
3595
3552
|
|
|
3596
3553
|
// Own constructor properties of Egg-1.0.Egg.SearchBar
|
|
3597
3554
|
|
|
3598
|
-
search_mode_enabled?: boolean | null
|
|
3599
|
-
show_close_button?: boolean | null
|
|
3600
3555
|
searchModeEnabled?: boolean | null
|
|
3601
3556
|
showCloseButton?: boolean | null
|
|
3602
3557
|
}
|
|
@@ -3607,9 +3562,7 @@ export interface SearchBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3607
3562
|
|
|
3608
3563
|
// Own properties of Egg-1.0.Egg.SearchBar
|
|
3609
3564
|
|
|
3610
|
-
search_mode_enabled: boolean
|
|
3611
3565
|
searchModeEnabled: boolean
|
|
3612
|
-
show_close_button: boolean
|
|
3613
3566
|
showCloseButton: boolean
|
|
3614
3567
|
|
|
3615
3568
|
// Own fields of Egg-1.0.Egg.SearchBar
|
|
@@ -3637,7 +3590,7 @@ export interface SearchBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3637
3590
|
* @param child the child widget
|
|
3638
3591
|
* @param child_property the name of a child property installed on the class of `container`
|
|
3639
3592
|
*/
|
|
3640
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
3593
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
3641
3594
|
|
|
3642
3595
|
// Overloads of child_notify
|
|
3643
3596
|
|
|
@@ -3651,7 +3604,7 @@ export interface SearchBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3651
3604
|
* Also see gtk_container_child_notify().
|
|
3652
3605
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3653
3606
|
*/
|
|
3654
|
-
child_notify(child_property: string
|
|
3607
|
+
child_notify(child_property: string): void
|
|
3655
3608
|
/**
|
|
3656
3609
|
* Emits a #GtkWidget::child-notify signal for the
|
|
3657
3610
|
* [child property][child-properties] `child_property`
|
|
@@ -3662,7 +3615,7 @@ export interface SearchBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3662
3615
|
* Also see gtk_container_child_notify().
|
|
3663
3616
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3664
3617
|
*/
|
|
3665
|
-
child_notify(child_property: string
|
|
3618
|
+
child_notify(child_property: string): void
|
|
3666
3619
|
|
|
3667
3620
|
// Own signals of Egg-1.0.Egg.SearchBar
|
|
3668
3621
|
|
|
@@ -3836,9 +3789,6 @@ export module SettingsFlagAction {
|
|
|
3836
3789
|
|
|
3837
3790
|
// Own constructor properties of Egg-1.0.Egg.SettingsFlagAction
|
|
3838
3791
|
|
|
3839
|
-
flag_nick?: string | null
|
|
3840
|
-
schema_id?: string | null
|
|
3841
|
-
schema_key?: string | null
|
|
3842
3792
|
flagNick?: string | null
|
|
3843
3793
|
schemaId?: string | null
|
|
3844
3794
|
schemaKey?: string | null
|
|
@@ -3850,11 +3800,8 @@ export interface SettingsFlagAction extends Gio.Action {
|
|
|
3850
3800
|
|
|
3851
3801
|
// Own properties of Egg-1.0.Egg.SettingsFlagAction
|
|
3852
3802
|
|
|
3853
|
-
readonly flag_nick: string | null
|
|
3854
3803
|
readonly flagNick: string | null
|
|
3855
|
-
readonly schema_id: string | null
|
|
3856
3804
|
readonly schemaId: string | null
|
|
3857
|
-
schema_key: string | null
|
|
3858
3805
|
schemaKey: string | null
|
|
3859
3806
|
|
|
3860
3807
|
// Class property signals of Egg-1.0.Egg.SettingsFlagAction
|
|
@@ -3908,7 +3855,7 @@ export class SettingsFlagAction extends GObject.Object {
|
|
|
3908
3855
|
* @param flag_nick
|
|
3909
3856
|
* @returns A new #GAction.
|
|
3910
3857
|
*/
|
|
3911
|
-
static new(schema_id: string
|
|
3858
|
+
static new(schema_id: string, schema_key: string, flag_nick: string): Gio.Action
|
|
3912
3859
|
}
|
|
3913
3860
|
|
|
3914
3861
|
export module SettingsSandwich {
|
|
@@ -3920,7 +3867,6 @@ export module SettingsSandwich {
|
|
|
3920
3867
|
// Own constructor properties of Egg-1.0.Egg.SettingsSandwich
|
|
3921
3868
|
|
|
3922
3869
|
path?: string | null
|
|
3923
|
-
schema_id?: string | null
|
|
3924
3870
|
schemaId?: string | null
|
|
3925
3871
|
}
|
|
3926
3872
|
|
|
@@ -3931,13 +3877,12 @@ export interface SettingsSandwich {
|
|
|
3931
3877
|
// Own properties of Egg-1.0.Egg.SettingsSandwich
|
|
3932
3878
|
|
|
3933
3879
|
readonly path: string | null
|
|
3934
|
-
readonly schema_id: string | null
|
|
3935
3880
|
readonly schemaId: string | null
|
|
3936
3881
|
|
|
3937
3882
|
// Owm methods of Egg-1.0.Egg.SettingsSandwich
|
|
3938
3883
|
|
|
3939
3884
|
append(settings: Gio.Settings): void
|
|
3940
|
-
bind(key: string
|
|
3885
|
+
bind(key: string, object: any | null, property: string, flags: Gio.SettingsBindFlags): void
|
|
3941
3886
|
/**
|
|
3942
3887
|
* Creates a new binding similar to g_settings_bind_with_mapping() but applying
|
|
3943
3888
|
* from the resolved value via the settings sandwich.
|
|
@@ -3948,22 +3893,22 @@ export interface SettingsSandwich {
|
|
|
3948
3893
|
* @param get_mapping the get mapping function
|
|
3949
3894
|
* @param set_mapping the set mapping function
|
|
3950
3895
|
*/
|
|
3951
|
-
bind_with_mapping(key: string
|
|
3952
|
-
get_boolean(key: string
|
|
3953
|
-
get_default_value(key: string
|
|
3954
|
-
get_double(key: string
|
|
3955
|
-
get_int(key: string
|
|
3956
|
-
get_string(key: string
|
|
3957
|
-
get_uint(key: string
|
|
3958
|
-
get_user_value(key: string
|
|
3959
|
-
get_value(key: string
|
|
3960
|
-
set_boolean(key: string
|
|
3961
|
-
set_double(key: string
|
|
3962
|
-
set_int(key: string
|
|
3963
|
-
set_string(key: string
|
|
3964
|
-
set_uint(key: string
|
|
3965
|
-
set_value(key: string
|
|
3966
|
-
unbind(property: string
|
|
3896
|
+
bind_with_mapping(key: string, object: any | null, property: string, flags: Gio.SettingsBindFlags, get_mapping: Gio.SettingsBindGetMapping, set_mapping: Gio.SettingsBindSetMapping): void
|
|
3897
|
+
get_boolean(key: string): boolean
|
|
3898
|
+
get_default_value(key: string): GLib.Variant
|
|
3899
|
+
get_double(key: string): number
|
|
3900
|
+
get_int(key: string): number
|
|
3901
|
+
get_string(key: string): string | null
|
|
3902
|
+
get_uint(key: string): number
|
|
3903
|
+
get_user_value(key: string): GLib.Variant
|
|
3904
|
+
get_value(key: string): GLib.Variant
|
|
3905
|
+
set_boolean(key: string, val: boolean): void
|
|
3906
|
+
set_double(key: string, val: number): void
|
|
3907
|
+
set_int(key: string, val: number): void
|
|
3908
|
+
set_string(key: string, val: string): void
|
|
3909
|
+
set_uint(key: string, val: number): void
|
|
3910
|
+
set_value(key: string, value: GLib.Variant): void
|
|
3911
|
+
unbind(property: string): void
|
|
3967
3912
|
|
|
3968
3913
|
// Class property signals of Egg-1.0.Egg.SettingsSandwich
|
|
3969
3914
|
|
|
@@ -3989,8 +3934,8 @@ export class SettingsSandwich extends GObject.Object {
|
|
|
3989
3934
|
// Constructors of Egg-1.0.Egg.SettingsSandwich
|
|
3990
3935
|
|
|
3991
3936
|
constructor(config?: SettingsSandwich.ConstructorProperties)
|
|
3992
|
-
constructor(schema_id: string
|
|
3993
|
-
static new(schema_id: string
|
|
3937
|
+
constructor(schema_id: string, path: string)
|
|
3938
|
+
static new(schema_id: string, path: string): SettingsSandwich
|
|
3994
3939
|
_init(config?: SettingsSandwich.ConstructorProperties): void
|
|
3995
3940
|
}
|
|
3996
3941
|
|
|
@@ -4023,10 +3968,6 @@ export module SignalGroup {
|
|
|
4023
3968
|
* The target instance used when connecting signals.
|
|
4024
3969
|
*/
|
|
4025
3970
|
target?: GObject.Object | null
|
|
4026
|
-
/**
|
|
4027
|
-
* The GType of the target property.
|
|
4028
|
-
*/
|
|
4029
|
-
target_type?: GObject.GType | null
|
|
4030
3971
|
/**
|
|
4031
3972
|
* The GType of the target property.
|
|
4032
3973
|
*/
|
|
@@ -4043,10 +3984,6 @@ export interface SignalGroup {
|
|
|
4043
3984
|
* The target instance used when connecting signals.
|
|
4044
3985
|
*/
|
|
4045
3986
|
target: GObject.Object
|
|
4046
|
-
/**
|
|
4047
|
-
* The GType of the target property.
|
|
4048
|
-
*/
|
|
4049
|
-
readonly target_type: GObject.GType
|
|
4050
3987
|
/**
|
|
4051
3988
|
* The GType of the target property.
|
|
4052
3989
|
*/
|
|
@@ -4073,7 +4010,7 @@ export interface SignalGroup {
|
|
|
4073
4010
|
* @param c_handler the #GCallback to connect
|
|
4074
4011
|
* @param flags the flags used to create the signal connection
|
|
4075
4012
|
*/
|
|
4076
|
-
connect_data(detailed_signal: string
|
|
4013
|
+
connect_data(detailed_signal: string, c_handler: GObject.Callback, flags: GObject.ConnectFlags): void
|
|
4077
4014
|
/**
|
|
4078
4015
|
* Connects `callback` to the signal `detailed_signal`
|
|
4079
4016
|
* on the target instance of `self`.
|
|
@@ -4085,7 +4022,7 @@ export interface SignalGroup {
|
|
|
4085
4022
|
* @param detailed_signal a string of the form "signal-name::detail"
|
|
4086
4023
|
* @param c_handler the #GCallback to connect
|
|
4087
4024
|
*/
|
|
4088
|
-
connect_swapped(detailed_signal: string
|
|
4025
|
+
connect_swapped(detailed_signal: string, c_handler: GObject.Callback): void
|
|
4089
4026
|
/**
|
|
4090
4027
|
* Gets the target instance used when connecting signals.
|
|
4091
4028
|
* @returns The target instance.
|
|
@@ -4191,9 +4128,8 @@ export module SimpleLabel {
|
|
|
4191
4128
|
// Own constructor properties of Egg-1.0.Egg.SimpleLabel
|
|
4192
4129
|
|
|
4193
4130
|
label?: string | null
|
|
4194
|
-
width_chars?: number | null
|
|
4195
|
-
xalign?: number | null
|
|
4196
4131
|
widthChars?: number | null
|
|
4132
|
+
xalign?: number | null
|
|
4197
4133
|
}
|
|
4198
4134
|
|
|
4199
4135
|
}
|
|
@@ -4203,16 +4139,15 @@ export interface SimpleLabel extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4203
4139
|
// Own properties of Egg-1.0.Egg.SimpleLabel
|
|
4204
4140
|
|
|
4205
4141
|
label: string | null
|
|
4206
|
-
width_chars: number
|
|
4207
4142
|
widthChars: number
|
|
4208
4143
|
xalign: number
|
|
4209
4144
|
|
|
4210
4145
|
// Owm methods of Egg-1.0.Egg.SimpleLabel
|
|
4211
4146
|
|
|
4212
|
-
get_label(): string
|
|
4147
|
+
get_label(): string
|
|
4213
4148
|
get_width_chars(): number
|
|
4214
4149
|
get_xalign(): number
|
|
4215
|
-
set_label(label: string
|
|
4150
|
+
set_label(label: string): void
|
|
4216
4151
|
set_width_chars(width_chars: number): void
|
|
4217
4152
|
set_xalign(xalign: number): void
|
|
4218
4153
|
|
|
@@ -4360,8 +4295,8 @@ export class SimpleLabel extends Gtk.Widget {
|
|
|
4360
4295
|
// Constructors of Egg-1.0.Egg.SimpleLabel
|
|
4361
4296
|
|
|
4362
4297
|
constructor(config?: SimpleLabel.ConstructorProperties)
|
|
4363
|
-
constructor(label: string
|
|
4364
|
-
static new(label: string
|
|
4298
|
+
constructor(label: string)
|
|
4299
|
+
static new(label: string): SimpleLabel
|
|
4365
4300
|
_init(config?: SimpleLabel.ConstructorProperties): void
|
|
4366
4301
|
}
|
|
4367
4302
|
|
|
@@ -4397,12 +4332,11 @@ export module SimplePopover {
|
|
|
4397
4332
|
|
|
4398
4333
|
// Own constructor properties of Egg-1.0.Egg.SimplePopover
|
|
4399
4334
|
|
|
4400
|
-
|
|
4335
|
+
buttonText?: string | null
|
|
4401
4336
|
message?: string | null
|
|
4402
4337
|
ready?: boolean | null
|
|
4403
4338
|
text?: string | null
|
|
4404
4339
|
title?: string | null
|
|
4405
|
-
buttonText?: string | null
|
|
4406
4340
|
}
|
|
4407
4341
|
|
|
4408
4342
|
}
|
|
@@ -4411,7 +4345,6 @@ export interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4411
4345
|
|
|
4412
4346
|
// Own properties of Egg-1.0.Egg.SimplePopover
|
|
4413
4347
|
|
|
4414
|
-
button_text: string | null
|
|
4415
4348
|
buttonText: string | null
|
|
4416
4349
|
message: string | null
|
|
4417
4350
|
ready: boolean
|
|
@@ -4424,16 +4357,16 @@ export interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4424
4357
|
|
|
4425
4358
|
// Owm methods of Egg-1.0.Egg.SimplePopover
|
|
4426
4359
|
|
|
4427
|
-
get_button_text(): string
|
|
4428
|
-
get_message(): string
|
|
4360
|
+
get_button_text(): string
|
|
4361
|
+
get_message(): string
|
|
4429
4362
|
get_ready(): boolean
|
|
4430
|
-
get_text(): string
|
|
4431
|
-
get_title(): string
|
|
4432
|
-
set_button_text(button_text: string
|
|
4433
|
-
set_message(message: string
|
|
4363
|
+
get_text(): string
|
|
4364
|
+
get_title(): string
|
|
4365
|
+
set_button_text(button_text: string): void
|
|
4366
|
+
set_message(message: string): void
|
|
4434
4367
|
set_ready(ready: boolean): void
|
|
4435
|
-
set_text(text: string
|
|
4436
|
-
set_title(title: string
|
|
4368
|
+
set_text(text: string): void
|
|
4369
|
+
set_title(title: string): void
|
|
4437
4370
|
|
|
4438
4371
|
// Conflicting methods
|
|
4439
4372
|
|
|
@@ -4448,7 +4381,7 @@ export interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4448
4381
|
* @param child the child widget
|
|
4449
4382
|
* @param child_property the name of a child property installed on the class of `container`
|
|
4450
4383
|
*/
|
|
4451
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
4384
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
4452
4385
|
|
|
4453
4386
|
// Overloads of child_notify
|
|
4454
4387
|
|
|
@@ -4462,7 +4395,7 @@ export interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4462
4395
|
* Also see gtk_container_child_notify().
|
|
4463
4396
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
4464
4397
|
*/
|
|
4465
|
-
child_notify(child_property: string
|
|
4398
|
+
child_notify(child_property: string): void
|
|
4466
4399
|
/**
|
|
4467
4400
|
* Emits a #GtkWidget::child-notify signal for the
|
|
4468
4401
|
* [child property][child-properties] `child_property`
|
|
@@ -4473,13 +4406,13 @@ export interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4473
4406
|
* Also see gtk_container_child_notify().
|
|
4474
4407
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
4475
4408
|
*/
|
|
4476
|
-
child_notify(child_property: string
|
|
4409
|
+
child_notify(child_property: string): void
|
|
4477
4410
|
|
|
4478
4411
|
// Own virtual methods of Egg-1.0.Egg.SimplePopover
|
|
4479
4412
|
|
|
4480
|
-
vfunc_activate(text: string
|
|
4413
|
+
vfunc_activate(text: string): void
|
|
4481
4414
|
vfunc_changed(): void
|
|
4482
|
-
vfunc_insert_text(position: number, chars: string
|
|
4415
|
+
vfunc_insert_text(position: number, chars: string, n_chars: number): boolean
|
|
4483
4416
|
|
|
4484
4417
|
// Own signals of Egg-1.0.Egg.SimplePopover
|
|
4485
4418
|
|
|
@@ -4727,7 +4660,7 @@ export interface Slider extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4727
4660
|
* @param child the child widget
|
|
4728
4661
|
* @param child_property the name of a child property installed on the class of `container`
|
|
4729
4662
|
*/
|
|
4730
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
4663
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
4731
4664
|
|
|
4732
4665
|
// Overloads of child_notify
|
|
4733
4666
|
|
|
@@ -4741,7 +4674,7 @@ export interface Slider extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4741
4674
|
* Also see gtk_container_child_notify().
|
|
4742
4675
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
4743
4676
|
*/
|
|
4744
|
-
child_notify(child_property: string
|
|
4677
|
+
child_notify(child_property: string): void
|
|
4745
4678
|
/**
|
|
4746
4679
|
* Emits a #GtkWidget::child-notify signal for the
|
|
4747
4680
|
* [child property][child-properties] `child_property`
|
|
@@ -4752,7 +4685,7 @@ export interface Slider extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4752
4685
|
* Also see gtk_container_child_notify().
|
|
4753
4686
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
4754
4687
|
*/
|
|
4755
|
-
child_notify(child_property: string
|
|
4688
|
+
child_notify(child_property: string): void
|
|
4756
4689
|
|
|
4757
4690
|
// Class property signals of Egg-1.0.Egg.Slider
|
|
4758
4691
|
|
|
@@ -4931,9 +4864,9 @@ export interface StateMachine extends Gtk.Buildable {
|
|
|
4931
4864
|
|
|
4932
4865
|
// Owm methods of Egg-1.0.Egg.StateMachine
|
|
4933
4866
|
|
|
4934
|
-
add_binding(state: string
|
|
4935
|
-
add_propertyv(state: string
|
|
4936
|
-
add_style(state: string
|
|
4867
|
+
add_binding(state: string, source_object: any | null, source_property: string, target_object: any | null, target_property: string, flags: GObject.BindingFlags): void
|
|
4868
|
+
add_propertyv(state: string, object: any | null, property: string, value: any): void
|
|
4869
|
+
add_style(state: string, widget: Gtk.Widget, style: string): void
|
|
4937
4870
|
/**
|
|
4938
4871
|
* Creates a new #GAction with the name of `name`.
|
|
4939
4872
|
*
|
|
@@ -4942,13 +4875,13 @@ export interface StateMachine extends Gtk.Buildable {
|
|
|
4942
4875
|
* @param name the name of the action.
|
|
4943
4876
|
* @returns A newly created #GAction.
|
|
4944
4877
|
*/
|
|
4945
|
-
create_action(name: string
|
|
4878
|
+
create_action(name: string): Gio.Action
|
|
4946
4879
|
/**
|
|
4947
4880
|
* Gets the #EggStateMachine:state property. This is the name of the
|
|
4948
4881
|
* current state of the machine.
|
|
4949
4882
|
* @returns The current state of the machine.
|
|
4950
4883
|
*/
|
|
4951
|
-
get_state(): string
|
|
4884
|
+
get_state(): string
|
|
4952
4885
|
/**
|
|
4953
4886
|
* Sets the #EggStateMachine:state property.
|
|
4954
4887
|
*
|
|
@@ -4959,7 +4892,7 @@ export interface StateMachine extends Gtk.Buildable {
|
|
|
4959
4892
|
* the last state before the cycle was detected.
|
|
4960
4893
|
* @param state
|
|
4961
4894
|
*/
|
|
4962
|
-
set_state(state: string
|
|
4895
|
+
set_state(state: string): void
|
|
4963
4896
|
|
|
4964
4897
|
// Class property signals of Egg-1.0.Egg.StateMachine
|
|
4965
4898
|
|
|
@@ -5012,11 +4945,10 @@ export module Suggestion {
|
|
|
5012
4945
|
|
|
5013
4946
|
// Own constructor properties of Egg-1.0.Egg.Suggestion
|
|
5014
4947
|
|
|
5015
|
-
|
|
4948
|
+
iconName?: string | null
|
|
5016
4949
|
id?: string | null
|
|
5017
4950
|
subtitle?: string | null
|
|
5018
4951
|
title?: string | null
|
|
5019
|
-
iconName?: string | null
|
|
5020
4952
|
}
|
|
5021
4953
|
|
|
5022
4954
|
}
|
|
@@ -5025,7 +4957,6 @@ export interface Suggestion {
|
|
|
5025
4957
|
|
|
5026
4958
|
// Own properties of Egg-1.0.Egg.Suggestion
|
|
5027
4959
|
|
|
5028
|
-
icon_name: string | null
|
|
5029
4960
|
iconName: string | null
|
|
5030
4961
|
id: string | null
|
|
5031
4962
|
subtitle: string | null
|
|
@@ -5037,10 +4968,10 @@ export interface Suggestion {
|
|
|
5037
4968
|
|
|
5038
4969
|
// Owm methods of Egg-1.0.Egg.Suggestion
|
|
5039
4970
|
|
|
5040
|
-
get_icon_name(): string
|
|
5041
|
-
get_id(): string
|
|
5042
|
-
get_subtitle(): string
|
|
5043
|
-
get_title(): string
|
|
4971
|
+
get_icon_name(): string
|
|
4972
|
+
get_id(): string
|
|
4973
|
+
get_subtitle(): string
|
|
4974
|
+
get_title(): string
|
|
5044
4975
|
/**
|
|
5045
4976
|
* This function is meant to be used to replace the text in the entry with text
|
|
5046
4977
|
* that represents the suggestion most accurately. This happens when the user
|
|
@@ -5051,11 +4982,11 @@ export interface Suggestion {
|
|
|
5051
4982
|
* @param typed_text the text that was typed into the entry
|
|
5052
4983
|
* @returns The replacement text to insert into the entry when "tab" is pressed to complete the insertion.
|
|
5053
4984
|
*/
|
|
5054
|
-
replace_typed_text(typed_text: string
|
|
5055
|
-
set_icon_name(icon_name: string
|
|
5056
|
-
set_id(id: string
|
|
5057
|
-
set_subtitle(subtitle: string
|
|
5058
|
-
set_title(title: string
|
|
4985
|
+
replace_typed_text(typed_text: string): string | null
|
|
4986
|
+
set_icon_name(icon_name: string): void
|
|
4987
|
+
set_id(id: string): void
|
|
4988
|
+
set_subtitle(subtitle: string): void
|
|
4989
|
+
set_title(title: string): void
|
|
5059
4990
|
/**
|
|
5060
4991
|
* This function requests potential text to append to `typed_text` to make it
|
|
5061
4992
|
* more clear to the user what they will be activating by selecting this
|
|
@@ -5064,7 +4995,7 @@ export interface Suggestion {
|
|
|
5064
4995
|
* @param typed_text The user entered text
|
|
5065
4996
|
* @returns Suffix to append to @typed_text or %NULL to leave it unchanged.
|
|
5066
4997
|
*/
|
|
5067
|
-
suggest_suffix(typed_text: string
|
|
4998
|
+
suggest_suffix(typed_text: string): string | null
|
|
5068
4999
|
|
|
5069
5000
|
// Own virtual methods of Egg-1.0.Egg.Suggestion
|
|
5070
5001
|
|
|
@@ -5079,7 +5010,7 @@ export interface Suggestion {
|
|
|
5079
5010
|
* @param typed_text the text that was typed into the entry
|
|
5080
5011
|
* @returns The replacement text to insert into the entry when "tab" is pressed to complete the insertion.
|
|
5081
5012
|
*/
|
|
5082
|
-
vfunc_replace_typed_text(typed_text: string
|
|
5013
|
+
vfunc_replace_typed_text(typed_text: string): string | null
|
|
5083
5014
|
/**
|
|
5084
5015
|
* This function requests potential text to append to `typed_text` to make it
|
|
5085
5016
|
* more clear to the user what they will be activating by selecting this
|
|
@@ -5089,7 +5020,7 @@ export interface Suggestion {
|
|
|
5089
5020
|
* @param typed_text The user entered text
|
|
5090
5021
|
* @returns Suffix to append to @typed_text or %NULL to leave it unchanged.
|
|
5091
5022
|
*/
|
|
5092
|
-
vfunc_suggest_suffix(typed_text: string
|
|
5023
|
+
vfunc_suggest_suffix(typed_text: string): string | null
|
|
5093
5024
|
|
|
5094
5025
|
// Own signals of Egg-1.0.Egg.Suggestion
|
|
5095
5026
|
|
|
@@ -5191,7 +5122,6 @@ export interface SuggestionEntry extends Atk.ImplementorIface, Gtk.Buildable, Gt
|
|
|
5191
5122
|
// Own properties of Egg-1.0.Egg.SuggestionEntry
|
|
5192
5123
|
|
|
5193
5124
|
model: Gio.ListModel
|
|
5194
|
-
readonly typed_text: string | null
|
|
5195
5125
|
readonly typedText: string | null
|
|
5196
5126
|
|
|
5197
5127
|
// Own fields of Egg-1.0.Egg.SuggestionEntry
|
|
@@ -5210,7 +5140,7 @@ export interface SuggestionEntry extends Atk.ImplementorIface, Gtk.Buildable, Gt
|
|
|
5210
5140
|
* @returns An #EggSuggestion or %NULL.
|
|
5211
5141
|
*/
|
|
5212
5142
|
get_suggestion(): Suggestion | null
|
|
5213
|
-
get_typed_text(): string
|
|
5143
|
+
get_typed_text(): string
|
|
5214
5144
|
set_model(model: Gio.ListModel): void
|
|
5215
5145
|
set_suggestion(suggestion: Suggestion): void
|
|
5216
5146
|
|
|
@@ -5574,7 +5504,7 @@ export interface SuggestionEntryBuffer {
|
|
|
5574
5504
|
*/
|
|
5575
5505
|
get_suggestion(): Suggestion | null
|
|
5576
5506
|
get_typed_length(): number
|
|
5577
|
-
get_typed_text(): string
|
|
5507
|
+
get_typed_text(): string
|
|
5578
5508
|
/**
|
|
5579
5509
|
* Sets the current suggestion for the entry buffer.
|
|
5580
5510
|
*
|
|
@@ -5652,9 +5582,8 @@ export module SuggestionPopover {
|
|
|
5652
5582
|
// Own constructor properties of Egg-1.0.Egg.SuggestionPopover
|
|
5653
5583
|
|
|
5654
5584
|
model?: Suggestion | null
|
|
5655
|
-
relative_to?: Gtk.Widget | null
|
|
5656
|
-
selected?: Suggestion | null
|
|
5657
5585
|
relativeTo?: Gtk.Widget | null
|
|
5586
|
+
selected?: Suggestion | null
|
|
5658
5587
|
}
|
|
5659
5588
|
|
|
5660
5589
|
}
|
|
@@ -5664,7 +5593,6 @@ export interface SuggestionPopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
5664
5593
|
// Own properties of Egg-1.0.Egg.SuggestionPopover
|
|
5665
5594
|
|
|
5666
5595
|
model: Suggestion
|
|
5667
|
-
relative_to: Gtk.Widget
|
|
5668
5596
|
relativeTo: Gtk.Widget
|
|
5669
5597
|
selected: Suggestion
|
|
5670
5598
|
|
|
@@ -5724,7 +5652,7 @@ export interface SuggestionPopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
5724
5652
|
* @param child the child widget
|
|
5725
5653
|
* @param child_property the name of a child property installed on the class of `container`
|
|
5726
5654
|
*/
|
|
5727
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
5655
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
5728
5656
|
|
|
5729
5657
|
// Overloads of child_notify
|
|
5730
5658
|
|
|
@@ -5738,7 +5666,7 @@ export interface SuggestionPopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
5738
5666
|
* Also see gtk_container_child_notify().
|
|
5739
5667
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
5740
5668
|
*/
|
|
5741
|
-
child_notify(child_property: string
|
|
5669
|
+
child_notify(child_property: string): void
|
|
5742
5670
|
/**
|
|
5743
5671
|
* Emits a #GtkWidget::child-notify signal for the
|
|
5744
5672
|
* [child property][child-properties] `child_property`
|
|
@@ -5749,7 +5677,7 @@ export interface SuggestionPopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
5749
5677
|
* Also see gtk_container_child_notify().
|
|
5750
5678
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
5751
5679
|
*/
|
|
5752
|
-
child_notify(child_property: string
|
|
5680
|
+
child_notify(child_property: string): void
|
|
5753
5681
|
|
|
5754
5682
|
// Own signals of Egg-1.0.Egg.SuggestionPopover
|
|
5755
5683
|
|
|
@@ -6087,7 +6015,7 @@ export interface SuggestionRow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6087
6015
|
* Also see gtk_container_child_notify().
|
|
6088
6016
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
6089
6017
|
*/
|
|
6090
|
-
child_notify(child_property: string
|
|
6018
|
+
child_notify(child_property: string): void
|
|
6091
6019
|
/**
|
|
6092
6020
|
* Emits a #GtkWidget::child-notify signal for the
|
|
6093
6021
|
* [child property][child-properties]
|
|
@@ -6099,7 +6027,7 @@ export interface SuggestionRow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6099
6027
|
* @param child the child widget
|
|
6100
6028
|
* @param child_property the name of a child property installed on the class of `container`
|
|
6101
6029
|
*/
|
|
6102
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
6030
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
6103
6031
|
|
|
6104
6032
|
// Overloads of child_notify
|
|
6105
6033
|
|
|
@@ -6113,7 +6041,7 @@ export interface SuggestionRow extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6113
6041
|
* Also see gtk_container_child_notify().
|
|
6114
6042
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
6115
6043
|
*/
|
|
6116
|
-
child_notify(child_property: string
|
|
6044
|
+
child_notify(child_property: string): void
|
|
6117
6045
|
|
|
6118
6046
|
// Class property signals of Egg-1.0.Egg.SuggestionRow
|
|
6119
6047
|
|
|
@@ -6281,22 +6209,6 @@ export module TaskCache {
|
|
|
6281
6209
|
|
|
6282
6210
|
// Own constructor properties of Egg-1.0.Egg.TaskCache
|
|
6283
6211
|
|
|
6284
|
-
key_copy_func?: any | null
|
|
6285
|
-
key_destroy_func?: any | null
|
|
6286
|
-
key_equal_func?: any | null
|
|
6287
|
-
key_hash_func?: any | null
|
|
6288
|
-
populate_callback?: any | null
|
|
6289
|
-
populate_callback_data?: any | null
|
|
6290
|
-
populate_callback_data_destroy?: any | null
|
|
6291
|
-
/**
|
|
6292
|
-
* This is the number of milliseconds before an item should be evicted
|
|
6293
|
-
* from the cache.
|
|
6294
|
-
*
|
|
6295
|
-
* A value of zero indicates no eviction.
|
|
6296
|
-
*/
|
|
6297
|
-
time_to_live?: number | null
|
|
6298
|
-
value_copy_func?: any | null
|
|
6299
|
-
value_destroy_func?: any | null
|
|
6300
6212
|
keyCopyFunc?: any | null
|
|
6301
6213
|
keyDestroyFunc?: any | null
|
|
6302
6214
|
keyEqualFunc?: any | null
|
|
@@ -6321,27 +6233,13 @@ export interface TaskCache {
|
|
|
6321
6233
|
|
|
6322
6234
|
// Own properties of Egg-1.0.Egg.TaskCache
|
|
6323
6235
|
|
|
6324
|
-
readonly key_copy_func: any
|
|
6325
6236
|
readonly keyCopyFunc: any
|
|
6326
|
-
readonly key_destroy_func: any
|
|
6327
6237
|
readonly keyDestroyFunc: any
|
|
6328
|
-
readonly key_equal_func: any
|
|
6329
6238
|
readonly keyEqualFunc: any
|
|
6330
|
-
readonly key_hash_func: any
|
|
6331
6239
|
readonly keyHashFunc: any
|
|
6332
|
-
readonly populate_callback: any
|
|
6333
6240
|
readonly populateCallback: any
|
|
6334
|
-
readonly populate_callback_data: any
|
|
6335
6241
|
readonly populateCallbackData: any
|
|
6336
|
-
readonly populate_callback_data_destroy: any
|
|
6337
6242
|
readonly populateCallbackDataDestroy: any
|
|
6338
|
-
/**
|
|
6339
|
-
* This is the number of milliseconds before an item should be evicted
|
|
6340
|
-
* from the cache.
|
|
6341
|
-
*
|
|
6342
|
-
* A value of zero indicates no eviction.
|
|
6343
|
-
*/
|
|
6344
|
-
readonly time_to_live: number
|
|
6345
6243
|
/**
|
|
6346
6244
|
* This is the number of milliseconds before an item should be evicted
|
|
6347
6245
|
* from the cache.
|
|
@@ -6349,9 +6247,7 @@ export interface TaskCache {
|
|
|
6349
6247
|
* A value of zero indicates no eviction.
|
|
6350
6248
|
*/
|
|
6351
6249
|
readonly timeToLive: number
|
|
6352
|
-
readonly value_copy_func: any
|
|
6353
6250
|
readonly valueCopyFunc: any
|
|
6354
|
-
readonly value_destroy_func: any
|
|
6355
6251
|
readonly valueDestroyFunc: any
|
|
6356
6252
|
|
|
6357
6253
|
// Owm methods of Egg-1.0.Egg.TaskCache
|
|
@@ -6389,7 +6285,7 @@ export interface TaskCache {
|
|
|
6389
6285
|
* @returns A #GObject or %NULL if the key was not found in the cache.
|
|
6390
6286
|
*/
|
|
6391
6287
|
peek(key: any | null): GObject.Object | null
|
|
6392
|
-
set_name(name: string
|
|
6288
|
+
set_name(name: string): void
|
|
6393
6289
|
|
|
6394
6290
|
// Class property signals of Egg-1.0.Egg.TaskCache
|
|
6395
6291
|
|
|
@@ -6450,8 +6346,6 @@ export module ThreeGrid {
|
|
|
6450
6346
|
|
|
6451
6347
|
// Own constructor properties of Egg-1.0.Egg.ThreeGrid
|
|
6452
6348
|
|
|
6453
|
-
column_spacing?: number | null
|
|
6454
|
-
row_spacing?: number | null
|
|
6455
6349
|
columnSpacing?: number | null
|
|
6456
6350
|
rowSpacing?: number | null
|
|
6457
6351
|
}
|
|
@@ -6462,9 +6356,7 @@ export interface ThreeGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6462
6356
|
|
|
6463
6357
|
// Own properties of Egg-1.0.Egg.ThreeGrid
|
|
6464
6358
|
|
|
6465
|
-
column_spacing: number
|
|
6466
6359
|
columnSpacing: number
|
|
6467
|
-
row_spacing: number
|
|
6468
6360
|
rowSpacing: number
|
|
6469
6361
|
|
|
6470
6362
|
// Own fields of Egg-1.0.Egg.ThreeGrid
|
|
@@ -6484,7 +6376,7 @@ export interface ThreeGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6484
6376
|
* @param child the child widget
|
|
6485
6377
|
* @param child_property the name of a child property installed on the class of `container`
|
|
6486
6378
|
*/
|
|
6487
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
6379
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
6488
6380
|
|
|
6489
6381
|
// Overloads of child_notify
|
|
6490
6382
|
|
|
@@ -6498,7 +6390,7 @@ export interface ThreeGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6498
6390
|
* Also see gtk_container_child_notify().
|
|
6499
6391
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
6500
6392
|
*/
|
|
6501
|
-
child_notify(child_property: string
|
|
6393
|
+
child_notify(child_property: string): void
|
|
6502
6394
|
/**
|
|
6503
6395
|
* Emits a #GtkWidget::child-notify signal for the
|
|
6504
6396
|
* [child property][child-properties] `child_property`
|
|
@@ -6509,7 +6401,7 @@ export interface ThreeGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6509
6401
|
* Also see gtk_container_child_notify().
|
|
6510
6402
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
6511
6403
|
*/
|
|
6512
|
-
child_notify(child_property: string
|
|
6404
|
+
child_notify(child_property: string): void
|
|
6513
6405
|
|
|
6514
6406
|
// Class property signals of Egg-1.0.Egg.ThreeGrid
|
|
6515
6407
|
|
|
@@ -6687,7 +6579,7 @@ export interface WidgetActionGroup extends Gio.ActionGroup {
|
|
|
6687
6579
|
|
|
6688
6580
|
// Owm methods of Egg-1.0.Egg.WidgetActionGroup
|
|
6689
6581
|
|
|
6690
|
-
set_action_enabled(action_name: string
|
|
6582
|
+
set_action_enabled(action_name: string, enabled: boolean): void
|
|
6691
6583
|
|
|
6692
6584
|
// Class property signals of Egg-1.0.Egg.WidgetActionGroup
|
|
6693
6585
|
|
|
@@ -6718,7 +6610,7 @@ export class WidgetActionGroup extends GObject.Object {
|
|
|
6718
6610
|
* @param widget A #GtkWidget
|
|
6719
6611
|
* @param group_name the group name to use for the action group
|
|
6720
6612
|
*/
|
|
6721
|
-
static attach(widget: Gtk.Widget, group_name: string
|
|
6613
|
+
static attach(widget: Gtk.Widget, group_name: string): void
|
|
6722
6614
|
}
|
|
6723
6615
|
|
|
6724
6616
|
export interface AnimationClass {
|
|
@@ -6796,9 +6688,9 @@ export interface Counter {
|
|
|
6796
6688
|
// Own fields of Egg-1.0.Egg.Counter
|
|
6797
6689
|
|
|
6798
6690
|
values: CounterValue
|
|
6799
|
-
category: string
|
|
6800
|
-
name: string
|
|
6801
|
-
description: string
|
|
6691
|
+
category: string
|
|
6692
|
+
name: string
|
|
6693
|
+
description: string
|
|
6802
6694
|
|
|
6803
6695
|
// Owm methods of Egg-1.0.Egg.Counter
|
|
6804
6696
|
|
|
@@ -7212,8 +7104,8 @@ export interface SimplePopoverClass {
|
|
|
7212
7104
|
// Own fields of Egg-1.0.Egg.SimplePopoverClass
|
|
7213
7105
|
|
|
7214
7106
|
parent: Gtk.PopoverClass
|
|
7215
|
-
activate: (self: SimplePopover, text: string
|
|
7216
|
-
insert_text: (self: SimplePopover, position: number, chars: string
|
|
7107
|
+
activate: (self: SimplePopover, text: string) => void
|
|
7108
|
+
insert_text: (self: SimplePopover, position: number, chars: string, n_chars: number) => boolean
|
|
7217
7109
|
changed: (self: SimplePopover) => void
|
|
7218
7110
|
}
|
|
7219
7111
|
|
|
@@ -7257,8 +7149,8 @@ export interface SuggestionClass {
|
|
|
7257
7149
|
// Own fields of Egg-1.0.Egg.SuggestionClass
|
|
7258
7150
|
|
|
7259
7151
|
parent_class: GObject.ObjectClass
|
|
7260
|
-
suggest_suffix: (self: Suggestion, typed_text: string
|
|
7261
|
-
replace_typed_text: (self: Suggestion, typed_text: string
|
|
7152
|
+
suggest_suffix: (self: Suggestion, typed_text: string) => string | null
|
|
7153
|
+
replace_typed_text: (self: Suggestion, typed_text: string) => string | null
|
|
7262
7154
|
_reserved1: any
|
|
7263
7155
|
_reserved2: any
|
|
7264
7156
|
_reserved3: any
|