@girs/gd-1.0 1.0.0-3.2.6 → 1.0.0-3.2.7
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/gd-1.0.d.cts +254 -54
- package/gd-1.0.d.ts +254 -54
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gd-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Gd-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.7.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/gd-1.0.d.cts
CHANGED
|
@@ -112,9 +112,33 @@ export interface HeaderButton extends Gtk.Button {
|
|
|
112
112
|
// Owm methods of Gd-1.0.Gd.HeaderButton
|
|
113
113
|
|
|
114
114
|
get_label(): string | null
|
|
115
|
+
|
|
116
|
+
// Overloads of get_label
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Fetches the text from the label of the button, as set by
|
|
120
|
+
* gtk_button_set_label(). If the label text has not
|
|
121
|
+
* been set the return value will be %NULL. This will be the
|
|
122
|
+
* case if you create an empty button with gtk_button_new() to
|
|
123
|
+
* use as a container.
|
|
124
|
+
* @returns The text of the label widget. This string is owned by the widget and must not be modified or freed.
|
|
125
|
+
*/
|
|
126
|
+
get_label(): string
|
|
115
127
|
get_symbolic_icon_name(): string | null
|
|
116
128
|
get_use_markup(): boolean
|
|
117
129
|
set_label(label: string | null): void
|
|
130
|
+
|
|
131
|
+
// Overloads of set_label
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Sets the text of the label of the button to `str`. This text is
|
|
135
|
+
* also used to select the stock item if gtk_button_set_use_stock()
|
|
136
|
+
* is used.
|
|
137
|
+
*
|
|
138
|
+
* This will also clear any previously set labels.
|
|
139
|
+
* @param label a string
|
|
140
|
+
*/
|
|
141
|
+
set_label(label: string): void
|
|
118
142
|
set_symbolic_icon_name(symbolic_icon_name: string | null): void
|
|
119
143
|
set_use_markup(use_markup: boolean): void
|
|
120
144
|
|
|
@@ -130,7 +154,7 @@ export interface HeaderButton extends Gtk.Button {
|
|
|
130
154
|
* Also see gtk_container_child_notify().
|
|
131
155
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
132
156
|
*/
|
|
133
|
-
child_notify(child_property: string
|
|
157
|
+
child_notify(child_property: string): void
|
|
134
158
|
/**
|
|
135
159
|
* Emits a #GtkWidget::child-notify signal for the
|
|
136
160
|
* [child property][child-properties]
|
|
@@ -142,7 +166,7 @@ export interface HeaderButton extends Gtk.Button {
|
|
|
142
166
|
* @param child the child widget
|
|
143
167
|
* @param child_property the name of a child property installed on the class of `container`
|
|
144
168
|
*/
|
|
145
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
169
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
146
170
|
|
|
147
171
|
// Overloads of child_notify
|
|
148
172
|
|
|
@@ -156,7 +180,7 @@ export interface HeaderButton extends Gtk.Button {
|
|
|
156
180
|
* Also see gtk_container_child_notify().
|
|
157
181
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
158
182
|
*/
|
|
159
|
-
child_notify(child_property: string
|
|
183
|
+
child_notify(child_property: string): void
|
|
160
184
|
|
|
161
185
|
// Class property signals of Gd-1.0.Gd.HeaderButton
|
|
162
186
|
|
|
@@ -572,12 +596,12 @@ export interface HeaderBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
572
596
|
* Retrieves the subtitle of the header. See gd_header_bar_set_subtitle().
|
|
573
597
|
* @returns the subtitle of the header, or %NULL if none has been set explicitely. The returned string is owned by the widget and must not be modified or freed.
|
|
574
598
|
*/
|
|
575
|
-
get_subtitle(): string
|
|
599
|
+
get_subtitle(): string
|
|
576
600
|
/**
|
|
577
601
|
* Retrieves the title of the header. See gd_header_bar_set_title().
|
|
578
602
|
* @returns the title of the header, or %NULL if none has been set explicitely. The returned string is owned by the widget and must not be modified or freed.
|
|
579
603
|
*/
|
|
580
|
-
get_title(): string
|
|
604
|
+
get_title(): string
|
|
581
605
|
pack_end(child: Gtk.Widget): void
|
|
582
606
|
pack_start(child: Gtk.Widget): void
|
|
583
607
|
/**
|
|
@@ -615,7 +639,7 @@ export interface HeaderBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
615
639
|
* @param child the child widget
|
|
616
640
|
* @param child_property the name of a child property installed on the class of `container`
|
|
617
641
|
*/
|
|
618
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
642
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
619
643
|
|
|
620
644
|
// Overloads of child_notify
|
|
621
645
|
|
|
@@ -629,7 +653,7 @@ export interface HeaderBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
629
653
|
* Also see gtk_container_child_notify().
|
|
630
654
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
631
655
|
*/
|
|
632
|
-
child_notify(child_property: string
|
|
656
|
+
child_notify(child_property: string): void
|
|
633
657
|
/**
|
|
634
658
|
* Emits a #GtkWidget::child-notify signal for the
|
|
635
659
|
* [child property][child-properties] `child_property`
|
|
@@ -640,7 +664,7 @@ export interface HeaderBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
640
664
|
* Also see gtk_container_child_notify().
|
|
641
665
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
642
666
|
*/
|
|
643
|
-
child_notify(child_property: string
|
|
667
|
+
child_notify(child_property: string): void
|
|
644
668
|
|
|
645
669
|
// Class property signals of Gd-1.0.Gd.HeaderBar
|
|
646
670
|
|
|
@@ -826,6 +850,50 @@ export interface HeaderMenuButton extends Atk.ImplementorIface, HeaderButton, Gt
|
|
|
826
850
|
|
|
827
851
|
// Conflicting methods
|
|
828
852
|
|
|
853
|
+
get_label(): string | null
|
|
854
|
+
|
|
855
|
+
// Overloads of get_label
|
|
856
|
+
|
|
857
|
+
/**
|
|
858
|
+
* Fetches the text from the label of the button, as set by
|
|
859
|
+
* gtk_button_set_label(). If the label text has not
|
|
860
|
+
* been set the return value will be %NULL. This will be the
|
|
861
|
+
* case if you create an empty button with gtk_button_new() to
|
|
862
|
+
* use as a container.
|
|
863
|
+
* @returns The text of the label widget. This string is owned by the widget and must not be modified or freed.
|
|
864
|
+
*/
|
|
865
|
+
get_label(): string
|
|
866
|
+
/**
|
|
867
|
+
* Fetches the text from the label of the button, as set by
|
|
868
|
+
* gtk_button_set_label(). If the label text has not
|
|
869
|
+
* been set the return value will be %NULL. This will be the
|
|
870
|
+
* case if you create an empty button with gtk_button_new() to
|
|
871
|
+
* use as a container.
|
|
872
|
+
* @returns The text of the label widget. This string is owned by the widget and must not be modified or freed.
|
|
873
|
+
*/
|
|
874
|
+
get_label(): string
|
|
875
|
+
set_label(label: string | null): void
|
|
876
|
+
|
|
877
|
+
// Overloads of set_label
|
|
878
|
+
|
|
879
|
+
/**
|
|
880
|
+
* Sets the text of the label of the button to `str`. This text is
|
|
881
|
+
* also used to select the stock item if gtk_button_set_use_stock()
|
|
882
|
+
* is used.
|
|
883
|
+
*
|
|
884
|
+
* This will also clear any previously set labels.
|
|
885
|
+
* @param label a string
|
|
886
|
+
*/
|
|
887
|
+
set_label(label: string): void
|
|
888
|
+
/**
|
|
889
|
+
* Sets the text of the label of the button to `str`. This text is
|
|
890
|
+
* also used to select the stock item if gtk_button_set_use_stock()
|
|
891
|
+
* is used.
|
|
892
|
+
*
|
|
893
|
+
* This will also clear any previously set labels.
|
|
894
|
+
* @param label a string
|
|
895
|
+
*/
|
|
896
|
+
set_label(label: string): void
|
|
829
897
|
/**
|
|
830
898
|
* Emits a #GtkWidget::child-notify signal for the
|
|
831
899
|
* [child property][child-properties] `child_property`
|
|
@@ -836,7 +904,7 @@ export interface HeaderMenuButton extends Atk.ImplementorIface, HeaderButton, Gt
|
|
|
836
904
|
* Also see gtk_container_child_notify().
|
|
837
905
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
838
906
|
*/
|
|
839
|
-
child_notify(child_property: string
|
|
907
|
+
child_notify(child_property: string): void
|
|
840
908
|
/**
|
|
841
909
|
* Emits a #GtkWidget::child-notify signal for the
|
|
842
910
|
* [child property][child-properties]
|
|
@@ -848,7 +916,7 @@ export interface HeaderMenuButton extends Atk.ImplementorIface, HeaderButton, Gt
|
|
|
848
916
|
* @param child the child widget
|
|
849
917
|
* @param child_property the name of a child property installed on the class of `container`
|
|
850
918
|
*/
|
|
851
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
919
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
852
920
|
|
|
853
921
|
// Overloads of child_notify
|
|
854
922
|
|
|
@@ -862,7 +930,7 @@ export interface HeaderMenuButton extends Atk.ImplementorIface, HeaderButton, Gt
|
|
|
862
930
|
* Also see gtk_container_child_notify().
|
|
863
931
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
864
932
|
*/
|
|
865
|
-
child_notify(child_property: string
|
|
933
|
+
child_notify(child_property: string): void
|
|
866
934
|
/**
|
|
867
935
|
* Returns the direction the popup will be pointing at when popped up.
|
|
868
936
|
* @returns a #GtkArrowType value
|
|
@@ -1166,6 +1234,50 @@ export interface HeaderRadioButton extends Atk.ImplementorIface, HeaderButton, G
|
|
|
1166
1234
|
|
|
1167
1235
|
// Conflicting methods
|
|
1168
1236
|
|
|
1237
|
+
get_label(): string | null
|
|
1238
|
+
|
|
1239
|
+
// Overloads of get_label
|
|
1240
|
+
|
|
1241
|
+
/**
|
|
1242
|
+
* Fetches the text from the label of the button, as set by
|
|
1243
|
+
* gtk_button_set_label(). If the label text has not
|
|
1244
|
+
* been set the return value will be %NULL. This will be the
|
|
1245
|
+
* case if you create an empty button with gtk_button_new() to
|
|
1246
|
+
* use as a container.
|
|
1247
|
+
* @returns The text of the label widget. This string is owned by the widget and must not be modified or freed.
|
|
1248
|
+
*/
|
|
1249
|
+
get_label(): string
|
|
1250
|
+
/**
|
|
1251
|
+
* Fetches the text from the label of the button, as set by
|
|
1252
|
+
* gtk_button_set_label(). If the label text has not
|
|
1253
|
+
* been set the return value will be %NULL. This will be the
|
|
1254
|
+
* case if you create an empty button with gtk_button_new() to
|
|
1255
|
+
* use as a container.
|
|
1256
|
+
* @returns The text of the label widget. This string is owned by the widget and must not be modified or freed.
|
|
1257
|
+
*/
|
|
1258
|
+
get_label(): string
|
|
1259
|
+
set_label(label: string | null): void
|
|
1260
|
+
|
|
1261
|
+
// Overloads of set_label
|
|
1262
|
+
|
|
1263
|
+
/**
|
|
1264
|
+
* Sets the text of the label of the button to `str`. This text is
|
|
1265
|
+
* also used to select the stock item if gtk_button_set_use_stock()
|
|
1266
|
+
* is used.
|
|
1267
|
+
*
|
|
1268
|
+
* This will also clear any previously set labels.
|
|
1269
|
+
* @param label a string
|
|
1270
|
+
*/
|
|
1271
|
+
set_label(label: string): void
|
|
1272
|
+
/**
|
|
1273
|
+
* Sets the text of the label of the button to `str`. This text is
|
|
1274
|
+
* also used to select the stock item if gtk_button_set_use_stock()
|
|
1275
|
+
* is used.
|
|
1276
|
+
*
|
|
1277
|
+
* This will also clear any previously set labels.
|
|
1278
|
+
* @param label a string
|
|
1279
|
+
*/
|
|
1280
|
+
set_label(label: string): void
|
|
1169
1281
|
/**
|
|
1170
1282
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1171
1283
|
* [child property][child-properties] `child_property`
|
|
@@ -1176,7 +1288,7 @@ export interface HeaderRadioButton extends Atk.ImplementorIface, HeaderButton, G
|
|
|
1176
1288
|
* Also see gtk_container_child_notify().
|
|
1177
1289
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1178
1290
|
*/
|
|
1179
|
-
child_notify(child_property: string
|
|
1291
|
+
child_notify(child_property: string): void
|
|
1180
1292
|
/**
|
|
1181
1293
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1182
1294
|
* [child property][child-properties]
|
|
@@ -1188,7 +1300,7 @@ export interface HeaderRadioButton extends Atk.ImplementorIface, HeaderButton, G
|
|
|
1188
1300
|
* @param child the child widget
|
|
1189
1301
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1190
1302
|
*/
|
|
1191
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1303
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1192
1304
|
|
|
1193
1305
|
// Overloads of child_notify
|
|
1194
1306
|
|
|
@@ -1202,7 +1314,7 @@ export interface HeaderRadioButton extends Atk.ImplementorIface, HeaderButton, G
|
|
|
1202
1314
|
* Also see gtk_container_child_notify().
|
|
1203
1315
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1204
1316
|
*/
|
|
1205
|
-
child_notify(child_property: string
|
|
1317
|
+
child_notify(child_property: string): void
|
|
1206
1318
|
|
|
1207
1319
|
// Class property signals of Gd-1.0.Gd.HeaderRadioButton
|
|
1208
1320
|
|
|
@@ -1446,6 +1558,50 @@ export interface HeaderSimpleButton extends Atk.ImplementorIface, HeaderButton,
|
|
|
1446
1558
|
|
|
1447
1559
|
// Conflicting methods
|
|
1448
1560
|
|
|
1561
|
+
get_label(): string | null
|
|
1562
|
+
|
|
1563
|
+
// Overloads of get_label
|
|
1564
|
+
|
|
1565
|
+
/**
|
|
1566
|
+
* Fetches the text from the label of the button, as set by
|
|
1567
|
+
* gtk_button_set_label(). If the label text has not
|
|
1568
|
+
* been set the return value will be %NULL. This will be the
|
|
1569
|
+
* case if you create an empty button with gtk_button_new() to
|
|
1570
|
+
* use as a container.
|
|
1571
|
+
* @returns The text of the label widget. This string is owned by the widget and must not be modified or freed.
|
|
1572
|
+
*/
|
|
1573
|
+
get_label(): string
|
|
1574
|
+
/**
|
|
1575
|
+
* Fetches the text from the label of the button, as set by
|
|
1576
|
+
* gtk_button_set_label(). If the label text has not
|
|
1577
|
+
* been set the return value will be %NULL. This will be the
|
|
1578
|
+
* case if you create an empty button with gtk_button_new() to
|
|
1579
|
+
* use as a container.
|
|
1580
|
+
* @returns The text of the label widget. This string is owned by the widget and must not be modified or freed.
|
|
1581
|
+
*/
|
|
1582
|
+
get_label(): string
|
|
1583
|
+
set_label(label: string | null): void
|
|
1584
|
+
|
|
1585
|
+
// Overloads of set_label
|
|
1586
|
+
|
|
1587
|
+
/**
|
|
1588
|
+
* Sets the text of the label of the button to `str`. This text is
|
|
1589
|
+
* also used to select the stock item if gtk_button_set_use_stock()
|
|
1590
|
+
* is used.
|
|
1591
|
+
*
|
|
1592
|
+
* This will also clear any previously set labels.
|
|
1593
|
+
* @param label a string
|
|
1594
|
+
*/
|
|
1595
|
+
set_label(label: string): void
|
|
1596
|
+
/**
|
|
1597
|
+
* Sets the text of the label of the button to `str`. This text is
|
|
1598
|
+
* also used to select the stock item if gtk_button_set_use_stock()
|
|
1599
|
+
* is used.
|
|
1600
|
+
*
|
|
1601
|
+
* This will also clear any previously set labels.
|
|
1602
|
+
* @param label a string
|
|
1603
|
+
*/
|
|
1604
|
+
set_label(label: string): void
|
|
1449
1605
|
/**
|
|
1450
1606
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1451
1607
|
* [child property][child-properties] `child_property`
|
|
@@ -1456,7 +1612,7 @@ export interface HeaderSimpleButton extends Atk.ImplementorIface, HeaderButton,
|
|
|
1456
1612
|
* Also see gtk_container_child_notify().
|
|
1457
1613
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1458
1614
|
*/
|
|
1459
|
-
child_notify(child_property: string
|
|
1615
|
+
child_notify(child_property: string): void
|
|
1460
1616
|
/**
|
|
1461
1617
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1462
1618
|
* [child property][child-properties]
|
|
@@ -1468,7 +1624,7 @@ export interface HeaderSimpleButton extends Atk.ImplementorIface, HeaderButton,
|
|
|
1468
1624
|
* @param child the child widget
|
|
1469
1625
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1470
1626
|
*/
|
|
1471
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1627
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1472
1628
|
|
|
1473
1629
|
// Overloads of child_notify
|
|
1474
1630
|
|
|
@@ -1482,7 +1638,7 @@ export interface HeaderSimpleButton extends Atk.ImplementorIface, HeaderButton,
|
|
|
1482
1638
|
* Also see gtk_container_child_notify().
|
|
1483
1639
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1484
1640
|
*/
|
|
1485
|
-
child_notify(child_property: string
|
|
1641
|
+
child_notify(child_property: string): void
|
|
1486
1642
|
|
|
1487
1643
|
// Class property signals of Gd-1.0.Gd.HeaderSimpleButton
|
|
1488
1644
|
|
|
@@ -1691,6 +1847,50 @@ export interface HeaderToggleButton extends Atk.ImplementorIface, HeaderButton,
|
|
|
1691
1847
|
|
|
1692
1848
|
// Conflicting methods
|
|
1693
1849
|
|
|
1850
|
+
get_label(): string | null
|
|
1851
|
+
|
|
1852
|
+
// Overloads of get_label
|
|
1853
|
+
|
|
1854
|
+
/**
|
|
1855
|
+
* Fetches the text from the label of the button, as set by
|
|
1856
|
+
* gtk_button_set_label(). If the label text has not
|
|
1857
|
+
* been set the return value will be %NULL. This will be the
|
|
1858
|
+
* case if you create an empty button with gtk_button_new() to
|
|
1859
|
+
* use as a container.
|
|
1860
|
+
* @returns The text of the label widget. This string is owned by the widget and must not be modified or freed.
|
|
1861
|
+
*/
|
|
1862
|
+
get_label(): string
|
|
1863
|
+
/**
|
|
1864
|
+
* Fetches the text from the label of the button, as set by
|
|
1865
|
+
* gtk_button_set_label(). If the label text has not
|
|
1866
|
+
* been set the return value will be %NULL. This will be the
|
|
1867
|
+
* case if you create an empty button with gtk_button_new() to
|
|
1868
|
+
* use as a container.
|
|
1869
|
+
* @returns The text of the label widget. This string is owned by the widget and must not be modified or freed.
|
|
1870
|
+
*/
|
|
1871
|
+
get_label(): string
|
|
1872
|
+
set_label(label: string | null): void
|
|
1873
|
+
|
|
1874
|
+
// Overloads of set_label
|
|
1875
|
+
|
|
1876
|
+
/**
|
|
1877
|
+
* Sets the text of the label of the button to `str`. This text is
|
|
1878
|
+
* also used to select the stock item if gtk_button_set_use_stock()
|
|
1879
|
+
* is used.
|
|
1880
|
+
*
|
|
1881
|
+
* This will also clear any previously set labels.
|
|
1882
|
+
* @param label a string
|
|
1883
|
+
*/
|
|
1884
|
+
set_label(label: string): void
|
|
1885
|
+
/**
|
|
1886
|
+
* Sets the text of the label of the button to `str`. This text is
|
|
1887
|
+
* also used to select the stock item if gtk_button_set_use_stock()
|
|
1888
|
+
* is used.
|
|
1889
|
+
*
|
|
1890
|
+
* This will also clear any previously set labels.
|
|
1891
|
+
* @param label a string
|
|
1892
|
+
*/
|
|
1893
|
+
set_label(label: string): void
|
|
1694
1894
|
/**
|
|
1695
1895
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1696
1896
|
* [child property][child-properties] `child_property`
|
|
@@ -1701,7 +1901,7 @@ export interface HeaderToggleButton extends Atk.ImplementorIface, HeaderButton,
|
|
|
1701
1901
|
* Also see gtk_container_child_notify().
|
|
1702
1902
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1703
1903
|
*/
|
|
1704
|
-
child_notify(child_property: string
|
|
1904
|
+
child_notify(child_property: string): void
|
|
1705
1905
|
/**
|
|
1706
1906
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1707
1907
|
* [child property][child-properties]
|
|
@@ -1713,7 +1913,7 @@ export interface HeaderToggleButton extends Atk.ImplementorIface, HeaderButton,
|
|
|
1713
1913
|
* @param child the child widget
|
|
1714
1914
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1715
1915
|
*/
|
|
1716
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1916
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1717
1917
|
|
|
1718
1918
|
// Overloads of child_notify
|
|
1719
1919
|
|
|
@@ -1727,7 +1927,7 @@ export interface HeaderToggleButton extends Atk.ImplementorIface, HeaderButton,
|
|
|
1727
1927
|
* Also see gtk_container_child_notify().
|
|
1728
1928
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1729
1929
|
*/
|
|
1730
|
-
child_notify(child_property: string
|
|
1930
|
+
child_notify(child_property: string): void
|
|
1731
1931
|
|
|
1732
1932
|
// Class property signals of Gd-1.0.Gd.HeaderToggleButton
|
|
1733
1933
|
|
|
@@ -2007,7 +2207,7 @@ export interface MainIconView extends Atk.ImplementorIface, MainViewGeneric, Gtk
|
|
|
2007
2207
|
* Also see gtk_container_child_notify().
|
|
2008
2208
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2009
2209
|
*/
|
|
2010
|
-
child_notify(child_property: string
|
|
2210
|
+
child_notify(child_property: string): void
|
|
2011
2211
|
/**
|
|
2012
2212
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2013
2213
|
* [child property][child-properties]
|
|
@@ -2019,7 +2219,7 @@ export interface MainIconView extends Atk.ImplementorIface, MainViewGeneric, Gtk
|
|
|
2019
2219
|
* @param child the child widget
|
|
2020
2220
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2021
2221
|
*/
|
|
2022
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2222
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2023
2223
|
|
|
2024
2224
|
// Overloads of child_notify
|
|
2025
2225
|
|
|
@@ -2033,7 +2233,7 @@ export interface MainIconView extends Atk.ImplementorIface, MainViewGeneric, Gtk
|
|
|
2033
2233
|
* Also see gtk_container_child_notify().
|
|
2034
2234
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2035
2235
|
*/
|
|
2036
|
-
child_notify(child_property: string
|
|
2236
|
+
child_notify(child_property: string): void
|
|
2037
2237
|
|
|
2038
2238
|
// Class property signals of Gd-1.0.Gd.MainIconView
|
|
2039
2239
|
|
|
@@ -2307,7 +2507,7 @@ export interface MainListView extends Atk.ImplementorIface, MainViewGeneric, Gtk
|
|
|
2307
2507
|
* Also see gtk_container_child_notify().
|
|
2308
2508
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2309
2509
|
*/
|
|
2310
|
-
child_notify(child_property: string
|
|
2510
|
+
child_notify(child_property: string): void
|
|
2311
2511
|
/**
|
|
2312
2512
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2313
2513
|
* [child property][child-properties]
|
|
@@ -2319,7 +2519,7 @@ export interface MainListView extends Atk.ImplementorIface, MainViewGeneric, Gtk
|
|
|
2319
2519
|
* @param child the child widget
|
|
2320
2520
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2321
2521
|
*/
|
|
2322
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2522
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2323
2523
|
|
|
2324
2524
|
// Overloads of child_notify
|
|
2325
2525
|
|
|
@@ -2333,7 +2533,7 @@ export interface MainListView extends Atk.ImplementorIface, MainViewGeneric, Gtk
|
|
|
2333
2533
|
* Also see gtk_container_child_notify().
|
|
2334
2534
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2335
2535
|
*/
|
|
2336
|
-
child_notify(child_property: string
|
|
2536
|
+
child_notify(child_property: string): void
|
|
2337
2537
|
|
|
2338
2538
|
// Class property signals of Gd-1.0.Gd.MainListView
|
|
2339
2539
|
|
|
@@ -2580,7 +2780,7 @@ export interface MainToolbar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Or
|
|
|
2580
2780
|
|
|
2581
2781
|
add_button(icon_name: string | null, label: string | null, pack_start: boolean): Gtk.Widget
|
|
2582
2782
|
add_menu(icon_name: string | null, label: string | null, pack_start: boolean): Gtk.Widget
|
|
2583
|
-
add_mode(label: string
|
|
2783
|
+
add_mode(label: string): Gtk.Widget
|
|
2584
2784
|
add_toggle(icon_name: string | null, label: string | null, pack_start: boolean): Gtk.Widget
|
|
2585
2785
|
add_widget(widget: Gtk.Widget, pack_start: boolean): void
|
|
2586
2786
|
clear(): void
|
|
@@ -2662,7 +2862,7 @@ export interface MainToolbar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Or
|
|
|
2662
2862
|
* Also see gtk_container_child_notify().
|
|
2663
2863
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2664
2864
|
*/
|
|
2665
|
-
child_notify(child_property: string
|
|
2865
|
+
child_notify(child_property: string): void
|
|
2666
2866
|
/**
|
|
2667
2867
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2668
2868
|
* [child property][child-properties]
|
|
@@ -2674,7 +2874,7 @@ export interface MainToolbar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Or
|
|
|
2674
2874
|
* @param child the child widget
|
|
2675
2875
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2676
2876
|
*/
|
|
2677
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2877
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2678
2878
|
|
|
2679
2879
|
// Overloads of child_notify
|
|
2680
2880
|
|
|
@@ -2688,7 +2888,7 @@ export interface MainToolbar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Or
|
|
|
2688
2888
|
* Also see gtk_container_child_notify().
|
|
2689
2889
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2690
2890
|
*/
|
|
2691
|
-
child_notify(child_property: string
|
|
2891
|
+
child_notify(child_property: string): void
|
|
2692
2892
|
/**
|
|
2693
2893
|
* Alters the view of `toolbar` to display either icons only, text only, or both.
|
|
2694
2894
|
* @param style the new style for `toolbar`.
|
|
@@ -2963,7 +3163,7 @@ export interface MainView extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2963
3163
|
* @param child the child widget
|
|
2964
3164
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2965
3165
|
*/
|
|
2966
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
3166
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2967
3167
|
|
|
2968
3168
|
// Overloads of child_notify
|
|
2969
3169
|
|
|
@@ -2977,7 +3177,7 @@ export interface MainView extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2977
3177
|
* Also see gtk_container_child_notify().
|
|
2978
3178
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2979
3179
|
*/
|
|
2980
|
-
child_notify(child_property: string
|
|
3180
|
+
child_notify(child_property: string): void
|
|
2981
3181
|
/**
|
|
2982
3182
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2983
3183
|
* [child property][child-properties] `child_property`
|
|
@@ -2988,7 +3188,7 @@ export interface MainView extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2988
3188
|
* Also see gtk_container_child_notify().
|
|
2989
3189
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2990
3190
|
*/
|
|
2991
|
-
child_notify(child_property: string
|
|
3191
|
+
child_notify(child_property: string): void
|
|
2992
3192
|
|
|
2993
3193
|
// Own signals of Gd-1.0.Gd.MainView
|
|
2994
3194
|
|
|
@@ -3278,7 +3478,7 @@ export interface Revealer extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3278
3478
|
* @param child the child widget
|
|
3279
3479
|
* @param child_property the name of a child property installed on the class of `container`
|
|
3280
3480
|
*/
|
|
3281
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
3481
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
3282
3482
|
|
|
3283
3483
|
// Overloads of child_notify
|
|
3284
3484
|
|
|
@@ -3292,7 +3492,7 @@ export interface Revealer extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3292
3492
|
* Also see gtk_container_child_notify().
|
|
3293
3493
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3294
3494
|
*/
|
|
3295
|
-
child_notify(child_property: string
|
|
3495
|
+
child_notify(child_property: string): void
|
|
3296
3496
|
/**
|
|
3297
3497
|
* Emits a #GtkWidget::child-notify signal for the
|
|
3298
3498
|
* [child property][child-properties] `child_property`
|
|
@@ -3303,7 +3503,7 @@ export interface Revealer extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3303
3503
|
* Also see gtk_container_child_notify().
|
|
3304
3504
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3305
3505
|
*/
|
|
3306
|
-
child_notify(child_property: string
|
|
3506
|
+
child_notify(child_property: string): void
|
|
3307
3507
|
|
|
3308
3508
|
// Class property signals of Gd-1.0.Gd.Revealer
|
|
3309
3509
|
|
|
@@ -3508,8 +3708,8 @@ export interface Stack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3508
3708
|
|
|
3509
3709
|
// Owm methods of Gd-1.0.Gd.Stack
|
|
3510
3710
|
|
|
3511
|
-
add_named(child: Gtk.Widget, name: string
|
|
3512
|
-
add_titled(child: Gtk.Widget, name: string
|
|
3711
|
+
add_named(child: Gtk.Widget, name: string): void
|
|
3712
|
+
add_titled(child: Gtk.Widget, name: string, title: string): void
|
|
3513
3713
|
get_homogeneous(): boolean
|
|
3514
3714
|
get_transition_duration(): number
|
|
3515
3715
|
get_transition_type(): StackTransitionType
|
|
@@ -3520,12 +3720,12 @@ export interface Stack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3520
3720
|
* @returns pointer to child of the #GdStack
|
|
3521
3721
|
*/
|
|
3522
3722
|
get_visible_child(): Gtk.Widget
|
|
3523
|
-
get_visible_child_name(): string
|
|
3723
|
+
get_visible_child_name(): string
|
|
3524
3724
|
set_homogeneous(homogeneous: boolean): void
|
|
3525
3725
|
set_transition_duration(transition_duration: number): void
|
|
3526
3726
|
set_transition_type(type: StackTransitionType): void
|
|
3527
3727
|
set_visible_child(child: Gtk.Widget): void
|
|
3528
|
-
set_visible_child_name(name: string
|
|
3728
|
+
set_visible_child_name(name: string): void
|
|
3529
3729
|
|
|
3530
3730
|
// Conflicting methods
|
|
3531
3731
|
|
|
@@ -3540,7 +3740,7 @@ export interface Stack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3540
3740
|
* @param child the child widget
|
|
3541
3741
|
* @param child_property the name of a child property installed on the class of `container`
|
|
3542
3742
|
*/
|
|
3543
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
3743
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
3544
3744
|
|
|
3545
3745
|
// Overloads of child_notify
|
|
3546
3746
|
|
|
@@ -3554,7 +3754,7 @@ export interface Stack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3554
3754
|
* Also see gtk_container_child_notify().
|
|
3555
3755
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3556
3756
|
*/
|
|
3557
|
-
child_notify(child_property: string
|
|
3757
|
+
child_notify(child_property: string): void
|
|
3558
3758
|
/**
|
|
3559
3759
|
* Emits a #GtkWidget::child-notify signal for the
|
|
3560
3760
|
* [child property][child-properties] `child_property`
|
|
@@ -3565,7 +3765,7 @@ export interface Stack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3565
3765
|
* Also see gtk_container_child_notify().
|
|
3566
3766
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3567
3767
|
*/
|
|
3568
|
-
child_notify(child_property: string
|
|
3768
|
+
child_notify(child_property: string): void
|
|
3569
3769
|
|
|
3570
3770
|
// Class property signals of Gd-1.0.Gd.Stack
|
|
3571
3771
|
|
|
@@ -3781,7 +3981,7 @@ export interface StackSwitcher extends Atk.ImplementorIface, Gtk.Buildable, Gtk.
|
|
|
3781
3981
|
* @param child the child widget
|
|
3782
3982
|
* @param child_property the name of a child property installed on the class of `container`
|
|
3783
3983
|
*/
|
|
3784
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
3984
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
3785
3985
|
|
|
3786
3986
|
// Overloads of child_notify
|
|
3787
3987
|
|
|
@@ -3795,7 +3995,7 @@ export interface StackSwitcher extends Atk.ImplementorIface, Gtk.Buildable, Gtk.
|
|
|
3795
3995
|
* Also see gtk_container_child_notify().
|
|
3796
3996
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3797
3997
|
*/
|
|
3798
|
-
child_notify(child_property: string
|
|
3998
|
+
child_notify(child_property: string): void
|
|
3799
3999
|
/**
|
|
3800
4000
|
* Emits a #GtkWidget::child-notify signal for the
|
|
3801
4001
|
* [child property][child-properties] `child_property`
|
|
@@ -3806,7 +4006,7 @@ export interface StackSwitcher extends Atk.ImplementorIface, Gtk.Buildable, Gtk.
|
|
|
3806
4006
|
* Also see gtk_container_child_notify().
|
|
3807
4007
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
3808
4008
|
*/
|
|
3809
|
-
child_notify(child_property: string
|
|
4009
|
+
child_notify(child_property: string): void
|
|
3810
4010
|
|
|
3811
4011
|
// Class property signals of Gd-1.0.Gd.StackSwitcher
|
|
3812
4012
|
|
|
@@ -4001,8 +4201,8 @@ export interface StyledTextRenderer {
|
|
|
4001
4201
|
|
|
4002
4202
|
// Owm methods of Gd-1.0.Gd.StyledTextRenderer
|
|
4003
4203
|
|
|
4004
|
-
add_class(class_: string
|
|
4005
|
-
remove_class(class_: string
|
|
4204
|
+
add_class(class_: string): void
|
|
4205
|
+
remove_class(class_: string): void
|
|
4006
4206
|
|
|
4007
4207
|
// Class property signals of Gd-1.0.Gd.StyledTextRenderer
|
|
4008
4208
|
|
|
@@ -4622,11 +4822,11 @@ export interface TaggedEntryTag {
|
|
|
4622
4822
|
|
|
4623
4823
|
get_area(rect: cairo.RectangleInt): boolean
|
|
4624
4824
|
get_has_close_button(): boolean
|
|
4625
|
-
get_label(): string
|
|
4626
|
-
get_style(): string
|
|
4825
|
+
get_label(): string
|
|
4826
|
+
get_style(): string
|
|
4627
4827
|
set_has_close_button(has_close_button: boolean): void
|
|
4628
|
-
set_label(label: string
|
|
4629
|
-
set_style(style: string
|
|
4828
|
+
set_label(label: string): void
|
|
4829
|
+
set_style(style: string): void
|
|
4630
4830
|
|
|
4631
4831
|
// Class property signals of Gd-1.0.Gd.TaggedEntryTag
|
|
4632
4832
|
|
|
@@ -4655,8 +4855,8 @@ export class TaggedEntryTag extends GObject.Object {
|
|
|
4655
4855
|
// Constructors of Gd-1.0.Gd.TaggedEntryTag
|
|
4656
4856
|
|
|
4657
4857
|
constructor(config?: TaggedEntryTag.ConstructorProperties)
|
|
4658
|
-
constructor(label: string
|
|
4659
|
-
static new(label: string
|
|
4858
|
+
constructor(label: string)
|
|
4859
|
+
static new(label: string): TaggedEntryTag
|
|
4660
4860
|
_init(config?: TaggedEntryTag.ConstructorProperties): void
|
|
4661
4861
|
}
|
|
4662
4862
|
|