@girs/gd-1.0 4.3.0 → 4.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +52 -38
- package/gd-1.0-surface.d.ts +20 -0
- package/gd-1.0-surface.js +6 -0
- package/gd-1.0-vocabulary.d.ts +366 -0
- package/gd-1.0-vocabulary.js +73 -0
- package/gd-1.0.d.ts +300 -202
- package/package.json +19 -19
- package/tsconfig.json +1 -1
package/gd-1.0.d.ts
CHANGED
|
@@ -36,15 +36,15 @@ export namespace Gd {
|
|
|
36
36
|
* @gir-type Enum
|
|
37
37
|
*/
|
|
38
38
|
enum MainColumns {
|
|
39
|
-
ID,
|
|
40
|
-
URI,
|
|
41
|
-
PRIMARY_TEXT,
|
|
42
|
-
SECONDARY_TEXT,
|
|
43
|
-
ICON,
|
|
44
|
-
MTIME,
|
|
45
|
-
SELECTED,
|
|
46
|
-
PULSE,
|
|
47
|
-
LAST,
|
|
39
|
+
ID = 0,
|
|
40
|
+
URI = 1,
|
|
41
|
+
PRIMARY_TEXT = 2,
|
|
42
|
+
SECONDARY_TEXT = 3,
|
|
43
|
+
ICON = 4,
|
|
44
|
+
MTIME = 5,
|
|
45
|
+
SELECTED = 6,
|
|
46
|
+
PULSE = 7,
|
|
47
|
+
LAST = 8,
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
|
|
@@ -52,8 +52,8 @@ export namespace Gd {
|
|
|
52
52
|
* @gir-type Enum
|
|
53
53
|
*/
|
|
54
54
|
enum MainViewType {
|
|
55
|
-
ICON,
|
|
56
|
-
LIST,
|
|
55
|
+
ICON = 0,
|
|
56
|
+
LIST = 1,
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
|
|
@@ -61,10 +61,10 @@ export namespace Gd {
|
|
|
61
61
|
* @gir-type Enum
|
|
62
62
|
*/
|
|
63
63
|
enum StackTransitionType {
|
|
64
|
-
NONE,
|
|
65
|
-
CROSSFADE,
|
|
66
|
-
SLIDE_RIGHT,
|
|
67
|
-
SLIDE_LEFT,
|
|
64
|
+
NONE = 0,
|
|
65
|
+
CROSSFADE = 1,
|
|
66
|
+
SLIDE_RIGHT = 2,
|
|
67
|
+
SLIDE_LEFT = 3,
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
|
|
@@ -427,6 +427,8 @@ export namespace Gd {
|
|
|
427
427
|
* Returns whether the button grabs focus when it is clicked with the mouse.
|
|
428
428
|
* See `gtk_button_set_focus_on_click()`.
|
|
429
429
|
* @returns `true` if the button grabs focus when it is clicked with the mouse.
|
|
430
|
+
* @since 2.4
|
|
431
|
+
* @deprecated since 3.20: Use `gtk_widget_get_focus_on_click()` instead
|
|
430
432
|
*/
|
|
431
433
|
get_focus_on_click(): boolean;
|
|
432
434
|
|
|
@@ -436,6 +438,8 @@ export namespace Gd {
|
|
|
436
438
|
* you don’t want the keyboard focus removed from the main area of the
|
|
437
439
|
* application.
|
|
438
440
|
* @param focus_on_click whether the button grabs focus when clicked with the mouse
|
|
441
|
+
* @since 2.4
|
|
442
|
+
* @deprecated since 3.20: Use `gtk_widget_set_focus_on_click()` instead
|
|
439
443
|
*/
|
|
440
444
|
set_focus_on_click(focus_on_click: boolean): void;
|
|
441
445
|
|
|
@@ -662,6 +666,8 @@ export namespace Gd {
|
|
|
662
666
|
* Returns whether the button grabs focus when it is clicked with the mouse.
|
|
663
667
|
* See `gtk_button_set_focus_on_click()`.
|
|
664
668
|
* @returns `true` if the button grabs focus when it is clicked with the mouse.
|
|
669
|
+
* @since 2.4
|
|
670
|
+
* @deprecated since 3.20: Use `gtk_widget_get_focus_on_click()` instead
|
|
665
671
|
*/
|
|
666
672
|
get_focus_on_click(): boolean;
|
|
667
673
|
|
|
@@ -671,6 +677,8 @@ export namespace Gd {
|
|
|
671
677
|
* you don’t want the keyboard focus removed from the main area of the
|
|
672
678
|
* application.
|
|
673
679
|
* @param focus_on_click whether the button grabs focus when clicked with the mouse
|
|
680
|
+
* @since 2.4
|
|
681
|
+
* @deprecated since 3.20: Use `gtk_widget_set_focus_on_click()` instead
|
|
674
682
|
*/
|
|
675
683
|
set_focus_on_click(focus_on_click: boolean): void;
|
|
676
684
|
|
|
@@ -948,6 +956,7 @@ export namespace Gd {
|
|
|
948
956
|
*
|
|
949
957
|
* See `gtk_actionable_set_action_name()` for more information.
|
|
950
958
|
* @returns the action name, or `null` if none is set
|
|
959
|
+
* @since 3.4
|
|
951
960
|
*/
|
|
952
961
|
get_action_name(): string | null;
|
|
953
962
|
|
|
@@ -956,6 +965,7 @@ export namespace Gd {
|
|
|
956
965
|
*
|
|
957
966
|
* See `gtk_actionable_set_action_target_value()` for more information.
|
|
958
967
|
* @returns the current target value
|
|
968
|
+
* @since 3.4
|
|
959
969
|
*/
|
|
960
970
|
get_action_target_value(): GLib.Variant;
|
|
961
971
|
|
|
@@ -972,6 +982,7 @@ export namespace Gd {
|
|
|
972
982
|
* respectively. This is the same form used for actions in the {@link Gio.Menu}
|
|
973
983
|
* associated with the window.
|
|
974
984
|
* @param action_name an action name, or `null`
|
|
985
|
+
* @since 3.4
|
|
975
986
|
*/
|
|
976
987
|
set_action_name(action_name: string | null): void;
|
|
977
988
|
|
|
@@ -996,6 +1007,7 @@ export namespace Gd {
|
|
|
996
1007
|
* be rendered as active (and the other buttons, with different targets,
|
|
997
1008
|
* rendered inactive).
|
|
998
1009
|
* @param target_value a {@link GLib.Variant} to set as the target value, or `null`
|
|
1010
|
+
* @since 3.4
|
|
999
1011
|
*/
|
|
1000
1012
|
set_action_target_value(target_value: GLib.Variant | null): void;
|
|
1001
1013
|
|
|
@@ -1012,6 +1024,7 @@ export namespace Gd {
|
|
|
1012
1024
|
* `action` is the action name and `target` is the string to use
|
|
1013
1025
|
* as the target.)
|
|
1014
1026
|
* @param detailed_action_name the detailed action name
|
|
1027
|
+
* @since 3.4
|
|
1015
1028
|
*/
|
|
1016
1029
|
set_detailed_action_name(detailed_action_name: string): void;
|
|
1017
1030
|
|
|
@@ -1019,6 +1032,7 @@ export namespace Gd {
|
|
|
1019
1032
|
* Gets the action name for `actionable`.
|
|
1020
1033
|
*
|
|
1021
1034
|
* See `gtk_actionable_set_action_name()` for more information.
|
|
1035
|
+
* @since 3.4
|
|
1022
1036
|
* @virtual
|
|
1023
1037
|
*/
|
|
1024
1038
|
vfunc_get_action_name(): string | null;
|
|
@@ -1027,6 +1041,7 @@ export namespace Gd {
|
|
|
1027
1041
|
* Gets the current target value of `actionable`.
|
|
1028
1042
|
*
|
|
1029
1043
|
* See `gtk_actionable_set_action_target_value()` for more information.
|
|
1044
|
+
* @since 3.4
|
|
1030
1045
|
* @virtual
|
|
1031
1046
|
*/
|
|
1032
1047
|
vfunc_get_action_target_value(): GLib.Variant;
|
|
@@ -1044,6 +1059,7 @@ export namespace Gd {
|
|
|
1044
1059
|
* respectively. This is the same form used for actions in the {@link Gio.Menu}
|
|
1045
1060
|
* associated with the window.
|
|
1046
1061
|
* @param action_name an action name, or `null`
|
|
1062
|
+
* @since 3.4
|
|
1047
1063
|
* @virtual
|
|
1048
1064
|
*/
|
|
1049
1065
|
vfunc_set_action_name(action_name: string | null): void;
|
|
@@ -1069,6 +1085,7 @@ export namespace Gd {
|
|
|
1069
1085
|
* be rendered as active (and the other buttons, with different targets,
|
|
1070
1086
|
* rendered inactive).
|
|
1071
1087
|
* @param target_value a {@link GLib.Variant} to set as the target value, or `null`
|
|
1088
|
+
* @since 3.4
|
|
1072
1089
|
* @virtual
|
|
1073
1090
|
*/
|
|
1074
1091
|
vfunc_set_action_target_value(target_value: GLib.Variant | null): void;
|
|
@@ -1090,12 +1107,16 @@ export namespace Gd {
|
|
|
1090
1107
|
* > `gtk_activatable_get_related_action()` to retrieve the
|
|
1091
1108
|
* > previous action.
|
|
1092
1109
|
* @param action the {@link Gtk.Action} to set
|
|
1110
|
+
* @since 2.16
|
|
1111
|
+
* @deprecated since 3.10
|
|
1093
1112
|
*/
|
|
1094
1113
|
do_set_related_action(action: Gtk.Action): void;
|
|
1095
1114
|
|
|
1096
1115
|
/**
|
|
1097
1116
|
* Gets the related {@link Gtk.Action} for `activatable`.
|
|
1098
1117
|
* @returns the related {@link Gtk.Action} if one is set.
|
|
1118
|
+
* @since 2.16
|
|
1119
|
+
* @deprecated since 3.10
|
|
1099
1120
|
*/
|
|
1100
1121
|
get_related_action(): Gtk.Action;
|
|
1101
1122
|
|
|
@@ -1104,6 +1125,8 @@ export namespace Gd {
|
|
|
1104
1125
|
* and appearance when setting the related action or when
|
|
1105
1126
|
* the action changes appearance.
|
|
1106
1127
|
* @returns whether `activatable` uses its actions appearance.
|
|
1128
|
+
* @since 2.16
|
|
1129
|
+
* @deprecated since 3.10
|
|
1107
1130
|
*/
|
|
1108
1131
|
get_use_action_appearance(): boolean;
|
|
1109
1132
|
|
|
@@ -1113,6 +1136,8 @@ export namespace Gd {
|
|
|
1113
1136
|
* > {@link Gtk.Activatable} implementors need to handle the {@link Gtk.Activatable.related_action}
|
|
1114
1137
|
* > property and call `gtk_activatable_do_set_related_action()` when it changes.
|
|
1115
1138
|
* @param action the {@link Gtk.Action} to set
|
|
1139
|
+
* @since 2.16
|
|
1140
|
+
* @deprecated since 3.10
|
|
1116
1141
|
*/
|
|
1117
1142
|
set_related_action(action: Gtk.Action): void;
|
|
1118
1143
|
|
|
@@ -1125,6 +1150,8 @@ export namespace Gd {
|
|
|
1125
1150
|
* > `gtk_activatable_sync_action_properties()` to update `activatable`
|
|
1126
1151
|
* > if needed.
|
|
1127
1152
|
* @param use_appearance whether to use the actions appearance
|
|
1153
|
+
* @since 2.16
|
|
1154
|
+
* @deprecated since 3.10
|
|
1128
1155
|
*/
|
|
1129
1156
|
set_use_action_appearance(use_appearance: boolean): void;
|
|
1130
1157
|
|
|
@@ -1134,6 +1161,8 @@ export namespace Gd {
|
|
|
1134
1161
|
* or unset and by the implementing class when
|
|
1135
1162
|
* {@link Gtk.Activatable.use_action_appearance} changes.
|
|
1136
1163
|
* @param action the related {@link Gtk.Action} or `null`
|
|
1164
|
+
* @since 2.16
|
|
1165
|
+
* @deprecated since 3.10
|
|
1137
1166
|
*/
|
|
1138
1167
|
sync_action_properties(action: Gtk.Action | null): void;
|
|
1139
1168
|
|
|
@@ -1143,6 +1172,8 @@ export namespace Gd {
|
|
|
1143
1172
|
* or unset and by the implementing class when
|
|
1144
1173
|
* {@link Gtk.Activatable.use_action_appearance} changes.
|
|
1145
1174
|
* @param action the related {@link Gtk.Action} or `null`
|
|
1175
|
+
* @since 2.16
|
|
1176
|
+
* @deprecated since 3.10
|
|
1146
1177
|
* @virtual
|
|
1147
1178
|
*/
|
|
1148
1179
|
vfunc_sync_action_properties(action: Gtk.Action | null): void;
|
|
@@ -1161,6 +1192,8 @@ export namespace Gd {
|
|
|
1161
1192
|
* Returns whether the button grabs focus when it is clicked with the mouse.
|
|
1162
1193
|
* See `gtk_button_set_focus_on_click()`.
|
|
1163
1194
|
* @returns `true` if the button grabs focus when it is clicked with the mouse.
|
|
1195
|
+
* @since 2.4
|
|
1196
|
+
* @deprecated since 3.20: Use `gtk_widget_get_focus_on_click()` instead
|
|
1164
1197
|
*/
|
|
1165
1198
|
get_focus_on_click(): boolean;
|
|
1166
1199
|
|
|
@@ -1170,6 +1203,8 @@ export namespace Gd {
|
|
|
1170
1203
|
* you don’t want the keyboard focus removed from the main area of the
|
|
1171
1204
|
* application.
|
|
1172
1205
|
* @param focus_on_click whether the button grabs focus when clicked with the mouse
|
|
1206
|
+
* @since 2.4
|
|
1207
|
+
* @deprecated since 3.20: Use `gtk_widget_set_focus_on_click()` instead
|
|
1173
1208
|
*/
|
|
1174
1209
|
set_focus_on_click(focus_on_click: boolean): void;
|
|
1175
1210
|
|
|
@@ -1359,6 +1394,8 @@ export namespace Gd {
|
|
|
1359
1394
|
* Returns whether the button grabs focus when it is clicked with the mouse.
|
|
1360
1395
|
* See `gtk_button_set_focus_on_click()`.
|
|
1361
1396
|
* @returns `true` if the button grabs focus when it is clicked with the mouse.
|
|
1397
|
+
* @since 2.4
|
|
1398
|
+
* @deprecated since 3.20: Use `gtk_widget_get_focus_on_click()` instead
|
|
1362
1399
|
*/
|
|
1363
1400
|
get_focus_on_click(): boolean;
|
|
1364
1401
|
|
|
@@ -1368,6 +1405,8 @@ export namespace Gd {
|
|
|
1368
1405
|
* you don’t want the keyboard focus removed from the main area of the
|
|
1369
1406
|
* application.
|
|
1370
1407
|
* @param focus_on_click whether the button grabs focus when clicked with the mouse
|
|
1408
|
+
* @since 2.4
|
|
1409
|
+
* @deprecated since 3.20: Use `gtk_widget_set_focus_on_click()` instead
|
|
1371
1410
|
*/
|
|
1372
1411
|
set_focus_on_click(focus_on_click: boolean): void;
|
|
1373
1412
|
|
|
@@ -1659,12 +1698,14 @@ export namespace Gd {
|
|
|
1659
1698
|
* @param cell a {@link Gtk.CellRenderer}
|
|
1660
1699
|
* @param attribute an attribute on the renderer
|
|
1661
1700
|
* @param column the column position on the model to get the attribute from
|
|
1701
|
+
* @since 2.4
|
|
1662
1702
|
*/
|
|
1663
1703
|
add_attribute(cell: Gtk.CellRenderer, attribute: string, column: number): void;
|
|
1664
1704
|
|
|
1665
1705
|
/**
|
|
1666
1706
|
* Unsets all the mappings on all renderers on `cell_layout` and
|
|
1667
1707
|
* removes all renderers from `cell_layout`.
|
|
1708
|
+
* @since 2.4
|
|
1668
1709
|
*/
|
|
1669
1710
|
clear(): void;
|
|
1670
1711
|
|
|
@@ -1672,6 +1713,7 @@ export namespace Gd {
|
|
|
1672
1713
|
* Clears all existing attributes previously set with
|
|
1673
1714
|
* `gtk_cell_layout_set_attributes()`.
|
|
1674
1715
|
* @param cell a {@link Gtk.CellRenderer} to clear the attribute mapping on
|
|
1716
|
+
* @since 2.4
|
|
1675
1717
|
*/
|
|
1676
1718
|
clear_attributes(cell: Gtk.CellRenderer): void;
|
|
1677
1719
|
|
|
@@ -1680,12 +1722,14 @@ export namespace Gd {
|
|
|
1680
1722
|
* if called on a {@link Gtk.CellArea} or might be `null` if no {@link Gtk.CellArea}
|
|
1681
1723
|
* is used by `cell_layout`.
|
|
1682
1724
|
* @returns the cell area used by `cell_layout`, or `null` in case no cell area is used.
|
|
1725
|
+
* @since 3.0
|
|
1683
1726
|
*/
|
|
1684
1727
|
get_area(): Gtk.CellArea | null;
|
|
1685
1728
|
|
|
1686
1729
|
/**
|
|
1687
1730
|
* Returns the cell renderers which have been added to `cell_layout`.
|
|
1688
1731
|
* @returns a list of cell renderers. The list, but not the renderers has been newly allocated and should be freed with `g_list_free()` when no longer needed.
|
|
1732
|
+
* @since 2.12
|
|
1689
1733
|
*/
|
|
1690
1734
|
get_cells(): Gtk.CellRenderer[];
|
|
1691
1735
|
|
|
@@ -1697,6 +1741,7 @@ export namespace Gd {
|
|
|
1697
1741
|
* Note that reusing the same cell renderer is not supported.
|
|
1698
1742
|
* @param cell a {@link Gtk.CellRenderer}
|
|
1699
1743
|
* @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
|
|
1744
|
+
* @since 2.4
|
|
1700
1745
|
*/
|
|
1701
1746
|
pack_end(cell: Gtk.CellRenderer, expand: boolean): void;
|
|
1702
1747
|
|
|
@@ -1708,6 +1753,7 @@ export namespace Gd {
|
|
|
1708
1753
|
* Note that reusing the same cell renderer is not supported.
|
|
1709
1754
|
* @param cell a {@link Gtk.CellRenderer}
|
|
1710
1755
|
* @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
|
|
1756
|
+
* @since 2.4
|
|
1711
1757
|
*/
|
|
1712
1758
|
pack_start(cell: Gtk.CellRenderer, expand: boolean): void;
|
|
1713
1759
|
|
|
@@ -1718,6 +1764,7 @@ export namespace Gd {
|
|
|
1718
1764
|
* for this to function properly.
|
|
1719
1765
|
* @param cell a {@link Gtk.CellRenderer} to reorder
|
|
1720
1766
|
* @param position new position to insert `cell` at
|
|
1767
|
+
* @since 2.4
|
|
1721
1768
|
*/
|
|
1722
1769
|
reorder(cell: Gtk.CellRenderer, position: number): void;
|
|
1723
1770
|
|
|
@@ -1731,6 +1778,7 @@ export namespace Gd {
|
|
|
1731
1778
|
* `func` may be `null` to remove a previously set function.
|
|
1732
1779
|
* @param cell a {@link Gtk.CellRenderer}
|
|
1733
1780
|
* @param func the {@link Gtk.CellLayoutDataFunc} to use, or `null`
|
|
1781
|
+
* @since 2.4
|
|
1734
1782
|
*/
|
|
1735
1783
|
set_cell_data_func(cell: Gtk.CellRenderer, func: Gtk.CellLayoutDataFunc | null): void;
|
|
1736
1784
|
|
|
@@ -1744,6 +1792,7 @@ export namespace Gd {
|
|
|
1744
1792
|
* @param cell a {@link Gtk.CellRenderer}
|
|
1745
1793
|
* @param attribute an attribute on the renderer
|
|
1746
1794
|
* @param column the column position on the model to get the attribute from
|
|
1795
|
+
* @since 2.4
|
|
1747
1796
|
* @virtual
|
|
1748
1797
|
*/
|
|
1749
1798
|
vfunc_add_attribute(cell: Gtk.CellRenderer, attribute: string, column: number): void;
|
|
@@ -1751,6 +1800,7 @@ export namespace Gd {
|
|
|
1751
1800
|
/**
|
|
1752
1801
|
* Unsets all the mappings on all renderers on `cell_layout` and
|
|
1753
1802
|
* removes all renderers from `cell_layout`.
|
|
1803
|
+
* @since 2.4
|
|
1754
1804
|
* @virtual
|
|
1755
1805
|
*/
|
|
1756
1806
|
vfunc_clear(): void;
|
|
@@ -1759,6 +1809,7 @@ export namespace Gd {
|
|
|
1759
1809
|
* Clears all existing attributes previously set with
|
|
1760
1810
|
* `gtk_cell_layout_set_attributes()`.
|
|
1761
1811
|
* @param cell a {@link Gtk.CellRenderer} to clear the attribute mapping on
|
|
1812
|
+
* @since 2.4
|
|
1762
1813
|
* @virtual
|
|
1763
1814
|
*/
|
|
1764
1815
|
vfunc_clear_attributes(cell: Gtk.CellRenderer): void;
|
|
@@ -1767,12 +1818,14 @@ export namespace Gd {
|
|
|
1767
1818
|
* Returns the underlying {@link Gtk.CellArea} which might be `cell_layout`
|
|
1768
1819
|
* if called on a {@link Gtk.CellArea} or might be `null` if no {@link Gtk.CellArea}
|
|
1769
1820
|
* is used by `cell_layout`.
|
|
1821
|
+
* @since 3.0
|
|
1770
1822
|
* @virtual
|
|
1771
1823
|
*/
|
|
1772
1824
|
vfunc_get_area(): Gtk.CellArea | null;
|
|
1773
1825
|
|
|
1774
1826
|
/**
|
|
1775
1827
|
* Returns the cell renderers which have been added to `cell_layout`.
|
|
1828
|
+
* @since 2.12
|
|
1776
1829
|
* @virtual
|
|
1777
1830
|
*/
|
|
1778
1831
|
vfunc_get_cells(): Gtk.CellRenderer[];
|
|
@@ -1785,6 +1838,7 @@ export namespace Gd {
|
|
|
1785
1838
|
* Note that reusing the same cell renderer is not supported.
|
|
1786
1839
|
* @param cell a {@link Gtk.CellRenderer}
|
|
1787
1840
|
* @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
|
|
1841
|
+
* @since 2.4
|
|
1788
1842
|
* @virtual
|
|
1789
1843
|
*/
|
|
1790
1844
|
vfunc_pack_end(cell: Gtk.CellRenderer, expand: boolean): void;
|
|
@@ -1797,6 +1851,7 @@ export namespace Gd {
|
|
|
1797
1851
|
* Note that reusing the same cell renderer is not supported.
|
|
1798
1852
|
* @param cell a {@link Gtk.CellRenderer}
|
|
1799
1853
|
* @param expand `true` if `cell` is to be given extra space allocated to `cell_layout`
|
|
1854
|
+
* @since 2.4
|
|
1800
1855
|
* @virtual
|
|
1801
1856
|
*/
|
|
1802
1857
|
vfunc_pack_start(cell: Gtk.CellRenderer, expand: boolean): void;
|
|
@@ -1808,6 +1863,7 @@ export namespace Gd {
|
|
|
1808
1863
|
* for this to function properly.
|
|
1809
1864
|
* @param cell a {@link Gtk.CellRenderer} to reorder
|
|
1810
1865
|
* @param position new position to insert `cell` at
|
|
1866
|
+
* @since 2.4
|
|
1811
1867
|
* @virtual
|
|
1812
1868
|
*/
|
|
1813
1869
|
vfunc_reorder(cell: Gtk.CellRenderer, position: number): void;
|
|
@@ -1822,6 +1878,7 @@ export namespace Gd {
|
|
|
1822
1878
|
* `func` may be `null` to remove a previously set function.
|
|
1823
1879
|
* @param cell a {@link Gtk.CellRenderer}
|
|
1824
1880
|
* @param func the {@link Gtk.CellLayoutDataFunc} to use, or `null`
|
|
1881
|
+
* @since 2.4
|
|
1825
1882
|
* @virtual
|
|
1826
1883
|
*/
|
|
1827
1884
|
vfunc_set_cell_data_func(cell: Gtk.CellRenderer, func: Gtk.CellLayoutDataFunc | null): void;
|
|
@@ -1833,36 +1890,42 @@ export namespace Gd {
|
|
|
1833
1890
|
* display overlayed graphics, like the overshoot indication,
|
|
1834
1891
|
* at the right position.
|
|
1835
1892
|
* @returns `true` if `border` has been set
|
|
1893
|
+
* @since 3.16
|
|
1836
1894
|
*/
|
|
1837
1895
|
get_border(): [boolean, Gtk.Border];
|
|
1838
1896
|
|
|
1839
1897
|
/**
|
|
1840
1898
|
* Retrieves the {@link Gtk.Adjustment} used for horizontal scrolling.
|
|
1841
1899
|
* @returns horizontal {@link Gtk.Adjustment}.
|
|
1900
|
+
* @since 3.0
|
|
1842
1901
|
*/
|
|
1843
1902
|
get_hadjustment(): Gtk.Adjustment;
|
|
1844
1903
|
|
|
1845
1904
|
/**
|
|
1846
1905
|
* Gets the horizontal {@link Gtk.ScrollablePolicy}.
|
|
1847
1906
|
* @returns The horizontal {@link Gtk.ScrollablePolicy}.
|
|
1907
|
+
* @since 3.0
|
|
1848
1908
|
*/
|
|
1849
1909
|
get_hscroll_policy(): Gtk.ScrollablePolicy;
|
|
1850
1910
|
|
|
1851
1911
|
/**
|
|
1852
1912
|
* Retrieves the {@link Gtk.Adjustment} used for vertical scrolling.
|
|
1853
1913
|
* @returns vertical {@link Gtk.Adjustment}.
|
|
1914
|
+
* @since 3.0
|
|
1854
1915
|
*/
|
|
1855
1916
|
get_vadjustment(): Gtk.Adjustment;
|
|
1856
1917
|
|
|
1857
1918
|
/**
|
|
1858
1919
|
* Gets the vertical {@link Gtk.ScrollablePolicy}.
|
|
1859
1920
|
* @returns The vertical {@link Gtk.ScrollablePolicy}.
|
|
1921
|
+
* @since 3.0
|
|
1860
1922
|
*/
|
|
1861
1923
|
get_vscroll_policy(): Gtk.ScrollablePolicy;
|
|
1862
1924
|
|
|
1863
1925
|
/**
|
|
1864
1926
|
* Sets the horizontal adjustment of the {@link Gtk.Scrollable}.
|
|
1865
1927
|
* @param hadjustment a {@link Gtk.Adjustment}
|
|
1928
|
+
* @since 3.0
|
|
1866
1929
|
*/
|
|
1867
1930
|
set_hadjustment(hadjustment: Gtk.Adjustment | null): void;
|
|
1868
1931
|
|
|
@@ -1871,12 +1934,14 @@ export namespace Gd {
|
|
|
1871
1934
|
* horizontal scrolling should start below the minimum width or
|
|
1872
1935
|
* below the natural width.
|
|
1873
1936
|
* @param policy the horizontal {@link Gtk.ScrollablePolicy}
|
|
1937
|
+
* @since 3.0
|
|
1874
1938
|
*/
|
|
1875
1939
|
set_hscroll_policy(policy: Gtk.ScrollablePolicy): void;
|
|
1876
1940
|
|
|
1877
1941
|
/**
|
|
1878
1942
|
* Sets the vertical adjustment of the {@link Gtk.Scrollable}.
|
|
1879
1943
|
* @param vadjustment a {@link Gtk.Adjustment}
|
|
1944
|
+
* @since 3.0
|
|
1880
1945
|
*/
|
|
1881
1946
|
set_vadjustment(vadjustment: Gtk.Adjustment | null): void;
|
|
1882
1947
|
|
|
@@ -1885,6 +1950,7 @@ export namespace Gd {
|
|
|
1885
1950
|
* vertical scrolling should start below the minimum height or
|
|
1886
1951
|
* below the natural height.
|
|
1887
1952
|
* @param policy the vertical {@link Gtk.ScrollablePolicy}
|
|
1953
|
+
* @since 3.0
|
|
1888
1954
|
*/
|
|
1889
1955
|
set_vscroll_policy(policy: Gtk.ScrollablePolicy): void;
|
|
1890
1956
|
|
|
@@ -1894,6 +1960,7 @@ export namespace Gd {
|
|
|
1894
1960
|
* be treeview headers. GTK+ can use this information to
|
|
1895
1961
|
* display overlayed graphics, like the overshoot indication,
|
|
1896
1962
|
* at the right position.
|
|
1963
|
+
* @since 3.16
|
|
1897
1964
|
* @virtual
|
|
1898
1965
|
*/
|
|
1899
1966
|
vfunc_get_border(): [boolean, Gtk.Border];
|
|
@@ -2176,36 +2243,42 @@ export namespace Gd {
|
|
|
2176
2243
|
* display overlayed graphics, like the overshoot indication,
|
|
2177
2244
|
* at the right position.
|
|
2178
2245
|
* @returns `true` if `border` has been set
|
|
2246
|
+
* @since 3.16
|
|
2179
2247
|
*/
|
|
2180
2248
|
get_border(): [boolean, Gtk.Border];
|
|
2181
2249
|
|
|
2182
2250
|
/**
|
|
2183
2251
|
* Retrieves the {@link Gtk.Adjustment} used for horizontal scrolling.
|
|
2184
2252
|
* @returns horizontal {@link Gtk.Adjustment}.
|
|
2253
|
+
* @since 3.0
|
|
2185
2254
|
*/
|
|
2186
2255
|
get_hadjustment(): Gtk.Adjustment;
|
|
2187
2256
|
|
|
2188
2257
|
/**
|
|
2189
2258
|
* Gets the horizontal {@link Gtk.ScrollablePolicy}.
|
|
2190
2259
|
* @returns The horizontal {@link Gtk.ScrollablePolicy}.
|
|
2260
|
+
* @since 3.0
|
|
2191
2261
|
*/
|
|
2192
2262
|
get_hscroll_policy(): Gtk.ScrollablePolicy;
|
|
2193
2263
|
|
|
2194
2264
|
/**
|
|
2195
2265
|
* Retrieves the {@link Gtk.Adjustment} used for vertical scrolling.
|
|
2196
2266
|
* @returns vertical {@link Gtk.Adjustment}.
|
|
2267
|
+
* @since 3.0
|
|
2197
2268
|
*/
|
|
2198
2269
|
get_vadjustment(): Gtk.Adjustment;
|
|
2199
2270
|
|
|
2200
2271
|
/**
|
|
2201
2272
|
* Gets the vertical {@link Gtk.ScrollablePolicy}.
|
|
2202
2273
|
* @returns The vertical {@link Gtk.ScrollablePolicy}.
|
|
2274
|
+
* @since 3.0
|
|
2203
2275
|
*/
|
|
2204
2276
|
get_vscroll_policy(): Gtk.ScrollablePolicy;
|
|
2205
2277
|
|
|
2206
2278
|
/**
|
|
2207
2279
|
* Sets the horizontal adjustment of the {@link Gtk.Scrollable}.
|
|
2208
2280
|
* @param hadjustment a {@link Gtk.Adjustment}
|
|
2281
|
+
* @since 3.0
|
|
2209
2282
|
*/
|
|
2210
2283
|
set_hadjustment(hadjustment: Gtk.Adjustment | null): void;
|
|
2211
2284
|
|
|
@@ -2214,12 +2287,14 @@ export namespace Gd {
|
|
|
2214
2287
|
* horizontal scrolling should start below the minimum width or
|
|
2215
2288
|
* below the natural width.
|
|
2216
2289
|
* @param policy the horizontal {@link Gtk.ScrollablePolicy}
|
|
2290
|
+
* @since 3.0
|
|
2217
2291
|
*/
|
|
2218
2292
|
set_hscroll_policy(policy: Gtk.ScrollablePolicy): void;
|
|
2219
2293
|
|
|
2220
2294
|
/**
|
|
2221
2295
|
* Sets the vertical adjustment of the {@link Gtk.Scrollable}.
|
|
2222
2296
|
* @param vadjustment a {@link Gtk.Adjustment}
|
|
2297
|
+
* @since 3.0
|
|
2223
2298
|
*/
|
|
2224
2299
|
set_vadjustment(vadjustment: Gtk.Adjustment | null): void;
|
|
2225
2300
|
|
|
@@ -2228,6 +2303,7 @@ export namespace Gd {
|
|
|
2228
2303
|
* vertical scrolling should start below the minimum height or
|
|
2229
2304
|
* below the natural height.
|
|
2230
2305
|
* @param policy the vertical {@link Gtk.ScrollablePolicy}
|
|
2306
|
+
* @since 3.0
|
|
2231
2307
|
*/
|
|
2232
2308
|
set_vscroll_policy(policy: Gtk.ScrollablePolicy): void;
|
|
2233
2309
|
|
|
@@ -2237,6 +2313,7 @@ export namespace Gd {
|
|
|
2237
2313
|
* be treeview headers. GTK+ can use this information to
|
|
2238
2314
|
* display overlayed graphics, like the overshoot indication,
|
|
2239
2315
|
* at the right position.
|
|
2316
|
+
* @since 3.16
|
|
2240
2317
|
* @virtual
|
|
2241
2318
|
*/
|
|
2242
2319
|
vfunc_get_border(): [boolean, Gtk.Border];
|
|
@@ -2428,12 +2505,14 @@ export namespace Gd {
|
|
|
2428
2505
|
/**
|
|
2429
2506
|
* Retrieves the orientation of the `orientable`.
|
|
2430
2507
|
* @returns the orientation of the `orientable`.
|
|
2508
|
+
* @since 2.16
|
|
2431
2509
|
*/
|
|
2432
2510
|
get_orientation(): Gtk.Orientation;
|
|
2433
2511
|
|
|
2434
2512
|
/**
|
|
2435
2513
|
* Sets the orientation of the `orientable`.
|
|
2436
2514
|
* @param orientation the orientable’s new orientation.
|
|
2515
|
+
* @since 2.16
|
|
2437
2516
|
*/
|
|
2438
2517
|
set_orientation(orientation: Gtk.Orientation): void;
|
|
2439
2518
|
|
|
@@ -2442,6 +2521,7 @@ export namespace Gd {
|
|
|
2442
2521
|
* call this function directly, but rely on `gtk_tool_item_get_ellipsize_mode()`
|
|
2443
2522
|
* instead.
|
|
2444
2523
|
* @returns the current ellipsize mode of `shell`
|
|
2524
|
+
* @since 2.20
|
|
2445
2525
|
*/
|
|
2446
2526
|
get_ellipsize_mode(): Pango.EllipsizeMode;
|
|
2447
2527
|
|
|
@@ -2449,6 +2529,7 @@ export namespace Gd {
|
|
|
2449
2529
|
* Retrieves the icon size for the tool shell. Tool items must not call this
|
|
2450
2530
|
* function directly, but rely on `gtk_tool_item_get_icon_size()` instead.
|
|
2451
2531
|
* @returns the current size ({@link Gtk.IconSize}) for icons of `shell`
|
|
2532
|
+
* @since 2.14
|
|
2452
2533
|
*/
|
|
2453
2534
|
get_icon_size(): number;
|
|
2454
2535
|
|
|
@@ -2462,6 +2543,7 @@ export namespace Gd {
|
|
|
2462
2543
|
* Returns the relief style of buttons on `shell`. Tool items must not call this
|
|
2463
2544
|
* function directly, but rely on `gtk_tool_item_get_relief_style()` instead.
|
|
2464
2545
|
* @returns The relief style of buttons on `shell`.
|
|
2546
|
+
* @since 2.14
|
|
2465
2547
|
*/
|
|
2466
2548
|
get_relief_style(): Gtk.ReliefStyle;
|
|
2467
2549
|
|
|
@@ -2470,6 +2552,7 @@ export namespace Gd {
|
|
|
2470
2552
|
* not call this function directly, but rely on `gtk_tool_item_get_toolbar_style()`
|
|
2471
2553
|
* instead.
|
|
2472
2554
|
* @returns the current style of `shell`
|
|
2555
|
+
* @since 2.14
|
|
2473
2556
|
*/
|
|
2474
2557
|
get_style(): Gtk.ToolbarStyle;
|
|
2475
2558
|
|
|
@@ -2484,6 +2567,7 @@ export namespace Gd {
|
|
|
2484
2567
|
* call this function directly, but rely on `gtk_tool_item_get_text_alignment()`
|
|
2485
2568
|
* instead.
|
|
2486
2569
|
* @returns the current text alignment of `shell`
|
|
2570
|
+
* @since 2.20
|
|
2487
2571
|
*/
|
|
2488
2572
|
get_text_alignment(): number;
|
|
2489
2573
|
|
|
@@ -2492,6 +2576,7 @@ export namespace Gd {
|
|
|
2492
2576
|
* call this function directly, but rely on `gtk_tool_item_get_text_orientation()`
|
|
2493
2577
|
* instead.
|
|
2494
2578
|
* @returns the current text orientation of `shell`
|
|
2579
|
+
* @since 2.20
|
|
2495
2580
|
*/
|
|
2496
2581
|
get_text_orientation(): Gtk.Orientation;
|
|
2497
2582
|
|
|
@@ -2500,6 +2585,7 @@ export namespace Gd {
|
|
|
2500
2585
|
* call this function directly, but rely on `gtk_tool_item_get_text_size_group()`
|
|
2501
2586
|
* instead.
|
|
2502
2587
|
* @returns the current text size group of `shell`
|
|
2588
|
+
* @since 2.20
|
|
2503
2589
|
*/
|
|
2504
2590
|
get_text_size_group(): Gtk.SizeGroup;
|
|
2505
2591
|
|
|
@@ -2510,6 +2596,7 @@ export namespace Gd {
|
|
|
2510
2596
|
*
|
|
2511
2597
|
* Tool items must not call this function directly, but rely on
|
|
2512
2598
|
* `gtk_tool_item_rebuild_menu()` instead.
|
|
2599
|
+
* @since 2.14
|
|
2513
2600
|
*/
|
|
2514
2601
|
rebuild_menu(): void;
|
|
2515
2602
|
|
|
@@ -2517,6 +2604,7 @@ export namespace Gd {
|
|
|
2517
2604
|
* Retrieves the current ellipsize mode for the tool shell. Tool items must not
|
|
2518
2605
|
* call this function directly, but rely on `gtk_tool_item_get_ellipsize_mode()`
|
|
2519
2606
|
* instead.
|
|
2607
|
+
* @since 2.20
|
|
2520
2608
|
* @virtual
|
|
2521
2609
|
*/
|
|
2522
2610
|
vfunc_get_ellipsize_mode(): Pango.EllipsizeMode;
|
|
@@ -2531,6 +2619,7 @@ export namespace Gd {
|
|
|
2531
2619
|
* Retrieves the current orientation for the tool shell. Tool items must not
|
|
2532
2620
|
* call this function directly, but rely on `gtk_tool_item_get_orientation()`
|
|
2533
2621
|
* instead.
|
|
2622
|
+
* @since 2.14
|
|
2534
2623
|
* @virtual
|
|
2535
2624
|
*/
|
|
2536
2625
|
vfunc_get_orientation(): Gtk.Orientation;
|
|
@@ -2538,6 +2627,7 @@ export namespace Gd {
|
|
|
2538
2627
|
/**
|
|
2539
2628
|
* Returns the relief style of buttons on `shell`. Tool items must not call this
|
|
2540
2629
|
* function directly, but rely on `gtk_tool_item_get_relief_style()` instead.
|
|
2630
|
+
* @since 2.14
|
|
2541
2631
|
* @virtual
|
|
2542
2632
|
*/
|
|
2543
2633
|
vfunc_get_relief_style(): Gtk.ReliefStyle;
|
|
@@ -2546,6 +2636,7 @@ export namespace Gd {
|
|
|
2546
2636
|
* Retrieves whether the tool shell has text, icons, or both. Tool items must
|
|
2547
2637
|
* not call this function directly, but rely on `gtk_tool_item_get_toolbar_style()`
|
|
2548
2638
|
* instead.
|
|
2639
|
+
* @since 2.14
|
|
2549
2640
|
* @virtual
|
|
2550
2641
|
*/
|
|
2551
2642
|
vfunc_get_style(): Gtk.ToolbarStyle;
|
|
@@ -2554,6 +2645,7 @@ export namespace Gd {
|
|
|
2554
2645
|
* Retrieves the current text alignment for the tool shell. Tool items must not
|
|
2555
2646
|
* call this function directly, but rely on `gtk_tool_item_get_text_alignment()`
|
|
2556
2647
|
* instead.
|
|
2648
|
+
* @since 2.20
|
|
2557
2649
|
* @virtual
|
|
2558
2650
|
*/
|
|
2559
2651
|
vfunc_get_text_alignment(): number;
|
|
@@ -2562,6 +2654,7 @@ export namespace Gd {
|
|
|
2562
2654
|
* Retrieves the current text orientation for the tool shell. Tool items must not
|
|
2563
2655
|
* call this function directly, but rely on `gtk_tool_item_get_text_orientation()`
|
|
2564
2656
|
* instead.
|
|
2657
|
+
* @since 2.20
|
|
2565
2658
|
* @virtual
|
|
2566
2659
|
*/
|
|
2567
2660
|
vfunc_get_text_orientation(): Gtk.Orientation;
|
|
@@ -2570,6 +2663,7 @@ export namespace Gd {
|
|
|
2570
2663
|
* Retrieves the current text size group for the tool shell. Tool items must not
|
|
2571
2664
|
* call this function directly, but rely on `gtk_tool_item_get_text_size_group()`
|
|
2572
2665
|
* instead.
|
|
2666
|
+
* @since 2.20
|
|
2573
2667
|
* @virtual
|
|
2574
2668
|
*/
|
|
2575
2669
|
vfunc_get_text_size_group(): Gtk.SizeGroup;
|
|
@@ -2581,6 +2675,7 @@ export namespace Gd {
|
|
|
2581
2675
|
*
|
|
2582
2676
|
* Tool items must not call this function directly, but rely on
|
|
2583
2677
|
* `gtk_tool_item_rebuild_menu()` instead.
|
|
2678
|
+
* @since 2.14
|
|
2584
2679
|
* @virtual
|
|
2585
2680
|
*/
|
|
2586
2681
|
vfunc_rebuild_menu(): void;
|
|
@@ -2607,6 +2702,7 @@ export namespace Gd {
|
|
|
2607
2702
|
* Used to set the {@link Gtk.Style} for a widget (`widget`->style). Since
|
|
2608
2703
|
* GTK 3, this function does nothing, the passed in style is ignored.
|
|
2609
2704
|
* @param style a {@link Gtk.Style}, or `null` to remove the effect of a previous call to `gtk_widget_set_style()` and go back to the default style
|
|
2705
|
+
* @deprecated since 3.0: Use {@link Gtk.StyleContext} instead
|
|
2610
2706
|
*/
|
|
2611
2707
|
set_style(style: Gtk.Style | null): void;
|
|
2612
2708
|
|
|
@@ -2625,7 +2721,7 @@ export namespace Gd {
|
|
|
2625
2721
|
* @signal
|
|
2626
2722
|
* @run-last
|
|
2627
2723
|
*/
|
|
2628
|
-
"item-activated": (
|
|
2724
|
+
"item-activated": (object: string, p0: Gtk.TreePath) => void;
|
|
2629
2725
|
/**
|
|
2630
2726
|
* @signal
|
|
2631
2727
|
* @run-last
|
|
@@ -3256,12 +3352,14 @@ export namespace Gd {
|
|
|
3256
3352
|
/**
|
|
3257
3353
|
* Retrieves the orientation of the `orientable`.
|
|
3258
3354
|
* @returns the orientation of the `orientable`.
|
|
3355
|
+
* @since 2.16
|
|
3259
3356
|
*/
|
|
3260
3357
|
get_orientation(): Gtk.Orientation;
|
|
3261
3358
|
|
|
3262
3359
|
/**
|
|
3263
3360
|
* Sets the orientation of the `orientable`.
|
|
3264
3361
|
* @param orientation the orientable’s new orientation.
|
|
3362
|
+
* @since 2.16
|
|
3265
3363
|
*/
|
|
3266
3364
|
set_orientation(orientation: Gtk.Orientation): void;
|
|
3267
3365
|
}
|
|
@@ -3396,13 +3494,13 @@ export namespace Gd {
|
|
|
3396
3494
|
* @detailed
|
|
3397
3495
|
* @run-first
|
|
3398
3496
|
*/
|
|
3399
|
-
"tag-button-clicked": (
|
|
3497
|
+
"tag-button-clicked": (object: TaggedEntryTag) => void;
|
|
3400
3498
|
/**
|
|
3401
3499
|
* @signal
|
|
3402
3500
|
* @detailed
|
|
3403
3501
|
* @run-first
|
|
3404
3502
|
*/
|
|
3405
|
-
"tag-clicked": (
|
|
3503
|
+
"tag-clicked": (object: TaggedEntryTag) => void;
|
|
3406
3504
|
"notify::tag-close-visible": (pspec: GObject.ParamSpec) => void;
|
|
3407
3505
|
"notify::activates-default": (pspec: GObject.ParamSpec) => void;
|
|
3408
3506
|
"notify::attributes": (pspec: GObject.ParamSpec) => void;
|
|
@@ -3499,1095 +3597,1095 @@ export namespace Gd {
|
|
|
3499
3597
|
* @detailed
|
|
3500
3598
|
* @run-first
|
|
3501
3599
|
*/
|
|
3502
|
-
"tag-button-clicked::tag-close-visible": (
|
|
3600
|
+
"tag-button-clicked::tag-close-visible": (object: TaggedEntryTag) => void;
|
|
3503
3601
|
/**
|
|
3504
3602
|
* @signal
|
|
3505
3603
|
* @detailed
|
|
3506
3604
|
* @run-first
|
|
3507
3605
|
*/
|
|
3508
|
-
"tag-button-clicked::activates-default": (
|
|
3606
|
+
"tag-button-clicked::activates-default": (object: TaggedEntryTag) => void;
|
|
3509
3607
|
/**
|
|
3510
3608
|
* @signal
|
|
3511
3609
|
* @detailed
|
|
3512
3610
|
* @run-first
|
|
3513
3611
|
*/
|
|
3514
|
-
"tag-button-clicked::attributes": (
|
|
3612
|
+
"tag-button-clicked::attributes": (object: TaggedEntryTag) => void;
|
|
3515
3613
|
/**
|
|
3516
3614
|
* @signal
|
|
3517
3615
|
* @detailed
|
|
3518
3616
|
* @run-first
|
|
3519
3617
|
*/
|
|
3520
|
-
"tag-button-clicked::buffer": (
|
|
3618
|
+
"tag-button-clicked::buffer": (object: TaggedEntryTag) => void;
|
|
3521
3619
|
/**
|
|
3522
3620
|
* @signal
|
|
3523
3621
|
* @detailed
|
|
3524
3622
|
* @run-first
|
|
3525
3623
|
*/
|
|
3526
|
-
"tag-button-clicked::caps-lock-warning": (
|
|
3624
|
+
"tag-button-clicked::caps-lock-warning": (object: TaggedEntryTag) => void;
|
|
3527
3625
|
/**
|
|
3528
3626
|
* @signal
|
|
3529
3627
|
* @detailed
|
|
3530
3628
|
* @run-first
|
|
3531
3629
|
*/
|
|
3532
|
-
"tag-button-clicked::completion": (
|
|
3630
|
+
"tag-button-clicked::completion": (object: TaggedEntryTag) => void;
|
|
3533
3631
|
/**
|
|
3534
3632
|
* @signal
|
|
3535
3633
|
* @detailed
|
|
3536
3634
|
* @run-first
|
|
3537
3635
|
*/
|
|
3538
|
-
"tag-button-clicked::cursor-position": (
|
|
3636
|
+
"tag-button-clicked::cursor-position": (object: TaggedEntryTag) => void;
|
|
3539
3637
|
/**
|
|
3540
3638
|
* @signal
|
|
3541
3639
|
* @detailed
|
|
3542
3640
|
* @run-first
|
|
3543
3641
|
*/
|
|
3544
|
-
"tag-button-clicked::editable": (
|
|
3642
|
+
"tag-button-clicked::editable": (object: TaggedEntryTag) => void;
|
|
3545
3643
|
/**
|
|
3546
3644
|
* @signal
|
|
3547
3645
|
* @detailed
|
|
3548
3646
|
* @run-first
|
|
3549
3647
|
*/
|
|
3550
|
-
"tag-button-clicked::enable-emoji-completion": (
|
|
3648
|
+
"tag-button-clicked::enable-emoji-completion": (object: TaggedEntryTag) => void;
|
|
3551
3649
|
/**
|
|
3552
3650
|
* @signal
|
|
3553
3651
|
* @detailed
|
|
3554
3652
|
* @run-first
|
|
3555
3653
|
*/
|
|
3556
|
-
"tag-button-clicked::has-frame": (
|
|
3654
|
+
"tag-button-clicked::has-frame": (object: TaggedEntryTag) => void;
|
|
3557
3655
|
/**
|
|
3558
3656
|
* @signal
|
|
3559
3657
|
* @detailed
|
|
3560
3658
|
* @run-first
|
|
3561
3659
|
*/
|
|
3562
|
-
"tag-button-clicked::im-module": (
|
|
3660
|
+
"tag-button-clicked::im-module": (object: TaggedEntryTag) => void;
|
|
3563
3661
|
/**
|
|
3564
3662
|
* @signal
|
|
3565
3663
|
* @detailed
|
|
3566
3664
|
* @run-first
|
|
3567
3665
|
*/
|
|
3568
|
-
"tag-button-clicked::inner-border": (
|
|
3666
|
+
"tag-button-clicked::inner-border": (object: TaggedEntryTag) => void;
|
|
3569
3667
|
/**
|
|
3570
3668
|
* @signal
|
|
3571
3669
|
* @detailed
|
|
3572
3670
|
* @run-first
|
|
3573
3671
|
*/
|
|
3574
|
-
"tag-button-clicked::input-hints": (
|
|
3672
|
+
"tag-button-clicked::input-hints": (object: TaggedEntryTag) => void;
|
|
3575
3673
|
/**
|
|
3576
3674
|
* @signal
|
|
3577
3675
|
* @detailed
|
|
3578
3676
|
* @run-first
|
|
3579
3677
|
*/
|
|
3580
|
-
"tag-button-clicked::input-purpose": (
|
|
3678
|
+
"tag-button-clicked::input-purpose": (object: TaggedEntryTag) => void;
|
|
3581
3679
|
/**
|
|
3582
3680
|
* @signal
|
|
3583
3681
|
* @detailed
|
|
3584
3682
|
* @run-first
|
|
3585
3683
|
*/
|
|
3586
|
-
"tag-button-clicked::invisible-char": (
|
|
3684
|
+
"tag-button-clicked::invisible-char": (object: TaggedEntryTag) => void;
|
|
3587
3685
|
/**
|
|
3588
3686
|
* @signal
|
|
3589
3687
|
* @detailed
|
|
3590
3688
|
* @run-first
|
|
3591
3689
|
*/
|
|
3592
|
-
"tag-button-clicked::invisible-char-set": (
|
|
3690
|
+
"tag-button-clicked::invisible-char-set": (object: TaggedEntryTag) => void;
|
|
3593
3691
|
/**
|
|
3594
3692
|
* @signal
|
|
3595
3693
|
* @detailed
|
|
3596
3694
|
* @run-first
|
|
3597
3695
|
*/
|
|
3598
|
-
"tag-button-clicked::max-length": (
|
|
3696
|
+
"tag-button-clicked::max-length": (object: TaggedEntryTag) => void;
|
|
3599
3697
|
/**
|
|
3600
3698
|
* @signal
|
|
3601
3699
|
* @detailed
|
|
3602
3700
|
* @run-first
|
|
3603
3701
|
*/
|
|
3604
|
-
"tag-button-clicked::max-width-chars": (
|
|
3702
|
+
"tag-button-clicked::max-width-chars": (object: TaggedEntryTag) => void;
|
|
3605
3703
|
/**
|
|
3606
3704
|
* @signal
|
|
3607
3705
|
* @detailed
|
|
3608
3706
|
* @run-first
|
|
3609
3707
|
*/
|
|
3610
|
-
"tag-button-clicked::overwrite-mode": (
|
|
3708
|
+
"tag-button-clicked::overwrite-mode": (object: TaggedEntryTag) => void;
|
|
3611
3709
|
/**
|
|
3612
3710
|
* @signal
|
|
3613
3711
|
* @detailed
|
|
3614
3712
|
* @run-first
|
|
3615
3713
|
*/
|
|
3616
|
-
"tag-button-clicked::placeholder-text": (
|
|
3714
|
+
"tag-button-clicked::placeholder-text": (object: TaggedEntryTag) => void;
|
|
3617
3715
|
/**
|
|
3618
3716
|
* @signal
|
|
3619
3717
|
* @detailed
|
|
3620
3718
|
* @run-first
|
|
3621
3719
|
*/
|
|
3622
|
-
"tag-button-clicked::populate-all": (
|
|
3720
|
+
"tag-button-clicked::populate-all": (object: TaggedEntryTag) => void;
|
|
3623
3721
|
/**
|
|
3624
3722
|
* @signal
|
|
3625
3723
|
* @detailed
|
|
3626
3724
|
* @run-first
|
|
3627
3725
|
*/
|
|
3628
|
-
"tag-button-clicked::primary-icon-activatable": (
|
|
3726
|
+
"tag-button-clicked::primary-icon-activatable": (object: TaggedEntryTag) => void;
|
|
3629
3727
|
/**
|
|
3630
3728
|
* @signal
|
|
3631
3729
|
* @detailed
|
|
3632
3730
|
* @run-first
|
|
3633
3731
|
*/
|
|
3634
|
-
"tag-button-clicked::primary-icon-gicon": (
|
|
3732
|
+
"tag-button-clicked::primary-icon-gicon": (object: TaggedEntryTag) => void;
|
|
3635
3733
|
/**
|
|
3636
3734
|
* @signal
|
|
3637
3735
|
* @detailed
|
|
3638
3736
|
* @run-first
|
|
3639
3737
|
*/
|
|
3640
|
-
"tag-button-clicked::primary-icon-name": (
|
|
3738
|
+
"tag-button-clicked::primary-icon-name": (object: TaggedEntryTag) => void;
|
|
3641
3739
|
/**
|
|
3642
3740
|
* @signal
|
|
3643
3741
|
* @detailed
|
|
3644
3742
|
* @run-first
|
|
3645
3743
|
*/
|
|
3646
|
-
"tag-button-clicked::primary-icon-pixbuf": (
|
|
3744
|
+
"tag-button-clicked::primary-icon-pixbuf": (object: TaggedEntryTag) => void;
|
|
3647
3745
|
/**
|
|
3648
3746
|
* @signal
|
|
3649
3747
|
* @detailed
|
|
3650
3748
|
* @run-first
|
|
3651
3749
|
*/
|
|
3652
|
-
"tag-button-clicked::primary-icon-sensitive": (
|
|
3750
|
+
"tag-button-clicked::primary-icon-sensitive": (object: TaggedEntryTag) => void;
|
|
3653
3751
|
/**
|
|
3654
3752
|
* @signal
|
|
3655
3753
|
* @detailed
|
|
3656
3754
|
* @run-first
|
|
3657
3755
|
*/
|
|
3658
|
-
"tag-button-clicked::primary-icon-stock": (
|
|
3756
|
+
"tag-button-clicked::primary-icon-stock": (object: TaggedEntryTag) => void;
|
|
3659
3757
|
/**
|
|
3660
3758
|
* @signal
|
|
3661
3759
|
* @detailed
|
|
3662
3760
|
* @run-first
|
|
3663
3761
|
*/
|
|
3664
|
-
"tag-button-clicked::primary-icon-storage-type": (
|
|
3762
|
+
"tag-button-clicked::primary-icon-storage-type": (object: TaggedEntryTag) => void;
|
|
3665
3763
|
/**
|
|
3666
3764
|
* @signal
|
|
3667
3765
|
* @detailed
|
|
3668
3766
|
* @run-first
|
|
3669
3767
|
*/
|
|
3670
|
-
"tag-button-clicked::primary-icon-tooltip-markup": (
|
|
3768
|
+
"tag-button-clicked::primary-icon-tooltip-markup": (object: TaggedEntryTag) => void;
|
|
3671
3769
|
/**
|
|
3672
3770
|
* @signal
|
|
3673
3771
|
* @detailed
|
|
3674
3772
|
* @run-first
|
|
3675
3773
|
*/
|
|
3676
|
-
"tag-button-clicked::primary-icon-tooltip-text": (
|
|
3774
|
+
"tag-button-clicked::primary-icon-tooltip-text": (object: TaggedEntryTag) => void;
|
|
3677
3775
|
/**
|
|
3678
3776
|
* @signal
|
|
3679
3777
|
* @detailed
|
|
3680
3778
|
* @run-first
|
|
3681
3779
|
*/
|
|
3682
|
-
"tag-button-clicked::progress-fraction": (
|
|
3780
|
+
"tag-button-clicked::progress-fraction": (object: TaggedEntryTag) => void;
|
|
3683
3781
|
/**
|
|
3684
3782
|
* @signal
|
|
3685
3783
|
* @detailed
|
|
3686
3784
|
* @run-first
|
|
3687
3785
|
*/
|
|
3688
|
-
"tag-button-clicked::progress-pulse-step": (
|
|
3786
|
+
"tag-button-clicked::progress-pulse-step": (object: TaggedEntryTag) => void;
|
|
3689
3787
|
/**
|
|
3690
3788
|
* @signal
|
|
3691
3789
|
* @detailed
|
|
3692
3790
|
* @run-first
|
|
3693
3791
|
*/
|
|
3694
|
-
"tag-button-clicked::scroll-offset": (
|
|
3792
|
+
"tag-button-clicked::scroll-offset": (object: TaggedEntryTag) => void;
|
|
3695
3793
|
/**
|
|
3696
3794
|
* @signal
|
|
3697
3795
|
* @detailed
|
|
3698
3796
|
* @run-first
|
|
3699
3797
|
*/
|
|
3700
|
-
"tag-button-clicked::secondary-icon-activatable": (
|
|
3798
|
+
"tag-button-clicked::secondary-icon-activatable": (object: TaggedEntryTag) => void;
|
|
3701
3799
|
/**
|
|
3702
3800
|
* @signal
|
|
3703
3801
|
* @detailed
|
|
3704
3802
|
* @run-first
|
|
3705
3803
|
*/
|
|
3706
|
-
"tag-button-clicked::secondary-icon-gicon": (
|
|
3804
|
+
"tag-button-clicked::secondary-icon-gicon": (object: TaggedEntryTag) => void;
|
|
3707
3805
|
/**
|
|
3708
3806
|
* @signal
|
|
3709
3807
|
* @detailed
|
|
3710
3808
|
* @run-first
|
|
3711
3809
|
*/
|
|
3712
|
-
"tag-button-clicked::secondary-icon-name": (
|
|
3810
|
+
"tag-button-clicked::secondary-icon-name": (object: TaggedEntryTag) => void;
|
|
3713
3811
|
/**
|
|
3714
3812
|
* @signal
|
|
3715
3813
|
* @detailed
|
|
3716
3814
|
* @run-first
|
|
3717
3815
|
*/
|
|
3718
|
-
"tag-button-clicked::secondary-icon-pixbuf": (
|
|
3816
|
+
"tag-button-clicked::secondary-icon-pixbuf": (object: TaggedEntryTag) => void;
|
|
3719
3817
|
/**
|
|
3720
3818
|
* @signal
|
|
3721
3819
|
* @detailed
|
|
3722
3820
|
* @run-first
|
|
3723
3821
|
*/
|
|
3724
|
-
"tag-button-clicked::secondary-icon-sensitive": (
|
|
3822
|
+
"tag-button-clicked::secondary-icon-sensitive": (object: TaggedEntryTag) => void;
|
|
3725
3823
|
/**
|
|
3726
3824
|
* @signal
|
|
3727
3825
|
* @detailed
|
|
3728
3826
|
* @run-first
|
|
3729
3827
|
*/
|
|
3730
|
-
"tag-button-clicked::secondary-icon-stock": (
|
|
3828
|
+
"tag-button-clicked::secondary-icon-stock": (object: TaggedEntryTag) => void;
|
|
3731
3829
|
/**
|
|
3732
3830
|
* @signal
|
|
3733
3831
|
* @detailed
|
|
3734
3832
|
* @run-first
|
|
3735
3833
|
*/
|
|
3736
|
-
"tag-button-clicked::secondary-icon-storage-type": (
|
|
3834
|
+
"tag-button-clicked::secondary-icon-storage-type": (object: TaggedEntryTag) => void;
|
|
3737
3835
|
/**
|
|
3738
3836
|
* @signal
|
|
3739
3837
|
* @detailed
|
|
3740
3838
|
* @run-first
|
|
3741
3839
|
*/
|
|
3742
|
-
"tag-button-clicked::secondary-icon-tooltip-markup": (
|
|
3840
|
+
"tag-button-clicked::secondary-icon-tooltip-markup": (object: TaggedEntryTag) => void;
|
|
3743
3841
|
/**
|
|
3744
3842
|
* @signal
|
|
3745
3843
|
* @detailed
|
|
3746
3844
|
* @run-first
|
|
3747
3845
|
*/
|
|
3748
|
-
"tag-button-clicked::secondary-icon-tooltip-text": (
|
|
3846
|
+
"tag-button-clicked::secondary-icon-tooltip-text": (object: TaggedEntryTag) => void;
|
|
3749
3847
|
/**
|
|
3750
3848
|
* @signal
|
|
3751
3849
|
* @detailed
|
|
3752
3850
|
* @run-first
|
|
3753
3851
|
*/
|
|
3754
|
-
"tag-button-clicked::selection-bound": (
|
|
3852
|
+
"tag-button-clicked::selection-bound": (object: TaggedEntryTag) => void;
|
|
3755
3853
|
/**
|
|
3756
3854
|
* @signal
|
|
3757
3855
|
* @detailed
|
|
3758
3856
|
* @run-first
|
|
3759
3857
|
*/
|
|
3760
|
-
"tag-button-clicked::shadow-type": (
|
|
3858
|
+
"tag-button-clicked::shadow-type": (object: TaggedEntryTag) => void;
|
|
3761
3859
|
/**
|
|
3762
3860
|
* @signal
|
|
3763
3861
|
* @detailed
|
|
3764
3862
|
* @run-first
|
|
3765
3863
|
*/
|
|
3766
|
-
"tag-button-clicked::show-emoji-icon": (
|
|
3864
|
+
"tag-button-clicked::show-emoji-icon": (object: TaggedEntryTag) => void;
|
|
3767
3865
|
/**
|
|
3768
3866
|
* @signal
|
|
3769
3867
|
* @detailed
|
|
3770
3868
|
* @run-first
|
|
3771
3869
|
*/
|
|
3772
|
-
"tag-button-clicked::tabs": (
|
|
3870
|
+
"tag-button-clicked::tabs": (object: TaggedEntryTag) => void;
|
|
3773
3871
|
/**
|
|
3774
3872
|
* @signal
|
|
3775
3873
|
* @detailed
|
|
3776
3874
|
* @run-first
|
|
3777
3875
|
*/
|
|
3778
|
-
"tag-button-clicked::text": (
|
|
3876
|
+
"tag-button-clicked::text": (object: TaggedEntryTag) => void;
|
|
3779
3877
|
/**
|
|
3780
3878
|
* @signal
|
|
3781
3879
|
* @detailed
|
|
3782
3880
|
* @run-first
|
|
3783
3881
|
*/
|
|
3784
|
-
"tag-button-clicked::text-length": (
|
|
3882
|
+
"tag-button-clicked::text-length": (object: TaggedEntryTag) => void;
|
|
3785
3883
|
/**
|
|
3786
3884
|
* @signal
|
|
3787
3885
|
* @detailed
|
|
3788
3886
|
* @run-first
|
|
3789
3887
|
*/
|
|
3790
|
-
"tag-button-clicked::truncate-multiline": (
|
|
3888
|
+
"tag-button-clicked::truncate-multiline": (object: TaggedEntryTag) => void;
|
|
3791
3889
|
/**
|
|
3792
3890
|
* @signal
|
|
3793
3891
|
* @detailed
|
|
3794
3892
|
* @run-first
|
|
3795
3893
|
*/
|
|
3796
|
-
"tag-button-clicked::visibility": (
|
|
3894
|
+
"tag-button-clicked::visibility": (object: TaggedEntryTag) => void;
|
|
3797
3895
|
/**
|
|
3798
3896
|
* @signal
|
|
3799
3897
|
* @detailed
|
|
3800
3898
|
* @run-first
|
|
3801
3899
|
*/
|
|
3802
|
-
"tag-button-clicked::width-chars": (
|
|
3900
|
+
"tag-button-clicked::width-chars": (object: TaggedEntryTag) => void;
|
|
3803
3901
|
/**
|
|
3804
3902
|
* @signal
|
|
3805
3903
|
* @detailed
|
|
3806
3904
|
* @run-first
|
|
3807
3905
|
*/
|
|
3808
|
-
"tag-button-clicked::xalign": (
|
|
3906
|
+
"tag-button-clicked::xalign": (object: TaggedEntryTag) => void;
|
|
3809
3907
|
/**
|
|
3810
3908
|
* @signal
|
|
3811
3909
|
* @detailed
|
|
3812
3910
|
* @run-first
|
|
3813
3911
|
*/
|
|
3814
|
-
"tag-button-clicked::app-paintable": (
|
|
3912
|
+
"tag-button-clicked::app-paintable": (object: TaggedEntryTag) => void;
|
|
3815
3913
|
/**
|
|
3816
3914
|
* @signal
|
|
3817
3915
|
* @detailed
|
|
3818
3916
|
* @run-first
|
|
3819
3917
|
*/
|
|
3820
|
-
"tag-button-clicked::can-default": (
|
|
3918
|
+
"tag-button-clicked::can-default": (object: TaggedEntryTag) => void;
|
|
3821
3919
|
/**
|
|
3822
3920
|
* @signal
|
|
3823
3921
|
* @detailed
|
|
3824
3922
|
* @run-first
|
|
3825
3923
|
*/
|
|
3826
|
-
"tag-button-clicked::can-focus": (
|
|
3924
|
+
"tag-button-clicked::can-focus": (object: TaggedEntryTag) => void;
|
|
3827
3925
|
/**
|
|
3828
3926
|
* @signal
|
|
3829
3927
|
* @detailed
|
|
3830
3928
|
* @run-first
|
|
3831
3929
|
*/
|
|
3832
|
-
"tag-button-clicked::composite-child": (
|
|
3930
|
+
"tag-button-clicked::composite-child": (object: TaggedEntryTag) => void;
|
|
3833
3931
|
/**
|
|
3834
3932
|
* @signal
|
|
3835
3933
|
* @detailed
|
|
3836
3934
|
* @run-first
|
|
3837
3935
|
*/
|
|
3838
|
-
"tag-button-clicked::double-buffered": (
|
|
3936
|
+
"tag-button-clicked::double-buffered": (object: TaggedEntryTag) => void;
|
|
3839
3937
|
/**
|
|
3840
3938
|
* @signal
|
|
3841
3939
|
* @detailed
|
|
3842
3940
|
* @run-first
|
|
3843
3941
|
*/
|
|
3844
|
-
"tag-button-clicked::events": (
|
|
3942
|
+
"tag-button-clicked::events": (object: TaggedEntryTag) => void;
|
|
3845
3943
|
/**
|
|
3846
3944
|
* @signal
|
|
3847
3945
|
* @detailed
|
|
3848
3946
|
* @run-first
|
|
3849
3947
|
*/
|
|
3850
|
-
"tag-button-clicked::expand": (
|
|
3948
|
+
"tag-button-clicked::expand": (object: TaggedEntryTag) => void;
|
|
3851
3949
|
/**
|
|
3852
3950
|
* @signal
|
|
3853
3951
|
* @detailed
|
|
3854
3952
|
* @run-first
|
|
3855
3953
|
*/
|
|
3856
|
-
"tag-button-clicked::focus-on-click": (
|
|
3954
|
+
"tag-button-clicked::focus-on-click": (object: TaggedEntryTag) => void;
|
|
3857
3955
|
/**
|
|
3858
3956
|
* @signal
|
|
3859
3957
|
* @detailed
|
|
3860
3958
|
* @run-first
|
|
3861
3959
|
*/
|
|
3862
|
-
"tag-button-clicked::halign": (
|
|
3960
|
+
"tag-button-clicked::halign": (object: TaggedEntryTag) => void;
|
|
3863
3961
|
/**
|
|
3864
3962
|
* @signal
|
|
3865
3963
|
* @detailed
|
|
3866
3964
|
* @run-first
|
|
3867
3965
|
*/
|
|
3868
|
-
"tag-button-clicked::has-default": (
|
|
3966
|
+
"tag-button-clicked::has-default": (object: TaggedEntryTag) => void;
|
|
3869
3967
|
/**
|
|
3870
3968
|
* @signal
|
|
3871
3969
|
* @detailed
|
|
3872
3970
|
* @run-first
|
|
3873
3971
|
*/
|
|
3874
|
-
"tag-button-clicked::has-focus": (
|
|
3972
|
+
"tag-button-clicked::has-focus": (object: TaggedEntryTag) => void;
|
|
3875
3973
|
/**
|
|
3876
3974
|
* @signal
|
|
3877
3975
|
* @detailed
|
|
3878
3976
|
* @run-first
|
|
3879
3977
|
*/
|
|
3880
|
-
"tag-button-clicked::has-tooltip": (
|
|
3978
|
+
"tag-button-clicked::has-tooltip": (object: TaggedEntryTag) => void;
|
|
3881
3979
|
/**
|
|
3882
3980
|
* @signal
|
|
3883
3981
|
* @detailed
|
|
3884
3982
|
* @run-first
|
|
3885
3983
|
*/
|
|
3886
|
-
"tag-button-clicked::height-request": (
|
|
3984
|
+
"tag-button-clicked::height-request": (object: TaggedEntryTag) => void;
|
|
3887
3985
|
/**
|
|
3888
3986
|
* @signal
|
|
3889
3987
|
* @detailed
|
|
3890
3988
|
* @run-first
|
|
3891
3989
|
*/
|
|
3892
|
-
"tag-button-clicked::hexpand": (
|
|
3990
|
+
"tag-button-clicked::hexpand": (object: TaggedEntryTag) => void;
|
|
3893
3991
|
/**
|
|
3894
3992
|
* @signal
|
|
3895
3993
|
* @detailed
|
|
3896
3994
|
* @run-first
|
|
3897
3995
|
*/
|
|
3898
|
-
"tag-button-clicked::hexpand-set": (
|
|
3996
|
+
"tag-button-clicked::hexpand-set": (object: TaggedEntryTag) => void;
|
|
3899
3997
|
/**
|
|
3900
3998
|
* @signal
|
|
3901
3999
|
* @detailed
|
|
3902
4000
|
* @run-first
|
|
3903
4001
|
*/
|
|
3904
|
-
"tag-button-clicked::is-focus": (
|
|
4002
|
+
"tag-button-clicked::is-focus": (object: TaggedEntryTag) => void;
|
|
3905
4003
|
/**
|
|
3906
4004
|
* @signal
|
|
3907
4005
|
* @detailed
|
|
3908
4006
|
* @run-first
|
|
3909
4007
|
*/
|
|
3910
|
-
"tag-button-clicked::margin": (
|
|
4008
|
+
"tag-button-clicked::margin": (object: TaggedEntryTag) => void;
|
|
3911
4009
|
/**
|
|
3912
4010
|
* @signal
|
|
3913
4011
|
* @detailed
|
|
3914
4012
|
* @run-first
|
|
3915
4013
|
*/
|
|
3916
|
-
"tag-button-clicked::margin-bottom": (
|
|
4014
|
+
"tag-button-clicked::margin-bottom": (object: TaggedEntryTag) => void;
|
|
3917
4015
|
/**
|
|
3918
4016
|
* @signal
|
|
3919
4017
|
* @detailed
|
|
3920
4018
|
* @run-first
|
|
3921
4019
|
*/
|
|
3922
|
-
"tag-button-clicked::margin-end": (
|
|
4020
|
+
"tag-button-clicked::margin-end": (object: TaggedEntryTag) => void;
|
|
3923
4021
|
/**
|
|
3924
4022
|
* @signal
|
|
3925
4023
|
* @detailed
|
|
3926
4024
|
* @run-first
|
|
3927
4025
|
*/
|
|
3928
|
-
"tag-button-clicked::margin-left": (
|
|
4026
|
+
"tag-button-clicked::margin-left": (object: TaggedEntryTag) => void;
|
|
3929
4027
|
/**
|
|
3930
4028
|
* @signal
|
|
3931
4029
|
* @detailed
|
|
3932
4030
|
* @run-first
|
|
3933
4031
|
*/
|
|
3934
|
-
"tag-button-clicked::margin-right": (
|
|
4032
|
+
"tag-button-clicked::margin-right": (object: TaggedEntryTag) => void;
|
|
3935
4033
|
/**
|
|
3936
4034
|
* @signal
|
|
3937
4035
|
* @detailed
|
|
3938
4036
|
* @run-first
|
|
3939
4037
|
*/
|
|
3940
|
-
"tag-button-clicked::margin-start": (
|
|
4038
|
+
"tag-button-clicked::margin-start": (object: TaggedEntryTag) => void;
|
|
3941
4039
|
/**
|
|
3942
4040
|
* @signal
|
|
3943
4041
|
* @detailed
|
|
3944
4042
|
* @run-first
|
|
3945
4043
|
*/
|
|
3946
|
-
"tag-button-clicked::margin-top": (
|
|
4044
|
+
"tag-button-clicked::margin-top": (object: TaggedEntryTag) => void;
|
|
3947
4045
|
/**
|
|
3948
4046
|
* @signal
|
|
3949
4047
|
* @detailed
|
|
3950
4048
|
* @run-first
|
|
3951
4049
|
*/
|
|
3952
|
-
"tag-button-clicked::name": (
|
|
4050
|
+
"tag-button-clicked::name": (object: TaggedEntryTag) => void;
|
|
3953
4051
|
/**
|
|
3954
4052
|
* @signal
|
|
3955
4053
|
* @detailed
|
|
3956
4054
|
* @run-first
|
|
3957
4055
|
*/
|
|
3958
|
-
"tag-button-clicked::no-show-all": (
|
|
4056
|
+
"tag-button-clicked::no-show-all": (object: TaggedEntryTag) => void;
|
|
3959
4057
|
/**
|
|
3960
4058
|
* @signal
|
|
3961
4059
|
* @detailed
|
|
3962
4060
|
* @run-first
|
|
3963
4061
|
*/
|
|
3964
|
-
"tag-button-clicked::opacity": (
|
|
4062
|
+
"tag-button-clicked::opacity": (object: TaggedEntryTag) => void;
|
|
3965
4063
|
/**
|
|
3966
4064
|
* @signal
|
|
3967
4065
|
* @detailed
|
|
3968
4066
|
* @run-first
|
|
3969
4067
|
*/
|
|
3970
|
-
"tag-button-clicked::parent": (
|
|
4068
|
+
"tag-button-clicked::parent": (object: TaggedEntryTag) => void;
|
|
3971
4069
|
/**
|
|
3972
4070
|
* @signal
|
|
3973
4071
|
* @detailed
|
|
3974
4072
|
* @run-first
|
|
3975
4073
|
*/
|
|
3976
|
-
"tag-button-clicked::receives-default": (
|
|
4074
|
+
"tag-button-clicked::receives-default": (object: TaggedEntryTag) => void;
|
|
3977
4075
|
/**
|
|
3978
4076
|
* @signal
|
|
3979
4077
|
* @detailed
|
|
3980
4078
|
* @run-first
|
|
3981
4079
|
*/
|
|
3982
|
-
"tag-button-clicked::scale-factor": (
|
|
4080
|
+
"tag-button-clicked::scale-factor": (object: TaggedEntryTag) => void;
|
|
3983
4081
|
/**
|
|
3984
4082
|
* @signal
|
|
3985
4083
|
* @detailed
|
|
3986
4084
|
* @run-first
|
|
3987
4085
|
*/
|
|
3988
|
-
"tag-button-clicked::sensitive": (
|
|
4086
|
+
"tag-button-clicked::sensitive": (object: TaggedEntryTag) => void;
|
|
3989
4087
|
/**
|
|
3990
4088
|
* @signal
|
|
3991
4089
|
* @detailed
|
|
3992
4090
|
* @run-first
|
|
3993
4091
|
*/
|
|
3994
|
-
"tag-button-clicked::style": (
|
|
4092
|
+
"tag-button-clicked::style": (object: TaggedEntryTag) => void;
|
|
3995
4093
|
/**
|
|
3996
4094
|
* @signal
|
|
3997
4095
|
* @detailed
|
|
3998
4096
|
* @run-first
|
|
3999
4097
|
*/
|
|
4000
|
-
"tag-button-clicked::tooltip-markup": (
|
|
4098
|
+
"tag-button-clicked::tooltip-markup": (object: TaggedEntryTag) => void;
|
|
4001
4099
|
/**
|
|
4002
4100
|
* @signal
|
|
4003
4101
|
* @detailed
|
|
4004
4102
|
* @run-first
|
|
4005
4103
|
*/
|
|
4006
|
-
"tag-button-clicked::tooltip-text": (
|
|
4104
|
+
"tag-button-clicked::tooltip-text": (object: TaggedEntryTag) => void;
|
|
4007
4105
|
/**
|
|
4008
4106
|
* @signal
|
|
4009
4107
|
* @detailed
|
|
4010
4108
|
* @run-first
|
|
4011
4109
|
*/
|
|
4012
|
-
"tag-button-clicked::valign": (
|
|
4110
|
+
"tag-button-clicked::valign": (object: TaggedEntryTag) => void;
|
|
4013
4111
|
/**
|
|
4014
4112
|
* @signal
|
|
4015
4113
|
* @detailed
|
|
4016
4114
|
* @run-first
|
|
4017
4115
|
*/
|
|
4018
|
-
"tag-button-clicked::vexpand": (
|
|
4116
|
+
"tag-button-clicked::vexpand": (object: TaggedEntryTag) => void;
|
|
4019
4117
|
/**
|
|
4020
4118
|
* @signal
|
|
4021
4119
|
* @detailed
|
|
4022
4120
|
* @run-first
|
|
4023
4121
|
*/
|
|
4024
|
-
"tag-button-clicked::vexpand-set": (
|
|
4122
|
+
"tag-button-clicked::vexpand-set": (object: TaggedEntryTag) => void;
|
|
4025
4123
|
/**
|
|
4026
4124
|
* @signal
|
|
4027
4125
|
* @detailed
|
|
4028
4126
|
* @run-first
|
|
4029
4127
|
*/
|
|
4030
|
-
"tag-button-clicked::visible": (
|
|
4128
|
+
"tag-button-clicked::visible": (object: TaggedEntryTag) => void;
|
|
4031
4129
|
/**
|
|
4032
4130
|
* @signal
|
|
4033
4131
|
* @detailed
|
|
4034
4132
|
* @run-first
|
|
4035
4133
|
*/
|
|
4036
|
-
"tag-button-clicked::width-request": (
|
|
4134
|
+
"tag-button-clicked::width-request": (object: TaggedEntryTag) => void;
|
|
4037
4135
|
/**
|
|
4038
4136
|
* @signal
|
|
4039
4137
|
* @detailed
|
|
4040
4138
|
* @run-first
|
|
4041
4139
|
*/
|
|
4042
|
-
"tag-button-clicked::window": (
|
|
4043
|
-
[key: `tag-button-clicked::${string}`]: (
|
|
4140
|
+
"tag-button-clicked::window": (object: TaggedEntryTag) => void;
|
|
4141
|
+
[key: `tag-button-clicked::${string}`]: (object: TaggedEntryTag) => void;
|
|
4044
4142
|
/**
|
|
4045
4143
|
* @signal
|
|
4046
4144
|
* @detailed
|
|
4047
4145
|
* @run-first
|
|
4048
4146
|
*/
|
|
4049
|
-
"tag-clicked::tag-close-visible": (
|
|
4147
|
+
"tag-clicked::tag-close-visible": (object: TaggedEntryTag) => void;
|
|
4050
4148
|
/**
|
|
4051
4149
|
* @signal
|
|
4052
4150
|
* @detailed
|
|
4053
4151
|
* @run-first
|
|
4054
4152
|
*/
|
|
4055
|
-
"tag-clicked::activates-default": (
|
|
4153
|
+
"tag-clicked::activates-default": (object: TaggedEntryTag) => void;
|
|
4056
4154
|
/**
|
|
4057
4155
|
* @signal
|
|
4058
4156
|
* @detailed
|
|
4059
4157
|
* @run-first
|
|
4060
4158
|
*/
|
|
4061
|
-
"tag-clicked::attributes": (
|
|
4159
|
+
"tag-clicked::attributes": (object: TaggedEntryTag) => void;
|
|
4062
4160
|
/**
|
|
4063
4161
|
* @signal
|
|
4064
4162
|
* @detailed
|
|
4065
4163
|
* @run-first
|
|
4066
4164
|
*/
|
|
4067
|
-
"tag-clicked::buffer": (
|
|
4165
|
+
"tag-clicked::buffer": (object: TaggedEntryTag) => void;
|
|
4068
4166
|
/**
|
|
4069
4167
|
* @signal
|
|
4070
4168
|
* @detailed
|
|
4071
4169
|
* @run-first
|
|
4072
4170
|
*/
|
|
4073
|
-
"tag-clicked::caps-lock-warning": (
|
|
4171
|
+
"tag-clicked::caps-lock-warning": (object: TaggedEntryTag) => void;
|
|
4074
4172
|
/**
|
|
4075
4173
|
* @signal
|
|
4076
4174
|
* @detailed
|
|
4077
4175
|
* @run-first
|
|
4078
4176
|
*/
|
|
4079
|
-
"tag-clicked::completion": (
|
|
4177
|
+
"tag-clicked::completion": (object: TaggedEntryTag) => void;
|
|
4080
4178
|
/**
|
|
4081
4179
|
* @signal
|
|
4082
4180
|
* @detailed
|
|
4083
4181
|
* @run-first
|
|
4084
4182
|
*/
|
|
4085
|
-
"tag-clicked::cursor-position": (
|
|
4183
|
+
"tag-clicked::cursor-position": (object: TaggedEntryTag) => void;
|
|
4086
4184
|
/**
|
|
4087
4185
|
* @signal
|
|
4088
4186
|
* @detailed
|
|
4089
4187
|
* @run-first
|
|
4090
4188
|
*/
|
|
4091
|
-
"tag-clicked::editable": (
|
|
4189
|
+
"tag-clicked::editable": (object: TaggedEntryTag) => void;
|
|
4092
4190
|
/**
|
|
4093
4191
|
* @signal
|
|
4094
4192
|
* @detailed
|
|
4095
4193
|
* @run-first
|
|
4096
4194
|
*/
|
|
4097
|
-
"tag-clicked::enable-emoji-completion": (
|
|
4195
|
+
"tag-clicked::enable-emoji-completion": (object: TaggedEntryTag) => void;
|
|
4098
4196
|
/**
|
|
4099
4197
|
* @signal
|
|
4100
4198
|
* @detailed
|
|
4101
4199
|
* @run-first
|
|
4102
4200
|
*/
|
|
4103
|
-
"tag-clicked::has-frame": (
|
|
4201
|
+
"tag-clicked::has-frame": (object: TaggedEntryTag) => void;
|
|
4104
4202
|
/**
|
|
4105
4203
|
* @signal
|
|
4106
4204
|
* @detailed
|
|
4107
4205
|
* @run-first
|
|
4108
4206
|
*/
|
|
4109
|
-
"tag-clicked::im-module": (
|
|
4207
|
+
"tag-clicked::im-module": (object: TaggedEntryTag) => void;
|
|
4110
4208
|
/**
|
|
4111
4209
|
* @signal
|
|
4112
4210
|
* @detailed
|
|
4113
4211
|
* @run-first
|
|
4114
4212
|
*/
|
|
4115
|
-
"tag-clicked::inner-border": (
|
|
4213
|
+
"tag-clicked::inner-border": (object: TaggedEntryTag) => void;
|
|
4116
4214
|
/**
|
|
4117
4215
|
* @signal
|
|
4118
4216
|
* @detailed
|
|
4119
4217
|
* @run-first
|
|
4120
4218
|
*/
|
|
4121
|
-
"tag-clicked::input-hints": (
|
|
4219
|
+
"tag-clicked::input-hints": (object: TaggedEntryTag) => void;
|
|
4122
4220
|
/**
|
|
4123
4221
|
* @signal
|
|
4124
4222
|
* @detailed
|
|
4125
4223
|
* @run-first
|
|
4126
4224
|
*/
|
|
4127
|
-
"tag-clicked::input-purpose": (
|
|
4225
|
+
"tag-clicked::input-purpose": (object: TaggedEntryTag) => void;
|
|
4128
4226
|
/**
|
|
4129
4227
|
* @signal
|
|
4130
4228
|
* @detailed
|
|
4131
4229
|
* @run-first
|
|
4132
4230
|
*/
|
|
4133
|
-
"tag-clicked::invisible-char": (
|
|
4231
|
+
"tag-clicked::invisible-char": (object: TaggedEntryTag) => void;
|
|
4134
4232
|
/**
|
|
4135
4233
|
* @signal
|
|
4136
4234
|
* @detailed
|
|
4137
4235
|
* @run-first
|
|
4138
4236
|
*/
|
|
4139
|
-
"tag-clicked::invisible-char-set": (
|
|
4237
|
+
"tag-clicked::invisible-char-set": (object: TaggedEntryTag) => void;
|
|
4140
4238
|
/**
|
|
4141
4239
|
* @signal
|
|
4142
4240
|
* @detailed
|
|
4143
4241
|
* @run-first
|
|
4144
4242
|
*/
|
|
4145
|
-
"tag-clicked::max-length": (
|
|
4243
|
+
"tag-clicked::max-length": (object: TaggedEntryTag) => void;
|
|
4146
4244
|
/**
|
|
4147
4245
|
* @signal
|
|
4148
4246
|
* @detailed
|
|
4149
4247
|
* @run-first
|
|
4150
4248
|
*/
|
|
4151
|
-
"tag-clicked::max-width-chars": (
|
|
4249
|
+
"tag-clicked::max-width-chars": (object: TaggedEntryTag) => void;
|
|
4152
4250
|
/**
|
|
4153
4251
|
* @signal
|
|
4154
4252
|
* @detailed
|
|
4155
4253
|
* @run-first
|
|
4156
4254
|
*/
|
|
4157
|
-
"tag-clicked::overwrite-mode": (
|
|
4255
|
+
"tag-clicked::overwrite-mode": (object: TaggedEntryTag) => void;
|
|
4158
4256
|
/**
|
|
4159
4257
|
* @signal
|
|
4160
4258
|
* @detailed
|
|
4161
4259
|
* @run-first
|
|
4162
4260
|
*/
|
|
4163
|
-
"tag-clicked::placeholder-text": (
|
|
4261
|
+
"tag-clicked::placeholder-text": (object: TaggedEntryTag) => void;
|
|
4164
4262
|
/**
|
|
4165
4263
|
* @signal
|
|
4166
4264
|
* @detailed
|
|
4167
4265
|
* @run-first
|
|
4168
4266
|
*/
|
|
4169
|
-
"tag-clicked::populate-all": (
|
|
4267
|
+
"tag-clicked::populate-all": (object: TaggedEntryTag) => void;
|
|
4170
4268
|
/**
|
|
4171
4269
|
* @signal
|
|
4172
4270
|
* @detailed
|
|
4173
4271
|
* @run-first
|
|
4174
4272
|
*/
|
|
4175
|
-
"tag-clicked::primary-icon-activatable": (
|
|
4273
|
+
"tag-clicked::primary-icon-activatable": (object: TaggedEntryTag) => void;
|
|
4176
4274
|
/**
|
|
4177
4275
|
* @signal
|
|
4178
4276
|
* @detailed
|
|
4179
4277
|
* @run-first
|
|
4180
4278
|
*/
|
|
4181
|
-
"tag-clicked::primary-icon-gicon": (
|
|
4279
|
+
"tag-clicked::primary-icon-gicon": (object: TaggedEntryTag) => void;
|
|
4182
4280
|
/**
|
|
4183
4281
|
* @signal
|
|
4184
4282
|
* @detailed
|
|
4185
4283
|
* @run-first
|
|
4186
4284
|
*/
|
|
4187
|
-
"tag-clicked::primary-icon-name": (
|
|
4285
|
+
"tag-clicked::primary-icon-name": (object: TaggedEntryTag) => void;
|
|
4188
4286
|
/**
|
|
4189
4287
|
* @signal
|
|
4190
4288
|
* @detailed
|
|
4191
4289
|
* @run-first
|
|
4192
4290
|
*/
|
|
4193
|
-
"tag-clicked::primary-icon-pixbuf": (
|
|
4291
|
+
"tag-clicked::primary-icon-pixbuf": (object: TaggedEntryTag) => void;
|
|
4194
4292
|
/**
|
|
4195
4293
|
* @signal
|
|
4196
4294
|
* @detailed
|
|
4197
4295
|
* @run-first
|
|
4198
4296
|
*/
|
|
4199
|
-
"tag-clicked::primary-icon-sensitive": (
|
|
4297
|
+
"tag-clicked::primary-icon-sensitive": (object: TaggedEntryTag) => void;
|
|
4200
4298
|
/**
|
|
4201
4299
|
* @signal
|
|
4202
4300
|
* @detailed
|
|
4203
4301
|
* @run-first
|
|
4204
4302
|
*/
|
|
4205
|
-
"tag-clicked::primary-icon-stock": (
|
|
4303
|
+
"tag-clicked::primary-icon-stock": (object: TaggedEntryTag) => void;
|
|
4206
4304
|
/**
|
|
4207
4305
|
* @signal
|
|
4208
4306
|
* @detailed
|
|
4209
4307
|
* @run-first
|
|
4210
4308
|
*/
|
|
4211
|
-
"tag-clicked::primary-icon-storage-type": (
|
|
4309
|
+
"tag-clicked::primary-icon-storage-type": (object: TaggedEntryTag) => void;
|
|
4212
4310
|
/**
|
|
4213
4311
|
* @signal
|
|
4214
4312
|
* @detailed
|
|
4215
4313
|
* @run-first
|
|
4216
4314
|
*/
|
|
4217
|
-
"tag-clicked::primary-icon-tooltip-markup": (
|
|
4315
|
+
"tag-clicked::primary-icon-tooltip-markup": (object: TaggedEntryTag) => void;
|
|
4218
4316
|
/**
|
|
4219
4317
|
* @signal
|
|
4220
4318
|
* @detailed
|
|
4221
4319
|
* @run-first
|
|
4222
4320
|
*/
|
|
4223
|
-
"tag-clicked::primary-icon-tooltip-text": (
|
|
4321
|
+
"tag-clicked::primary-icon-tooltip-text": (object: TaggedEntryTag) => void;
|
|
4224
4322
|
/**
|
|
4225
4323
|
* @signal
|
|
4226
4324
|
* @detailed
|
|
4227
4325
|
* @run-first
|
|
4228
4326
|
*/
|
|
4229
|
-
"tag-clicked::progress-fraction": (
|
|
4327
|
+
"tag-clicked::progress-fraction": (object: TaggedEntryTag) => void;
|
|
4230
4328
|
/**
|
|
4231
4329
|
* @signal
|
|
4232
4330
|
* @detailed
|
|
4233
4331
|
* @run-first
|
|
4234
4332
|
*/
|
|
4235
|
-
"tag-clicked::progress-pulse-step": (
|
|
4333
|
+
"tag-clicked::progress-pulse-step": (object: TaggedEntryTag) => void;
|
|
4236
4334
|
/**
|
|
4237
4335
|
* @signal
|
|
4238
4336
|
* @detailed
|
|
4239
4337
|
* @run-first
|
|
4240
4338
|
*/
|
|
4241
|
-
"tag-clicked::scroll-offset": (
|
|
4339
|
+
"tag-clicked::scroll-offset": (object: TaggedEntryTag) => void;
|
|
4242
4340
|
/**
|
|
4243
4341
|
* @signal
|
|
4244
4342
|
* @detailed
|
|
4245
4343
|
* @run-first
|
|
4246
4344
|
*/
|
|
4247
|
-
"tag-clicked::secondary-icon-activatable": (
|
|
4345
|
+
"tag-clicked::secondary-icon-activatable": (object: TaggedEntryTag) => void;
|
|
4248
4346
|
/**
|
|
4249
4347
|
* @signal
|
|
4250
4348
|
* @detailed
|
|
4251
4349
|
* @run-first
|
|
4252
4350
|
*/
|
|
4253
|
-
"tag-clicked::secondary-icon-gicon": (
|
|
4351
|
+
"tag-clicked::secondary-icon-gicon": (object: TaggedEntryTag) => void;
|
|
4254
4352
|
/**
|
|
4255
4353
|
* @signal
|
|
4256
4354
|
* @detailed
|
|
4257
4355
|
* @run-first
|
|
4258
4356
|
*/
|
|
4259
|
-
"tag-clicked::secondary-icon-name": (
|
|
4357
|
+
"tag-clicked::secondary-icon-name": (object: TaggedEntryTag) => void;
|
|
4260
4358
|
/**
|
|
4261
4359
|
* @signal
|
|
4262
4360
|
* @detailed
|
|
4263
4361
|
* @run-first
|
|
4264
4362
|
*/
|
|
4265
|
-
"tag-clicked::secondary-icon-pixbuf": (
|
|
4363
|
+
"tag-clicked::secondary-icon-pixbuf": (object: TaggedEntryTag) => void;
|
|
4266
4364
|
/**
|
|
4267
4365
|
* @signal
|
|
4268
4366
|
* @detailed
|
|
4269
4367
|
* @run-first
|
|
4270
4368
|
*/
|
|
4271
|
-
"tag-clicked::secondary-icon-sensitive": (
|
|
4369
|
+
"tag-clicked::secondary-icon-sensitive": (object: TaggedEntryTag) => void;
|
|
4272
4370
|
/**
|
|
4273
4371
|
* @signal
|
|
4274
4372
|
* @detailed
|
|
4275
4373
|
* @run-first
|
|
4276
4374
|
*/
|
|
4277
|
-
"tag-clicked::secondary-icon-stock": (
|
|
4375
|
+
"tag-clicked::secondary-icon-stock": (object: TaggedEntryTag) => void;
|
|
4278
4376
|
/**
|
|
4279
4377
|
* @signal
|
|
4280
4378
|
* @detailed
|
|
4281
4379
|
* @run-first
|
|
4282
4380
|
*/
|
|
4283
|
-
"tag-clicked::secondary-icon-storage-type": (
|
|
4381
|
+
"tag-clicked::secondary-icon-storage-type": (object: TaggedEntryTag) => void;
|
|
4284
4382
|
/**
|
|
4285
4383
|
* @signal
|
|
4286
4384
|
* @detailed
|
|
4287
4385
|
* @run-first
|
|
4288
4386
|
*/
|
|
4289
|
-
"tag-clicked::secondary-icon-tooltip-markup": (
|
|
4387
|
+
"tag-clicked::secondary-icon-tooltip-markup": (object: TaggedEntryTag) => void;
|
|
4290
4388
|
/**
|
|
4291
4389
|
* @signal
|
|
4292
4390
|
* @detailed
|
|
4293
4391
|
* @run-first
|
|
4294
4392
|
*/
|
|
4295
|
-
"tag-clicked::secondary-icon-tooltip-text": (
|
|
4393
|
+
"tag-clicked::secondary-icon-tooltip-text": (object: TaggedEntryTag) => void;
|
|
4296
4394
|
/**
|
|
4297
4395
|
* @signal
|
|
4298
4396
|
* @detailed
|
|
4299
4397
|
* @run-first
|
|
4300
4398
|
*/
|
|
4301
|
-
"tag-clicked::selection-bound": (
|
|
4399
|
+
"tag-clicked::selection-bound": (object: TaggedEntryTag) => void;
|
|
4302
4400
|
/**
|
|
4303
4401
|
* @signal
|
|
4304
4402
|
* @detailed
|
|
4305
4403
|
* @run-first
|
|
4306
4404
|
*/
|
|
4307
|
-
"tag-clicked::shadow-type": (
|
|
4405
|
+
"tag-clicked::shadow-type": (object: TaggedEntryTag) => void;
|
|
4308
4406
|
/**
|
|
4309
4407
|
* @signal
|
|
4310
4408
|
* @detailed
|
|
4311
4409
|
* @run-first
|
|
4312
4410
|
*/
|
|
4313
|
-
"tag-clicked::show-emoji-icon": (
|
|
4411
|
+
"tag-clicked::show-emoji-icon": (object: TaggedEntryTag) => void;
|
|
4314
4412
|
/**
|
|
4315
4413
|
* @signal
|
|
4316
4414
|
* @detailed
|
|
4317
4415
|
* @run-first
|
|
4318
4416
|
*/
|
|
4319
|
-
"tag-clicked::tabs": (
|
|
4417
|
+
"tag-clicked::tabs": (object: TaggedEntryTag) => void;
|
|
4320
4418
|
/**
|
|
4321
4419
|
* @signal
|
|
4322
4420
|
* @detailed
|
|
4323
4421
|
* @run-first
|
|
4324
4422
|
*/
|
|
4325
|
-
"tag-clicked::text": (
|
|
4423
|
+
"tag-clicked::text": (object: TaggedEntryTag) => void;
|
|
4326
4424
|
/**
|
|
4327
4425
|
* @signal
|
|
4328
4426
|
* @detailed
|
|
4329
4427
|
* @run-first
|
|
4330
4428
|
*/
|
|
4331
|
-
"tag-clicked::text-length": (
|
|
4429
|
+
"tag-clicked::text-length": (object: TaggedEntryTag) => void;
|
|
4332
4430
|
/**
|
|
4333
4431
|
* @signal
|
|
4334
4432
|
* @detailed
|
|
4335
4433
|
* @run-first
|
|
4336
4434
|
*/
|
|
4337
|
-
"tag-clicked::truncate-multiline": (
|
|
4435
|
+
"tag-clicked::truncate-multiline": (object: TaggedEntryTag) => void;
|
|
4338
4436
|
/**
|
|
4339
4437
|
* @signal
|
|
4340
4438
|
* @detailed
|
|
4341
4439
|
* @run-first
|
|
4342
4440
|
*/
|
|
4343
|
-
"tag-clicked::visibility": (
|
|
4441
|
+
"tag-clicked::visibility": (object: TaggedEntryTag) => void;
|
|
4344
4442
|
/**
|
|
4345
4443
|
* @signal
|
|
4346
4444
|
* @detailed
|
|
4347
4445
|
* @run-first
|
|
4348
4446
|
*/
|
|
4349
|
-
"tag-clicked::width-chars": (
|
|
4447
|
+
"tag-clicked::width-chars": (object: TaggedEntryTag) => void;
|
|
4350
4448
|
/**
|
|
4351
4449
|
* @signal
|
|
4352
4450
|
* @detailed
|
|
4353
4451
|
* @run-first
|
|
4354
4452
|
*/
|
|
4355
|
-
"tag-clicked::xalign": (
|
|
4453
|
+
"tag-clicked::xalign": (object: TaggedEntryTag) => void;
|
|
4356
4454
|
/**
|
|
4357
4455
|
* @signal
|
|
4358
4456
|
* @detailed
|
|
4359
4457
|
* @run-first
|
|
4360
4458
|
*/
|
|
4361
|
-
"tag-clicked::app-paintable": (
|
|
4459
|
+
"tag-clicked::app-paintable": (object: TaggedEntryTag) => void;
|
|
4362
4460
|
/**
|
|
4363
4461
|
* @signal
|
|
4364
4462
|
* @detailed
|
|
4365
4463
|
* @run-first
|
|
4366
4464
|
*/
|
|
4367
|
-
"tag-clicked::can-default": (
|
|
4465
|
+
"tag-clicked::can-default": (object: TaggedEntryTag) => void;
|
|
4368
4466
|
/**
|
|
4369
4467
|
* @signal
|
|
4370
4468
|
* @detailed
|
|
4371
4469
|
* @run-first
|
|
4372
4470
|
*/
|
|
4373
|
-
"tag-clicked::can-focus": (
|
|
4471
|
+
"tag-clicked::can-focus": (object: TaggedEntryTag) => void;
|
|
4374
4472
|
/**
|
|
4375
4473
|
* @signal
|
|
4376
4474
|
* @detailed
|
|
4377
4475
|
* @run-first
|
|
4378
4476
|
*/
|
|
4379
|
-
"tag-clicked::composite-child": (
|
|
4477
|
+
"tag-clicked::composite-child": (object: TaggedEntryTag) => void;
|
|
4380
4478
|
/**
|
|
4381
4479
|
* @signal
|
|
4382
4480
|
* @detailed
|
|
4383
4481
|
* @run-first
|
|
4384
4482
|
*/
|
|
4385
|
-
"tag-clicked::double-buffered": (
|
|
4483
|
+
"tag-clicked::double-buffered": (object: TaggedEntryTag) => void;
|
|
4386
4484
|
/**
|
|
4387
4485
|
* @signal
|
|
4388
4486
|
* @detailed
|
|
4389
4487
|
* @run-first
|
|
4390
4488
|
*/
|
|
4391
|
-
"tag-clicked::events": (
|
|
4489
|
+
"tag-clicked::events": (object: TaggedEntryTag) => void;
|
|
4392
4490
|
/**
|
|
4393
4491
|
* @signal
|
|
4394
4492
|
* @detailed
|
|
4395
4493
|
* @run-first
|
|
4396
4494
|
*/
|
|
4397
|
-
"tag-clicked::expand": (
|
|
4495
|
+
"tag-clicked::expand": (object: TaggedEntryTag) => void;
|
|
4398
4496
|
/**
|
|
4399
4497
|
* @signal
|
|
4400
4498
|
* @detailed
|
|
4401
4499
|
* @run-first
|
|
4402
4500
|
*/
|
|
4403
|
-
"tag-clicked::focus-on-click": (
|
|
4501
|
+
"tag-clicked::focus-on-click": (object: TaggedEntryTag) => void;
|
|
4404
4502
|
/**
|
|
4405
4503
|
* @signal
|
|
4406
4504
|
* @detailed
|
|
4407
4505
|
* @run-first
|
|
4408
4506
|
*/
|
|
4409
|
-
"tag-clicked::halign": (
|
|
4507
|
+
"tag-clicked::halign": (object: TaggedEntryTag) => void;
|
|
4410
4508
|
/**
|
|
4411
4509
|
* @signal
|
|
4412
4510
|
* @detailed
|
|
4413
4511
|
* @run-first
|
|
4414
4512
|
*/
|
|
4415
|
-
"tag-clicked::has-default": (
|
|
4513
|
+
"tag-clicked::has-default": (object: TaggedEntryTag) => void;
|
|
4416
4514
|
/**
|
|
4417
4515
|
* @signal
|
|
4418
4516
|
* @detailed
|
|
4419
4517
|
* @run-first
|
|
4420
4518
|
*/
|
|
4421
|
-
"tag-clicked::has-focus": (
|
|
4519
|
+
"tag-clicked::has-focus": (object: TaggedEntryTag) => void;
|
|
4422
4520
|
/**
|
|
4423
4521
|
* @signal
|
|
4424
4522
|
* @detailed
|
|
4425
4523
|
* @run-first
|
|
4426
4524
|
*/
|
|
4427
|
-
"tag-clicked::has-tooltip": (
|
|
4525
|
+
"tag-clicked::has-tooltip": (object: TaggedEntryTag) => void;
|
|
4428
4526
|
/**
|
|
4429
4527
|
* @signal
|
|
4430
4528
|
* @detailed
|
|
4431
4529
|
* @run-first
|
|
4432
4530
|
*/
|
|
4433
|
-
"tag-clicked::height-request": (
|
|
4531
|
+
"tag-clicked::height-request": (object: TaggedEntryTag) => void;
|
|
4434
4532
|
/**
|
|
4435
4533
|
* @signal
|
|
4436
4534
|
* @detailed
|
|
4437
4535
|
* @run-first
|
|
4438
4536
|
*/
|
|
4439
|
-
"tag-clicked::hexpand": (
|
|
4537
|
+
"tag-clicked::hexpand": (object: TaggedEntryTag) => void;
|
|
4440
4538
|
/**
|
|
4441
4539
|
* @signal
|
|
4442
4540
|
* @detailed
|
|
4443
4541
|
* @run-first
|
|
4444
4542
|
*/
|
|
4445
|
-
"tag-clicked::hexpand-set": (
|
|
4543
|
+
"tag-clicked::hexpand-set": (object: TaggedEntryTag) => void;
|
|
4446
4544
|
/**
|
|
4447
4545
|
* @signal
|
|
4448
4546
|
* @detailed
|
|
4449
4547
|
* @run-first
|
|
4450
4548
|
*/
|
|
4451
|
-
"tag-clicked::is-focus": (
|
|
4549
|
+
"tag-clicked::is-focus": (object: TaggedEntryTag) => void;
|
|
4452
4550
|
/**
|
|
4453
4551
|
* @signal
|
|
4454
4552
|
* @detailed
|
|
4455
4553
|
* @run-first
|
|
4456
4554
|
*/
|
|
4457
|
-
"tag-clicked::margin": (
|
|
4555
|
+
"tag-clicked::margin": (object: TaggedEntryTag) => void;
|
|
4458
4556
|
/**
|
|
4459
4557
|
* @signal
|
|
4460
4558
|
* @detailed
|
|
4461
4559
|
* @run-first
|
|
4462
4560
|
*/
|
|
4463
|
-
"tag-clicked::margin-bottom": (
|
|
4561
|
+
"tag-clicked::margin-bottom": (object: TaggedEntryTag) => void;
|
|
4464
4562
|
/**
|
|
4465
4563
|
* @signal
|
|
4466
4564
|
* @detailed
|
|
4467
4565
|
* @run-first
|
|
4468
4566
|
*/
|
|
4469
|
-
"tag-clicked::margin-end": (
|
|
4567
|
+
"tag-clicked::margin-end": (object: TaggedEntryTag) => void;
|
|
4470
4568
|
/**
|
|
4471
4569
|
* @signal
|
|
4472
4570
|
* @detailed
|
|
4473
4571
|
* @run-first
|
|
4474
4572
|
*/
|
|
4475
|
-
"tag-clicked::margin-left": (
|
|
4573
|
+
"tag-clicked::margin-left": (object: TaggedEntryTag) => void;
|
|
4476
4574
|
/**
|
|
4477
4575
|
* @signal
|
|
4478
4576
|
* @detailed
|
|
4479
4577
|
* @run-first
|
|
4480
4578
|
*/
|
|
4481
|
-
"tag-clicked::margin-right": (
|
|
4579
|
+
"tag-clicked::margin-right": (object: TaggedEntryTag) => void;
|
|
4482
4580
|
/**
|
|
4483
4581
|
* @signal
|
|
4484
4582
|
* @detailed
|
|
4485
4583
|
* @run-first
|
|
4486
4584
|
*/
|
|
4487
|
-
"tag-clicked::margin-start": (
|
|
4585
|
+
"tag-clicked::margin-start": (object: TaggedEntryTag) => void;
|
|
4488
4586
|
/**
|
|
4489
4587
|
* @signal
|
|
4490
4588
|
* @detailed
|
|
4491
4589
|
* @run-first
|
|
4492
4590
|
*/
|
|
4493
|
-
"tag-clicked::margin-top": (
|
|
4591
|
+
"tag-clicked::margin-top": (object: TaggedEntryTag) => void;
|
|
4494
4592
|
/**
|
|
4495
4593
|
* @signal
|
|
4496
4594
|
* @detailed
|
|
4497
4595
|
* @run-first
|
|
4498
4596
|
*/
|
|
4499
|
-
"tag-clicked::name": (
|
|
4597
|
+
"tag-clicked::name": (object: TaggedEntryTag) => void;
|
|
4500
4598
|
/**
|
|
4501
4599
|
* @signal
|
|
4502
4600
|
* @detailed
|
|
4503
4601
|
* @run-first
|
|
4504
4602
|
*/
|
|
4505
|
-
"tag-clicked::no-show-all": (
|
|
4603
|
+
"tag-clicked::no-show-all": (object: TaggedEntryTag) => void;
|
|
4506
4604
|
/**
|
|
4507
4605
|
* @signal
|
|
4508
4606
|
* @detailed
|
|
4509
4607
|
* @run-first
|
|
4510
4608
|
*/
|
|
4511
|
-
"tag-clicked::opacity": (
|
|
4609
|
+
"tag-clicked::opacity": (object: TaggedEntryTag) => void;
|
|
4512
4610
|
/**
|
|
4513
4611
|
* @signal
|
|
4514
4612
|
* @detailed
|
|
4515
4613
|
* @run-first
|
|
4516
4614
|
*/
|
|
4517
|
-
"tag-clicked::parent": (
|
|
4615
|
+
"tag-clicked::parent": (object: TaggedEntryTag) => void;
|
|
4518
4616
|
/**
|
|
4519
4617
|
* @signal
|
|
4520
4618
|
* @detailed
|
|
4521
4619
|
* @run-first
|
|
4522
4620
|
*/
|
|
4523
|
-
"tag-clicked::receives-default": (
|
|
4621
|
+
"tag-clicked::receives-default": (object: TaggedEntryTag) => void;
|
|
4524
4622
|
/**
|
|
4525
4623
|
* @signal
|
|
4526
4624
|
* @detailed
|
|
4527
4625
|
* @run-first
|
|
4528
4626
|
*/
|
|
4529
|
-
"tag-clicked::scale-factor": (
|
|
4627
|
+
"tag-clicked::scale-factor": (object: TaggedEntryTag) => void;
|
|
4530
4628
|
/**
|
|
4531
4629
|
* @signal
|
|
4532
4630
|
* @detailed
|
|
4533
4631
|
* @run-first
|
|
4534
4632
|
*/
|
|
4535
|
-
"tag-clicked::sensitive": (
|
|
4633
|
+
"tag-clicked::sensitive": (object: TaggedEntryTag) => void;
|
|
4536
4634
|
/**
|
|
4537
4635
|
* @signal
|
|
4538
4636
|
* @detailed
|
|
4539
4637
|
* @run-first
|
|
4540
4638
|
*/
|
|
4541
|
-
"tag-clicked::style": (
|
|
4639
|
+
"tag-clicked::style": (object: TaggedEntryTag) => void;
|
|
4542
4640
|
/**
|
|
4543
4641
|
* @signal
|
|
4544
4642
|
* @detailed
|
|
4545
4643
|
* @run-first
|
|
4546
4644
|
*/
|
|
4547
|
-
"tag-clicked::tooltip-markup": (
|
|
4645
|
+
"tag-clicked::tooltip-markup": (object: TaggedEntryTag) => void;
|
|
4548
4646
|
/**
|
|
4549
4647
|
* @signal
|
|
4550
4648
|
* @detailed
|
|
4551
4649
|
* @run-first
|
|
4552
4650
|
*/
|
|
4553
|
-
"tag-clicked::tooltip-text": (
|
|
4651
|
+
"tag-clicked::tooltip-text": (object: TaggedEntryTag) => void;
|
|
4554
4652
|
/**
|
|
4555
4653
|
* @signal
|
|
4556
4654
|
* @detailed
|
|
4557
4655
|
* @run-first
|
|
4558
4656
|
*/
|
|
4559
|
-
"tag-clicked::valign": (
|
|
4657
|
+
"tag-clicked::valign": (object: TaggedEntryTag) => void;
|
|
4560
4658
|
/**
|
|
4561
4659
|
* @signal
|
|
4562
4660
|
* @detailed
|
|
4563
4661
|
* @run-first
|
|
4564
4662
|
*/
|
|
4565
|
-
"tag-clicked::vexpand": (
|
|
4663
|
+
"tag-clicked::vexpand": (object: TaggedEntryTag) => void;
|
|
4566
4664
|
/**
|
|
4567
4665
|
* @signal
|
|
4568
4666
|
* @detailed
|
|
4569
4667
|
* @run-first
|
|
4570
4668
|
*/
|
|
4571
|
-
"tag-clicked::vexpand-set": (
|
|
4669
|
+
"tag-clicked::vexpand-set": (object: TaggedEntryTag) => void;
|
|
4572
4670
|
/**
|
|
4573
4671
|
* @signal
|
|
4574
4672
|
* @detailed
|
|
4575
4673
|
* @run-first
|
|
4576
4674
|
*/
|
|
4577
|
-
"tag-clicked::visible": (
|
|
4675
|
+
"tag-clicked::visible": (object: TaggedEntryTag) => void;
|
|
4578
4676
|
/**
|
|
4579
4677
|
* @signal
|
|
4580
4678
|
* @detailed
|
|
4581
4679
|
* @run-first
|
|
4582
4680
|
*/
|
|
4583
|
-
"tag-clicked::width-request": (
|
|
4681
|
+
"tag-clicked::width-request": (object: TaggedEntryTag) => void;
|
|
4584
4682
|
/**
|
|
4585
4683
|
* @signal
|
|
4586
4684
|
* @detailed
|
|
4587
4685
|
* @run-first
|
|
4588
4686
|
*/
|
|
4589
|
-
"tag-clicked::window": (
|
|
4590
|
-
[key: `tag-clicked::${string}`]: (
|
|
4687
|
+
"tag-clicked::window": (object: TaggedEntryTag) => void;
|
|
4688
|
+
[key: `tag-clicked::${string}`]: (object: TaggedEntryTag) => void;
|
|
4591
4689
|
}
|
|
4592
4690
|
|
|
4593
4691
|
// Constructor properties interface
|