@gtkx/react 0.9.4 → 0.10.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 +55 -67
- package/dist/errors.d.ts +3 -3
- package/dist/errors.js +8 -8
- package/dist/factory.d.ts +3 -5
- package/dist/factory.js +18 -71
- package/dist/fiber-root.d.ts +1 -1
- package/dist/fiber-root.js +1 -2
- package/dist/generated/internal.d.ts +3 -6
- package/dist/generated/internal.js +10386 -13577
- package/dist/generated/jsx.d.ts +914 -808
- package/dist/generated/jsx.js +123 -358
- package/dist/generated/registry.d.ts +4 -0
- package/dist/generated/registry.js +13 -0
- package/dist/host-config.d.ts +7 -4
- package/dist/host-config.js +53 -18
- package/dist/index.d.ts +2 -22
- package/dist/index.js +2 -40
- package/dist/jsx.d.ts +719 -0
- package/dist/jsx.js +392 -0
- package/dist/node.d.ts +15 -32
- package/dist/node.js +20 -240
- package/dist/nodes/action-row-child.d.ts +21 -0
- package/dist/nodes/action-row-child.js +69 -0
- package/dist/nodes/action-row.js +33 -0
- package/dist/nodes/application.d.ts +1 -0
- package/dist/nodes/application.js +38 -0
- package/dist/nodes/autowrapped.d.ts +1 -0
- package/dist/nodes/autowrapped.js +109 -0
- package/dist/nodes/column-view-column.d.ts +16 -0
- package/dist/nodes/column-view-column.js +54 -0
- package/dist/nodes/column-view.d.ts +0 -59
- package/dist/nodes/column-view.js +107 -226
- package/dist/nodes/fixed-child.d.ts +1 -0
- package/dist/nodes/fixed-child.js +45 -0
- package/dist/nodes/grid-child.d.ts +1 -0
- package/dist/nodes/grid-child.js +54 -0
- package/dist/nodes/index.d.ts +34 -0
- package/dist/nodes/index.js +34 -0
- package/dist/nodes/internal/list-item-renderer.d.ts +18 -0
- package/dist/nodes/internal/list-item-renderer.js +67 -0
- package/dist/nodes/internal/list-store.d.ts +16 -0
- package/dist/nodes/internal/list-store.js +69 -0
- package/dist/nodes/internal/predicates.d.ts +26 -0
- package/dist/nodes/internal/predicates.js +36 -0
- package/dist/nodes/internal/signal-store.d.ts +9 -0
- package/dist/nodes/internal/signal-store.js +54 -0
- package/dist/nodes/internal/simple-list-store.d.ts +14 -0
- package/dist/nodes/internal/simple-list-store.js +60 -0
- package/dist/nodes/internal/tree-list-item-renderer.d.ts +18 -0
- package/dist/nodes/internal/tree-list-item-renderer.js +90 -0
- package/dist/nodes/internal/tree-store.d.ts +28 -0
- package/dist/nodes/internal/tree-store.js +153 -0
- package/dist/nodes/internal/utils.d.ts +3 -0
- package/dist/nodes/internal/utils.js +20 -0
- package/dist/nodes/list-item.d.ts +12 -0
- package/dist/nodes/list-item.js +24 -0
- package/dist/nodes/list-view.d.ts +0 -22
- package/dist/nodes/list-view.js +45 -38
- package/dist/nodes/menu.d.ts +6 -106
- package/dist/nodes/menu.js +16 -268
- package/dist/nodes/models/list.d.ts +24 -0
- package/dist/nodes/models/list.js +102 -0
- package/dist/nodes/models/menu.d.ts +45 -0
- package/dist/nodes/models/menu.js +265 -0
- package/dist/nodes/models/tree-list.d.ts +28 -0
- package/dist/nodes/models/tree-list.js +141 -0
- package/dist/nodes/navigation-page.d.ts +21 -0
- package/dist/nodes/navigation-page.js +95 -0
- package/dist/nodes/navigation-view.d.ts +1 -0
- package/dist/nodes/navigation-view.js +29 -0
- package/dist/nodes/notebook-page-tab.d.ts +15 -0
- package/dist/nodes/notebook-page-tab.js +42 -0
- package/dist/nodes/notebook-page.d.ts +23 -0
- package/dist/nodes/notebook-page.js +106 -0
- package/dist/nodes/notebook.d.ts +0 -32
- package/dist/nodes/notebook.js +20 -113
- package/dist/nodes/overlay-child.d.ts +1 -0
- package/dist/nodes/overlay-child.js +30 -0
- package/dist/nodes/pack-child.d.ts +21 -0
- package/dist/nodes/pack-child.js +68 -0
- package/dist/nodes/pack.d.ts +1 -0
- package/dist/nodes/pack.js +33 -0
- package/dist/nodes/popover-menu.d.ts +1 -0
- package/dist/nodes/popover-menu.js +58 -0
- package/dist/nodes/simple-list-item.d.ts +9 -0
- package/dist/nodes/simple-list-item.js +9 -0
- package/dist/nodes/simple-list-view.d.ts +1 -0
- package/dist/nodes/simple-list-view.js +75 -0
- package/dist/nodes/slot.d.ts +18 -10
- package/dist/nodes/slot.js +83 -51
- package/dist/nodes/stack-page.d.ts +1 -0
- package/dist/nodes/stack-page.js +80 -0
- package/dist/nodes/stack.d.ts +1 -22
- package/dist/nodes/stack.js +21 -60
- package/dist/nodes/toast-overlay.d.ts +1 -0
- package/dist/nodes/toast-overlay.js +35 -0
- package/dist/nodes/toast.d.ts +17 -0
- package/dist/nodes/toast.js +77 -0
- package/dist/nodes/toolbar-child.d.ts +9 -0
- package/dist/nodes/toolbar-child.js +33 -0
- package/dist/nodes/toolbar.d.ts +1 -0
- package/dist/nodes/toolbar.js +42 -0
- package/dist/nodes/tree-list-item.d.ts +20 -0
- package/dist/nodes/tree-list-item.js +102 -0
- package/dist/nodes/tree-list-view.d.ts +1 -0
- package/dist/nodes/tree-list-view.js +57 -0
- package/dist/nodes/virtual.d.ts +13 -0
- package/dist/nodes/virtual.js +21 -0
- package/dist/nodes/widget.d.ts +17 -3
- package/dist/nodes/widget.js +258 -2
- package/dist/nodes/window.d.ts +1 -12
- package/dist/nodes/window.js +66 -27
- package/dist/portal.d.ts +18 -13
- package/dist/portal.js +17 -14
- package/dist/reconciler.d.ts +0 -4
- package/dist/reconciler.js +1 -9
- package/dist/registry.d.ts +8 -0
- package/dist/registry.js +5 -0
- package/dist/render.d.ts +108 -12
- package/dist/render.js +140 -16
- package/dist/scheduler.d.ts +4 -0
- package/dist/scheduler.js +10 -0
- package/dist/types.d.ts +3 -136
- package/package.json +6 -6
- package/dist/batch.d.ts +0 -5
- package/dist/batch.js +0 -31
- package/dist/codegen/jsx-generator.d.ts +0 -56
- package/dist/codegen/jsx-generator.js +0 -959
- package/dist/containers.d.ts +0 -58
- package/dist/nodes/about-dialog.d.ts +0 -8
- package/dist/nodes/about-dialog.js +0 -16
- package/dist/nodes/action-bar.d.ts +0 -5
- package/dist/nodes/action-bar.js +0 -6
- package/dist/nodes/combo-row.d.ts +0 -5
- package/dist/nodes/combo-row.js +0 -6
- package/dist/nodes/drop-down.d.ts +0 -9
- package/dist/nodes/drop-down.js +0 -12
- package/dist/nodes/flow-box.d.ts +0 -10
- package/dist/nodes/flow-box.js +0 -41
- package/dist/nodes/grid.d.ts +0 -30
- package/dist/nodes/grid.js +0 -84
- package/dist/nodes/header-bar.d.ts +0 -43
- package/dist/nodes/header-bar.js +0 -116
- package/dist/nodes/indexed-child-container.d.ts +0 -16
- package/dist/nodes/indexed-child-container.js +0 -22
- package/dist/nodes/list-box.d.ts +0 -10
- package/dist/nodes/list-box.js +0 -48
- package/dist/nodes/list-item-factory.d.ts +0 -19
- package/dist/nodes/list-item-factory.js +0 -58
- package/dist/nodes/overlay.d.ts +0 -11
- package/dist/nodes/overlay.js +0 -50
- package/dist/nodes/paged-stack.d.ts +0 -31
- package/dist/nodes/paged-stack.js +0 -95
- package/dist/nodes/root.d.ts +0 -8
- package/dist/nodes/root.js +0 -13
- package/dist/nodes/selectable-list.d.ts +0 -45
- package/dist/nodes/selectable-list.js +0 -260
- package/dist/nodes/stack-page-props.d.ts +0 -11
- package/dist/nodes/stack-page-props.js +0 -23
- package/dist/nodes/string-list-container.d.ts +0 -34
- package/dist/nodes/string-list-container.js +0 -118
- package/dist/nodes/string-list-item.d.ts +0 -19
- package/dist/nodes/string-list-item.js +0 -50
- package/dist/nodes/string-list-store.d.ts +0 -13
- package/dist/nodes/string-list-store.js +0 -44
- package/dist/nodes/text-view.d.ts +0 -8
- package/dist/nodes/text-view.js +0 -16
- package/dist/nodes/toggle-button.d.ts +0 -14
- package/dist/nodes/toggle-button.js +0 -39
- package/dist/nodes/toolbar-view.d.ts +0 -14
- package/dist/nodes/toolbar-view.js +0 -78
- package/dist/nodes/view-stack.d.ts +0 -9
- package/dist/nodes/view-stack.js +0 -28
- package/dist/nodes/virtual-item.d.ts +0 -19
- package/dist/nodes/virtual-item.js +0 -48
- package/dist/nodes/virtual-slot.d.ts +0 -25
- package/dist/nodes/virtual-slot.js +0 -57
- package/dist/predicates.d.ts +0 -29
- package/dist/predicates.js +0 -37
- package/dist/props.d.ts +0 -7
- package/dist/props.js +0 -12
- /package/dist/{containers.js → nodes/action-row.d.ts} +0 -0
package/dist/generated/jsx.js
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import "react";
|
|
2
|
-
import { createElement } from "react";
|
|
3
1
|
/**
|
|
4
2
|
* The base class for all widgets.
|
|
5
3
|
*
|
|
@@ -394,7 +392,7 @@ import { createElement } from "react";
|
|
|
394
392
|
* }
|
|
395
393
|
* ```
|
|
396
394
|
*/
|
|
397
|
-
export const
|
|
395
|
+
export const GtkWidget = "GtkWidget";
|
|
398
396
|
/**
|
|
399
397
|
* A toplevel window which can contain other widgets.
|
|
400
398
|
*
|
|
@@ -468,14 +466,7 @@ export const Widget = "Widget";
|
|
|
468
466
|
*
|
|
469
467
|
* From GTK 4.12 to 4.18, it used the {@link AccessibleRole.application} role.
|
|
470
468
|
*/
|
|
471
|
-
export const
|
|
472
|
-
Root: "Window.Root",
|
|
473
|
-
Child: "Window.Child",
|
|
474
|
-
DefaultWidget: "Window.DefaultWidget",
|
|
475
|
-
FocusWidget: "Window.FocusWidget",
|
|
476
|
-
Titlebar: "Window.Titlebar",
|
|
477
|
-
TransientFor: "Window.TransientFor",
|
|
478
|
-
};
|
|
469
|
+
export const GtkWindow = "GtkWindow";
|
|
479
470
|
/**
|
|
480
471
|
* Displays information about a program.
|
|
481
472
|
*
|
|
@@ -530,7 +521,7 @@ export const Window = {
|
|
|
530
521
|
* `GtkAboutDialog` has a single CSS node with the name `window` and style
|
|
531
522
|
* class `.aboutdialog`.
|
|
532
523
|
*/
|
|
533
|
-
export const
|
|
524
|
+
export const GtkAboutDialog = "GtkAboutDialog";
|
|
534
525
|
/**
|
|
535
526
|
* Presents contextual actions.
|
|
536
527
|
*
|
|
@@ -571,7 +562,7 @@ export const AboutDialog = "AboutDialog";
|
|
|
571
562
|
*
|
|
572
563
|
* Each of the boxes contains children packed for that side.
|
|
573
564
|
*/
|
|
574
|
-
export const
|
|
565
|
+
export const GtkActionBar = "GtkActionBar";
|
|
575
566
|
/**
|
|
576
567
|
* The `GtkAppChooserButton` lets the user select an application.
|
|
577
568
|
*
|
|
@@ -601,7 +592,7 @@ export const ActionBar = "ActionBar";
|
|
|
601
592
|
*
|
|
602
593
|
* `GtkAppChooserButton` has a single CSS node with the name “appchooserbutton”.
|
|
603
594
|
*/
|
|
604
|
-
export const
|
|
595
|
+
export const GtkAppChooserButton = "GtkAppChooserButton";
|
|
605
596
|
/**
|
|
606
597
|
* `GtkAppChooserDialog` shows a `GtkAppChooserWidget` inside a `GtkDialog`.
|
|
607
598
|
*
|
|
@@ -621,7 +612,7 @@ export const AppChooserButton = "AppChooserButton";
|
|
|
621
612
|
* `GtkAppChooserDialog` has a single CSS node with the name `window` and style
|
|
622
613
|
* class `.appchooser`.
|
|
623
614
|
*/
|
|
624
|
-
export const
|
|
615
|
+
export const GtkAppChooserDialog = "GtkAppChooserDialog";
|
|
625
616
|
/**
|
|
626
617
|
* `GtkAppChooserWidget` is a widget for selecting applications.
|
|
627
618
|
*
|
|
@@ -647,7 +638,7 @@ export const AppChooserDialog = "AppChooserDialog";
|
|
|
647
638
|
*
|
|
648
639
|
* `GtkAppChooserWidget` has a single CSS node with name appchooser.
|
|
649
640
|
*/
|
|
650
|
-
export const
|
|
641
|
+
export const GtkAppChooserWidget = "GtkAppChooserWidget";
|
|
651
642
|
/**
|
|
652
643
|
* A `GtkWindow` subclass that integrates with `GtkApplication`.
|
|
653
644
|
*
|
|
@@ -719,7 +710,7 @@ export const AppChooserWidget = "AppChooserWidget";
|
|
|
719
710
|
* GtkWidget *window = gtk_application_window_new (app);
|
|
720
711
|
* ```
|
|
721
712
|
*/
|
|
722
|
-
export const
|
|
713
|
+
export const GtkApplicationWindow = "GtkApplicationWindow";
|
|
723
714
|
/**
|
|
724
715
|
* Preserves the aspect ratio of its child.
|
|
725
716
|
*
|
|
@@ -736,7 +727,7 @@ export const ApplicationWindow = "ApplicationWindow";
|
|
|
736
727
|
*
|
|
737
728
|
* Starting from GTK 4.12, `GtkAspectFrame` uses the {@link AccessibleRole.generic} role.
|
|
738
729
|
*/
|
|
739
|
-
export const
|
|
730
|
+
export const GtkAspectFrame = "GtkAspectFrame";
|
|
740
731
|
/**
|
|
741
732
|
* `GtkAssistant` is used to represent a complex as a series of steps.
|
|
742
733
|
*
|
|
@@ -775,7 +766,7 @@ export const AspectFrame = "AspectFrame";
|
|
|
775
766
|
* `GtkAssistant` has a single CSS node with the name window and style
|
|
776
767
|
* class .assistant.
|
|
777
768
|
*/
|
|
778
|
-
export const
|
|
769
|
+
export const GtkAssistant = "GtkAssistant";
|
|
779
770
|
/**
|
|
780
771
|
* Arranges child widgets into a single row or column.
|
|
781
772
|
*
|
|
@@ -812,7 +803,7 @@ export const Assistant = "Assistant";
|
|
|
812
803
|
*
|
|
813
804
|
* Starting from GTK 4.12, `GtkBox` uses the {@link AccessibleRole.generic} role.
|
|
814
805
|
*/
|
|
815
|
-
export const
|
|
806
|
+
export const GtkBox = "GtkBox";
|
|
816
807
|
/**
|
|
817
808
|
* Calls a callback function when the button is clicked.
|
|
818
809
|
*
|
|
@@ -850,7 +841,7 @@ export const Box = "Box";
|
|
|
850
841
|
*
|
|
851
842
|
* `GtkButton` uses the {@link AccessibleRole.button} role.
|
|
852
843
|
*/
|
|
853
|
-
export const
|
|
844
|
+
export const GtkButton = "GtkButton";
|
|
854
845
|
/**
|
|
855
846
|
* Displays a Gregorian calendar, one month at a time.
|
|
856
847
|
*
|
|
@@ -906,7 +897,7 @@ export const Button = "Button";
|
|
|
906
897
|
*
|
|
907
898
|
* Marked day labels get the :selected state assigned.
|
|
908
899
|
*/
|
|
909
|
-
export const
|
|
900
|
+
export const GtkCalendar = "GtkCalendar";
|
|
910
901
|
/**
|
|
911
902
|
* A widget displaying a single row of a GtkTreeModel
|
|
912
903
|
*
|
|
@@ -928,7 +919,7 @@ export const Calendar = "Calendar";
|
|
|
928
919
|
*
|
|
929
920
|
* GtkCellView has a single CSS node with name cellview.
|
|
930
921
|
*/
|
|
931
|
-
export const
|
|
922
|
+
export const GtkCellView = "GtkCellView";
|
|
932
923
|
/**
|
|
933
924
|
* Arranges three children in a row, keeping the middle child
|
|
934
925
|
* centered as well as possible.
|
|
@@ -966,12 +957,7 @@ export const CellView = "CellView";
|
|
|
966
957
|
* Starting from GTK 4.12, `GtkCenterBox` uses the {@link AccessibleRole.generic}
|
|
967
958
|
* role.
|
|
968
959
|
*/
|
|
969
|
-
export const
|
|
970
|
-
Root: "CenterBox.Root",
|
|
971
|
-
CenterWidget: "CenterBox.CenterWidget",
|
|
972
|
-
EndWidget: "CenterBox.EndWidget",
|
|
973
|
-
StartWidget: "CenterBox.StartWidget",
|
|
974
|
-
};
|
|
960
|
+
export const GtkCenterBox = "GtkCenterBox";
|
|
975
961
|
/**
|
|
976
962
|
* Places a label next to an indicator.
|
|
977
963
|
*
|
|
@@ -1037,11 +1023,7 @@ export const CenterBox = {
|
|
|
1037
1023
|
*
|
|
1038
1024
|
* `GtkCheckButton` uses the {@link AccessibleRole.checkbox} role.
|
|
1039
1025
|
*/
|
|
1040
|
-
export const
|
|
1041
|
-
Root: "CheckButton.Root",
|
|
1042
|
-
Child: "CheckButton.Child",
|
|
1043
|
-
Group: "CheckButton.Group",
|
|
1044
|
-
};
|
|
1026
|
+
export const GtkCheckButton = "GtkCheckButton";
|
|
1045
1027
|
/**
|
|
1046
1028
|
* The `GtkColorButton` allows to open a color chooser dialog to change
|
|
1047
1029
|
* the color.
|
|
@@ -1062,7 +1044,7 @@ export const CheckButton = {
|
|
|
1062
1044
|
* contains a button node. To differentiate it from a plain `GtkButton`,
|
|
1063
1045
|
* it gets the .color style class.
|
|
1064
1046
|
*/
|
|
1065
|
-
export const
|
|
1047
|
+
export const GtkColorButton = "GtkColorButton";
|
|
1066
1048
|
/**
|
|
1067
1049
|
* A dialog for choosing a color.
|
|
1068
1050
|
*
|
|
@@ -1084,7 +1066,7 @@ export const ColorButton = "ColorButton";
|
|
|
1084
1066
|
* `GtkColorChooserDialog` has a single CSS node with the name `window` and style
|
|
1085
1067
|
* class `.colorchooser`.
|
|
1086
1068
|
*/
|
|
1087
|
-
export const
|
|
1069
|
+
export const GtkColorChooserDialog = "GtkColorChooserDialog";
|
|
1088
1070
|
/**
|
|
1089
1071
|
* The `GtkColorChooserWidget` widget lets the user select a color.
|
|
1090
1072
|
*
|
|
@@ -1119,7 +1101,7 @@ export const ColorChooserDialog = "ColorChooserDialog";
|
|
|
1119
1101
|
*
|
|
1120
1102
|
* `GtkColorChooserWidget` has a single CSS node with name colorchooser.
|
|
1121
1103
|
*/
|
|
1122
|
-
export const
|
|
1104
|
+
export const GtkColorChooserWidget = "GtkColorChooserWidget";
|
|
1123
1105
|
/**
|
|
1124
1106
|
* Opens a color chooser dialog to select a color.
|
|
1125
1107
|
*
|
|
@@ -1139,16 +1121,7 @@ export const ColorChooserWidget = "ColorChooserWidget";
|
|
|
1139
1121
|
* contains a button node. To differentiate it from a plain `GtkButton`,
|
|
1140
1122
|
* it gets the .color style class.
|
|
1141
1123
|
*/
|
|
1142
|
-
export const
|
|
1143
|
-
function ColumnViewRoot(props) {
|
|
1144
|
-
return createElement("ColumnView.Root", props);
|
|
1145
|
-
}
|
|
1146
|
-
function ColumnViewColumn(props) {
|
|
1147
|
-
return createElement("ColumnView.Column", props);
|
|
1148
|
-
}
|
|
1149
|
-
function ColumnViewItem(props) {
|
|
1150
|
-
return createElement("ColumnView.Item", props);
|
|
1151
|
-
}
|
|
1124
|
+
export const GtkColorDialogButton = "GtkColorDialogButton";
|
|
1152
1125
|
/**
|
|
1153
1126
|
* Presents a large dynamic list of items using multiple columns with headers.
|
|
1154
1127
|
*
|
|
@@ -1215,11 +1188,7 @@ function ColumnViewItem(props) {
|
|
|
1215
1188
|
* are using the {@link AccessibleRole.row} role, and individual cells are using
|
|
1216
1189
|
* the {@link AccessibleRole.grid_cell} role
|
|
1217
1190
|
*/
|
|
1218
|
-
export const
|
|
1219
|
-
Root: ColumnViewRoot,
|
|
1220
|
-
Column: ColumnViewColumn,
|
|
1221
|
-
Item: ColumnViewItem,
|
|
1222
|
-
};
|
|
1191
|
+
export const GtkColumnView = "GtkColumnView";
|
|
1223
1192
|
/**
|
|
1224
1193
|
* A `GtkComboBox` is a widget that allows the user to choose from a list of
|
|
1225
1194
|
* valid choices.
|
|
@@ -1282,7 +1251,7 @@ export const ColumnView = {
|
|
|
1282
1251
|
*
|
|
1283
1252
|
* `GtkComboBox` uses the {@link AccessibleRole.combo_box} role.
|
|
1284
1253
|
*/
|
|
1285
|
-
export const
|
|
1254
|
+
export const GtkComboBox = "GtkComboBox";
|
|
1286
1255
|
/**
|
|
1287
1256
|
* A `GtkComboBoxText` is a simple variant of `GtkComboBox` for text-only
|
|
1288
1257
|
* use cases.
|
|
@@ -1340,7 +1309,7 @@ export const ComboBox = "ComboBox";
|
|
|
1340
1309
|
* the style class .combo to the main CSS nodes of its entry and button
|
|
1341
1310
|
* children, and the .linked class to the node of its internal box.
|
|
1342
1311
|
*/
|
|
1343
|
-
export const
|
|
1312
|
+
export const GtkComboBoxText = "GtkComboBoxText";
|
|
1344
1313
|
/**
|
|
1345
1314
|
* Dialogs are a convenient way to prompt the user for a small amount
|
|
1346
1315
|
* of input.
|
|
@@ -1464,7 +1433,7 @@ export const ComboBoxText = "ComboBoxText";
|
|
|
1464
1433
|
*
|
|
1465
1434
|
* `GtkDialog` uses the %GTK_ACCESSIBLE_ROLE_DIALOG role.
|
|
1466
1435
|
*/
|
|
1467
|
-
export const
|
|
1436
|
+
export const GtkDialog = "GtkDialog";
|
|
1468
1437
|
/**
|
|
1469
1438
|
* A `GtkRoot` implementation for drag icons.
|
|
1470
1439
|
*
|
|
@@ -1478,7 +1447,7 @@ export const Dialog = "Dialog";
|
|
|
1478
1447
|
*
|
|
1479
1448
|
* Keep in mind that drag icons do not allow user input.
|
|
1480
1449
|
*/
|
|
1481
|
-
export const
|
|
1450
|
+
export const GtkDragIcon = "GtkDragIcon";
|
|
1482
1451
|
/**
|
|
1483
1452
|
* Allows drawing with cairo.
|
|
1484
1453
|
*
|
|
@@ -1559,13 +1528,7 @@ export const DragIcon = "DragIcon";
|
|
|
1559
1528
|
* If you need more complex control over your widget, you should consider
|
|
1560
1529
|
* creating your own `GtkWidget` subclass.
|
|
1561
1530
|
*/
|
|
1562
|
-
export const
|
|
1563
|
-
function DropDownRoot(props) {
|
|
1564
|
-
return createElement("DropDown.Root", props);
|
|
1565
|
-
}
|
|
1566
|
-
function DropDownItem(props) {
|
|
1567
|
-
return createElement("DropDown.Item", props);
|
|
1568
|
-
}
|
|
1531
|
+
export const GtkDrawingArea = "GtkDrawingArea";
|
|
1569
1532
|
/**
|
|
1570
1533
|
* Allows the user to choose an item from a list of options.
|
|
1571
1534
|
*
|
|
@@ -1623,10 +1586,7 @@ function DropDownItem(props) {
|
|
|
1623
1586
|
*
|
|
1624
1587
|
* `GtkDropDown` uses the {@link AccessibleRole.combo_box} role.
|
|
1625
1588
|
*/
|
|
1626
|
-
export const
|
|
1627
|
-
Root: DropDownRoot,
|
|
1628
|
-
Item: DropDownItem,
|
|
1629
|
-
};
|
|
1589
|
+
export const GtkDropDown = "GtkDropDown";
|
|
1630
1590
|
/**
|
|
1631
1591
|
* Allows users to edit the displayed text by switching to an “edit mode”.
|
|
1632
1592
|
*
|
|
@@ -1670,7 +1630,7 @@ export const DropDown = {
|
|
|
1670
1630
|
* For all the subnodes added to the text node in various situations,
|
|
1671
1631
|
* see {@link Text}.
|
|
1672
1632
|
*/
|
|
1673
|
-
export const
|
|
1633
|
+
export const GtkEditableLabel = "GtkEditableLabel";
|
|
1674
1634
|
/**
|
|
1675
1635
|
* Used by text widgets to let users insert Emoji characters.
|
|
1676
1636
|
*
|
|
@@ -1713,7 +1673,7 @@ export const EditableLabel = "EditableLabel";
|
|
|
1713
1673
|
* consists of buttons with the .emoji-section style class and gets the
|
|
1714
1674
|
* .emoji-toolbar style class itself.
|
|
1715
1675
|
*/
|
|
1716
|
-
export const
|
|
1676
|
+
export const GtkEmojiChooser = "GtkEmojiChooser";
|
|
1717
1677
|
/**
|
|
1718
1678
|
* A single-line text entry widget.
|
|
1719
1679
|
*
|
|
@@ -1803,7 +1763,7 @@ export const EmojiChooser = "EmojiChooser";
|
|
|
1803
1763
|
*
|
|
1804
1764
|
* `GtkEntry` uses the {@link AccessibleRole.text_box} role.
|
|
1805
1765
|
*/
|
|
1806
|
-
export const
|
|
1766
|
+
export const GtkEntry = "GtkEntry";
|
|
1807
1767
|
/**
|
|
1808
1768
|
* Allows the user to reveal or conceal a child widget.
|
|
1809
1769
|
*
|
|
@@ -1892,11 +1852,7 @@ export const Entry = "Entry";
|
|
|
1892
1852
|
*
|
|
1893
1853
|
* `GtkExpander` uses the {@link AccessibleRole.button} role.
|
|
1894
1854
|
*/
|
|
1895
|
-
export const
|
|
1896
|
-
Root: "Expander.Root",
|
|
1897
|
-
Child: "Expander.Child",
|
|
1898
|
-
LabelWidget: "Expander.LabelWidget",
|
|
1899
|
-
};
|
|
1855
|
+
export const GtkExpander = "GtkExpander";
|
|
1900
1856
|
/**
|
|
1901
1857
|
* `GtkFileChooserDialog` is a dialog suitable for use with
|
|
1902
1858
|
* “File Open” or “File Save” commands.
|
|
@@ -2071,7 +2027,7 @@ export const Expander = {
|
|
|
2071
2027
|
* `GtkFileChooserDialog` has a single CSS node with the name `window` and style
|
|
2072
2028
|
* class `.filechooser`.
|
|
2073
2029
|
*/
|
|
2074
|
-
export const
|
|
2030
|
+
export const GtkFileChooserDialog = "GtkFileChooserDialog";
|
|
2075
2031
|
/**
|
|
2076
2032
|
* `GtkFileChooserWidget` is a widget for choosing files.
|
|
2077
2033
|
*
|
|
@@ -2104,7 +2060,7 @@ export const FileChooserDialog = "FileChooserDialog";
|
|
|
2104
2060
|
*
|
|
2105
2061
|
* `GtkFileChooserWidget` has a single CSS node with name filechooser.
|
|
2106
2062
|
*/
|
|
2107
|
-
export const
|
|
2063
|
+
export const GtkFileChooserWidget = "GtkFileChooserWidget";
|
|
2108
2064
|
/**
|
|
2109
2065
|
* Places its child widgets at fixed positions and with fixed sizes.
|
|
2110
2066
|
*
|
|
@@ -2144,7 +2100,7 @@ export const FileChooserWidget = "FileChooserWidget";
|
|
|
2144
2100
|
* and prefer the simplicity of `GtkFixed`, by all means use the
|
|
2145
2101
|
* widget. But you should be aware of the tradeoffs.
|
|
2146
2102
|
*/
|
|
2147
|
-
export const
|
|
2103
|
+
export const GtkFixed = "GtkFixed";
|
|
2148
2104
|
/**
|
|
2149
2105
|
* Puts child widgets in a reflowing grid.
|
|
2150
2106
|
*
|
|
@@ -2204,14 +2160,14 @@ export const Fixed = "Fixed";
|
|
|
2204
2160
|
* `GtkFlowBox` uses the {@link AccessibleRole.grid} role, and `GtkFlowBoxChild`
|
|
2205
2161
|
* uses the {@link AccessibleRole.grid_cell} role.
|
|
2206
2162
|
*/
|
|
2207
|
-
export const
|
|
2163
|
+
export const GtkFlowBox = "GtkFlowBox";
|
|
2208
2164
|
/**
|
|
2209
2165
|
* The kind of widget that can be added to a `GtkFlowBox`.
|
|
2210
2166
|
*
|
|
2211
2167
|
* {@link FlowBox} will automatically wrap its children in a `GtkFlowBoxChild`
|
|
2212
2168
|
* when necessary.
|
|
2213
2169
|
*/
|
|
2214
|
-
export const
|
|
2170
|
+
export const GtkFlowBoxChild = "GtkFlowBoxChild";
|
|
2215
2171
|
/**
|
|
2216
2172
|
* The `GtkFontButton` allows to open a font chooser dialog to change
|
|
2217
2173
|
* the font.
|
|
@@ -2231,7 +2187,7 @@ export const FlowBoxChild = "FlowBoxChild";
|
|
|
2231
2187
|
* `GtkFontButton` has a single CSS node with name fontbutton which
|
|
2232
2188
|
* contains a button node with the .font style class.
|
|
2233
2189
|
*/
|
|
2234
|
-
export const
|
|
2190
|
+
export const GtkFontButton = "GtkFontButton";
|
|
2235
2191
|
/**
|
|
2236
2192
|
* The `GtkFontChooserDialog` widget is a dialog for selecting a font.
|
|
2237
2193
|
*
|
|
@@ -2253,7 +2209,7 @@ export const FontButton = "FontButton";
|
|
|
2253
2209
|
* `GtkFontChooserDialog` has a single CSS node with the name `window` and style
|
|
2254
2210
|
* class `.fontchooser`.
|
|
2255
2211
|
*/
|
|
2256
|
-
export const
|
|
2212
|
+
export const GtkFontChooserDialog = "GtkFontChooserDialog";
|
|
2257
2213
|
/**
|
|
2258
2214
|
* The `GtkFontChooserWidget` widget lets the user select a font.
|
|
2259
2215
|
*
|
|
@@ -2273,7 +2229,7 @@ export const FontChooserDialog = "FontChooserDialog";
|
|
|
2273
2229
|
*
|
|
2274
2230
|
* `GtkFontChooserWidget` has a single CSS node with name fontchooser.
|
|
2275
2231
|
*/
|
|
2276
|
-
export const
|
|
2232
|
+
export const GtkFontChooserWidget = "GtkFontChooserWidget";
|
|
2277
2233
|
/**
|
|
2278
2234
|
* Opens a font chooser dialog to select a font.
|
|
2279
2235
|
*
|
|
@@ -2292,7 +2248,7 @@ export const FontChooserWidget = "FontChooserWidget";
|
|
|
2292
2248
|
* `GtkFontDialogButton` has a single CSS node with name fontbutton which
|
|
2293
2249
|
* contains a button node with the .font style class.
|
|
2294
2250
|
*/
|
|
2295
|
-
export const
|
|
2251
|
+
export const GtkFontDialogButton = "GtkFontDialogButton";
|
|
2296
2252
|
/**
|
|
2297
2253
|
* Surrounds its child with a decorative frame and an optional label.
|
|
2298
2254
|
*
|
|
@@ -2336,11 +2292,7 @@ export const FontDialogButton = "FontDialogButton";
|
|
|
2336
2292
|
*
|
|
2337
2293
|
* `GtkFrame` uses the {@link AccessibleRole.group} role.
|
|
2338
2294
|
*/
|
|
2339
|
-
export const
|
|
2340
|
-
Root: "Frame.Root",
|
|
2341
|
-
Child: "Frame.Child",
|
|
2342
|
-
LabelWidget: "Frame.LabelWidget",
|
|
2343
|
-
};
|
|
2295
|
+
export const GtkFrame = "GtkFrame";
|
|
2344
2296
|
/**
|
|
2345
2297
|
* Allows drawing with OpenGL.
|
|
2346
2298
|
*
|
|
@@ -2456,7 +2408,7 @@ export const Frame = {
|
|
|
2456
2408
|
* If you need to change the options for creating the `GdkGLContext`
|
|
2457
2409
|
* you should use the {@link GLArea.:create-context} signal.
|
|
2458
2410
|
*/
|
|
2459
|
-
export const
|
|
2411
|
+
export const GtkGLArea = "GtkGLArea";
|
|
2460
2412
|
/**
|
|
2461
2413
|
* Bypasses gsk rendering by passing the content of its child directly to the compositor.
|
|
2462
2414
|
*
|
|
@@ -2494,7 +2446,7 @@ export const GLArea = "GLArea";
|
|
|
2494
2446
|
*
|
|
2495
2447
|
* The GTK inspector provides a visual debugging tool for graphics offload.
|
|
2496
2448
|
*/
|
|
2497
|
-
export const
|
|
2449
|
+
export const GtkGraphicsOffload = "GtkGraphicsOffload";
|
|
2498
2450
|
/**
|
|
2499
2451
|
* Arranges its child widgets in rows and columns.
|
|
2500
2452
|
*
|
|
@@ -2580,16 +2532,7 @@ export const GraphicsOffload = "GraphicsOffload";
|
|
|
2580
2532
|
*
|
|
2581
2533
|
* Starting from GTK 4.12, `GtkGrid` uses the {@link AccessibleRole.generic} role.
|
|
2582
2534
|
*/
|
|
2583
|
-
export const
|
|
2584
|
-
Root: "Grid.Root",
|
|
2585
|
-
Child: "Grid.Child",
|
|
2586
|
-
};
|
|
2587
|
-
function GridViewRoot(props) {
|
|
2588
|
-
return createElement("GridView.Root", props);
|
|
2589
|
-
}
|
|
2590
|
-
function GridViewItem(props) {
|
|
2591
|
-
return createElement("GridView.Item", props);
|
|
2592
|
-
}
|
|
2535
|
+
export const GtkGrid = "GtkGrid";
|
|
2593
2536
|
/**
|
|
2594
2537
|
* Presents a large dynamic grid of items.
|
|
2595
2538
|
*
|
|
@@ -2634,10 +2577,7 @@ function GridViewItem(props) {
|
|
|
2634
2577
|
* `GtkGridView` uses the {@link AccessibleRole.grid} role, and the items
|
|
2635
2578
|
* use the {@link AccessibleRole.grid_cell} role.
|
|
2636
2579
|
*/
|
|
2637
|
-
export const
|
|
2638
|
-
Root: GridViewRoot,
|
|
2639
|
-
Item: GridViewItem,
|
|
2640
|
-
};
|
|
2580
|
+
export const GtkGridView = "GtkGridView";
|
|
2641
2581
|
/**
|
|
2642
2582
|
* Creates a custom titlebar for a window.
|
|
2643
2583
|
*
|
|
@@ -2711,10 +2651,7 @@ export const GridView = {
|
|
|
2711
2651
|
*
|
|
2712
2652
|
* `GtkHeaderBar` uses the {@link AccessibleRole.group} role.
|
|
2713
2653
|
*/
|
|
2714
|
-
export const
|
|
2715
|
-
Root: "HeaderBar.Root",
|
|
2716
|
-
TitleWidget: "HeaderBar.TitleWidget",
|
|
2717
|
-
};
|
|
2654
|
+
export const GtkHeaderBar = "GtkHeaderBar";
|
|
2718
2655
|
/**
|
|
2719
2656
|
* `GtkIconView` is a widget which displays data in a grid of icons.
|
|
2720
2657
|
*
|
|
@@ -2742,7 +2679,7 @@ export const HeaderBar = {
|
|
|
2742
2679
|
* `GtkIconView` has a single CSS node with name iconview and style class .view.
|
|
2743
2680
|
* For rubberband selection, a subnode with name rubberband is used.
|
|
2744
2681
|
*/
|
|
2745
|
-
export const
|
|
2682
|
+
export const GtkIconView = "GtkIconView";
|
|
2746
2683
|
/**
|
|
2747
2684
|
* Displays an image.
|
|
2748
2685
|
*
|
|
@@ -2784,7 +2721,7 @@ export const IconView = "IconView";
|
|
|
2784
2721
|
*
|
|
2785
2722
|
* `GtkImage` uses the {@link AccessibleRole.img} role.
|
|
2786
2723
|
*/
|
|
2787
|
-
export const
|
|
2724
|
+
export const GtkImage = "GtkImage";
|
|
2788
2725
|
/**
|
|
2789
2726
|
* `GtkInfoBar` can be used to show messages to the user without a dialog.
|
|
2790
2727
|
*
|
|
@@ -2860,7 +2797,7 @@ export const Image = "Image";
|
|
|
2860
2797
|
* If the info bar shows a close button, that button will have the .close
|
|
2861
2798
|
* style class applied.
|
|
2862
2799
|
*/
|
|
2863
|
-
export const
|
|
2800
|
+
export const GtkInfoBar = "GtkInfoBar";
|
|
2864
2801
|
/**
|
|
2865
2802
|
* Shows text in a predefined area.
|
|
2866
2803
|
*
|
|
@@ -2879,7 +2816,7 @@ export const InfoBar = "InfoBar";
|
|
|
2879
2816
|
*
|
|
2880
2817
|
* `GtkInscription` has a single CSS node with the name label.
|
|
2881
2818
|
*/
|
|
2882
|
-
export const
|
|
2819
|
+
export const GtkInscription = "GtkInscription";
|
|
2883
2820
|
/**
|
|
2884
2821
|
* Displays a small amount of text.
|
|
2885
2822
|
*
|
|
@@ -3095,7 +3032,7 @@ export const Inscription = "Inscription";
|
|
|
3095
3032
|
* with the {@link Label.:activate-link} signal and the
|
|
3096
3033
|
* {@link Label.get_current_uri} function.
|
|
3097
3034
|
*/
|
|
3098
|
-
export const
|
|
3035
|
+
export const GtkLabel = "GtkLabel";
|
|
3099
3036
|
/**
|
|
3100
3037
|
* Shows a level indicator.
|
|
3101
3038
|
*
|
|
@@ -3195,7 +3132,7 @@ export const Label = "Label";
|
|
|
3195
3132
|
*
|
|
3196
3133
|
* `GtkLevelBar` uses the {@link AccessibleRole.meter} role.
|
|
3197
3134
|
*/
|
|
3198
|
-
export const
|
|
3135
|
+
export const GtkLevelBar = "GtkLevelBar";
|
|
3199
3136
|
/**
|
|
3200
3137
|
* A button with a hyperlink.
|
|
3201
3138
|
*
|
|
@@ -3237,7 +3174,7 @@ export const LevelBar = "LevelBar";
|
|
|
3237
3174
|
*
|
|
3238
3175
|
* `GtkLinkButton` uses the {@link AccessibleRole.link} role.
|
|
3239
3176
|
*/
|
|
3240
|
-
export const
|
|
3177
|
+
export const GtkLinkButton = "GtkLinkButton";
|
|
3241
3178
|
/**
|
|
3242
3179
|
* The abstract base class for GTK's list widgets.
|
|
3243
3180
|
*
|
|
@@ -3284,7 +3221,7 @@ export const LinkButton = "LinkButton";
|
|
|
3284
3221
|
* - `listitem.scroll-to` moves the visible area of the list to this item with
|
|
3285
3222
|
* the minimum amount of scrolling required.
|
|
3286
3223
|
*/
|
|
3287
|
-
export const
|
|
3224
|
+
export const GtkListBase = "GtkListBase";
|
|
3288
3225
|
/**
|
|
3289
3226
|
* Shows a vertical list.
|
|
3290
3227
|
*
|
|
@@ -3351,20 +3288,14 @@ export const ListBase = "ListBase";
|
|
|
3351
3288
|
* `GtkListBox` uses the {@link AccessibleRole.list} role and `GtkListBoxRow` uses
|
|
3352
3289
|
* the {@link AccessibleRole.list_item} role.
|
|
3353
3290
|
*/
|
|
3354
|
-
export const
|
|
3291
|
+
export const GtkListBox = "GtkListBox";
|
|
3355
3292
|
/**
|
|
3356
3293
|
* The kind of widget that can be added to a `GtkListBox`.
|
|
3357
3294
|
*
|
|
3358
3295
|
* {@link ListBox} will automatically wrap its children in a `GtkListboxRow`
|
|
3359
3296
|
* when necessary.
|
|
3360
3297
|
*/
|
|
3361
|
-
export const
|
|
3362
|
-
function ListViewRoot(props) {
|
|
3363
|
-
return createElement("ListView.Root", props);
|
|
3364
|
-
}
|
|
3365
|
-
function ListViewItem(props) {
|
|
3366
|
-
return createElement("ListView.Item", props);
|
|
3367
|
-
}
|
|
3298
|
+
export const GtkListBoxRow = "GtkListBoxRow";
|
|
3368
3299
|
/**
|
|
3369
3300
|
* Presents a large dynamic list of items.
|
|
3370
3301
|
*
|
|
@@ -3471,10 +3402,7 @@ function ListViewItem(props) {
|
|
|
3471
3402
|
* `GtkListView` uses the {@link AccessibleRole.list} role, and the list
|
|
3472
3403
|
* items use the {@link AccessibleRole.list_item} role.
|
|
3473
3404
|
*/
|
|
3474
|
-
export const
|
|
3475
|
-
Root: ListViewRoot,
|
|
3476
|
-
Item: ListViewItem,
|
|
3477
|
-
};
|
|
3405
|
+
export const GtkListView = "GtkListView";
|
|
3478
3406
|
/**
|
|
3479
3407
|
* `GtkLockButton` is a widget to obtain and revoke authorizations
|
|
3480
3408
|
* needed to operate the controls.
|
|
@@ -3514,7 +3442,7 @@ export const ListView = {
|
|
|
3514
3442
|
* {@link LockButton.tooltip-unlock} and
|
|
3515
3443
|
* {@link LockButton.tooltip-not-authorized} properties.
|
|
3516
3444
|
*/
|
|
3517
|
-
export const
|
|
3445
|
+
export const GtkLockButton = "GtkLockButton";
|
|
3518
3446
|
/**
|
|
3519
3447
|
* Shows controls for video playback.
|
|
3520
3448
|
*
|
|
@@ -3522,7 +3450,7 @@ export const LockButton = "LockButton";
|
|
|
3522
3450
|
*
|
|
3523
3451
|
* Usually, `GtkMediaControls` is used as part of {@link Video}.
|
|
3524
3452
|
*/
|
|
3525
|
-
export const
|
|
3453
|
+
export const GtkMediaControls = "GtkMediaControls";
|
|
3526
3454
|
/**
|
|
3527
3455
|
* Displays a popup when clicked.
|
|
3528
3456
|
*
|
|
@@ -3587,11 +3515,7 @@ export const MediaControls = "MediaControls";
|
|
|
3587
3515
|
*
|
|
3588
3516
|
* `GtkMenuButton` uses the {@link AccessibleRole.button} role.
|
|
3589
3517
|
*/
|
|
3590
|
-
export const
|
|
3591
|
-
Root: "MenuButton.Root",
|
|
3592
|
-
Child: "MenuButton.Child",
|
|
3593
|
-
Popover: "MenuButton.Popover",
|
|
3594
|
-
};
|
|
3518
|
+
export const GtkMenuButton = "GtkMenuButton";
|
|
3595
3519
|
/**
|
|
3596
3520
|
* `GtkMessageDialog` presents a dialog with some message text.
|
|
3597
3521
|
*
|
|
@@ -3650,7 +3574,7 @@ export const MenuButton = {
|
|
|
3650
3574
|
* The `GtkMessageDialog` implementation of the `GtkBuildable` interface exposes
|
|
3651
3575
|
* the message area as an internal child with the name “message_area”.
|
|
3652
3576
|
*/
|
|
3653
|
-
export const
|
|
3577
|
+
export const GtkMessageDialog = "GtkMessageDialog";
|
|
3654
3578
|
/**
|
|
3655
3579
|
* Switches between children using tabs.
|
|
3656
3580
|
*
|
|
@@ -3769,10 +3693,7 @@ export const MessageDialog = "MessageDialog";
|
|
|
3769
3693
|
* - {@link AccessibleRole.tab} role for each tab
|
|
3770
3694
|
* - {@link AccessibleRole.tab_panel} for each page
|
|
3771
3695
|
*/
|
|
3772
|
-
export const
|
|
3773
|
-
Root: "Notebook.Root",
|
|
3774
|
-
Page: "Notebook.Page",
|
|
3775
|
-
};
|
|
3696
|
+
export const GtkNotebook = "GtkNotebook";
|
|
3776
3697
|
/**
|
|
3777
3698
|
* Places “overlay” widgets on top of a single main child.
|
|
3778
3699
|
*
|
|
@@ -3806,7 +3727,7 @@ export const Notebook = {
|
|
|
3806
3727
|
* whose alignments cause them to be positioned at an edge get the style classes
|
|
3807
3728
|
* “.left”, “.right”, “.top”, and/or “.bottom” according to their position.
|
|
3808
3729
|
*/
|
|
3809
|
-
export const
|
|
3730
|
+
export const GtkOverlay = "GtkOverlay";
|
|
3810
3731
|
/**
|
|
3811
3732
|
* Presents a page setup dialog for platforms which don’t provide
|
|
3812
3733
|
* a native page setup dialog, like Unix.
|
|
@@ -3822,7 +3743,7 @@ export const Overlay = "Overlay";
|
|
|
3822
3743
|
* `GtkPageSetupUnixDialog` has a single CSS node with the name `window` and
|
|
3823
3744
|
* style class `.pagesetup`.
|
|
3824
3745
|
*/
|
|
3825
|
-
export const
|
|
3746
|
+
export const GtkPageSetupUnixDialog = "GtkPageSetupUnixDialog";
|
|
3826
3747
|
/**
|
|
3827
3748
|
* Arranges its children in two panes, horizontally or vertically.
|
|
3828
3749
|
*
|
|
@@ -3903,11 +3824,7 @@ export const PageSetupUnixDialog = "PageSetupUnixDialog";
|
|
|
3903
3824
|
* gtk_widget_set_size_request (frame2, 50, -1);
|
|
3904
3825
|
* ```
|
|
3905
3826
|
*/
|
|
3906
|
-
export const
|
|
3907
|
-
Root: "Paned.Root",
|
|
3908
|
-
EndChild: "Paned.EndChild",
|
|
3909
|
-
StartChild: "Paned.StartChild",
|
|
3910
|
-
};
|
|
3827
|
+
export const GtkPaned = "GtkPaned";
|
|
3911
3828
|
/**
|
|
3912
3829
|
* A single-line text entry widget for entering passwords and other secrets.
|
|
3913
3830
|
*
|
|
@@ -3942,7 +3859,7 @@ export const Paned = {
|
|
|
3942
3859
|
*
|
|
3943
3860
|
* `GtkPasswordEntry` uses the {@link AccessibleRole.text_box} role.
|
|
3944
3861
|
*/
|
|
3945
|
-
export const
|
|
3862
|
+
export const GtkPasswordEntry = "GtkPasswordEntry";
|
|
3946
3863
|
/**
|
|
3947
3864
|
* Displays a `GdkPaintable`.
|
|
3948
3865
|
*
|
|
@@ -3991,7 +3908,7 @@ export const PasswordEntry = "PasswordEntry";
|
|
|
3991
3908
|
*
|
|
3992
3909
|
* `GtkPicture` uses the {@link AccessibleRole.img} role.
|
|
3993
3910
|
*/
|
|
3994
|
-
export const
|
|
3911
|
+
export const GtkPicture = "GtkPicture";
|
|
3995
3912
|
/**
|
|
3996
3913
|
* Presents a bubble-like popup.
|
|
3997
3914
|
*
|
|
@@ -4087,23 +4004,7 @@ export const Picture = "Picture";
|
|
|
4087
4004
|
* solid, no border-radius, only one border width (border-bottom-width is
|
|
4088
4005
|
* used) and no box-shadow.
|
|
4089
4006
|
*/
|
|
4090
|
-
export const
|
|
4091
|
-
Root: "Popover.Root",
|
|
4092
|
-
Child: "Popover.Child",
|
|
4093
|
-
DefaultWidget: "Popover.DefaultWidget",
|
|
4094
|
-
};
|
|
4095
|
-
function PopoverMenuRoot(props) {
|
|
4096
|
-
return createElement("PopoverMenu.Root", props);
|
|
4097
|
-
}
|
|
4098
|
-
function PopoverMenuItem(props) {
|
|
4099
|
-
return createElement("Menu.Item", props);
|
|
4100
|
-
}
|
|
4101
|
-
function PopoverMenuSection(props) {
|
|
4102
|
-
return createElement("Menu.Section", props);
|
|
4103
|
-
}
|
|
4104
|
-
function PopoverMenuSubmenu(props) {
|
|
4105
|
-
return createElement("Menu.Submenu", props);
|
|
4106
|
-
}
|
|
4007
|
+
export const GtkPopover = "GtkPopover";
|
|
4107
4008
|
/**
|
|
4108
4009
|
* A subclass of `GtkPopover` that implements menu behavior.
|
|
4109
4010
|
*
|
|
@@ -4222,12 +4123,7 @@ function PopoverMenuSubmenu(props) {
|
|
|
4222
4123
|
* {@link AccessibleRole.checkbox} or {@link AccessibleRole.menu_item_radio}
|
|
4223
4124
|
* roles, depending on the action they are connected to.
|
|
4224
4125
|
*/
|
|
4225
|
-
export const
|
|
4226
|
-
Root: PopoverMenuRoot,
|
|
4227
|
-
Item: PopoverMenuItem,
|
|
4228
|
-
Section: PopoverMenuSection,
|
|
4229
|
-
Submenu: PopoverMenuSubmenu,
|
|
4230
|
-
};
|
|
4126
|
+
export const GtkPopoverMenu = "GtkPopoverMenu";
|
|
4231
4127
|
/**
|
|
4232
4128
|
* Presents a horizontal bar of items that pop up menus when clicked.
|
|
4233
4129
|
*
|
|
@@ -4258,7 +4154,7 @@ export const PopoverMenu = {
|
|
|
4258
4154
|
* the menu items use the {@link AccessibleRole.menu_item} role and
|
|
4259
4155
|
* the menus use the {@link AccessibleRole.menu} role.
|
|
4260
4156
|
*/
|
|
4261
|
-
export const
|
|
4157
|
+
export const GtkPopoverMenuBar = "GtkPopoverMenuBar";
|
|
4262
4158
|
/**
|
|
4263
4159
|
* A print dialog for platforms which don’t provide a native
|
|
4264
4160
|
* print dialog, like Unix.
|
|
@@ -4317,7 +4213,7 @@ export const PopoverMenuBar = "PopoverMenuBar";
|
|
|
4317
4213
|
* `GtkPrintUnixDialog` has a single CSS node with name window. The style classes
|
|
4318
4214
|
* dialog and print are added.
|
|
4319
4215
|
*/
|
|
4320
|
-
export const
|
|
4216
|
+
export const GtkPrintUnixDialog = "GtkPrintUnixDialog";
|
|
4321
4217
|
/**
|
|
4322
4218
|
* Displays the progress of a long-running operation.
|
|
4323
4219
|
*
|
|
@@ -4367,7 +4263,7 @@ export const PrintUnixDialog = "PrintUnixDialog";
|
|
|
4367
4263
|
* and sets the {@link AccessibleProperty.value_min}, {@link AccessibleProperty.value_max} and {@link AccessibleProperty.value_now} properties to reflect
|
|
4368
4264
|
* the progress.
|
|
4369
4265
|
*/
|
|
4370
|
-
export const
|
|
4266
|
+
export const GtkProgressBar = "GtkProgressBar";
|
|
4371
4267
|
/**
|
|
4372
4268
|
* Base class for widgets which visualize an adjustment.
|
|
4373
4269
|
*
|
|
@@ -4384,7 +4280,7 @@ export const ProgressBar = "ProgressBar";
|
|
|
4384
4280
|
* dragging, or initiating the drag with a long-press will enable the
|
|
4385
4281
|
* fine-tuning mode.
|
|
4386
4282
|
*/
|
|
4387
|
-
export const
|
|
4283
|
+
export const GtkRange = "GtkRange";
|
|
4388
4284
|
/**
|
|
4389
4285
|
* Animates the transition of its child from invisible to visible.
|
|
4390
4286
|
*
|
|
@@ -4408,7 +4304,7 @@ export const Range = "Range";
|
|
|
4408
4304
|
* The child of `GtkRevealer`, if set, is always available in the accessibility
|
|
4409
4305
|
* tree, regardless of the state of the revealer widget.
|
|
4410
4306
|
*/
|
|
4411
|
-
export const
|
|
4307
|
+
export const GtkRevealer = "GtkRevealer";
|
|
4412
4308
|
/**
|
|
4413
4309
|
* Allows to select a numeric value with a slider control.
|
|
4414
4310
|
*
|
|
@@ -4500,7 +4396,7 @@ export const Revealer = "Revealer";
|
|
|
4500
4396
|
*
|
|
4501
4397
|
* `GtkScale` uses the {@link AccessibleRole.slider} role.
|
|
4502
4398
|
*/
|
|
4503
|
-
export const
|
|
4399
|
+
export const GtkScale = "GtkScale";
|
|
4504
4400
|
/**
|
|
4505
4401
|
* Provides a button which pops up a scale widget.
|
|
4506
4402
|
*
|
|
@@ -4525,7 +4421,7 @@ export const Scale = "Scale";
|
|
|
4525
4421
|
* `GtkScaleButton` has a single CSS node with name scalebutton and `.scale`
|
|
4526
4422
|
* style class, and contains a `button` node with a `.toggle` style class.
|
|
4527
4423
|
*/
|
|
4528
|
-
export const
|
|
4424
|
+
export const GtkScaleButton = "GtkScaleButton";
|
|
4529
4425
|
/**
|
|
4530
4426
|
* Shows a horizontal or vertical scrollbar.
|
|
4531
4427
|
*
|
|
@@ -4570,7 +4466,7 @@ export const ScaleButton = "ScaleButton";
|
|
|
4570
4466
|
*
|
|
4571
4467
|
* `GtkScrollbar` uses the {@link AccessibleRole.scrollbar} role.
|
|
4572
4468
|
*/
|
|
4573
|
-
export const
|
|
4469
|
+
export const GtkScrollbar = "GtkScrollbar";
|
|
4574
4470
|
/**
|
|
4575
4471
|
* Makes its child scrollable.
|
|
4576
4472
|
*
|
|
@@ -4650,7 +4546,7 @@ export const Scrollbar = "Scrollbar";
|
|
|
4650
4546
|
* Starting from GTK 4.12, `GtkScrolledWindow` uses the {@link AccessibleRole.generic}
|
|
4651
4547
|
* role.
|
|
4652
4548
|
*/
|
|
4653
|
-
export const
|
|
4549
|
+
export const GtkScrolledWindow = "GtkScrolledWindow";
|
|
4654
4550
|
/**
|
|
4655
4551
|
* Reveals a search entry when search is started.
|
|
4656
4552
|
*
|
|
@@ -4703,11 +4599,7 @@ export const ScrolledWindow = "ScrolledWindow";
|
|
|
4703
4599
|
*
|
|
4704
4600
|
* `GtkSearchBar` uses the {@link AccessibleRole.search} role.
|
|
4705
4601
|
*/
|
|
4706
|
-
export const
|
|
4707
|
-
Root: "SearchBar.Root",
|
|
4708
|
-
Child: "SearchBar.Child",
|
|
4709
|
-
KeyCaptureWidget: "SearchBar.KeyCaptureWidget",
|
|
4710
|
-
};
|
|
4602
|
+
export const GtkSearchBar = "GtkSearchBar";
|
|
4711
4603
|
/**
|
|
4712
4604
|
* A single-line text entry widget for use as a search entry.
|
|
4713
4605
|
*
|
|
@@ -4762,7 +4654,7 @@ export const SearchBar = {
|
|
|
4762
4654
|
*
|
|
4763
4655
|
* `GtkSearchEntry` uses the {@link AccessibleRole.search_box} role.
|
|
4764
4656
|
*/
|
|
4765
|
-
export const
|
|
4657
|
+
export const GtkSearchEntry = "GtkSearchEntry";
|
|
4766
4658
|
/**
|
|
4767
4659
|
* Draws a horizontal or vertical line to separate other widgets.
|
|
4768
4660
|
*
|
|
@@ -4781,13 +4673,13 @@ export const SearchEntry = "SearchEntry";
|
|
|
4781
4673
|
*
|
|
4782
4674
|
* `GtkSeparator` uses the {@link AccessibleRole.separator} role.
|
|
4783
4675
|
*/
|
|
4784
|
-
export const
|
|
4676
|
+
export const GtkSeparator = "GtkSeparator";
|
|
4785
4677
|
/**
|
|
4786
4678
|
* `GtkShortcutLabel` displays a single keyboard shortcut or gesture.
|
|
4787
4679
|
*
|
|
4788
4680
|
* The main use case for `GtkShortcutLabel` is inside a {@link ShortcutsWindow}.
|
|
4789
4681
|
*/
|
|
4790
|
-
export const
|
|
4682
|
+
export const GtkShortcutLabel = "GtkShortcutLabel";
|
|
4791
4683
|
/**
|
|
4792
4684
|
* A `GtkShortcutsGroup` represents a group of related keyboard shortcuts
|
|
4793
4685
|
* or gestures.
|
|
@@ -4806,7 +4698,7 @@ export const ShortcutLabel = "ShortcutLabel";
|
|
|
4806
4698
|
* If you need to add a shortcut programmatically, use
|
|
4807
4699
|
* {@link ShortcutsGroup.add_shortcut}.
|
|
4808
4700
|
*/
|
|
4809
|
-
export const
|
|
4701
|
+
export const GtkShortcutsGroup = "GtkShortcutsGroup";
|
|
4810
4702
|
/**
|
|
4811
4703
|
* A `GtkShortcutsSection` collects all the keyboard shortcuts and gestures
|
|
4812
4704
|
* for a major application mode.
|
|
@@ -4839,14 +4731,14 @@ export const ShortcutsGroup = "ShortcutsGroup";
|
|
|
4839
4731
|
*
|
|
4840
4732
|
* - {@link ShortcutsSection.:change-current-page}
|
|
4841
4733
|
*/
|
|
4842
|
-
export const
|
|
4734
|
+
export const GtkShortcutsSection = "GtkShortcutsSection";
|
|
4843
4735
|
/**
|
|
4844
4736
|
* A `GtkShortcutsShortcut` represents a single keyboard shortcut or gesture
|
|
4845
4737
|
* with a short text.
|
|
4846
4738
|
*
|
|
4847
4739
|
* This widget is only meant to be used with `GtkShortcutsWindow`.
|
|
4848
4740
|
*/
|
|
4849
|
-
export const
|
|
4741
|
+
export const GtkShortcutsShortcut = "GtkShortcutsShortcut";
|
|
4850
4742
|
/**
|
|
4851
4743
|
* A `GtkShortcutsWindow` shows information about the keyboard shortcuts
|
|
4852
4744
|
* and gestures of an application.
|
|
@@ -4907,7 +4799,7 @@ export const ShortcutsShortcut = "ShortcutsShortcut";
|
|
|
4907
4799
|
* `GtkShortcutsWindow` has a single CSS node with the name `window` and style
|
|
4908
4800
|
* class `.shortcuts`.
|
|
4909
4801
|
*/
|
|
4910
|
-
export const
|
|
4802
|
+
export const GtkShortcutsWindow = "GtkShortcutsWindow";
|
|
4911
4803
|
/**
|
|
4912
4804
|
* Allows to enter or change numeric values.
|
|
4913
4805
|
*
|
|
@@ -5027,7 +4919,7 @@ export const ShortcutsWindow = "ShortcutsWindow";
|
|
|
5027
4919
|
*
|
|
5028
4920
|
* `GtkSpinButton` uses the {@link AccessibleRole.spin_button} role.
|
|
5029
4921
|
*/
|
|
5030
|
-
export const
|
|
4922
|
+
export const GtkSpinButton = "GtkSpinButton";
|
|
5031
4923
|
/**
|
|
5032
4924
|
* Displays an icon-size spinning animation.
|
|
5033
4925
|
*
|
|
@@ -5049,16 +4941,7 @@ export const SpinButton = "SpinButton";
|
|
|
5049
4941
|
*
|
|
5050
4942
|
* `GtkSpinner` uses the {@link AccessibleRole.progress_bar} role.
|
|
5051
4943
|
*/
|
|
5052
|
-
export const
|
|
5053
|
-
function StackRoot(props) {
|
|
5054
|
-
return createElement("Stack.Root", props);
|
|
5055
|
-
}
|
|
5056
|
-
function StackPage(props) {
|
|
5057
|
-
return createElement("Stack.Page", props);
|
|
5058
|
-
}
|
|
5059
|
-
function StackVisibleChild(props) {
|
|
5060
|
-
return createElement("Stack.VisibleChild", props);
|
|
5061
|
-
}
|
|
4944
|
+
export const GtkSpinner = "GtkSpinner";
|
|
5062
4945
|
/**
|
|
5063
4946
|
* Shows one of its children at a time.
|
|
5064
4947
|
*
|
|
@@ -5109,11 +4992,7 @@ function StackVisibleChild(props) {
|
|
|
5109
4992
|
* `GtkStack` uses the {@link AccessibleRole.tab_panel} role for the stack
|
|
5110
4993
|
* pages, which are the accessible parent objects of the child widgets.
|
|
5111
4994
|
*/
|
|
5112
|
-
export const
|
|
5113
|
-
Root: StackRoot,
|
|
5114
|
-
Page: StackPage,
|
|
5115
|
-
VisibleChild: StackVisibleChild,
|
|
5116
|
-
};
|
|
4995
|
+
export const GtkStack = "GtkStack";
|
|
5117
4996
|
/**
|
|
5118
4997
|
* Uses a sidebar to switch between `GtkStack` pages.
|
|
5119
4998
|
*
|
|
@@ -5133,10 +5012,7 @@ export const Stack = {
|
|
|
5133
5012
|
* .needs-attention style class to the widgets representing the stack
|
|
5134
5013
|
* pages.
|
|
5135
5014
|
*/
|
|
5136
|
-
export const
|
|
5137
|
-
Root: "StackSidebar.Root",
|
|
5138
|
-
Stack: "StackSidebar.Stack",
|
|
5139
|
-
};
|
|
5015
|
+
export const GtkStackSidebar = "GtkStackSidebar";
|
|
5140
5016
|
/**
|
|
5141
5017
|
* Shows a row of buttons to switch between `GtkStack` pages.
|
|
5142
5018
|
*
|
|
@@ -5171,10 +5047,7 @@ export const StackSidebar = {
|
|
|
5171
5047
|
* the stack switcher to be made vertical with
|
|
5172
5048
|
* `gtk_orientable_set_orientation()`.
|
|
5173
5049
|
*/
|
|
5174
|
-
export const
|
|
5175
|
-
Root: "StackSwitcher.Root",
|
|
5176
|
-
Stack: "StackSwitcher.Stack",
|
|
5177
|
-
};
|
|
5050
|
+
export const GtkStackSwitcher = "GtkStackSwitcher";
|
|
5178
5051
|
/**
|
|
5179
5052
|
* A `GtkStatusbar` widget is usually placed along the bottom of an application's
|
|
5180
5053
|
* main {@link Window}.
|
|
@@ -5213,7 +5086,7 @@ export const StackSwitcher = {
|
|
|
5213
5086
|
*
|
|
5214
5087
|
* `GtkStatusbar` has a single CSS node with name `statusbar`.
|
|
5215
5088
|
*/
|
|
5216
|
-
export const
|
|
5089
|
+
export const GtkStatusbar = "GtkStatusbar";
|
|
5217
5090
|
/**
|
|
5218
5091
|
* Shows a "light switch" that has two states: on or off.
|
|
5219
5092
|
*
|
|
@@ -5253,7 +5126,7 @@ export const Statusbar = "Statusbar";
|
|
|
5253
5126
|
*
|
|
5254
5127
|
* `GtkSwitch` uses the {@link AccessibleRole.switch} role.
|
|
5255
5128
|
*/
|
|
5256
|
-
export const
|
|
5129
|
+
export const GtkSwitch = "GtkSwitch";
|
|
5257
5130
|
/**
|
|
5258
5131
|
* A single-line text entry.
|
|
5259
5132
|
*
|
|
@@ -5366,7 +5239,7 @@ export const Switch = "Switch";
|
|
|
5366
5239
|
* as a delegate for a `GtkEditable` implementation that will be represented
|
|
5367
5240
|
* to accessibility.
|
|
5368
5241
|
*/
|
|
5369
|
-
export const
|
|
5242
|
+
export const GtkText = "GtkText";
|
|
5370
5243
|
/**
|
|
5371
5244
|
* Displays the contents of a {@link TextBuffer}.
|
|
5372
5245
|
*
|
|
@@ -5442,7 +5315,7 @@ export const Text = "Text";
|
|
|
5442
5315
|
*
|
|
5443
5316
|
* `GtkTextView` uses the {@link AccessibleRole.text_box} role.
|
|
5444
5317
|
*/
|
|
5445
|
-
export const
|
|
5318
|
+
export const GtkTextView = "GtkTextView";
|
|
5446
5319
|
/**
|
|
5447
5320
|
* Shows a button which remains “pressed-in” when clicked.
|
|
5448
5321
|
*
|
|
@@ -5518,10 +5391,7 @@ export const TextView = "TextView";
|
|
|
5518
5391
|
* }
|
|
5519
5392
|
* ```
|
|
5520
5393
|
*/
|
|
5521
|
-
export const
|
|
5522
|
-
Root: "ToggleButton.Root",
|
|
5523
|
-
Group: "ToggleButton.Group",
|
|
5524
|
-
};
|
|
5394
|
+
export const GtkToggleButton = "GtkToggleButton";
|
|
5525
5395
|
/**
|
|
5526
5396
|
* Provides an expander for a tree-like list.
|
|
5527
5397
|
*
|
|
@@ -5600,7 +5470,7 @@ export const ToggleButton = {
|
|
|
5600
5470
|
* Since GTK 4.12, `GtkTreeExpander` uses the {@link AccessibleRole.button} role.
|
|
5601
5471
|
* Toggling it will change the `GTK_ACCESSIBLE_STATE_EXPANDED` state.
|
|
5602
5472
|
*/
|
|
5603
|
-
export const
|
|
5473
|
+
export const GtkTreeExpander = "GtkTreeExpander";
|
|
5604
5474
|
/**
|
|
5605
5475
|
* A widget for displaying both trees and lists
|
|
5606
5476
|
*
|
|
@@ -5691,7 +5561,7 @@ export const TreeExpander = "TreeExpander";
|
|
|
5691
5561
|
*
|
|
5692
5562
|
* For the drop target location during DND, a subnode with name `dndtarget` is used.
|
|
5693
5563
|
*/
|
|
5694
|
-
export const
|
|
5564
|
+
export const GtkTreeView = "GtkTreeView";
|
|
5695
5565
|
/**
|
|
5696
5566
|
* Shows a `GtkMediaStream` with media controls.
|
|
5697
5567
|
*
|
|
@@ -5708,7 +5578,7 @@ export const TreeView = "TreeView";
|
|
|
5708
5578
|
* you may want to use the {@link GdkPaintable} API and a media framework
|
|
5709
5579
|
* such as Gstreamer directly.
|
|
5710
5580
|
*/
|
|
5711
|
-
export const
|
|
5581
|
+
export const GtkVideo = "GtkVideo";
|
|
5712
5582
|
/**
|
|
5713
5583
|
* Implements scrollability for widgets that don't support scrolling
|
|
5714
5584
|
* on their own.
|
|
@@ -5729,14 +5599,14 @@ export const Video = "Video";
|
|
|
5729
5599
|
*
|
|
5730
5600
|
* Starting from GTK 4.12, `GtkViewport` uses the {@link AccessibleRole.generic} role.
|
|
5731
5601
|
*/
|
|
5732
|
-
export const
|
|
5602
|
+
export const GtkViewport = "GtkViewport";
|
|
5733
5603
|
/**
|
|
5734
5604
|
* `GtkVolumeButton` is a `GtkScaleButton` subclass tailored for
|
|
5735
5605
|
* volume control.
|
|
5736
5606
|
*
|
|
5737
5607
|
* 
|
|
5738
5608
|
*/
|
|
5739
|
-
export const
|
|
5609
|
+
export const GtkVolumeButton = "GtkVolumeButton";
|
|
5740
5610
|
/**
|
|
5741
5611
|
* Shows window frame controls.
|
|
5742
5612
|
*
|
|
@@ -5789,7 +5659,7 @@ export const VolumeButton = "VolumeButton";
|
|
|
5789
5659
|
*
|
|
5790
5660
|
* `GtkWindowControls` uses the {@link AccessibleRole.group} role.
|
|
5791
5661
|
*/
|
|
5792
|
-
export const
|
|
5662
|
+
export const GtkWindowControls = "GtkWindowControls";
|
|
5793
5663
|
/**
|
|
5794
5664
|
* Implements titlebar functionality for a window.
|
|
5795
5665
|
*
|
|
@@ -5808,7 +5678,7 @@ export const WindowControls = "WindowControls";
|
|
|
5808
5678
|
* Starting from GTK 4.12, `GtkWindowHandle` uses the {@link AccessibleRole.generic}
|
|
5809
5679
|
* role.
|
|
5810
5680
|
*/
|
|
5811
|
-
export const
|
|
5681
|
+
export const GtkWindowHandle = "GtkWindowHandle";
|
|
5812
5682
|
/**
|
|
5813
5683
|
* A freeform window.
|
|
5814
5684
|
*
|
|
@@ -5887,10 +5757,7 @@ export const WindowHandle = "WindowHandle";
|
|
|
5887
5757
|
* GTK Inspector or by pressing `Ctrl`+`Shift`+`M`,
|
|
5888
5758
|
* and controlled via the {@link AdwWindow.adaptive-preview} property.
|
|
5889
5759
|
*/
|
|
5890
|
-
export const AdwWindow =
|
|
5891
|
-
Root: "AdwWindow.Root",
|
|
5892
|
-
Content: "AdwWindow.Content",
|
|
5893
|
-
};
|
|
5760
|
+
export const AdwWindow = "AdwWindow";
|
|
5894
5761
|
/**
|
|
5895
5762
|
* A dialog showing information about the application.
|
|
5896
5763
|
*
|
|
@@ -6264,10 +6131,7 @@ export const AdwAboutWindow = "AdwAboutWindow";
|
|
|
6264
6131
|
* When used together with the `.monospace` style class, only the subtitle
|
|
6265
6132
|
* becomes monospace, not the title or any extra widgets.
|
|
6266
6133
|
*/
|
|
6267
|
-
export const AdwActionRow =
|
|
6268
|
-
Root: "AdwActionRow.Root",
|
|
6269
|
-
ActivatableWidget: "AdwActionRow.ActivatableWidget",
|
|
6270
|
-
};
|
|
6134
|
+
export const AdwActionRow = "AdwActionRow";
|
|
6271
6135
|
/**
|
|
6272
6136
|
* A dialog presenting a message or a question.
|
|
6273
6137
|
*
|
|
@@ -6397,10 +6261,7 @@ export const AdwActionRow = {
|
|
|
6397
6261
|
* </object>
|
|
6398
6262
|
* ```
|
|
6399
6263
|
*/
|
|
6400
|
-
export const AdwAlertDialog =
|
|
6401
|
-
Root: "AdwAlertDialog.Root",
|
|
6402
|
-
ExtraChild: "AdwAlertDialog.ExtraChild",
|
|
6403
|
-
};
|
|
6264
|
+
export const AdwAlertDialog = "AdwAlertDialog";
|
|
6404
6265
|
/**
|
|
6405
6266
|
* A freeform application window.
|
|
6406
6267
|
*
|
|
@@ -6431,10 +6292,7 @@ export const AdwAlertDialog = {
|
|
|
6431
6292
|
* Using {@link Application.menubar} is not supported and may result in
|
|
6432
6293
|
* visual glitches.
|
|
6433
6294
|
*/
|
|
6434
|
-
export const AdwApplicationWindow =
|
|
6435
|
-
Root: "AdwApplicationWindow.Root",
|
|
6436
|
-
Content: "AdwApplicationWindow.Content",
|
|
6437
|
-
};
|
|
6295
|
+
export const AdwApplicationWindow = "AdwApplicationWindow";
|
|
6438
6296
|
/**
|
|
6439
6297
|
* A widget displaying an image, with a generated fallback.
|
|
6440
6298
|
*
|
|
@@ -6570,12 +6428,7 @@ export const AdwBin = "AdwBin";
|
|
|
6570
6428
|
* “bottom-bar”. Specifying “content” or omitting the child type results in
|
|
6571
6429
|
* setting the content child.
|
|
6572
6430
|
*/
|
|
6573
|
-
export const AdwBottomSheet =
|
|
6574
|
-
Root: "AdwBottomSheet.Root",
|
|
6575
|
-
BottomBar: "AdwBottomSheet.BottomBar",
|
|
6576
|
-
Content: "AdwBottomSheet.Content",
|
|
6577
|
-
Sheet: "AdwBottomSheet.Sheet",
|
|
6578
|
-
};
|
|
6431
|
+
export const AdwBottomSheet = "AdwBottomSheet";
|
|
6579
6432
|
/**
|
|
6580
6433
|
* A widget that changes layout based on available size.
|
|
6581
6434
|
*
|
|
@@ -6959,12 +6812,7 @@ export const AdwComboRow = "AdwComboRow";
|
|
|
6959
6812
|
* minimum size, and {@link Widget.width-request} and
|
|
6960
6813
|
* {@link Widget.height-request} properties must be set manually.
|
|
6961
6814
|
*/
|
|
6962
|
-
export const AdwDialog =
|
|
6963
|
-
Root: "AdwDialog.Root",
|
|
6964
|
-
Child: "AdwDialog.Child",
|
|
6965
|
-
DefaultWidget: "AdwDialog.DefaultWidget",
|
|
6966
|
-
FocusWidget: "AdwDialog.FocusWidget",
|
|
6967
|
-
};
|
|
6815
|
+
export const AdwDialog = "AdwDialog";
|
|
6968
6816
|
/**
|
|
6969
6817
|
* A {@link ListBoxRow} with an embedded text entry.
|
|
6970
6818
|
*
|
|
@@ -7089,12 +6937,7 @@ export const AdwExpanderRow = "AdwExpanderRow";
|
|
|
7089
6937
|
* `AdwFlap` has a single CSS node with name `flap`. The node will get the style
|
|
7090
6938
|
* classes `.folded` when it is folded, and `.unfolded` when it's not.
|
|
7091
6939
|
*/
|
|
7092
|
-
export const AdwFlap =
|
|
7093
|
-
Root: "AdwFlap.Root",
|
|
7094
|
-
Content: "AdwFlap.Content",
|
|
7095
|
-
Flap: "AdwFlap.Flap",
|
|
7096
|
-
Separator: "AdwFlap.Separator",
|
|
7097
|
-
};
|
|
6940
|
+
export const AdwFlap = "AdwFlap";
|
|
7098
6941
|
/**
|
|
7099
6942
|
* A title bar widget.
|
|
7100
6943
|
*
|
|
@@ -7188,10 +7031,7 @@ export const AdwFlap = {
|
|
|
7188
7031
|
*
|
|
7189
7032
|
* `AdwHeaderBar` uses the `GTK_ACCESSIBLE_ROLE_GROUP` role.
|
|
7190
7033
|
*/
|
|
7191
|
-
export const AdwHeaderBar =
|
|
7192
|
-
Root: "AdwHeaderBar.Root",
|
|
7193
|
-
TitleWidget: "AdwHeaderBar.TitleWidget",
|
|
7194
|
-
};
|
|
7034
|
+
export const AdwHeaderBar = "AdwHeaderBar";
|
|
7195
7035
|
/**
|
|
7196
7036
|
* A view switcher that uses a toggle group.
|
|
7197
7037
|
*
|
|
@@ -7259,10 +7099,7 @@ export const AdwLayoutSlot = "AdwLayoutSlot";
|
|
|
7259
7099
|
* style classes `.folded` when it is folded, `.unfolded` when it's not, or none
|
|
7260
7100
|
* if it hasn't computed its fold yet.
|
|
7261
7101
|
*/
|
|
7262
|
-
export const AdwLeaflet =
|
|
7263
|
-
Root: "AdwLeaflet.Root",
|
|
7264
|
-
VisibleChild: "AdwLeaflet.VisibleChild",
|
|
7265
|
-
};
|
|
7102
|
+
export const AdwLeaflet = "AdwLeaflet";
|
|
7266
7103
|
/**
|
|
7267
7104
|
* A dialog presenting a message or a question.
|
|
7268
7105
|
*
|
|
@@ -7391,10 +7228,7 @@ export const AdwLeaflet = {
|
|
|
7391
7228
|
*
|
|
7392
7229
|
* `AdwMessageDialog` uses the `GTK_ACCESSIBLE_ROLE_DIALOG` role.
|
|
7393
7230
|
*/
|
|
7394
|
-
export const AdwMessageDialog =
|
|
7395
|
-
Root: "AdwMessageDialog.Root",
|
|
7396
|
-
ExtraChild: "AdwMessageDialog.ExtraChild",
|
|
7397
|
-
};
|
|
7231
|
+
export const AdwMessageDialog = "AdwMessageDialog";
|
|
7398
7232
|
/**
|
|
7399
7233
|
* A widget for switching between different layouts.
|
|
7400
7234
|
*
|
|
@@ -7919,11 +7753,7 @@ export const AdwNavigationView = "AdwNavigationView";
|
|
|
7919
7753
|
*
|
|
7920
7754
|
* `AdwOverlaySplitView` uses the `GTK_ACCESSIBLE_ROLE_GROUP` role.
|
|
7921
7755
|
*/
|
|
7922
|
-
export const AdwOverlaySplitView =
|
|
7923
|
-
Root: "AdwOverlaySplitView.Root",
|
|
7924
|
-
Content: "AdwOverlaySplitView.Content",
|
|
7925
|
-
Sidebar: "AdwOverlaySplitView.Sidebar",
|
|
7926
|
-
};
|
|
7756
|
+
export const AdwOverlaySplitView = "AdwOverlaySplitView";
|
|
7927
7757
|
/**
|
|
7928
7758
|
* A {@link AdwEntryRow} tailored for entering secrets.
|
|
7929
7759
|
*
|
|
@@ -7962,10 +7792,7 @@ export const AdwPasswordEntryRow = "AdwPasswordEntryRow";
|
|
|
7962
7792
|
* `AdwPreferencesDialog` has a main CSS node with the name `dialog` and the
|
|
7963
7793
|
* style class `.preferences`.
|
|
7964
7794
|
*/
|
|
7965
|
-
export const AdwPreferencesDialog =
|
|
7966
|
-
Root: "AdwPreferencesDialog.Root",
|
|
7967
|
-
VisiblePage: "AdwPreferencesDialog.VisiblePage",
|
|
7968
|
-
};
|
|
7795
|
+
export const AdwPreferencesDialog = "AdwPreferencesDialog";
|
|
7969
7796
|
/**
|
|
7970
7797
|
* A group of preference rows.
|
|
7971
7798
|
*
|
|
@@ -8001,10 +7828,7 @@ export const AdwPreferencesDialog = {
|
|
|
8001
7828
|
*
|
|
8002
7829
|
* `AdwPreferencesGroup` uses the `GTK_ACCESSIBLE_ROLE_GROUP` role.
|
|
8003
7830
|
*/
|
|
8004
|
-
export const AdwPreferencesGroup =
|
|
8005
|
-
Root: "AdwPreferencesGroup.Root",
|
|
8006
|
-
HeaderSuffix: "AdwPreferencesGroup.HeaderSuffix",
|
|
8007
|
-
};
|
|
7831
|
+
export const AdwPreferencesGroup = "AdwPreferencesGroup";
|
|
8008
7832
|
/**
|
|
8009
7833
|
* A page from {@link AdwPreferencesDialog}.
|
|
8010
7834
|
*
|
|
@@ -8047,10 +7871,7 @@ export const AdwPreferencesRow = "AdwPreferencesRow";
|
|
|
8047
7871
|
* `AdwPreferencesWindow` has a main CSS node with the name `window` and the
|
|
8048
7872
|
* style class `.preferences`.
|
|
8049
7873
|
*/
|
|
8050
|
-
export const AdwPreferencesWindow =
|
|
8051
|
-
Root: "AdwPreferencesWindow.Root",
|
|
8052
|
-
VisiblePage: "AdwPreferencesWindow.VisiblePage",
|
|
8053
|
-
};
|
|
7874
|
+
export const AdwPreferencesWindow = "AdwPreferencesWindow";
|
|
8054
7875
|
/**
|
|
8055
7876
|
* A widget that displays a keyboard shortcut.
|
|
8056
7877
|
*
|
|
@@ -8299,11 +8120,7 @@ export const AdwSpinRow = "AdwSpinRow";
|
|
|
8299
8120
|
*
|
|
8300
8121
|
* `AdwSplitButton` uses the `GTK_ACCESSIBLE_ROLE_GROUP` role.
|
|
8301
8122
|
*/
|
|
8302
|
-
export const AdwSplitButton =
|
|
8303
|
-
Root: "AdwSplitButton.Root",
|
|
8304
|
-
Child: "AdwSplitButton.Child",
|
|
8305
|
-
Popover: "AdwSplitButton.Popover",
|
|
8306
|
-
};
|
|
8123
|
+
export const AdwSplitButton = "AdwSplitButton";
|
|
8307
8124
|
/**
|
|
8308
8125
|
* A best fit container.
|
|
8309
8126
|
*
|
|
@@ -8407,11 +8224,7 @@ export const AdwSwitchRow = "AdwSwitchRow";
|
|
|
8407
8224
|
*
|
|
8408
8225
|
* 
|
|
8409
8226
|
*/
|
|
8410
|
-
export const AdwTabBar =
|
|
8411
|
-
Root: "AdwTabBar.Root",
|
|
8412
|
-
EndActionWidget: "AdwTabBar.EndActionWidget",
|
|
8413
|
-
StartActionWidget: "AdwTabBar.StartActionWidget",
|
|
8414
|
-
};
|
|
8227
|
+
export const AdwTabBar = "AdwTabBar";
|
|
8415
8228
|
/**
|
|
8416
8229
|
* A button that displays the number of {@link AdwTabView} pages.
|
|
8417
8230
|
*
|
|
@@ -8751,21 +8564,7 @@ export const AdwToggleGroup = "AdwToggleGroup";
|
|
|
8751
8564
|
*
|
|
8752
8565
|
* `AdwToolbarView` uses the `GTK_ACCESSIBLE_ROLE_GROUP` role.
|
|
8753
8566
|
*/
|
|
8754
|
-
export const AdwToolbarView =
|
|
8755
|
-
Root: "AdwToolbarView.Root",
|
|
8756
|
-
Content: "AdwToolbarView.Content",
|
|
8757
|
-
Top: "AdwToolbarView.Top",
|
|
8758
|
-
Bottom: "AdwToolbarView.Bottom",
|
|
8759
|
-
};
|
|
8760
|
-
function AdwViewStackRoot(props) {
|
|
8761
|
-
return createElement("AdwViewStack.Root", props);
|
|
8762
|
-
}
|
|
8763
|
-
function AdwViewStackPage(props) {
|
|
8764
|
-
return createElement("AdwViewStack.Page", props);
|
|
8765
|
-
}
|
|
8766
|
-
function AdwViewStackVisibleChild(props) {
|
|
8767
|
-
return createElement("AdwViewStack.VisibleChild", props);
|
|
8768
|
-
}
|
|
8567
|
+
export const AdwToolbarView = "AdwToolbarView";
|
|
8769
8568
|
/**
|
|
8770
8569
|
* A view container for {@link AdwViewSwitcher}.
|
|
8771
8570
|
*
|
|
@@ -8824,11 +8623,7 @@ function AdwViewStackVisibleChild(props) {
|
|
|
8824
8623
|
* `AdwViewStack` uses the `GTK_ACCESSIBLE_ROLE_TAB_PANEL` for the stack pages
|
|
8825
8624
|
* which are the accessible parent objects of the child widgets.
|
|
8826
8625
|
*/
|
|
8827
|
-
export const AdwViewStack =
|
|
8828
|
-
Root: AdwViewStackRoot,
|
|
8829
|
-
Page: AdwViewStackPage,
|
|
8830
|
-
VisibleChild: AdwViewStackVisibleChild,
|
|
8831
|
-
};
|
|
8626
|
+
export const AdwViewStack = "AdwViewStack";
|
|
8832
8627
|
/**
|
|
8833
8628
|
* An adaptive view switcher.
|
|
8834
8629
|
*
|
|
@@ -9102,10 +8897,7 @@ export const AdwWrapBox = "AdwWrapBox";
|
|
|
9102
8897
|
* how to convert data from their {@link GtkSourceCompletionProposal} to content for
|
|
9103
8898
|
* the `GtkSourceCompletionCell`.
|
|
9104
8899
|
*/
|
|
9105
|
-
export const GtkSourceCompletionCell =
|
|
9106
|
-
Root: "GtkSourceCompletionCell.Root",
|
|
9107
|
-
Widget: "GtkSourceCompletionCell.Widget",
|
|
9108
|
-
};
|
|
8900
|
+
export const GtkSourceCompletionCell = "GtkSourceCompletionCell";
|
|
9109
8901
|
/**
|
|
9110
8902
|
* Gutter object for {@link GtkSourceView}.
|
|
9111
8903
|
*
|
|
@@ -9311,10 +9103,7 @@ export const GtkSourceStyleSchemePreview = "GtkSourceStyleSchemePreview";
|
|
|
9311
9103
|
* the default font set in CSS.
|
|
9312
9104
|
*/
|
|
9313
9105
|
export const GtkSourceView = "GtkSourceView";
|
|
9314
|
-
export const VteTerminal =
|
|
9315
|
-
Root: "VteTerminal.Root",
|
|
9316
|
-
ContextMenu: "VteTerminal.ContextMenu",
|
|
9317
|
-
};
|
|
9106
|
+
export const VteTerminal = "VteTerminal";
|
|
9318
9107
|
/**
|
|
9319
9108
|
* The central class of the WPE WebKit and WebKitGTK APIs.
|
|
9320
9109
|
*
|
|
@@ -9329,27 +9118,3 @@ export const VteTerminal = {
|
|
|
9329
9118
|
*/
|
|
9330
9119
|
export const WebKitWebView = "WebKitWebView";
|
|
9331
9120
|
export const WebKitWebViewBase = "WebKitWebViewBase";
|
|
9332
|
-
/**
|
|
9333
|
-
* Sets the application-wide menu bar.
|
|
9334
|
-
* The menu will appear in the window's title bar on supported platforms.
|
|
9335
|
-
* Use Menu.Item, Menu.Section, and Menu.Submenu as children.
|
|
9336
|
-
*/
|
|
9337
|
-
export const ApplicationMenu = "ApplicationMenu";
|
|
9338
|
-
function MenuItem(props) {
|
|
9339
|
-
return createElement("Menu.Item", props);
|
|
9340
|
-
}
|
|
9341
|
-
function MenuSection(props) {
|
|
9342
|
-
return createElement("Menu.Section", props);
|
|
9343
|
-
}
|
|
9344
|
-
function MenuSubmenu(props) {
|
|
9345
|
-
return createElement("Menu.Submenu", props);
|
|
9346
|
-
}
|
|
9347
|
-
/**
|
|
9348
|
-
* Declarative menu builder for use with PopoverMenu and ApplicationMenu.
|
|
9349
|
-
* Use Menu.Item for action items, Menu.Section for groups, Menu.Submenu for nested menus.
|
|
9350
|
-
*/
|
|
9351
|
-
export const Menu = {
|
|
9352
|
-
Item: MenuItem,
|
|
9353
|
-
Section: MenuSection,
|
|
9354
|
-
Submenu: MenuSubmenu,
|
|
9355
|
-
};
|