@gtkx/react 0.21.0 → 1.0.0-rc.2
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 +137 -34
- package/dist/adw/config.d.ts +2 -0
- package/dist/adw/config.d.ts.map +1 -0
- package/dist/adw/config.js +2 -0
- package/dist/adw/config.js.map +1 -0
- package/dist/adw/dialog.d.ts +8 -0
- package/dist/adw/dialog.d.ts.map +1 -0
- package/dist/adw/dialog.js +25 -0
- package/dist/adw/dialog.js.map +1 -0
- package/dist/adw/element-behaviors.d.ts +2 -0
- package/dist/adw/element-behaviors.d.ts.map +1 -0
- package/dist/adw/element-behaviors.js +299 -0
- package/dist/adw/element-behaviors.js.map +1 -0
- package/dist/adw/element-config.d.ts +9 -0
- package/dist/adw/element-config.d.ts.map +1 -0
- package/dist/adw/element-config.js +137 -0
- package/dist/adw/element-config.js.map +1 -0
- package/dist/adw/index.d.ts +4 -0
- package/dist/adw/index.d.ts.map +1 -0
- package/dist/adw/index.js +3 -0
- package/dist/adw/index.js.map +1 -0
- package/dist/adw/prop-types.d.ts +29 -0
- package/dist/adw/prop-types.d.ts.map +1 -0
- package/dist/adw/prop-types.js +2 -0
- package/dist/adw/prop-types.js.map +1 -0
- package/dist/bootstrap.d.ts +2 -0
- package/dist/bootstrap.d.ts.map +1 -0
- package/dist/bootstrap.js +5 -0
- package/dist/bootstrap.js.map +1 -0
- package/dist/components/application.d.ts +10 -0
- package/dist/components/application.d.ts.map +1 -0
- package/dist/components/application.js +39 -0
- package/dist/components/application.js.map +1 -0
- package/dist/components/element.d.ts +6 -0
- package/dist/components/element.d.ts.map +1 -0
- package/dist/components/element.js +29 -0
- package/dist/components/element.js.map +1 -0
- package/dist/components/window.d.ts +8 -0
- package/dist/components/window.d.ts.map +1 -0
- package/dist/components/window.js +22 -0
- package/dist/components/window.js.map +1 -0
- package/dist/config.d.ts +4 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +3 -0
- package/dist/config.js.map +1 -0
- package/dist/element-behaviors.d.ts +2 -0
- package/dist/element-behaviors.d.ts.map +1 -0
- package/dist/element-behaviors.js +348 -0
- package/dist/element-behaviors.js.map +1 -0
- package/dist/element-config.d.ts +10 -0
- package/dist/element-config.d.ts.map +1 -0
- package/dist/element-config.js +146 -0
- package/dist/element-config.js.map +1 -0
- package/dist/hooks/use-application.d.ts +9 -0
- package/dist/hooks/use-application.d.ts.map +1 -0
- package/dist/hooks/use-application.js +14 -0
- package/dist/hooks/use-application.js.map +1 -0
- package/dist/hooks/use-bind-setting.d.ts +23 -0
- package/dist/hooks/use-bind-setting.d.ts.map +1 -0
- package/dist/hooks/use-bind-setting.js +30 -0
- package/dist/hooks/use-bind-setting.js.map +1 -0
- package/dist/hooks/use-merged-refs.d.ts +8 -0
- package/dist/hooks/use-merged-refs.d.ts.map +1 -0
- package/dist/hooks/use-merged-refs.js +48 -0
- package/dist/hooks/use-merged-refs.js.map +1 -0
- package/dist/hooks/use-object-value.d.ts +5 -0
- package/dist/hooks/use-object-value.d.ts.map +1 -0
- package/dist/hooks/use-object-value.js +29 -0
- package/dist/hooks/use-object-value.js.map +1 -0
- package/dist/hooks/use-parent-window.d.ts +9 -0
- package/dist/hooks/use-parent-window.d.ts.map +1 -0
- package/dist/hooks/use-parent-window.js +8 -0
- package/dist/hooks/use-parent-window.js.map +1 -0
- package/dist/hooks/use-property.d.ts +14 -0
- package/dist/hooks/use-property.d.ts.map +1 -0
- package/dist/hooks/use-property.js +14 -0
- package/dist/hooks/use-property.js.map +1 -0
- package/dist/hooks/use-setting.d.ts +14 -0
- package/dist/hooks/use-setting.d.ts.map +1 -0
- package/dist/hooks/use-setting.js +20 -0
- package/dist/hooks/use-setting.js.map +1 -0
- package/dist/hooks/use-signal.d.ts +24 -0
- package/dist/hooks/use-signal.d.ts.map +1 -0
- package/dist/hooks/use-signal.js +31 -0
- package/dist/hooks/use-signal.js.map +1 -0
- package/dist/index.d.ts +13 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -7
- package/dist/index.js.map +1 -1
- package/dist/internal.d.ts +13 -0
- package/dist/internal.d.ts.map +1 -0
- package/dist/internal.js +12 -0
- package/dist/internal.js.map +1 -0
- package/dist/prop-types.d.ts +110 -0
- package/dist/prop-types.d.ts.map +1 -0
- package/dist/prop-types.js +2 -0
- package/dist/prop-types.js.map +1 -0
- package/dist/reconciler/apply-props.d.ts +11 -0
- package/dist/reconciler/apply-props.d.ts.map +1 -0
- package/dist/reconciler/apply-props.js +190 -0
- package/dist/reconciler/apply-props.js.map +1 -0
- package/dist/reconciler/behaviors.d.ts +59 -0
- package/dist/reconciler/behaviors.d.ts.map +1 -0
- package/dist/reconciler/behaviors.js +172 -0
- package/dist/reconciler/behaviors.js.map +1 -0
- package/dist/reconciler/child-routing.d.ts +5 -0
- package/dist/reconciler/child-routing.d.ts.map +1 -0
- package/dist/reconciler/child-routing.js +156 -0
- package/dist/reconciler/child-routing.js.map +1 -0
- package/dist/reconciler/host-config.d.ts +9 -0
- package/dist/reconciler/host-config.d.ts.map +1 -0
- package/dist/reconciler/host-config.js +214 -0
- package/dist/reconciler/host-config.js.map +1 -0
- package/dist/reconciler/instance.d.ts +5 -0
- package/dist/reconciler/instance.d.ts.map +1 -0
- package/dist/reconciler/instance.js +49 -0
- package/dist/reconciler/instance.js.map +1 -0
- package/dist/reconciler/metadata.d.ts +17 -0
- package/dist/reconciler/metadata.d.ts.map +1 -0
- package/dist/reconciler/metadata.js +82 -0
- package/dist/reconciler/metadata.js.map +1 -0
- package/dist/reconciler/node.d.ts +76 -0
- package/dist/reconciler/node.d.ts.map +1 -0
- package/dist/reconciler/node.js +53 -0
- package/dist/reconciler/node.js.map +1 -0
- package/dist/reconciler/placement.d.ts +5 -0
- package/dist/reconciler/placement.d.ts.map +1 -0
- package/dist/reconciler/placement.js +175 -0
- package/dist/reconciler/placement.js.map +1 -0
- package/dist/reconciler/registry.d.ts +92 -0
- package/dist/reconciler/registry.d.ts.map +1 -0
- package/dist/reconciler/registry.js +64 -0
- package/dist/reconciler/registry.js.map +1 -0
- package/dist/reconciler/root-element.d.ts +11 -0
- package/dist/reconciler/root-element.d.ts.map +1 -0
- package/dist/reconciler/root-element.js +7 -0
- package/dist/reconciler/root-element.js.map +1 -0
- package/dist/reconciler/root.d.ts +56 -0
- package/dist/reconciler/root.d.ts.map +1 -0
- package/dist/reconciler/root.js +109 -0
- package/dist/reconciler/root.js.map +1 -0
- package/dist/reconciler/signals.d.ts +10 -0
- package/dist/reconciler/signals.d.ts.map +1 -0
- package/dist/reconciler/signals.js +70 -0
- package/dist/reconciler/signals.js.map +1 -0
- package/dist/reconciler/text.d.ts +19 -0
- package/dist/reconciler/text.d.ts.map +1 -0
- package/dist/reconciler/text.js +276 -0
- package/dist/reconciler/text.js.map +1 -0
- package/dist/utils/accessible-metadata.d.ts +12 -0
- package/dist/utils/accessible-metadata.d.ts.map +1 -0
- package/dist/utils/accessible-metadata.js +25 -0
- package/dist/utils/accessible-metadata.js.map +1 -0
- package/dist/utils/accessible-props.d.ts +60 -0
- package/dist/utils/accessible-props.d.ts.map +1 -0
- package/dist/utils/accessible-props.js +181 -0
- package/dist/utils/accessible-props.js.map +1 -0
- package/dist/utils/ref-prop.d.ts +15 -0
- package/dist/utils/ref-prop.d.ts.map +1 -0
- package/dist/utils/ref-prop.js +18 -0
- package/dist/utils/ref-prop.js.map +1 -0
- package/dist/utils/settings.d.ts +17 -0
- package/dist/utils/settings.d.ts.map +1 -0
- package/dist/utils/settings.js +37 -0
- package/dist/utils/settings.js.map +1 -0
- package/dist/utils/variant.d.ts +57 -0
- package/dist/utils/variant.d.ts.map +1 -0
- package/dist/utils/variant.js +197 -0
- package/dist/utils/variant.js.map +1 -0
- package/env.d.ts +9 -0
- package/package.json +49 -10
- package/src/adw/config.ts +1 -0
- package/src/adw/dialog.tsx +35 -0
- package/src/adw/element-behaviors.ts +379 -0
- package/src/adw/element-config.ts +140 -0
- package/src/adw/index.ts +4 -0
- package/src/adw/prop-types.ts +42 -0
- package/src/bootstrap.ts +5 -0
- package/src/components/application.tsx +62 -0
- package/src/components/element.tsx +47 -0
- package/src/components/window.tsx +35 -0
- package/src/config.ts +3 -0
- package/src/element-behaviors.ts +424 -0
- package/src/element-config.ts +148 -0
- package/src/env.d.ts +1 -0
- package/src/hooks/use-application.ts +19 -0
- package/src/hooks/use-bind-setting.ts +51 -0
- package/src/hooks/use-merged-refs.ts +64 -0
- package/src/hooks/use-object-value.ts +54 -0
- package/src/hooks/use-parent-window.ts +11 -0
- package/src/hooks/use-property.ts +23 -0
- package/src/hooks/use-setting.ts +34 -0
- package/src/hooks/use-signal.ts +60 -0
- package/src/index.ts +14 -14
- package/src/internal.ts +13 -0
- package/src/prop-types.ts +142 -0
- package/src/reconciler/apply-props.ts +265 -0
- package/src/reconciler/behaviors.ts +324 -0
- package/src/reconciler/child-routing.ts +202 -0
- package/src/reconciler/host-config.ts +278 -0
- package/src/reconciler/instance.ts +82 -0
- package/src/reconciler/metadata.ts +119 -0
- package/src/reconciler/node.ts +161 -0
- package/src/reconciler/placement.ts +255 -0
- package/src/reconciler/registry.ts +161 -0
- package/src/reconciler/root-element.ts +12 -0
- package/src/reconciler/root.ts +175 -0
- package/src/reconciler/signals.ts +113 -0
- package/src/reconciler/text.ts +407 -0
- package/src/utils/accessible-metadata.ts +31 -0
- package/src/utils/accessible-props.ts +279 -0
- package/src/utils/ref-prop.ts +30 -0
- package/src/utils/settings.ts +69 -0
- package/src/utils/variant.ts +368 -0
- package/dist/components/compound.d.ts +0 -40
- package/dist/components/compound.d.ts.map +0 -1
- package/dist/components/compound.js +0 -46
- package/dist/components/compound.js.map +0 -1
- package/dist/components/list.d.ts +0 -75
- package/dist/components/list.d.ts.map +0 -1
- package/dist/components/list.js +0 -81
- package/dist/components/list.js.map +0 -1
- package/dist/components/slot-widget.d.ts +0 -15
- package/dist/components/slot-widget.d.ts.map +0 -1
- package/dist/components/slot-widget.js +0 -37
- package/dist/components/slot-widget.js.map +0 -1
- package/dist/errors.d.ts +0 -15
- package/dist/errors.d.ts.map +0 -1
- package/dist/errors.js +0 -44
- package/dist/errors.js.map +0 -1
- package/dist/factory.d.ts +0 -5
- package/dist/factory.d.ts.map +0 -1
- package/dist/factory.js +0 -37
- package/dist/factory.js.map +0 -1
- package/dist/generated/compounds.d.ts +0 -2672
- package/dist/generated/compounds.d.ts.map +0 -1
- package/dist/generated/compounds.js +0 -2624
- package/dist/generated/compounds.js.map +0 -1
- package/dist/generated/internal.d.ts +0 -16
- package/dist/generated/internal.d.ts.map +0 -1
- package/dist/generated/internal.js +0 -3638
- package/dist/generated/internal.js.map +0 -1
- package/dist/generated/jsx.d.ts +0 -17074
- package/dist/generated/jsx.d.ts.map +0 -1
- package/dist/generated/jsx.js +0 -6715
- package/dist/generated/jsx.js.map +0 -1
- package/dist/generated/registry.d.ts +0 -5
- package/dist/generated/registry.d.ts.map +0 -1
- package/dist/generated/registry.js +0 -13
- package/dist/generated/registry.js.map +0 -1
- package/dist/host-config.d.ts +0 -24
- package/dist/host-config.d.ts.map +0 -1
- package/dist/host-config.js +0 -172
- package/dist/host-config.js.map +0 -1
- package/dist/jsx.d.ts +0 -974
- package/dist/jsx.d.ts.map +0 -1
- package/dist/jsx.js +0 -8
- package/dist/jsx.js.map +0 -1
- package/dist/metadata.d.ts +0 -5
- package/dist/metadata.d.ts.map +0 -1
- package/dist/metadata.js +0 -33
- package/dist/metadata.js.map +0 -1
- package/dist/node.d.ts +0 -25
- package/dist/node.d.ts.map +0 -1
- package/dist/node.js +0 -85
- package/dist/node.js.map +0 -1
- package/dist/nodes/adjustable.d.ts +0 -11
- package/dist/nodes/adjustable.d.ts.map +0 -1
- package/dist/nodes/adjustable.js +0 -46
- package/dist/nodes/adjustable.js.map +0 -1
- package/dist/nodes/alert-dialog-response.d.ts +0 -15
- package/dist/nodes/alert-dialog-response.d.ts.map +0 -1
- package/dist/nodes/alert-dialog-response.js +0 -61
- package/dist/nodes/alert-dialog-response.js.map +0 -1
- package/dist/nodes/alert-dialog.d.ts +0 -14
- package/dist/nodes/alert-dialog.d.ts.map +0 -1
- package/dist/nodes/alert-dialog.js +0 -41
- package/dist/nodes/alert-dialog.js.map +0 -1
- package/dist/nodes/animation.d.ts +0 -39
- package/dist/nodes/animation.d.ts.map +0 -1
- package/dist/nodes/animation.js +0 -326
- package/dist/nodes/animation.js.map +0 -1
- package/dist/nodes/application.d.ts +0 -12
- package/dist/nodes/application.d.ts.map +0 -1
- package/dist/nodes/application.js +0 -51
- package/dist/nodes/application.js.map +0 -1
- package/dist/nodes/calendar.d.ts +0 -18
- package/dist/nodes/calendar.d.ts.map +0 -1
- package/dist/nodes/calendar.js +0 -28
- package/dist/nodes/calendar.js.map +0 -1
- package/dist/nodes/color-dialog-button.d.ts +0 -15
- package/dist/nodes/color-dialog-button.d.ts.map +0 -1
- package/dist/nodes/color-dialog-button.js +0 -43
- package/dist/nodes/color-dialog-button.js.map +0 -1
- package/dist/nodes/column-view-column.d.ts +0 -36
- package/dist/nodes/column-view-column.d.ts.map +0 -1
- package/dist/nodes/column-view-column.js +0 -168
- package/dist/nodes/column-view-column.js.map +0 -1
- package/dist/nodes/container-slot.d.ts +0 -18
- package/dist/nodes/container-slot.d.ts.map +0 -1
- package/dist/nodes/container-slot.js +0 -81
- package/dist/nodes/container-slot.js.map +0 -1
- package/dist/nodes/dialog.d.ts +0 -10
- package/dist/nodes/dialog.d.ts.map +0 -1
- package/dist/nodes/dialog.js +0 -20
- package/dist/nodes/dialog.js.map +0 -1
- package/dist/nodes/drawing-area.d.ts +0 -19
- package/dist/nodes/drawing-area.d.ts.map +0 -1
- package/dist/nodes/drawing-area.js +0 -40
- package/dist/nodes/drawing-area.js.map +0 -1
- package/dist/nodes/event-controller.d.ts +0 -15
- package/dist/nodes/event-controller.d.ts.map +0 -1
- package/dist/nodes/event-controller.js +0 -73
- package/dist/nodes/event-controller.js.map +0 -1
- package/dist/nodes/fixed-child.d.ts +0 -19
- package/dist/nodes/fixed-child.d.ts.map +0 -1
- package/dist/nodes/fixed-child.js +0 -99
- package/dist/nodes/fixed-child.js.map +0 -1
- package/dist/nodes/font-dialog-button.d.ts +0 -15
- package/dist/nodes/font-dialog-button.d.ts.map +0 -1
- package/dist/nodes/font-dialog-button.js +0 -76
- package/dist/nodes/font-dialog-button.js.map +0 -1
- package/dist/nodes/grid-child.d.ts +0 -19
- package/dist/nodes/grid-child.d.ts.map +0 -1
- package/dist/nodes/grid-child.js +0 -94
- package/dist/nodes/grid-child.js.map +0 -1
- package/dist/nodes/internal/accessible.d.ts +0 -5
- package/dist/nodes/internal/accessible.d.ts.map +0 -1
- package/dist/nodes/internal/accessible.js +0 -119
- package/dist/nodes/internal/accessible.js.map +0 -1
- package/dist/nodes/internal/bound-item.d.ts +0 -4
- package/dist/nodes/internal/bound-item.d.ts.map +0 -1
- package/dist/nodes/internal/bound-item.js +0 -2
- package/dist/nodes/internal/bound-item.js.map +0 -1
- package/dist/nodes/internal/construct.d.ts +0 -3
- package/dist/nodes/internal/construct.d.ts.map +0 -1
- package/dist/nodes/internal/construct.js +0 -44
- package/dist/nodes/internal/construct.js.map +0 -1
- package/dist/nodes/internal/predicates.d.ts +0 -51
- package/dist/nodes/internal/predicates.d.ts.map +0 -1
- package/dist/nodes/internal/predicates.js +0 -36
- package/dist/nodes/internal/predicates.js.map +0 -1
- package/dist/nodes/internal/props.d.ts +0 -6
- package/dist/nodes/internal/props.d.ts.map +0 -1
- package/dist/nodes/internal/props.js +0 -43
- package/dist/nodes/internal/props.js.map +0 -1
- package/dist/nodes/internal/signal-store.d.ts +0 -22
- package/dist/nodes/internal/signal-store.d.ts.map +0 -1
- package/dist/nodes/internal/signal-store.js +0 -98
- package/dist/nodes/internal/signal-store.js.map +0 -1
- package/dist/nodes/internal/text-buffer-controller.d.ts +0 -40
- package/dist/nodes/internal/text-buffer-controller.d.ts.map +0 -1
- package/dist/nodes/internal/text-buffer-controller.js +0 -327
- package/dist/nodes/internal/text-buffer-controller.js.map +0 -1
- package/dist/nodes/internal/widget.d.ts +0 -8
- package/dist/nodes/internal/widget.d.ts.map +0 -1
- package/dist/nodes/internal/widget.js +0 -68
- package/dist/nodes/internal/widget.js.map +0 -1
- package/dist/nodes/level-bar.d.ts +0 -12
- package/dist/nodes/level-bar.d.ts.map +0 -1
- package/dist/nodes/level-bar.js +0 -24
- package/dist/nodes/level-bar.js.map +0 -1
- package/dist/nodes/list-item-node.d.ts +0 -12
- package/dist/nodes/list-item-node.d.ts.map +0 -1
- package/dist/nodes/list-item-node.js +0 -45
- package/dist/nodes/list-item-node.js.map +0 -1
- package/dist/nodes/list.d.ts +0 -100
- package/dist/nodes/list.d.ts.map +0 -1
- package/dist/nodes/list.js +0 -950
- package/dist/nodes/list.js.map +0 -1
- package/dist/nodes/menu.d.ts +0 -7
- package/dist/nodes/menu.d.ts.map +0 -1
- package/dist/nodes/menu.js +0 -20
- package/dist/nodes/menu.js.map +0 -1
- package/dist/nodes/models/menu.d.ts +0 -47
- package/dist/nodes/models/menu.d.ts.map +0 -1
- package/dist/nodes/models/menu.js +0 -240
- package/dist/nodes/models/menu.js.map +0 -1
- package/dist/nodes/navigation-page.d.ts +0 -19
- package/dist/nodes/navigation-page.d.ts.map +0 -1
- package/dist/nodes/navigation-page.js +0 -129
- package/dist/nodes/navigation-page.js.map +0 -1
- package/dist/nodes/navigation-view.d.ts +0 -19
- package/dist/nodes/navigation-view.d.ts.map +0 -1
- package/dist/nodes/navigation-view.js +0 -51
- package/dist/nodes/navigation-view.js.map +0 -1
- package/dist/nodes/notebook-page-tab.d.ts +0 -15
- package/dist/nodes/notebook-page-tab.d.ts.map +0 -1
- package/dist/nodes/notebook-page-tab.js +0 -40
- package/dist/nodes/notebook-page-tab.js.map +0 -1
- package/dist/nodes/notebook-page.d.ts +0 -29
- package/dist/nodes/notebook-page.d.ts.map +0 -1
- package/dist/nodes/notebook-page.js +0 -151
- package/dist/nodes/notebook-page.js.map +0 -1
- package/dist/nodes/notebook.d.ts +0 -16
- package/dist/nodes/notebook.d.ts.map +0 -1
- package/dist/nodes/notebook.js +0 -31
- package/dist/nodes/notebook.js.map +0 -1
- package/dist/nodes/overlay-child.d.ts +0 -20
- package/dist/nodes/overlay-child.d.ts.map +0 -1
- package/dist/nodes/overlay-child.js +0 -109
- package/dist/nodes/overlay-child.js.map +0 -1
- package/dist/nodes/popover-menu.d.ts +0 -19
- package/dist/nodes/popover-menu.d.ts.map +0 -1
- package/dist/nodes/popover-menu.js +0 -54
- package/dist/nodes/popover-menu.js.map +0 -1
- package/dist/nodes/scale.d.ts +0 -10
- package/dist/nodes/scale.d.ts.map +0 -1
- package/dist/nodes/scale.js +0 -19
- package/dist/nodes/scale.js.map +0 -1
- package/dist/nodes/scrolled-window.d.ts +0 -11
- package/dist/nodes/scrolled-window.d.ts.map +0 -1
- package/dist/nodes/scrolled-window.js +0 -18
- package/dist/nodes/scrolled-window.js.map +0 -1
- package/dist/nodes/search-bar.d.ts +0 -11
- package/dist/nodes/search-bar.d.ts.map +0 -1
- package/dist/nodes/search-bar.js +0 -16
- package/dist/nodes/search-bar.js.map +0 -1
- package/dist/nodes/shortcut.d.ts +0 -19
- package/dist/nodes/shortcut.d.ts.map +0 -1
- package/dist/nodes/shortcut.js +0 -72
- package/dist/nodes/shortcut.js.map +0 -1
- package/dist/nodes/slot.d.ts +0 -21
- package/dist/nodes/slot.d.ts.map +0 -1
- package/dist/nodes/slot.js +0 -102
- package/dist/nodes/slot.js.map +0 -1
- package/dist/nodes/source-view.d.ts +0 -18
- package/dist/nodes/source-view.d.ts.map +0 -1
- package/dist/nodes/source-view.js +0 -94
- package/dist/nodes/source-view.js.map +0 -1
- package/dist/nodes/spin-row.d.ts +0 -14
- package/dist/nodes/spin-row.d.ts.map +0 -1
- package/dist/nodes/spin-row.js +0 -46
- package/dist/nodes/spin-row.js.map +0 -1
- package/dist/nodes/stack-page.d.ts +0 -22
- package/dist/nodes/stack-page.d.ts.map +0 -1
- package/dist/nodes/stack-page.js +0 -140
- package/dist/nodes/stack-page.js.map +0 -1
- package/dist/nodes/stack.d.ts +0 -13
- package/dist/nodes/stack.d.ts.map +0 -1
- package/dist/nodes/stack.js +0 -21
- package/dist/nodes/stack.js.map +0 -1
- package/dist/nodes/switch-row.d.ts +0 -11
- package/dist/nodes/switch-row.d.ts.map +0 -1
- package/dist/nodes/switch-row.js +0 -15
- package/dist/nodes/switch-row.js.map +0 -1
- package/dist/nodes/text-anchor.d.ts +0 -23
- package/dist/nodes/text-anchor.d.ts.map +0 -1
- package/dist/nodes/text-anchor.js +0 -74
- package/dist/nodes/text-anchor.js.map +0 -1
- package/dist/nodes/text-content.d.ts +0 -12
- package/dist/nodes/text-content.d.ts.map +0 -1
- package/dist/nodes/text-content.js +0 -2
- package/dist/nodes/text-content.js.map +0 -1
- package/dist/nodes/text-paintable.d.ts +0 -19
- package/dist/nodes/text-paintable.d.ts.map +0 -1
- package/dist/nodes/text-paintable.js +0 -42
- package/dist/nodes/text-paintable.js.map +0 -1
- package/dist/nodes/text-segment.d.ts +0 -18
- package/dist/nodes/text-segment.d.ts.map +0 -1
- package/dist/nodes/text-segment.js +0 -38
- package/dist/nodes/text-segment.js.map +0 -1
- package/dist/nodes/text-tag.d.ts +0 -38
- package/dist/nodes/text-tag.d.ts.map +0 -1
- package/dist/nodes/text-tag.js +0 -247
- package/dist/nodes/text-tag.js.map +0 -1
- package/dist/nodes/text-view.d.ts +0 -29
- package/dist/nodes/text-view.d.ts.map +0 -1
- package/dist/nodes/text-view.js +0 -80
- package/dist/nodes/text-view.js.map +0 -1
- package/dist/nodes/toggle-group.d.ts +0 -17
- package/dist/nodes/toggle-group.d.ts.map +0 -1
- package/dist/nodes/toggle-group.js +0 -65
- package/dist/nodes/toggle-group.js.map +0 -1
- package/dist/nodes/toggle.d.ts +0 -16
- package/dist/nodes/toggle.d.ts.map +0 -1
- package/dist/nodes/toggle.js +0 -61
- package/dist/nodes/toggle.js.map +0 -1
- package/dist/nodes/virtual.d.ts +0 -7
- package/dist/nodes/virtual.d.ts.map +0 -1
- package/dist/nodes/virtual.js +0 -9
- package/dist/nodes/virtual.js.map +0 -1
- package/dist/nodes/web-view.d.ts +0 -11
- package/dist/nodes/web-view.d.ts.map +0 -1
- package/dist/nodes/web-view.js +0 -16
- package/dist/nodes/web-view.js.map +0 -1
- package/dist/nodes/widget.d.ts +0 -26
- package/dist/nodes/widget.d.ts.map +0 -1
- package/dist/nodes/widget.js +0 -308
- package/dist/nodes/widget.js.map +0 -1
- package/dist/nodes/window.d.ts +0 -31
- package/dist/nodes/window.d.ts.map +0 -1
- package/dist/nodes/window.js +0 -122
- package/dist/nodes/window.js.map +0 -1
- package/dist/portal.d.ts +0 -29
- package/dist/portal.d.ts.map +0 -1
- package/dist/portal.js +0 -35
- package/dist/portal.js.map +0 -1
- package/dist/reconciler.d.ts +0 -34
- package/dist/reconciler.d.ts.map +0 -1
- package/dist/reconciler.js +0 -48
- package/dist/reconciler.js.map +0 -1
- package/dist/registry.d.ts +0 -18
- package/dist/registry.d.ts.map +0 -1
- package/dist/registry.js +0 -98
- package/dist/registry.js.map +0 -1
- package/dist/render.d.ts +0 -117
- package/dist/render.d.ts.map +0 -1
- package/dist/render.js +0 -159
- package/dist/render.js.map +0 -1
- package/dist/types.d.ts +0 -6
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js +0 -2
- package/dist/types.js.map +0 -1
- package/dist/use-property.d.ts +0 -29
- package/dist/use-property.d.ts.map +0 -1
- package/dist/use-property.js +0 -44
- package/dist/use-property.js.map +0 -1
- package/dist/use-setting.d.ts +0 -36
- package/dist/use-setting.d.ts.map +0 -1
- package/dist/use-setting.js +0 -68
- package/dist/use-setting.js.map +0 -1
- package/src/components/compound.tsx +0 -57
- package/src/components/list.tsx +0 -140
- package/src/components/slot-widget.tsx +0 -46
- package/src/errors.ts +0 -53
- package/src/factory.ts +0 -62
- package/src/generated/compounds.ts +0 -2741
- package/src/generated/internal.ts +0 -3642
- package/src/generated/jsx.ts +0 -17383
- package/src/generated/registry.ts +0 -17
- package/src/host-config.ts +0 -219
- package/src/jsx.ts +0 -1033
- package/src/metadata.ts +0 -43
- package/src/node.ts +0 -107
- package/src/nodes/adjustable.ts +0 -68
- package/src/nodes/alert-dialog-response.ts +0 -78
- package/src/nodes/alert-dialog.ts +0 -55
- package/src/nodes/animation.ts +0 -409
- package/src/nodes/application.ts +0 -61
- package/src/nodes/calendar.ts +0 -42
- package/src/nodes/color-dialog-button.ts +0 -69
- package/src/nodes/column-view-column.ts +0 -189
- package/src/nodes/container-slot.ts +0 -100
- package/src/nodes/dialog.ts +0 -25
- package/src/nodes/drawing-area.ts +0 -53
- package/src/nodes/event-controller.ts +0 -96
- package/src/nodes/fixed-child.ts +0 -122
- package/src/nodes/font-dialog-button.ts +0 -107
- package/src/nodes/grid-child.ts +0 -116
- package/src/nodes/internal/accessible.ts +0 -155
- package/src/nodes/internal/bound-item.ts +0 -4
- package/src/nodes/internal/construct.ts +0 -60
- package/src/nodes/internal/predicates.ts +0 -80
- package/src/nodes/internal/props.ts +0 -51
- package/src/nodes/internal/signal-store.ts +0 -141
- package/src/nodes/internal/text-buffer-controller.ts +0 -417
- package/src/nodes/internal/widget.ts +0 -74
- package/src/nodes/level-bar.ts +0 -36
- package/src/nodes/list-item-node.ts +0 -53
- package/src/nodes/list.ts +0 -1082
- package/src/nodes/menu.ts +0 -27
- package/src/nodes/models/menu.ts +0 -314
- package/src/nodes/navigation-page.ts +0 -154
- package/src/nodes/navigation-view.ts +0 -66
- package/src/nodes/notebook-page-tab.ts +0 -55
- package/src/nodes/notebook-page.ts +0 -189
- package/src/nodes/notebook.ts +0 -42
- package/src/nodes/overlay-child.ts +0 -130
- package/src/nodes/popover-menu.ts +0 -67
- package/src/nodes/scale.ts +0 -28
- package/src/nodes/scrolled-window.ts +0 -23
- package/src/nodes/search-bar.ts +0 -27
- package/src/nodes/shortcut.ts +0 -86
- package/src/nodes/slot.ts +0 -138
- package/src/nodes/source-view.ts +0 -130
- package/src/nodes/spin-row.ts +0 -72
- package/src/nodes/stack-page.ts +0 -170
- package/src/nodes/stack.ts +0 -35
- package/src/nodes/switch-row.ts +0 -26
- package/src/nodes/text-anchor.ts +0 -88
- package/src/nodes/text-content.ts +0 -14
- package/src/nodes/text-paintable.ts +0 -51
- package/src/nodes/text-segment.ts +0 -55
- package/src/nodes/text-tag.ts +0 -298
- package/src/nodes/text-view.ts +0 -100
- package/src/nodes/toggle-group.ts +0 -81
- package/src/nodes/toggle.ts +0 -72
- package/src/nodes/virtual.ts +0 -16
- package/src/nodes/web-view.ts +0 -22
- package/src/nodes/widget.ts +0 -369
- package/src/nodes/window.ts +0 -172
- package/src/portal.ts +0 -37
- package/src/reconciler.ts +0 -52
- package/src/registry.ts +0 -119
- package/src/render.tsx +0 -192
- package/src/types.ts +0 -13
- package/src/use-property.ts +0 -58
- package/src/use-setting.ts +0 -96
|
@@ -1,3638 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Internal metadata for the reconciler.
|
|
3
|
-
* Runtime prop/signal resolution and construction metadata.
|
|
4
|
-
* Not part of the public API.
|
|
5
|
-
*/
|
|
6
|
-
/** Construction metadata for all writable properties. Used by the reconciler to create widgets via g_object_new_with_properties. */
|
|
7
|
-
export const CONSTRUCTION_META = {
|
|
8
|
-
GtkWidget: {
|
|
9
|
-
"canFocus": { girName: "can-focus", ffiType: { "type": "boolean" } },
|
|
10
|
-
"canTarget": { girName: "can-target", ffiType: { "type": "boolean" } },
|
|
11
|
-
"cssClasses": { girName: "css-classes", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
12
|
-
"cssName": { girName: "css-name", ffiType: { "type": "string", "ownership": "full" }, constructOnly: true },
|
|
13
|
-
"cursor": { girName: "cursor", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
14
|
-
"focusOnClick": { girName: "focus-on-click", ffiType: { "type": "boolean" } },
|
|
15
|
-
"focusable": { girName: "focusable", ffiType: { "type": "boolean" } },
|
|
16
|
-
"halign": { girName: "halign", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_align_get_type", "signed": false } },
|
|
17
|
-
"hasTooltip": { girName: "has-tooltip", ffiType: { "type": "boolean" } },
|
|
18
|
-
"heightRequest": { girName: "height-request", ffiType: { "type": "int32" } },
|
|
19
|
-
"hexpand": { girName: "hexpand", ffiType: { "type": "boolean" } },
|
|
20
|
-
"hexpandSet": { girName: "hexpand-set", ffiType: { "type": "boolean" } },
|
|
21
|
-
"layoutManager": { girName: "layout-manager", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
22
|
-
"limitEvents": { girName: "limit-events", ffiType: { "type": "boolean" } },
|
|
23
|
-
"marginBottom": { girName: "margin-bottom", ffiType: { "type": "int32" } },
|
|
24
|
-
"marginEnd": { girName: "margin-end", ffiType: { "type": "int32" } },
|
|
25
|
-
"marginStart": { girName: "margin-start", ffiType: { "type": "int32" } },
|
|
26
|
-
"marginTop": { girName: "margin-top", ffiType: { "type": "int32" } },
|
|
27
|
-
"name": { girName: "name", ffiType: { "type": "string", "ownership": "full" } },
|
|
28
|
-
"opacity": { girName: "opacity", ffiType: { "type": "float64" } },
|
|
29
|
-
"overflow": { girName: "overflow", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_overflow_get_type", "signed": false } },
|
|
30
|
-
"receivesDefault": { girName: "receives-default", ffiType: { "type": "boolean" } },
|
|
31
|
-
"sensitive": { girName: "sensitive", ffiType: { "type": "boolean" } },
|
|
32
|
-
"tooltipMarkup": { girName: "tooltip-markup", ffiType: { "type": "string", "ownership": "full" } },
|
|
33
|
-
"tooltipText": { girName: "tooltip-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
34
|
-
"valign": { girName: "valign", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_align_get_type", "signed": false } },
|
|
35
|
-
"vexpand": { girName: "vexpand", ffiType: { "type": "boolean" } },
|
|
36
|
-
"vexpandSet": { girName: "vexpand-set", ffiType: { "type": "boolean" } },
|
|
37
|
-
"visible": { girName: "visible", ffiType: { "type": "boolean" } },
|
|
38
|
-
"widthRequest": { girName: "width-request", ffiType: { "type": "int32" } },
|
|
39
|
-
"accessibleRole": { girName: "accessible-role", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_accessible_role_get_type", "signed": false } },
|
|
40
|
-
},
|
|
41
|
-
GtkWindow: {
|
|
42
|
-
"application": { girName: "application", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
43
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
44
|
-
"decorated": { girName: "decorated", ffiType: { "type": "boolean" } },
|
|
45
|
-
"defaultHeight": { girName: "default-height", ffiType: { "type": "int32" } },
|
|
46
|
-
"defaultWidget": { girName: "default-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
47
|
-
"defaultWidth": { girName: "default-width", ffiType: { "type": "int32" } },
|
|
48
|
-
"deletable": { girName: "deletable", ffiType: { "type": "boolean" } },
|
|
49
|
-
"destroyWithParent": { girName: "destroy-with-parent", ffiType: { "type": "boolean" } },
|
|
50
|
-
"display": { girName: "display", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
51
|
-
"focusVisible": { girName: "focus-visible", ffiType: { "type": "boolean" } },
|
|
52
|
-
"focusWidget": { girName: "focus-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
53
|
-
"fullscreened": { girName: "fullscreened", ffiType: { "type": "boolean" } },
|
|
54
|
-
"gravity": { girName: "gravity", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_window_gravity_get_type", "signed": false } },
|
|
55
|
-
"handleMenubarAccel": { girName: "handle-menubar-accel", ffiType: { "type": "boolean" } },
|
|
56
|
-
"hideOnClose": { girName: "hide-on-close", ffiType: { "type": "boolean" } },
|
|
57
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
58
|
-
"maximized": { girName: "maximized", ffiType: { "type": "boolean" } },
|
|
59
|
-
"mnemonicsVisible": { girName: "mnemonics-visible", ffiType: { "type": "boolean" } },
|
|
60
|
-
"modal": { girName: "modal", ffiType: { "type": "boolean" } },
|
|
61
|
-
"resizable": { girName: "resizable", ffiType: { "type": "boolean" } },
|
|
62
|
-
"startupId": { girName: "startup-id", ffiType: { "type": "string", "ownership": "full" } },
|
|
63
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
64
|
-
"titlebar": { girName: "titlebar", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
65
|
-
"transientFor": { girName: "transient-for", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
66
|
-
},
|
|
67
|
-
AdwWindow: {
|
|
68
|
-
"adaptivePreview": { girName: "adaptive-preview", ffiType: { "type": "boolean" } },
|
|
69
|
-
"content": { girName: "content", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
70
|
-
},
|
|
71
|
-
GtkAboutDialog: {
|
|
72
|
-
"artists": { girName: "artists", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
73
|
-
"authors": { girName: "authors", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
74
|
-
"comments": { girName: "comments", ffiType: { "type": "string", "ownership": "full" } },
|
|
75
|
-
"copyright": { girName: "copyright", ffiType: { "type": "string", "ownership": "full" } },
|
|
76
|
-
"documenters": { girName: "documenters", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
77
|
-
"license": { girName: "license", ffiType: { "type": "string", "ownership": "full" } },
|
|
78
|
-
"licenseType": { girName: "license-type", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_license_get_type", "signed": false } },
|
|
79
|
-
"logo": { girName: "logo", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
80
|
-
"logoIconName": { girName: "logo-icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
81
|
-
"programName": { girName: "program-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
82
|
-
"systemInformation": { girName: "system-information", ffiType: { "type": "string", "ownership": "full" } },
|
|
83
|
-
"translatorCredits": { girName: "translator-credits", ffiType: { "type": "string", "ownership": "full" } },
|
|
84
|
-
"version": { girName: "version", ffiType: { "type": "string", "ownership": "full" } },
|
|
85
|
-
"website": { girName: "website", ffiType: { "type": "string", "ownership": "full" } },
|
|
86
|
-
"websiteLabel": { girName: "website-label", ffiType: { "type": "string", "ownership": "full" } },
|
|
87
|
-
"wrapLicense": { girName: "wrap-license", ffiType: { "type": "boolean" } },
|
|
88
|
-
},
|
|
89
|
-
AdwAboutDialog: {
|
|
90
|
-
"applicationIcon": { girName: "application-icon", ffiType: { "type": "string", "ownership": "full" } },
|
|
91
|
-
"applicationName": { girName: "application-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
92
|
-
"artists": { girName: "artists", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
93
|
-
"comments": { girName: "comments", ffiType: { "type": "string", "ownership": "full" } },
|
|
94
|
-
"copyright": { girName: "copyright", ffiType: { "type": "string", "ownership": "full" } },
|
|
95
|
-
"debugInfo": { girName: "debug-info", ffiType: { "type": "string", "ownership": "full" } },
|
|
96
|
-
"debugInfoFilename": { girName: "debug-info-filename", ffiType: { "type": "string", "ownership": "full" } },
|
|
97
|
-
"designers": { girName: "designers", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
98
|
-
"developerName": { girName: "developer-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
99
|
-
"developers": { girName: "developers", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
100
|
-
"documenters": { girName: "documenters", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
101
|
-
"issueUrl": { girName: "issue-url", ffiType: { "type": "string", "ownership": "full" } },
|
|
102
|
-
"license": { girName: "license", ffiType: { "type": "string", "ownership": "full" } },
|
|
103
|
-
"licenseType": { girName: "license-type", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_license_get_type", "signed": false } },
|
|
104
|
-
"releaseNotes": { girName: "release-notes", ffiType: { "type": "string", "ownership": "full" } },
|
|
105
|
-
"releaseNotesVersion": { girName: "release-notes-version", ffiType: { "type": "string", "ownership": "full" } },
|
|
106
|
-
"supportUrl": { girName: "support-url", ffiType: { "type": "string", "ownership": "full" } },
|
|
107
|
-
"translatorCredits": { girName: "translator-credits", ffiType: { "type": "string", "ownership": "full" } },
|
|
108
|
-
"version": { girName: "version", ffiType: { "type": "string", "ownership": "full" } },
|
|
109
|
-
"website": { girName: "website", ffiType: { "type": "string", "ownership": "full" } },
|
|
110
|
-
},
|
|
111
|
-
AdwAboutWindow: {
|
|
112
|
-
"applicationIcon": { girName: "application-icon", ffiType: { "type": "string", "ownership": "full" } },
|
|
113
|
-
"applicationName": { girName: "application-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
114
|
-
"artists": { girName: "artists", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
115
|
-
"comments": { girName: "comments", ffiType: { "type": "string", "ownership": "full" } },
|
|
116
|
-
"copyright": { girName: "copyright", ffiType: { "type": "string", "ownership": "full" } },
|
|
117
|
-
"debugInfo": { girName: "debug-info", ffiType: { "type": "string", "ownership": "full" } },
|
|
118
|
-
"debugInfoFilename": { girName: "debug-info-filename", ffiType: { "type": "string", "ownership": "full" } },
|
|
119
|
-
"designers": { girName: "designers", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
120
|
-
"developerName": { girName: "developer-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
121
|
-
"developers": { girName: "developers", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
122
|
-
"documenters": { girName: "documenters", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
123
|
-
"issueUrl": { girName: "issue-url", ffiType: { "type": "string", "ownership": "full" } },
|
|
124
|
-
"license": { girName: "license", ffiType: { "type": "string", "ownership": "full" } },
|
|
125
|
-
"licenseType": { girName: "license-type", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_license_get_type", "signed": false } },
|
|
126
|
-
"releaseNotes": { girName: "release-notes", ffiType: { "type": "string", "ownership": "full" } },
|
|
127
|
-
"releaseNotesVersion": { girName: "release-notes-version", ffiType: { "type": "string", "ownership": "full" } },
|
|
128
|
-
"supportUrl": { girName: "support-url", ffiType: { "type": "string", "ownership": "full" } },
|
|
129
|
-
"translatorCredits": { girName: "translator-credits", ffiType: { "type": "string", "ownership": "full" } },
|
|
130
|
-
"version": { girName: "version", ffiType: { "type": "string", "ownership": "full" } },
|
|
131
|
-
"website": { girName: "website", ffiType: { "type": "string", "ownership": "full" } },
|
|
132
|
-
},
|
|
133
|
-
GtkActionBar: {
|
|
134
|
-
"revealed": { girName: "revealed", ffiType: { "type": "boolean" } },
|
|
135
|
-
},
|
|
136
|
-
AdwActionRow: {
|
|
137
|
-
"activatableWidget": { girName: "activatable-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
138
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
139
|
-
"subtitle": { girName: "subtitle", ffiType: { "type": "string", "ownership": "full" } },
|
|
140
|
-
"subtitleLines": { girName: "subtitle-lines", ffiType: { "type": "int32" } },
|
|
141
|
-
"subtitleSelectable": { girName: "subtitle-selectable", ffiType: { "type": "boolean" } },
|
|
142
|
-
"titleLines": { girName: "title-lines", ffiType: { "type": "int32" } },
|
|
143
|
-
},
|
|
144
|
-
AdwAlertDialog: {
|
|
145
|
-
"body": { girName: "body", ffiType: { "type": "string", "ownership": "full" } },
|
|
146
|
-
"bodyUseMarkup": { girName: "body-use-markup", ffiType: { "type": "boolean" } },
|
|
147
|
-
"closeResponse": { girName: "close-response", ffiType: { "type": "string", "ownership": "full" } },
|
|
148
|
-
"defaultResponse": { girName: "default-response", ffiType: { "type": "string", "ownership": "full" } },
|
|
149
|
-
"extraChild": { girName: "extra-child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
150
|
-
"heading": { girName: "heading", ffiType: { "type": "string", "ownership": "full" } },
|
|
151
|
-
"headingUseMarkup": { girName: "heading-use-markup", ffiType: { "type": "boolean" } },
|
|
152
|
-
"preferWideLayout": { girName: "prefer-wide-layout", ffiType: { "type": "boolean" } },
|
|
153
|
-
},
|
|
154
|
-
GtkAppChooserButton: {
|
|
155
|
-
"heading": { girName: "heading", ffiType: { "type": "string", "ownership": "full" } },
|
|
156
|
-
"modal": { girName: "modal", ffiType: { "type": "boolean" } },
|
|
157
|
-
"showDefaultItem": { girName: "show-default-item", ffiType: { "type": "boolean" } },
|
|
158
|
-
"showDialogItem": { girName: "show-dialog-item", ffiType: { "type": "boolean" } },
|
|
159
|
-
"contentType": { girName: "content-type", ffiType: { "type": "string", "ownership": "full" }, constructOnly: true },
|
|
160
|
-
},
|
|
161
|
-
GtkAppChooserDialog: {
|
|
162
|
-
"gfile": { girName: "gfile", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
163
|
-
"heading": { girName: "heading", ffiType: { "type": "string", "ownership": "full" } },
|
|
164
|
-
"contentType": { girName: "content-type", ffiType: { "type": "string", "ownership": "full" }, constructOnly: true },
|
|
165
|
-
},
|
|
166
|
-
GtkAppChooserWidget: {
|
|
167
|
-
"defaultText": { girName: "default-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
168
|
-
"showAll": { girName: "show-all", ffiType: { "type": "boolean" } },
|
|
169
|
-
"showDefault": { girName: "show-default", ffiType: { "type": "boolean" } },
|
|
170
|
-
"showFallback": { girName: "show-fallback", ffiType: { "type": "boolean" } },
|
|
171
|
-
"showOther": { girName: "show-other", ffiType: { "type": "boolean" } },
|
|
172
|
-
"showRecommended": { girName: "show-recommended", ffiType: { "type": "boolean" } },
|
|
173
|
-
"contentType": { girName: "content-type", ffiType: { "type": "string", "ownership": "full" }, constructOnly: true },
|
|
174
|
-
},
|
|
175
|
-
GtkApplicationWindow: {
|
|
176
|
-
"showMenubar": { girName: "show-menubar", ffiType: { "type": "boolean" } },
|
|
177
|
-
},
|
|
178
|
-
AdwApplicationWindow: {
|
|
179
|
-
"adaptivePreview": { girName: "adaptive-preview", ffiType: { "type": "boolean" } },
|
|
180
|
-
"content": { girName: "content", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
181
|
-
},
|
|
182
|
-
GtkAspectFrame: {
|
|
183
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
184
|
-
"obeyChild": { girName: "obey-child", ffiType: { "type": "boolean" } },
|
|
185
|
-
"ratio": { girName: "ratio", ffiType: { "type": "float32" } },
|
|
186
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
187
|
-
"yalign": { girName: "yalign", ffiType: { "type": "float32" } },
|
|
188
|
-
},
|
|
189
|
-
GtkAssistant: {
|
|
190
|
-
"useHeaderBar": { girName: "use-header-bar", ffiType: { "type": "int32" }, constructOnly: true },
|
|
191
|
-
},
|
|
192
|
-
AdwAvatar: {
|
|
193
|
-
"customImage": { girName: "custom-image", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
194
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
195
|
-
"showInitials": { girName: "show-initials", ffiType: { "type": "boolean" } },
|
|
196
|
-
"size": { girName: "size", ffiType: { "type": "int32" } },
|
|
197
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
198
|
-
},
|
|
199
|
-
AdwBanner: {
|
|
200
|
-
"buttonLabel": { girName: "button-label", ffiType: { "type": "string", "ownership": "full" } },
|
|
201
|
-
"buttonStyle": { girName: "button-style", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_banner_button_style_get_type", "signed": false } },
|
|
202
|
-
"revealed": { girName: "revealed", ffiType: { "type": "boolean" } },
|
|
203
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
204
|
-
"useMarkup": { girName: "use-markup", ffiType: { "type": "boolean" } },
|
|
205
|
-
"actionName": { girName: "action-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
206
|
-
"actionTarget": { girName: "action-target", ffiType: { "type": "fundamental", "library": "libgobject-2.0.so.0,libglib-2.0.so.0", "refFn": "g_variant_ref_sink", "unrefFn": "g_variant_unref", "ownership": "full", "typeName": "GVariant" } },
|
|
207
|
-
},
|
|
208
|
-
AdwBin: {
|
|
209
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
210
|
-
},
|
|
211
|
-
AdwBottomSheet: {
|
|
212
|
-
"align": { girName: "align", ffiType: { "type": "float32" } },
|
|
213
|
-
"bottomBar": { girName: "bottom-bar", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
214
|
-
"canClose": { girName: "can-close", ffiType: { "type": "boolean" } },
|
|
215
|
-
"canOpen": { girName: "can-open", ffiType: { "type": "boolean" } },
|
|
216
|
-
"content": { girName: "content", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
217
|
-
"fullWidth": { girName: "full-width", ffiType: { "type": "boolean" } },
|
|
218
|
-
"modal": { girName: "modal", ffiType: { "type": "boolean" } },
|
|
219
|
-
"open": { girName: "open", ffiType: { "type": "boolean" } },
|
|
220
|
-
"revealBottomBar": { girName: "reveal-bottom-bar", ffiType: { "type": "boolean" } },
|
|
221
|
-
"sheet": { girName: "sheet", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
222
|
-
"showDragHandle": { girName: "show-drag-handle", ffiType: { "type": "boolean" } },
|
|
223
|
-
},
|
|
224
|
-
GtkBox: {
|
|
225
|
-
"baselineChild": { girName: "baseline-child", ffiType: { "type": "int32" } },
|
|
226
|
-
"baselinePosition": { girName: "baseline-position", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_baseline_position_get_type", "signed": false } },
|
|
227
|
-
"homogeneous": { girName: "homogeneous", ffiType: { "type": "boolean" } },
|
|
228
|
-
"spacing": { girName: "spacing", ffiType: { "type": "int32" } },
|
|
229
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
230
|
-
},
|
|
231
|
-
AdwBreakpointBin: {
|
|
232
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
233
|
-
},
|
|
234
|
-
GtkButton: {
|
|
235
|
-
"canShrink": { girName: "can-shrink", ffiType: { "type": "boolean" } },
|
|
236
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
237
|
-
"hasFrame": { girName: "has-frame", ffiType: { "type": "boolean" } },
|
|
238
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
239
|
-
"label": { girName: "label", ffiType: { "type": "string", "ownership": "full" } },
|
|
240
|
-
"useUnderline": { girName: "use-underline", ffiType: { "type": "boolean" } },
|
|
241
|
-
"actionName": { girName: "action-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
242
|
-
"actionTarget": { girName: "action-target", ffiType: { "type": "fundamental", "library": "libgobject-2.0.so.0,libglib-2.0.so.0", "refFn": "g_variant_ref_sink", "unrefFn": "g_variant_unref", "ownership": "full", "typeName": "GVariant" } },
|
|
243
|
-
},
|
|
244
|
-
AdwButtonContent: {
|
|
245
|
-
"canShrink": { girName: "can-shrink", ffiType: { "type": "boolean" } },
|
|
246
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
247
|
-
"label": { girName: "label", ffiType: { "type": "string", "ownership": "full" } },
|
|
248
|
-
"useUnderline": { girName: "use-underline", ffiType: { "type": "boolean" } },
|
|
249
|
-
},
|
|
250
|
-
AdwButtonRow: {
|
|
251
|
-
"endIconName": { girName: "end-icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
252
|
-
"startIconName": { girName: "start-icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
253
|
-
},
|
|
254
|
-
GtkCalendar: {
|
|
255
|
-
"date": { girName: "date", ffiType: { "type": "boxed", "innerType": "GDateTime", "ownership": "full", "library": "libgobject-2.0.so.0,libglib-2.0.so.0", "getTypeFn": "g_date_time_get_type" } },
|
|
256
|
-
"day": { girName: "day", ffiType: { "type": "int32" } },
|
|
257
|
-
"month": { girName: "month", ffiType: { "type": "int32" } },
|
|
258
|
-
"showDayNames": { girName: "show-day-names", ffiType: { "type": "boolean" } },
|
|
259
|
-
"showHeading": { girName: "show-heading", ffiType: { "type": "boolean" } },
|
|
260
|
-
"showWeekNumbers": { girName: "show-week-numbers", ffiType: { "type": "boolean" } },
|
|
261
|
-
"year": { girName: "year", ffiType: { "type": "int32" } },
|
|
262
|
-
},
|
|
263
|
-
AdwCarousel: {
|
|
264
|
-
"allowLongSwipes": { girName: "allow-long-swipes", ffiType: { "type": "boolean" } },
|
|
265
|
-
"allowMouseDrag": { girName: "allow-mouse-drag", ffiType: { "type": "boolean" } },
|
|
266
|
-
"allowScrollWheel": { girName: "allow-scroll-wheel", ffiType: { "type": "boolean" } },
|
|
267
|
-
"interactive": { girName: "interactive", ffiType: { "type": "boolean" } },
|
|
268
|
-
"revealDuration": { girName: "reveal-duration", ffiType: { "type": "uint32" } },
|
|
269
|
-
"scrollParams": { girName: "scroll-params", ffiType: { "type": "fundamental", "library": "libadwaita-1.so.0", "refFn": "adw_spring_params_ref", "unrefFn": "adw_spring_params_unref", "ownership": "full", "typeName": "AdwSpringParams" } },
|
|
270
|
-
"spacing": { girName: "spacing", ffiType: { "type": "uint32" } },
|
|
271
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
272
|
-
},
|
|
273
|
-
AdwCarouselIndicatorDots: {
|
|
274
|
-
"carousel": { girName: "carousel", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
275
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
276
|
-
},
|
|
277
|
-
AdwCarouselIndicatorLines: {
|
|
278
|
-
"carousel": { girName: "carousel", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
279
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
280
|
-
},
|
|
281
|
-
GtkCellView: {
|
|
282
|
-
"cellArea": { girName: "cell-area", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
283
|
-
"cellAreaContext": { girName: "cell-area-context", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
284
|
-
"drawSensitive": { girName: "draw-sensitive", ffiType: { "type": "boolean" } },
|
|
285
|
-
"fitModel": { girName: "fit-model", ffiType: { "type": "boolean" } },
|
|
286
|
-
"model": { girName: "model", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
287
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
288
|
-
},
|
|
289
|
-
GtkCenterBox: {
|
|
290
|
-
"baselinePosition": { girName: "baseline-position", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_baseline_position_get_type", "signed": false } },
|
|
291
|
-
"centerWidget": { girName: "center-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
292
|
-
"endWidget": { girName: "end-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
293
|
-
"shrinkCenterLast": { girName: "shrink-center-last", ffiType: { "type": "boolean" } },
|
|
294
|
-
"startWidget": { girName: "start-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
295
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
296
|
-
},
|
|
297
|
-
GtkCheckButton: {
|
|
298
|
-
"active": { girName: "active", ffiType: { "type": "boolean" } },
|
|
299
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
300
|
-
"group": { girName: "group", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
301
|
-
"inconsistent": { girName: "inconsistent", ffiType: { "type": "boolean" } },
|
|
302
|
-
"label": { girName: "label", ffiType: { "type": "string", "ownership": "full" } },
|
|
303
|
-
"useUnderline": { girName: "use-underline", ffiType: { "type": "boolean" } },
|
|
304
|
-
"actionName": { girName: "action-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
305
|
-
"actionTarget": { girName: "action-target", ffiType: { "type": "fundamental", "library": "libgobject-2.0.so.0,libglib-2.0.so.0", "refFn": "g_variant_ref_sink", "unrefFn": "g_variant_unref", "ownership": "full", "typeName": "GVariant" } },
|
|
306
|
-
},
|
|
307
|
-
AdwClamp: {
|
|
308
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
309
|
-
"maximumSize": { girName: "maximum-size", ffiType: { "type": "int32" } },
|
|
310
|
-
"tighteningThreshold": { girName: "tightening-threshold", ffiType: { "type": "int32" } },
|
|
311
|
-
"unit": { girName: "unit", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_length_unit_get_type", "signed": false } },
|
|
312
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
313
|
-
},
|
|
314
|
-
AdwClampScrollable: {
|
|
315
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
316
|
-
"maximumSize": { girName: "maximum-size", ffiType: { "type": "int32" } },
|
|
317
|
-
"tighteningThreshold": { girName: "tightening-threshold", ffiType: { "type": "int32" } },
|
|
318
|
-
"unit": { girName: "unit", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_length_unit_get_type", "signed": false } },
|
|
319
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
320
|
-
"hadjustment": { girName: "hadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
321
|
-
"hscrollPolicy": { girName: "hscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
322
|
-
"vadjustment": { girName: "vadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
323
|
-
"vscrollPolicy": { girName: "vscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
324
|
-
},
|
|
325
|
-
GtkColorButton: {
|
|
326
|
-
"modal": { girName: "modal", ffiType: { "type": "boolean" } },
|
|
327
|
-
"showEditor": { girName: "show-editor", ffiType: { "type": "boolean" } },
|
|
328
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
329
|
-
"rgba": { girName: "rgba", ffiType: { "type": "boxed", "innerType": "GdkRGBA", "ownership": "full", "library": "libgtk-4.so.1", "getTypeFn": "gdk_rgba_get_type" } },
|
|
330
|
-
"useAlpha": { girName: "use-alpha", ffiType: { "type": "boolean" } },
|
|
331
|
-
},
|
|
332
|
-
GtkColorChooserDialog: {
|
|
333
|
-
"showEditor": { girName: "show-editor", ffiType: { "type": "boolean" } },
|
|
334
|
-
"rgba": { girName: "rgba", ffiType: { "type": "boxed", "innerType": "GdkRGBA", "ownership": "full", "library": "libgtk-4.so.1", "getTypeFn": "gdk_rgba_get_type" } },
|
|
335
|
-
"useAlpha": { girName: "use-alpha", ffiType: { "type": "boolean" } },
|
|
336
|
-
},
|
|
337
|
-
GtkColorChooserWidget: {
|
|
338
|
-
"showEditor": { girName: "show-editor", ffiType: { "type": "boolean" } },
|
|
339
|
-
"rgba": { girName: "rgba", ffiType: { "type": "boxed", "innerType": "GdkRGBA", "ownership": "full", "library": "libgtk-4.so.1", "getTypeFn": "gdk_rgba_get_type" } },
|
|
340
|
-
"useAlpha": { girName: "use-alpha", ffiType: { "type": "boolean" } },
|
|
341
|
-
},
|
|
342
|
-
GtkColorDialogButton: {
|
|
343
|
-
"rgba": { girName: "rgba", ffiType: { "type": "boxed", "innerType": "GdkRGBA", "ownership": "full", "library": "libgtk-4.so.1", "getTypeFn": "gdk_rgba_get_type" } },
|
|
344
|
-
},
|
|
345
|
-
GtkColumnView: {
|
|
346
|
-
"enableRubberband": { girName: "enable-rubberband", ffiType: { "type": "boolean" } },
|
|
347
|
-
"headerFactory": { girName: "header-factory", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
348
|
-
"reorderable": { girName: "reorderable", ffiType: { "type": "boolean" } },
|
|
349
|
-
"rowFactory": { girName: "row-factory", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
350
|
-
"showColumnSeparators": { girName: "show-column-separators", ffiType: { "type": "boolean" } },
|
|
351
|
-
"showRowSeparators": { girName: "show-row-separators", ffiType: { "type": "boolean" } },
|
|
352
|
-
"singleClickActivate": { girName: "single-click-activate", ffiType: { "type": "boolean" } },
|
|
353
|
-
"tabBehavior": { girName: "tab-behavior", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_list_tab_behavior_get_type", "signed": false } },
|
|
354
|
-
"hadjustment": { girName: "hadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
355
|
-
"hscrollPolicy": { girName: "hscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
356
|
-
"vadjustment": { girName: "vadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
357
|
-
"vscrollPolicy": { girName: "vscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
358
|
-
},
|
|
359
|
-
GtkComboBox: {
|
|
360
|
-
"active": { girName: "active", ffiType: { "type": "int32" } },
|
|
361
|
-
"activeId": { girName: "active-id", ffiType: { "type": "string", "ownership": "full" } },
|
|
362
|
-
"buttonSensitivity": { girName: "button-sensitivity", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_sensitivity_type_get_type", "signed": false } },
|
|
363
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
364
|
-
"entryTextColumn": { girName: "entry-text-column", ffiType: { "type": "int32" } },
|
|
365
|
-
"hasEntry": { girName: "has-entry", ffiType: { "type": "boolean" }, constructOnly: true },
|
|
366
|
-
"hasFrame": { girName: "has-frame", ffiType: { "type": "boolean" } },
|
|
367
|
-
"idColumn": { girName: "id-column", ffiType: { "type": "int32" } },
|
|
368
|
-
"model": { girName: "model", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
369
|
-
"popupFixedWidth": { girName: "popup-fixed-width", ffiType: { "type": "boolean" } },
|
|
370
|
-
"editingCanceled": { girName: "editing-canceled", ffiType: { "type": "boolean" } },
|
|
371
|
-
},
|
|
372
|
-
AdwComboRow: {
|
|
373
|
-
"enableSearch": { girName: "enable-search", ffiType: { "type": "boolean" } },
|
|
374
|
-
"headerFactory": { girName: "header-factory", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
375
|
-
"searchMatchMode": { girName: "search-match-mode", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_string_filter_match_mode_get_type", "signed": false } },
|
|
376
|
-
"useSubtitle": { girName: "use-subtitle", ffiType: { "type": "boolean" } },
|
|
377
|
-
},
|
|
378
|
-
GtkSourceCompletionCell: {
|
|
379
|
-
"column": { girName: "column", ffiType: { "type": "enum", "library": "libgtksourceview-5.so.0", "getTypeFn": "gtk_source_completion_column_get_type", "signed": false }, constructOnly: true },
|
|
380
|
-
"markup": { girName: "markup", ffiType: { "type": "string", "ownership": "full" } },
|
|
381
|
-
"paintable": { girName: "paintable", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
382
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
383
|
-
"widget": { girName: "widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
384
|
-
},
|
|
385
|
-
GtkDialog: {
|
|
386
|
-
"useHeaderBar": { girName: "use-header-bar", ffiType: { "type": "int32" }, constructOnly: true },
|
|
387
|
-
},
|
|
388
|
-
AdwDialog: {
|
|
389
|
-
"canClose": { girName: "can-close", ffiType: { "type": "boolean" } },
|
|
390
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
391
|
-
"contentHeight": { girName: "content-height", ffiType: { "type": "int32" } },
|
|
392
|
-
"contentWidth": { girName: "content-width", ffiType: { "type": "int32" } },
|
|
393
|
-
"defaultWidget": { girName: "default-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
394
|
-
"focusWidget": { girName: "focus-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
395
|
-
"followsContentSize": { girName: "follows-content-size", ffiType: { "type": "boolean" } },
|
|
396
|
-
"presentationMode": { girName: "presentation-mode", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_dialog_presentation_mode_get_type", "signed": false } },
|
|
397
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
398
|
-
},
|
|
399
|
-
GtkDragIcon: {
|
|
400
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
401
|
-
},
|
|
402
|
-
GtkDrawingArea: {
|
|
403
|
-
"contentHeight": { girName: "content-height", ffiType: { "type": "int32" } },
|
|
404
|
-
"contentWidth": { girName: "content-width", ffiType: { "type": "int32" } },
|
|
405
|
-
},
|
|
406
|
-
GtkDropDown: {
|
|
407
|
-
"enableSearch": { girName: "enable-search", ffiType: { "type": "boolean" } },
|
|
408
|
-
"headerFactory": { girName: "header-factory", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
409
|
-
"searchMatchMode": { girName: "search-match-mode", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_string_filter_match_mode_get_type", "signed": false } },
|
|
410
|
-
"showArrow": { girName: "show-arrow", ffiType: { "type": "boolean" } },
|
|
411
|
-
},
|
|
412
|
-
GtkEditableLabel: {
|
|
413
|
-
"editing": { girName: "editing", ffiType: { "type": "boolean" } },
|
|
414
|
-
"editable": { girName: "editable", ffiType: { "type": "boolean" } },
|
|
415
|
-
"enableUndo": { girName: "enable-undo", ffiType: { "type": "boolean" } },
|
|
416
|
-
"maxWidthChars": { girName: "max-width-chars", ffiType: { "type": "int32" } },
|
|
417
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
418
|
-
"widthChars": { girName: "width-chars", ffiType: { "type": "int32" } },
|
|
419
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
420
|
-
},
|
|
421
|
-
GtkEntry: {
|
|
422
|
-
"activatesDefault": { girName: "activates-default", ffiType: { "type": "boolean" } },
|
|
423
|
-
"attributes": { girName: "attributes", ffiType: { "type": "boxed", "innerType": "PangoAttrList", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_attr_list_get_type" } },
|
|
424
|
-
"buffer": { girName: "buffer", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
425
|
-
"completion": { girName: "completion", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
426
|
-
"enableEmojiCompletion": { girName: "enable-emoji-completion", ffiType: { "type": "boolean" } },
|
|
427
|
-
"extraMenu": { girName: "extra-menu", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
428
|
-
"hasFrame": { girName: "has-frame", ffiType: { "type": "boolean" } },
|
|
429
|
-
"imModule": { girName: "im-module", ffiType: { "type": "string", "ownership": "full" } },
|
|
430
|
-
"inputHints": { girName: "input-hints", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_input_hints_get_type", "signed": false } },
|
|
431
|
-
"inputPurpose": { girName: "input-purpose", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_input_purpose_get_type", "signed": false } },
|
|
432
|
-
"invisibleChar": { girName: "invisible-char", ffiType: { "type": "uint32" } },
|
|
433
|
-
"invisibleCharSet": { girName: "invisible-char-set", ffiType: { "type": "boolean" } },
|
|
434
|
-
"maxLength": { girName: "max-length", ffiType: { "type": "int32" } },
|
|
435
|
-
"menuEntryIconPrimaryText": { girName: "menu-entry-icon-primary-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
436
|
-
"menuEntryIconSecondaryText": { girName: "menu-entry-icon-secondary-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
437
|
-
"overwriteMode": { girName: "overwrite-mode", ffiType: { "type": "boolean" } },
|
|
438
|
-
"placeholderText": { girName: "placeholder-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
439
|
-
"primaryIconActivatable": { girName: "primary-icon-activatable", ffiType: { "type": "boolean" } },
|
|
440
|
-
"primaryIconGicon": { girName: "primary-icon-gicon", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
441
|
-
"primaryIconName": { girName: "primary-icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
442
|
-
"primaryIconPaintable": { girName: "primary-icon-paintable", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
443
|
-
"primaryIconSensitive": { girName: "primary-icon-sensitive", ffiType: { "type": "boolean" } },
|
|
444
|
-
"primaryIconTooltipMarkup": { girName: "primary-icon-tooltip-markup", ffiType: { "type": "string", "ownership": "full" } },
|
|
445
|
-
"primaryIconTooltipText": { girName: "primary-icon-tooltip-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
446
|
-
"progressFraction": { girName: "progress-fraction", ffiType: { "type": "float64" } },
|
|
447
|
-
"progressPulseStep": { girName: "progress-pulse-step", ffiType: { "type": "float64" } },
|
|
448
|
-
"secondaryIconActivatable": { girName: "secondary-icon-activatable", ffiType: { "type": "boolean" } },
|
|
449
|
-
"secondaryIconGicon": { girName: "secondary-icon-gicon", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
450
|
-
"secondaryIconName": { girName: "secondary-icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
451
|
-
"secondaryIconPaintable": { girName: "secondary-icon-paintable", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
452
|
-
"secondaryIconSensitive": { girName: "secondary-icon-sensitive", ffiType: { "type": "boolean" } },
|
|
453
|
-
"secondaryIconTooltipMarkup": { girName: "secondary-icon-tooltip-markup", ffiType: { "type": "string", "ownership": "full" } },
|
|
454
|
-
"secondaryIconTooltipText": { girName: "secondary-icon-tooltip-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
455
|
-
"showEmojiIcon": { girName: "show-emoji-icon", ffiType: { "type": "boolean" } },
|
|
456
|
-
"tabs": { girName: "tabs", ffiType: { "type": "boxed", "innerType": "PangoTabArray", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_tab_array_get_type" } },
|
|
457
|
-
"truncateMultiline": { girName: "truncate-multiline", ffiType: { "type": "boolean" } },
|
|
458
|
-
"visibility": { girName: "visibility", ffiType: { "type": "boolean" } },
|
|
459
|
-
"editingCanceled": { girName: "editing-canceled", ffiType: { "type": "boolean" } },
|
|
460
|
-
"editable": { girName: "editable", ffiType: { "type": "boolean" } },
|
|
461
|
-
"enableUndo": { girName: "enable-undo", ffiType: { "type": "boolean" } },
|
|
462
|
-
"maxWidthChars": { girName: "max-width-chars", ffiType: { "type": "int32" } },
|
|
463
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
464
|
-
"widthChars": { girName: "width-chars", ffiType: { "type": "int32" } },
|
|
465
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
466
|
-
},
|
|
467
|
-
AdwEntryRow: {
|
|
468
|
-
"activatesDefault": { girName: "activates-default", ffiType: { "type": "boolean" } },
|
|
469
|
-
"attributes": { girName: "attributes", ffiType: { "type": "boxed", "innerType": "PangoAttrList", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_attr_list_get_type" } },
|
|
470
|
-
"enableEmojiCompletion": { girName: "enable-emoji-completion", ffiType: { "type": "boolean" } },
|
|
471
|
-
"inputHints": { girName: "input-hints", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_input_hints_get_type", "signed": false } },
|
|
472
|
-
"inputPurpose": { girName: "input-purpose", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_input_purpose_get_type", "signed": false } },
|
|
473
|
-
"maxLength": { girName: "max-length", ffiType: { "type": "int32" } },
|
|
474
|
-
"showApplyButton": { girName: "show-apply-button", ffiType: { "type": "boolean" } },
|
|
475
|
-
"editable": { girName: "editable", ffiType: { "type": "boolean" } },
|
|
476
|
-
"enableUndo": { girName: "enable-undo", ffiType: { "type": "boolean" } },
|
|
477
|
-
"maxWidthChars": { girName: "max-width-chars", ffiType: { "type": "int32" } },
|
|
478
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
479
|
-
"widthChars": { girName: "width-chars", ffiType: { "type": "int32" } },
|
|
480
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
481
|
-
},
|
|
482
|
-
GtkExpander: {
|
|
483
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
484
|
-
"expanded": { girName: "expanded", ffiType: { "type": "boolean" } },
|
|
485
|
-
"label": { girName: "label", ffiType: { "type": "string", "ownership": "full" } },
|
|
486
|
-
"labelWidget": { girName: "label-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
487
|
-
"resizeToplevel": { girName: "resize-toplevel", ffiType: { "type": "boolean" } },
|
|
488
|
-
"useMarkup": { girName: "use-markup", ffiType: { "type": "boolean" } },
|
|
489
|
-
"useUnderline": { girName: "use-underline", ffiType: { "type": "boolean" } },
|
|
490
|
-
},
|
|
491
|
-
AdwExpanderRow: {
|
|
492
|
-
"enableExpansion": { girName: "enable-expansion", ffiType: { "type": "boolean" } },
|
|
493
|
-
"expanded": { girName: "expanded", ffiType: { "type": "boolean" } },
|
|
494
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
495
|
-
"showEnableSwitch": { girName: "show-enable-switch", ffiType: { "type": "boolean" } },
|
|
496
|
-
"subtitle": { girName: "subtitle", ffiType: { "type": "string", "ownership": "full" } },
|
|
497
|
-
"subtitleLines": { girName: "subtitle-lines", ffiType: { "type": "int32" } },
|
|
498
|
-
"titleLines": { girName: "title-lines", ffiType: { "type": "int32" } },
|
|
499
|
-
},
|
|
500
|
-
GtkFileChooserDialog: {
|
|
501
|
-
"action": { girName: "action", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_file_chooser_action_get_type", "signed": false } },
|
|
502
|
-
"createFolders": { girName: "create-folders", ffiType: { "type": "boolean" } },
|
|
503
|
-
"filter": { girName: "filter", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
504
|
-
"selectMultiple": { girName: "select-multiple", ffiType: { "type": "boolean" } },
|
|
505
|
-
},
|
|
506
|
-
GtkFileChooserWidget: {
|
|
507
|
-
"searchMode": { girName: "search-mode", ffiType: { "type": "boolean" } },
|
|
508
|
-
"action": { girName: "action", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_file_chooser_action_get_type", "signed": false } },
|
|
509
|
-
"createFolders": { girName: "create-folders", ffiType: { "type": "boolean" } },
|
|
510
|
-
"filter": { girName: "filter", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
511
|
-
"selectMultiple": { girName: "select-multiple", ffiType: { "type": "boolean" } },
|
|
512
|
-
},
|
|
513
|
-
AdwFlap: {
|
|
514
|
-
"content": { girName: "content", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
515
|
-
"flap": { girName: "flap", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
516
|
-
"flapPosition": { girName: "flap-position", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_pack_type_get_type", "signed": false } },
|
|
517
|
-
"foldDuration": { girName: "fold-duration", ffiType: { "type": "uint32" } },
|
|
518
|
-
"foldPolicy": { girName: "fold-policy", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_flap_fold_policy_get_type", "signed": false } },
|
|
519
|
-
"foldThresholdPolicy": { girName: "fold-threshold-policy", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_fold_threshold_policy_get_type", "signed": false } },
|
|
520
|
-
"locked": { girName: "locked", ffiType: { "type": "boolean" } },
|
|
521
|
-
"modal": { girName: "modal", ffiType: { "type": "boolean" } },
|
|
522
|
-
"revealFlap": { girName: "reveal-flap", ffiType: { "type": "boolean" } },
|
|
523
|
-
"revealParams": { girName: "reveal-params", ffiType: { "type": "fundamental", "library": "libadwaita-1.so.0", "refFn": "adw_spring_params_ref", "unrefFn": "adw_spring_params_unref", "ownership": "full", "typeName": "AdwSpringParams" } },
|
|
524
|
-
"separator": { girName: "separator", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
525
|
-
"swipeToClose": { girName: "swipe-to-close", ffiType: { "type": "boolean" } },
|
|
526
|
-
"swipeToOpen": { girName: "swipe-to-open", ffiType: { "type": "boolean" } },
|
|
527
|
-
"transitionType": { girName: "transition-type", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_flap_transition_type_get_type", "signed": false } },
|
|
528
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
529
|
-
},
|
|
530
|
-
GtkFlowBox: {
|
|
531
|
-
"acceptUnpairedRelease": { girName: "accept-unpaired-release", ffiType: { "type": "boolean" } },
|
|
532
|
-
"activateOnSingleClick": { girName: "activate-on-single-click", ffiType: { "type": "boolean" } },
|
|
533
|
-
"columnSpacing": { girName: "column-spacing", ffiType: { "type": "uint32" } },
|
|
534
|
-
"homogeneous": { girName: "homogeneous", ffiType: { "type": "boolean" } },
|
|
535
|
-
"maxChildrenPerLine": { girName: "max-children-per-line", ffiType: { "type": "uint32" } },
|
|
536
|
-
"minChildrenPerLine": { girName: "min-children-per-line", ffiType: { "type": "uint32" } },
|
|
537
|
-
"rowSpacing": { girName: "row-spacing", ffiType: { "type": "uint32" } },
|
|
538
|
-
"selectionMode": { girName: "selection-mode", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_selection_mode_get_type", "signed": false } },
|
|
539
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
540
|
-
},
|
|
541
|
-
GtkFlowBoxChild: {
|
|
542
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
543
|
-
},
|
|
544
|
-
GtkFontButton: {
|
|
545
|
-
"modal": { girName: "modal", ffiType: { "type": "boolean" } },
|
|
546
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
547
|
-
"useFont": { girName: "use-font", ffiType: { "type": "boolean" } },
|
|
548
|
-
"useSize": { girName: "use-size", ffiType: { "type": "boolean" } },
|
|
549
|
-
"font": { girName: "font", ffiType: { "type": "string", "ownership": "full" } },
|
|
550
|
-
"fontDesc": { girName: "font-desc", ffiType: { "type": "boxed", "innerType": "PangoFontDescription", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_font_description_get_type" } },
|
|
551
|
-
"language": { girName: "language", ffiType: { "type": "string", "ownership": "full" } },
|
|
552
|
-
"level": { girName: "level", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_font_chooser_level_get_type", "signed": false } },
|
|
553
|
-
"previewText": { girName: "preview-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
554
|
-
"showPreviewEntry": { girName: "show-preview-entry", ffiType: { "type": "boolean" } },
|
|
555
|
-
},
|
|
556
|
-
GtkFontChooserDialog: {
|
|
557
|
-
"font": { girName: "font", ffiType: { "type": "string", "ownership": "full" } },
|
|
558
|
-
"fontDesc": { girName: "font-desc", ffiType: { "type": "boxed", "innerType": "PangoFontDescription", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_font_description_get_type" } },
|
|
559
|
-
"language": { girName: "language", ffiType: { "type": "string", "ownership": "full" } },
|
|
560
|
-
"level": { girName: "level", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_font_chooser_level_get_type", "signed": false } },
|
|
561
|
-
"previewText": { girName: "preview-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
562
|
-
"showPreviewEntry": { girName: "show-preview-entry", ffiType: { "type": "boolean" } },
|
|
563
|
-
},
|
|
564
|
-
GtkFontChooserWidget: {
|
|
565
|
-
"font": { girName: "font", ffiType: { "type": "string", "ownership": "full" } },
|
|
566
|
-
"fontDesc": { girName: "font-desc", ffiType: { "type": "boxed", "innerType": "PangoFontDescription", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_font_description_get_type" } },
|
|
567
|
-
"language": { girName: "language", ffiType: { "type": "string", "ownership": "full" } },
|
|
568
|
-
"level": { girName: "level", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_font_chooser_level_get_type", "signed": false } },
|
|
569
|
-
"previewText": { girName: "preview-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
570
|
-
"showPreviewEntry": { girName: "show-preview-entry", ffiType: { "type": "boolean" } },
|
|
571
|
-
},
|
|
572
|
-
GtkFontDialogButton: {
|
|
573
|
-
"fontDesc": { girName: "font-desc", ffiType: { "type": "boxed", "innerType": "PangoFontDescription", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_font_description_get_type" } },
|
|
574
|
-
"fontFeatures": { girName: "font-features", ffiType: { "type": "string", "ownership": "full" } },
|
|
575
|
-
"language": { girName: "language", ffiType: { "type": "boxed", "innerType": "PangoLanguage", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_language_get_type" } },
|
|
576
|
-
"level": { girName: "level", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_font_level_get_type", "signed": false } },
|
|
577
|
-
"useFont": { girName: "use-font", ffiType: { "type": "boolean" } },
|
|
578
|
-
"useSize": { girName: "use-size", ffiType: { "type": "boolean" } },
|
|
579
|
-
},
|
|
580
|
-
GtkFrame: {
|
|
581
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
582
|
-
"label": { girName: "label", ffiType: { "type": "string", "ownership": "full" } },
|
|
583
|
-
"labelWidget": { girName: "label-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
584
|
-
"labelXalign": { girName: "label-xalign", ffiType: { "type": "float32" } },
|
|
585
|
-
},
|
|
586
|
-
GtkGLArea: {
|
|
587
|
-
"allowedApis": { girName: "allowed-apis", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gdk_gl_api_get_type", "signed": false } },
|
|
588
|
-
"autoRender": { girName: "auto-render", ffiType: { "type": "boolean" } },
|
|
589
|
-
"hasDepthBuffer": { girName: "has-depth-buffer", ffiType: { "type": "boolean" } },
|
|
590
|
-
"hasStencilBuffer": { girName: "has-stencil-buffer", ffiType: { "type": "boolean" } },
|
|
591
|
-
"useEs": { girName: "use-es", ffiType: { "type": "boolean" } },
|
|
592
|
-
},
|
|
593
|
-
GtkGraphicsOffload: {
|
|
594
|
-
"blackBackground": { girName: "black-background", ffiType: { "type": "boolean" } },
|
|
595
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
596
|
-
"enabled": { girName: "enabled", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_graphics_offload_enabled_get_type", "signed": false } },
|
|
597
|
-
},
|
|
598
|
-
GtkGrid: {
|
|
599
|
-
"baselineRow": { girName: "baseline-row", ffiType: { "type": "int32" } },
|
|
600
|
-
"columnHomogeneous": { girName: "column-homogeneous", ffiType: { "type": "boolean" } },
|
|
601
|
-
"columnSpacing": { girName: "column-spacing", ffiType: { "type": "int32" } },
|
|
602
|
-
"rowHomogeneous": { girName: "row-homogeneous", ffiType: { "type": "boolean" } },
|
|
603
|
-
"rowSpacing": { girName: "row-spacing", ffiType: { "type": "int32" } },
|
|
604
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
605
|
-
},
|
|
606
|
-
GtkGridView: {
|
|
607
|
-
"enableRubberband": { girName: "enable-rubberband", ffiType: { "type": "boolean" } },
|
|
608
|
-
"maxColumns": { girName: "max-columns", ffiType: { "type": "uint32" } },
|
|
609
|
-
"minColumns": { girName: "min-columns", ffiType: { "type": "uint32" } },
|
|
610
|
-
"singleClickActivate": { girName: "single-click-activate", ffiType: { "type": "boolean" } },
|
|
611
|
-
"tabBehavior": { girName: "tab-behavior", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_list_tab_behavior_get_type", "signed": false } },
|
|
612
|
-
},
|
|
613
|
-
GtkSourceGutter: {
|
|
614
|
-
"view": { girName: "view", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
615
|
-
"windowType": { girName: "window-type", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_text_window_type_get_type", "signed": false }, constructOnly: true },
|
|
616
|
-
},
|
|
617
|
-
GtkSourceGutterRenderer: {
|
|
618
|
-
"alignmentMode": { girName: "alignment-mode", ffiType: { "type": "enum", "library": "libgtksourceview-5.so.0", "getTypeFn": "gtk_source_gutter_renderer_alignment_mode_get_type", "signed": false } },
|
|
619
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
620
|
-
"xpad": { girName: "xpad", ffiType: { "type": "int32" } },
|
|
621
|
-
"yalign": { girName: "yalign", ffiType: { "type": "float32" } },
|
|
622
|
-
"ypad": { girName: "ypad", ffiType: { "type": "int32" } },
|
|
623
|
-
},
|
|
624
|
-
GtkSourceGutterRendererPixbuf: {
|
|
625
|
-
"gicon": { girName: "gicon", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
626
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
627
|
-
"paintable": { girName: "paintable", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
628
|
-
"pixbuf": { girName: "pixbuf", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
629
|
-
},
|
|
630
|
-
GtkSourceGutterRendererText: {
|
|
631
|
-
"markup": { girName: "markup", ffiType: { "type": "string", "ownership": "full" } },
|
|
632
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
633
|
-
},
|
|
634
|
-
GtkHeaderBar: {
|
|
635
|
-
"decorationLayout": { girName: "decoration-layout", ffiType: { "type": "string", "ownership": "full" } },
|
|
636
|
-
"showTitleButtons": { girName: "show-title-buttons", ffiType: { "type": "boolean" } },
|
|
637
|
-
"titleWidget": { girName: "title-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
638
|
-
"useNativeControls": { girName: "use-native-controls", ffiType: { "type": "boolean" } },
|
|
639
|
-
},
|
|
640
|
-
AdwHeaderBar: {
|
|
641
|
-
"centeringPolicy": { girName: "centering-policy", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_centering_policy_get_type", "signed": false } },
|
|
642
|
-
"decorationLayout": { girName: "decoration-layout", ffiType: { "type": "string", "ownership": "full" } },
|
|
643
|
-
"showBackButton": { girName: "show-back-button", ffiType: { "type": "boolean" } },
|
|
644
|
-
"showEndTitleButtons": { girName: "show-end-title-buttons", ffiType: { "type": "boolean" } },
|
|
645
|
-
"showStartTitleButtons": { girName: "show-start-title-buttons", ffiType: { "type": "boolean" } },
|
|
646
|
-
"showTitle": { girName: "show-title", ffiType: { "type": "boolean" } },
|
|
647
|
-
"titleWidget": { girName: "title-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
648
|
-
},
|
|
649
|
-
GtkIconView: {
|
|
650
|
-
"activateOnSingleClick": { girName: "activate-on-single-click", ffiType: { "type": "boolean" } },
|
|
651
|
-
"cellArea": { girName: "cell-area", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
652
|
-
"columnSpacing": { girName: "column-spacing", ffiType: { "type": "int32" } },
|
|
653
|
-
"columns": { girName: "columns", ffiType: { "type": "int32" } },
|
|
654
|
-
"itemOrientation": { girName: "item-orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
655
|
-
"itemPadding": { girName: "item-padding", ffiType: { "type": "int32" } },
|
|
656
|
-
"itemWidth": { girName: "item-width", ffiType: { "type": "int32" } },
|
|
657
|
-
"margin": { girName: "margin", ffiType: { "type": "int32" } },
|
|
658
|
-
"markupColumn": { girName: "markup-column", ffiType: { "type": "int32" } },
|
|
659
|
-
"model": { girName: "model", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
660
|
-
"pixbufColumn": { girName: "pixbuf-column", ffiType: { "type": "int32" } },
|
|
661
|
-
"reorderable": { girName: "reorderable", ffiType: { "type": "boolean" } },
|
|
662
|
-
"rowSpacing": { girName: "row-spacing", ffiType: { "type": "int32" } },
|
|
663
|
-
"selectionMode": { girName: "selection-mode", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_selection_mode_get_type", "signed": false } },
|
|
664
|
-
"spacing": { girName: "spacing", ffiType: { "type": "int32" } },
|
|
665
|
-
"textColumn": { girName: "text-column", ffiType: { "type": "int32" } },
|
|
666
|
-
"tooltipColumn": { girName: "tooltip-column", ffiType: { "type": "int32" } },
|
|
667
|
-
"hadjustment": { girName: "hadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
668
|
-
"hscrollPolicy": { girName: "hscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
669
|
-
"vadjustment": { girName: "vadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
670
|
-
"vscrollPolicy": { girName: "vscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
671
|
-
},
|
|
672
|
-
GtkImage: {
|
|
673
|
-
"file": { girName: "file", ffiType: { "type": "string", "ownership": "full" } },
|
|
674
|
-
"gicon": { girName: "gicon", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
675
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
676
|
-
"iconSize": { girName: "icon-size", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_icon_size_get_type", "signed": false } },
|
|
677
|
-
"paintable": { girName: "paintable", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
678
|
-
"pixelSize": { girName: "pixel-size", ffiType: { "type": "int32" } },
|
|
679
|
-
"resource": { girName: "resource", ffiType: { "type": "string", "ownership": "full" } },
|
|
680
|
-
"useFallback": { girName: "use-fallback", ffiType: { "type": "boolean" } },
|
|
681
|
-
},
|
|
682
|
-
GtkInfoBar: {
|
|
683
|
-
"messageType": { girName: "message-type", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_message_type_get_type", "signed": false } },
|
|
684
|
-
"revealed": { girName: "revealed", ffiType: { "type": "boolean" } },
|
|
685
|
-
"showCloseButton": { girName: "show-close-button", ffiType: { "type": "boolean" } },
|
|
686
|
-
},
|
|
687
|
-
AdwInlineViewSwitcher: {
|
|
688
|
-
"canShrink": { girName: "can-shrink", ffiType: { "type": "boolean" } },
|
|
689
|
-
"displayMode": { girName: "display-mode", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_inline_view_switcher_display_mode_get_type", "signed": false } },
|
|
690
|
-
"homogeneous": { girName: "homogeneous", ffiType: { "type": "boolean" } },
|
|
691
|
-
"stack": { girName: "stack", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
692
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
693
|
-
},
|
|
694
|
-
GtkInscription: {
|
|
695
|
-
"attributes": { girName: "attributes", ffiType: { "type": "boxed", "innerType": "PangoAttrList", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_attr_list_get_type" } },
|
|
696
|
-
"markup": { girName: "markup", ffiType: { "type": "string", "ownership": "full" } },
|
|
697
|
-
"minChars": { girName: "min-chars", ffiType: { "type": "uint32" } },
|
|
698
|
-
"minLines": { girName: "min-lines", ffiType: { "type": "uint32" } },
|
|
699
|
-
"natChars": { girName: "nat-chars", ffiType: { "type": "uint32" } },
|
|
700
|
-
"natLines": { girName: "nat-lines", ffiType: { "type": "uint32" } },
|
|
701
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
702
|
-
"textOverflow": { girName: "text-overflow", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_inscription_overflow_get_type", "signed": false } },
|
|
703
|
-
"wrapMode": { girName: "wrap-mode", ffiType: { "type": "enum", "library": "libpango-1.0.so.0", "getTypeFn": "pango_wrap_mode_get_type", "signed": false } },
|
|
704
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
705
|
-
"yalign": { girName: "yalign", ffiType: { "type": "float32" } },
|
|
706
|
-
},
|
|
707
|
-
GtkLabel: {
|
|
708
|
-
"attributes": { girName: "attributes", ffiType: { "type": "boxed", "innerType": "PangoAttrList", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_attr_list_get_type" } },
|
|
709
|
-
"ellipsize": { girName: "ellipsize", ffiType: { "type": "enum", "library": "libpango-1.0.so.0", "getTypeFn": "pango_ellipsize_mode_get_type", "signed": false } },
|
|
710
|
-
"extraMenu": { girName: "extra-menu", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
711
|
-
"justify": { girName: "justify", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_justification_get_type", "signed": false } },
|
|
712
|
-
"label": { girName: "label", ffiType: { "type": "string", "ownership": "full" } },
|
|
713
|
-
"lines": { girName: "lines", ffiType: { "type": "int32" } },
|
|
714
|
-
"maxWidthChars": { girName: "max-width-chars", ffiType: { "type": "int32" } },
|
|
715
|
-
"mnemonicWidget": { girName: "mnemonic-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
716
|
-
"naturalWrapMode": { girName: "natural-wrap-mode", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_natural_wrap_mode_get_type", "signed": false } },
|
|
717
|
-
"selectable": { girName: "selectable", ffiType: { "type": "boolean" } },
|
|
718
|
-
"singleLineMode": { girName: "single-line-mode", ffiType: { "type": "boolean" } },
|
|
719
|
-
"tabs": { girName: "tabs", ffiType: { "type": "boxed", "innerType": "PangoTabArray", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_tab_array_get_type" } },
|
|
720
|
-
"useMarkup": { girName: "use-markup", ffiType: { "type": "boolean" } },
|
|
721
|
-
"useUnderline": { girName: "use-underline", ffiType: { "type": "boolean" } },
|
|
722
|
-
"widthChars": { girName: "width-chars", ffiType: { "type": "int32" } },
|
|
723
|
-
"wrap": { girName: "wrap", ffiType: { "type": "boolean" } },
|
|
724
|
-
"wrapMode": { girName: "wrap-mode", ffiType: { "type": "enum", "library": "libpango-1.0.so.0", "getTypeFn": "pango_wrap_mode_get_type", "signed": false } },
|
|
725
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
726
|
-
"yalign": { girName: "yalign", ffiType: { "type": "float32" } },
|
|
727
|
-
},
|
|
728
|
-
AdwLayoutSlot: {
|
|
729
|
-
"id": { girName: "id", ffiType: { "type": "string", "ownership": "full" }, constructOnly: true },
|
|
730
|
-
},
|
|
731
|
-
AdwLeaflet: {
|
|
732
|
-
"canNavigateBack": { girName: "can-navigate-back", ffiType: { "type": "boolean" } },
|
|
733
|
-
"canNavigateForward": { girName: "can-navigate-forward", ffiType: { "type": "boolean" } },
|
|
734
|
-
"canUnfold": { girName: "can-unfold", ffiType: { "type": "boolean" } },
|
|
735
|
-
"childTransitionParams": { girName: "child-transition-params", ffiType: { "type": "fundamental", "library": "libadwaita-1.so.0", "refFn": "adw_spring_params_ref", "unrefFn": "adw_spring_params_unref", "ownership": "full", "typeName": "AdwSpringParams" } },
|
|
736
|
-
"foldThresholdPolicy": { girName: "fold-threshold-policy", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_fold_threshold_policy_get_type", "signed": false } },
|
|
737
|
-
"homogeneous": { girName: "homogeneous", ffiType: { "type": "boolean" } },
|
|
738
|
-
"modeTransitionDuration": { girName: "mode-transition-duration", ffiType: { "type": "uint32" } },
|
|
739
|
-
"transitionType": { girName: "transition-type", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_leaflet_transition_type_get_type", "signed": false } },
|
|
740
|
-
"visibleChild": { girName: "visible-child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
741
|
-
"visibleChildName": { girName: "visible-child-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
742
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
743
|
-
},
|
|
744
|
-
GtkLevelBar: {
|
|
745
|
-
"inverted": { girName: "inverted", ffiType: { "type": "boolean" } },
|
|
746
|
-
"maxValue": { girName: "max-value", ffiType: { "type": "float64" } },
|
|
747
|
-
"minValue": { girName: "min-value", ffiType: { "type": "float64" } },
|
|
748
|
-
"mode": { girName: "mode", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_level_bar_mode_get_type", "signed": false } },
|
|
749
|
-
"value": { girName: "value", ffiType: { "type": "float64" } },
|
|
750
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
751
|
-
},
|
|
752
|
-
GtkLinkButton: {
|
|
753
|
-
"uri": { girName: "uri", ffiType: { "type": "string", "ownership": "full" } },
|
|
754
|
-
"visited": { girName: "visited", ffiType: { "type": "boolean" } },
|
|
755
|
-
},
|
|
756
|
-
GtkListBase: {
|
|
757
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
758
|
-
"hadjustment": { girName: "hadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
759
|
-
"hscrollPolicy": { girName: "hscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
760
|
-
"vadjustment": { girName: "vadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
761
|
-
"vscrollPolicy": { girName: "vscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
762
|
-
},
|
|
763
|
-
GtkListBox: {
|
|
764
|
-
"acceptUnpairedRelease": { girName: "accept-unpaired-release", ffiType: { "type": "boolean" } },
|
|
765
|
-
"activateOnSingleClick": { girName: "activate-on-single-click", ffiType: { "type": "boolean" } },
|
|
766
|
-
"selectionMode": { girName: "selection-mode", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_selection_mode_get_type", "signed": false } },
|
|
767
|
-
"showSeparators": { girName: "show-separators", ffiType: { "type": "boolean" } },
|
|
768
|
-
"tabBehavior": { girName: "tab-behavior", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_list_tab_behavior_get_type", "signed": false } },
|
|
769
|
-
},
|
|
770
|
-
GtkListBoxRow: {
|
|
771
|
-
"activatable": { girName: "activatable", ffiType: { "type": "boolean" } },
|
|
772
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
773
|
-
"selectable": { girName: "selectable", ffiType: { "type": "boolean" } },
|
|
774
|
-
"actionName": { girName: "action-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
775
|
-
"actionTarget": { girName: "action-target", ffiType: { "type": "fundamental", "library": "libgobject-2.0.so.0,libglib-2.0.so.0", "refFn": "g_variant_ref_sink", "unrefFn": "g_variant_unref", "ownership": "full", "typeName": "GVariant" } },
|
|
776
|
-
},
|
|
777
|
-
GtkListView: {
|
|
778
|
-
"enableRubberband": { girName: "enable-rubberband", ffiType: { "type": "boolean" } },
|
|
779
|
-
"headerFactory": { girName: "header-factory", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
780
|
-
"showSeparators": { girName: "show-separators", ffiType: { "type": "boolean" } },
|
|
781
|
-
"singleClickActivate": { girName: "single-click-activate", ffiType: { "type": "boolean" } },
|
|
782
|
-
"tabBehavior": { girName: "tab-behavior", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_list_tab_behavior_get_type", "signed": false } },
|
|
783
|
-
},
|
|
784
|
-
GtkLockButton: {
|
|
785
|
-
"permission": { girName: "permission", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
786
|
-
"textLock": { girName: "text-lock", ffiType: { "type": "string", "ownership": "full" } },
|
|
787
|
-
"textUnlock": { girName: "text-unlock", ffiType: { "type": "string", "ownership": "full" } },
|
|
788
|
-
"tooltipLock": { girName: "tooltip-lock", ffiType: { "type": "string", "ownership": "full" } },
|
|
789
|
-
"tooltipNotAuthorized": { girName: "tooltip-not-authorized", ffiType: { "type": "string", "ownership": "full" } },
|
|
790
|
-
"tooltipUnlock": { girName: "tooltip-unlock", ffiType: { "type": "string", "ownership": "full" } },
|
|
791
|
-
},
|
|
792
|
-
GtkSourceMap: {
|
|
793
|
-
"fontDesc": { girName: "font-desc", ffiType: { "type": "boxed", "innerType": "PangoFontDescription", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_font_description_get_type" } },
|
|
794
|
-
"view": { girName: "view", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
795
|
-
},
|
|
796
|
-
GtkMediaControls: {
|
|
797
|
-
"mediaStream": { girName: "media-stream", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
798
|
-
},
|
|
799
|
-
GtkMenuButton: {
|
|
800
|
-
"active": { girName: "active", ffiType: { "type": "boolean" } },
|
|
801
|
-
"alwaysShowArrow": { girName: "always-show-arrow", ffiType: { "type": "boolean" } },
|
|
802
|
-
"canShrink": { girName: "can-shrink", ffiType: { "type": "boolean" } },
|
|
803
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
804
|
-
"direction": { girName: "direction", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_arrow_type_get_type", "signed": false } },
|
|
805
|
-
"hasFrame": { girName: "has-frame", ffiType: { "type": "boolean" } },
|
|
806
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
807
|
-
"label": { girName: "label", ffiType: { "type": "string", "ownership": "full" } },
|
|
808
|
-
"popover": { girName: "popover", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
809
|
-
"primary": { girName: "primary", ffiType: { "type": "boolean" } },
|
|
810
|
-
"useUnderline": { girName: "use-underline", ffiType: { "type": "boolean" } },
|
|
811
|
-
},
|
|
812
|
-
GtkMessageDialog: {
|
|
813
|
-
"buttons": { girName: "buttons", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_buttons_type_get_type", "signed": false }, constructOnly: true },
|
|
814
|
-
"messageType": { girName: "message-type", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_message_type_get_type", "signed": false } },
|
|
815
|
-
"secondaryText": { girName: "secondary-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
816
|
-
"secondaryUseMarkup": { girName: "secondary-use-markup", ffiType: { "type": "boolean" } },
|
|
817
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
818
|
-
"useMarkup": { girName: "use-markup", ffiType: { "type": "boolean" } },
|
|
819
|
-
},
|
|
820
|
-
AdwMessageDialog: {
|
|
821
|
-
"body": { girName: "body", ffiType: { "type": "string", "ownership": "full" } },
|
|
822
|
-
"bodyUseMarkup": { girName: "body-use-markup", ffiType: { "type": "boolean" } },
|
|
823
|
-
"closeResponse": { girName: "close-response", ffiType: { "type": "string", "ownership": "full" } },
|
|
824
|
-
"defaultResponse": { girName: "default-response", ffiType: { "type": "string", "ownership": "full" } },
|
|
825
|
-
"extraChild": { girName: "extra-child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
826
|
-
"heading": { girName: "heading", ffiType: { "type": "string", "ownership": "full" } },
|
|
827
|
-
"headingUseMarkup": { girName: "heading-use-markup", ffiType: { "type": "boolean" } },
|
|
828
|
-
},
|
|
829
|
-
AdwMultiLayoutView: {
|
|
830
|
-
"layout": { girName: "layout", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
831
|
-
"layoutName": { girName: "layout-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
832
|
-
},
|
|
833
|
-
AdwNavigationPage: {
|
|
834
|
-
"canPop": { girName: "can-pop", ffiType: { "type": "boolean" } },
|
|
835
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
836
|
-
"tag": { girName: "tag", ffiType: { "type": "string", "ownership": "full" } },
|
|
837
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
838
|
-
},
|
|
839
|
-
AdwNavigationSplitView: {
|
|
840
|
-
"collapsed": { girName: "collapsed", ffiType: { "type": "boolean" } },
|
|
841
|
-
"content": { girName: "content", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
842
|
-
"maxSidebarWidth": { girName: "max-sidebar-width", ffiType: { "type": "float64" } },
|
|
843
|
-
"minSidebarWidth": { girName: "min-sidebar-width", ffiType: { "type": "float64" } },
|
|
844
|
-
"showContent": { girName: "show-content", ffiType: { "type": "boolean" } },
|
|
845
|
-
"sidebar": { girName: "sidebar", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
846
|
-
"sidebarPosition": { girName: "sidebar-position", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_pack_type_get_type", "signed": false } },
|
|
847
|
-
"sidebarWidthFraction": { girName: "sidebar-width-fraction", ffiType: { "type": "float64" } },
|
|
848
|
-
"sidebarWidthUnit": { girName: "sidebar-width-unit", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_length_unit_get_type", "signed": false } },
|
|
849
|
-
},
|
|
850
|
-
AdwNavigationView: {
|
|
851
|
-
"animateTransitions": { girName: "animate-transitions", ffiType: { "type": "boolean" } },
|
|
852
|
-
"hhomogeneous": { girName: "hhomogeneous", ffiType: { "type": "boolean" } },
|
|
853
|
-
"popOnEscape": { girName: "pop-on-escape", ffiType: { "type": "boolean" } },
|
|
854
|
-
"vhomogeneous": { girName: "vhomogeneous", ffiType: { "type": "boolean" } },
|
|
855
|
-
},
|
|
856
|
-
GtkNotebook: {
|
|
857
|
-
"enablePopup": { girName: "enable-popup", ffiType: { "type": "boolean" } },
|
|
858
|
-
"groupName": { girName: "group-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
859
|
-
"page": { girName: "page", ffiType: { "type": "int32" } },
|
|
860
|
-
"scrollable": { girName: "scrollable", ffiType: { "type": "boolean" } },
|
|
861
|
-
"showBorder": { girName: "show-border", ffiType: { "type": "boolean" } },
|
|
862
|
-
"showTabs": { girName: "show-tabs", ffiType: { "type": "boolean" } },
|
|
863
|
-
"tabPos": { girName: "tab-pos", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_position_type_get_type", "signed": false } },
|
|
864
|
-
},
|
|
865
|
-
GtkOverlay: {
|
|
866
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
867
|
-
},
|
|
868
|
-
AdwOverlaySplitView: {
|
|
869
|
-
"collapsed": { girName: "collapsed", ffiType: { "type": "boolean" } },
|
|
870
|
-
"content": { girName: "content", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
871
|
-
"enableHideGesture": { girName: "enable-hide-gesture", ffiType: { "type": "boolean" } },
|
|
872
|
-
"enableShowGesture": { girName: "enable-show-gesture", ffiType: { "type": "boolean" } },
|
|
873
|
-
"maxSidebarWidth": { girName: "max-sidebar-width", ffiType: { "type": "float64" } },
|
|
874
|
-
"minSidebarWidth": { girName: "min-sidebar-width", ffiType: { "type": "float64" } },
|
|
875
|
-
"pinSidebar": { girName: "pin-sidebar", ffiType: { "type": "boolean" } },
|
|
876
|
-
"showSidebar": { girName: "show-sidebar", ffiType: { "type": "boolean" } },
|
|
877
|
-
"sidebar": { girName: "sidebar", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
878
|
-
"sidebarPosition": { girName: "sidebar-position", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_pack_type_get_type", "signed": false } },
|
|
879
|
-
"sidebarWidthFraction": { girName: "sidebar-width-fraction", ffiType: { "type": "float64" } },
|
|
880
|
-
"sidebarWidthUnit": { girName: "sidebar-width-unit", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_length_unit_get_type", "signed": false } },
|
|
881
|
-
},
|
|
882
|
-
GtkPaned: {
|
|
883
|
-
"endChild": { girName: "end-child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
884
|
-
"position": { girName: "position", ffiType: { "type": "int32" } },
|
|
885
|
-
"positionSet": { girName: "position-set", ffiType: { "type": "boolean" } },
|
|
886
|
-
"resizeEndChild": { girName: "resize-end-child", ffiType: { "type": "boolean" } },
|
|
887
|
-
"resizeStartChild": { girName: "resize-start-child", ffiType: { "type": "boolean" } },
|
|
888
|
-
"shrinkEndChild": { girName: "shrink-end-child", ffiType: { "type": "boolean" } },
|
|
889
|
-
"shrinkStartChild": { girName: "shrink-start-child", ffiType: { "type": "boolean" } },
|
|
890
|
-
"startChild": { girName: "start-child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
891
|
-
"wideHandle": { girName: "wide-handle", ffiType: { "type": "boolean" } },
|
|
892
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
893
|
-
},
|
|
894
|
-
GtkPasswordEntry: {
|
|
895
|
-
"activatesDefault": { girName: "activates-default", ffiType: { "type": "boolean" } },
|
|
896
|
-
"extraMenu": { girName: "extra-menu", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
897
|
-
"placeholderText": { girName: "placeholder-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
898
|
-
"showPeekIcon": { girName: "show-peek-icon", ffiType: { "type": "boolean" } },
|
|
899
|
-
"editable": { girName: "editable", ffiType: { "type": "boolean" } },
|
|
900
|
-
"enableUndo": { girName: "enable-undo", ffiType: { "type": "boolean" } },
|
|
901
|
-
"maxWidthChars": { girName: "max-width-chars", ffiType: { "type": "int32" } },
|
|
902
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
903
|
-
"widthChars": { girName: "width-chars", ffiType: { "type": "int32" } },
|
|
904
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
905
|
-
},
|
|
906
|
-
GtkPicture: {
|
|
907
|
-
"alternativeText": { girName: "alternative-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
908
|
-
"canShrink": { girName: "can-shrink", ffiType: { "type": "boolean" } },
|
|
909
|
-
"contentFit": { girName: "content-fit", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_content_fit_get_type", "signed": false } },
|
|
910
|
-
"file": { girName: "file", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
911
|
-
"keepAspectRatio": { girName: "keep-aspect-ratio", ffiType: { "type": "boolean" } },
|
|
912
|
-
"paintable": { girName: "paintable", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
913
|
-
},
|
|
914
|
-
GtkPopover: {
|
|
915
|
-
"autohide": { girName: "autohide", ffiType: { "type": "boolean" } },
|
|
916
|
-
"cascadePopdown": { girName: "cascade-popdown", ffiType: { "type": "boolean" } },
|
|
917
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
918
|
-
"defaultWidget": { girName: "default-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
919
|
-
"hasArrow": { girName: "has-arrow", ffiType: { "type": "boolean" } },
|
|
920
|
-
"mnemonicsVisible": { girName: "mnemonics-visible", ffiType: { "type": "boolean" } },
|
|
921
|
-
"pointingTo": { girName: "pointing-to", ffiType: { "type": "boxed", "innerType": "GdkRectangle", "ownership": "full", "library": "libgtk-4.so.1", "getTypeFn": "gdk_rectangle_get_type" } },
|
|
922
|
-
"position": { girName: "position", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_position_type_get_type", "signed": false } },
|
|
923
|
-
},
|
|
924
|
-
GtkPopoverMenu: {
|
|
925
|
-
"flags": { girName: "flags", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_popover_menu_flags_get_type", "signed": false } },
|
|
926
|
-
"visibleSubmenu": { girName: "visible-submenu", ffiType: { "type": "string", "ownership": "full" } },
|
|
927
|
-
},
|
|
928
|
-
AdwPreferencesDialog: {
|
|
929
|
-
"searchEnabled": { girName: "search-enabled", ffiType: { "type": "boolean" } },
|
|
930
|
-
"visiblePage": { girName: "visible-page", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
931
|
-
"visiblePageName": { girName: "visible-page-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
932
|
-
},
|
|
933
|
-
AdwPreferencesGroup: {
|
|
934
|
-
"description": { girName: "description", ffiType: { "type": "string", "ownership": "full" } },
|
|
935
|
-
"headerSuffix": { girName: "header-suffix", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
936
|
-
"separateRows": { girName: "separate-rows", ffiType: { "type": "boolean" } },
|
|
937
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
938
|
-
},
|
|
939
|
-
AdwPreferencesPage: {
|
|
940
|
-
"banner": { girName: "banner", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
941
|
-
"description": { girName: "description", ffiType: { "type": "string", "ownership": "full" } },
|
|
942
|
-
"descriptionCentered": { girName: "description-centered", ffiType: { "type": "boolean" } },
|
|
943
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
944
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
945
|
-
"useUnderline": { girName: "use-underline", ffiType: { "type": "boolean" } },
|
|
946
|
-
},
|
|
947
|
-
AdwPreferencesRow: {
|
|
948
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
949
|
-
"titleSelectable": { girName: "title-selectable", ffiType: { "type": "boolean" } },
|
|
950
|
-
"useMarkup": { girName: "use-markup", ffiType: { "type": "boolean" } },
|
|
951
|
-
"useUnderline": { girName: "use-underline", ffiType: { "type": "boolean" } },
|
|
952
|
-
},
|
|
953
|
-
AdwPreferencesWindow: {
|
|
954
|
-
"canNavigateBack": { girName: "can-navigate-back", ffiType: { "type": "boolean" } },
|
|
955
|
-
"searchEnabled": { girName: "search-enabled", ffiType: { "type": "boolean" } },
|
|
956
|
-
"visiblePage": { girName: "visible-page", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
957
|
-
"visiblePageName": { girName: "visible-page-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
958
|
-
},
|
|
959
|
-
GtkPrintUnixDialog: {
|
|
960
|
-
"currentPage": { girName: "current-page", ffiType: { "type": "int32" } },
|
|
961
|
-
"embedPageSetup": { girName: "embed-page-setup", ffiType: { "type": "boolean" } },
|
|
962
|
-
"hasSelection": { girName: "has-selection", ffiType: { "type": "boolean" } },
|
|
963
|
-
"manualCapabilities": { girName: "manual-capabilities", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_print_capabilities_get_type", "signed": false } },
|
|
964
|
-
"pageSetup": { girName: "page-setup", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
965
|
-
"printSettings": { girName: "print-settings", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
966
|
-
"supportSelection": { girName: "support-selection", ffiType: { "type": "boolean" } },
|
|
967
|
-
},
|
|
968
|
-
GtkProgressBar: {
|
|
969
|
-
"ellipsize": { girName: "ellipsize", ffiType: { "type": "enum", "library": "libpango-1.0.so.0", "getTypeFn": "pango_ellipsize_mode_get_type", "signed": false } },
|
|
970
|
-
"fraction": { girName: "fraction", ffiType: { "type": "float64" } },
|
|
971
|
-
"inverted": { girName: "inverted", ffiType: { "type": "boolean" } },
|
|
972
|
-
"pulseStep": { girName: "pulse-step", ffiType: { "type": "float64" } },
|
|
973
|
-
"showText": { girName: "show-text", ffiType: { "type": "boolean" } },
|
|
974
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
975
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
976
|
-
},
|
|
977
|
-
GtkRange: {
|
|
978
|
-
"fillLevel": { girName: "fill-level", ffiType: { "type": "float64" } },
|
|
979
|
-
"inverted": { girName: "inverted", ffiType: { "type": "boolean" } },
|
|
980
|
-
"restrictToFillLevel": { girName: "restrict-to-fill-level", ffiType: { "type": "boolean" } },
|
|
981
|
-
"roundDigits": { girName: "round-digits", ffiType: { "type": "int32" } },
|
|
982
|
-
"showFillLevel": { girName: "show-fill-level", ffiType: { "type": "boolean" } },
|
|
983
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
984
|
-
},
|
|
985
|
-
GtkRevealer: {
|
|
986
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
987
|
-
"revealChild": { girName: "reveal-child", ffiType: { "type": "boolean" } },
|
|
988
|
-
"transitionDuration": { girName: "transition-duration", ffiType: { "type": "uint32" } },
|
|
989
|
-
"transitionType": { girName: "transition-type", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_revealer_transition_type_get_type", "signed": false } },
|
|
990
|
-
},
|
|
991
|
-
GtkScale: {
|
|
992
|
-
"digits": { girName: "digits", ffiType: { "type": "int32" } },
|
|
993
|
-
"drawValue": { girName: "draw-value", ffiType: { "type": "boolean" } },
|
|
994
|
-
"hasOrigin": { girName: "has-origin", ffiType: { "type": "boolean" } },
|
|
995
|
-
"valuePos": { girName: "value-pos", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_position_type_get_type", "signed": false } },
|
|
996
|
-
},
|
|
997
|
-
GtkScaleButton: {
|
|
998
|
-
"hasFrame": { girName: "has-frame", ffiType: { "type": "boolean" } },
|
|
999
|
-
"icons": { girName: "icons", ffiType: { "type": "array", "itemType": { "type": "string", "ownership": "full" }, "kind": "array", "ownership": "full" } },
|
|
1000
|
-
"value": { girName: "value", ffiType: { "type": "float64" } },
|
|
1001
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
1002
|
-
},
|
|
1003
|
-
GtkScrollbar: {
|
|
1004
|
-
"adjustment": { girName: "adjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1005
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
1006
|
-
},
|
|
1007
|
-
GtkScrolledWindow: {
|
|
1008
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1009
|
-
"hadjustment": { girName: "hadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1010
|
-
"hasFrame": { girName: "has-frame", ffiType: { "type": "boolean" } },
|
|
1011
|
-
"hscrollbarPolicy": { girName: "hscrollbar-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_policy_type_get_type", "signed": false } },
|
|
1012
|
-
"kineticScrolling": { girName: "kinetic-scrolling", ffiType: { "type": "boolean" } },
|
|
1013
|
-
"maxContentHeight": { girName: "max-content-height", ffiType: { "type": "int32" } },
|
|
1014
|
-
"maxContentWidth": { girName: "max-content-width", ffiType: { "type": "int32" } },
|
|
1015
|
-
"minContentHeight": { girName: "min-content-height", ffiType: { "type": "int32" } },
|
|
1016
|
-
"minContentWidth": { girName: "min-content-width", ffiType: { "type": "int32" } },
|
|
1017
|
-
"overlayScrolling": { girName: "overlay-scrolling", ffiType: { "type": "boolean" } },
|
|
1018
|
-
"propagateNaturalHeight": { girName: "propagate-natural-height", ffiType: { "type": "boolean" } },
|
|
1019
|
-
"propagateNaturalWidth": { girName: "propagate-natural-width", ffiType: { "type": "boolean" } },
|
|
1020
|
-
"vadjustment": { girName: "vadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1021
|
-
"vscrollbarPolicy": { girName: "vscrollbar-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_policy_type_get_type", "signed": false } },
|
|
1022
|
-
"windowPlacement": { girName: "window-placement", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_corner_type_get_type", "signed": false } },
|
|
1023
|
-
},
|
|
1024
|
-
GtkSearchBar: {
|
|
1025
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1026
|
-
"keyCaptureWidget": { girName: "key-capture-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1027
|
-
"searchModeEnabled": { girName: "search-mode-enabled", ffiType: { "type": "boolean" } },
|
|
1028
|
-
"showCloseButton": { girName: "show-close-button", ffiType: { "type": "boolean" } },
|
|
1029
|
-
},
|
|
1030
|
-
GtkSearchEntry: {
|
|
1031
|
-
"activatesDefault": { girName: "activates-default", ffiType: { "type": "boolean" } },
|
|
1032
|
-
"inputHints": { girName: "input-hints", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_input_hints_get_type", "signed": false } },
|
|
1033
|
-
"inputPurpose": { girName: "input-purpose", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_input_purpose_get_type", "signed": false } },
|
|
1034
|
-
"placeholderText": { girName: "placeholder-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
1035
|
-
"searchDelay": { girName: "search-delay", ffiType: { "type": "uint32" } },
|
|
1036
|
-
"editable": { girName: "editable", ffiType: { "type": "boolean" } },
|
|
1037
|
-
"enableUndo": { girName: "enable-undo", ffiType: { "type": "boolean" } },
|
|
1038
|
-
"maxWidthChars": { girName: "max-width-chars", ffiType: { "type": "int32" } },
|
|
1039
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
1040
|
-
"widthChars": { girName: "width-chars", ffiType: { "type": "int32" } },
|
|
1041
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
1042
|
-
},
|
|
1043
|
-
GtkSeparator: {
|
|
1044
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
1045
|
-
},
|
|
1046
|
-
GtkShortcutLabel: {
|
|
1047
|
-
"accelerator": { girName: "accelerator", ffiType: { "type": "string", "ownership": "full" } },
|
|
1048
|
-
"disabledText": { girName: "disabled-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
1049
|
-
},
|
|
1050
|
-
AdwShortcutLabel: {
|
|
1051
|
-
"accelerator": { girName: "accelerator", ffiType: { "type": "string", "ownership": "full" } },
|
|
1052
|
-
"disabledText": { girName: "disabled-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
1053
|
-
},
|
|
1054
|
-
GtkShortcutsGroup: {
|
|
1055
|
-
"accelSizeGroup": { girName: "accel-size-group", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1056
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
1057
|
-
"titleSizeGroup": { girName: "title-size-group", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1058
|
-
"view": { girName: "view", ffiType: { "type": "string", "ownership": "full" } },
|
|
1059
|
-
},
|
|
1060
|
-
GtkShortcutsSection: {
|
|
1061
|
-
"maxHeight": { girName: "max-height", ffiType: { "type": "uint32" } },
|
|
1062
|
-
"sectionName": { girName: "section-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1063
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
1064
|
-
"viewName": { girName: "view-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1065
|
-
},
|
|
1066
|
-
GtkShortcutsShortcut: {
|
|
1067
|
-
"accelSizeGroup": { girName: "accel-size-group", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1068
|
-
"accelerator": { girName: "accelerator", ffiType: { "type": "string", "ownership": "full" } },
|
|
1069
|
-
"actionName": { girName: "action-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1070
|
-
"direction": { girName: "direction", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_text_direction_get_type", "signed": false } },
|
|
1071
|
-
"icon": { girName: "icon", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1072
|
-
"iconSet": { girName: "icon-set", ffiType: { "type": "boolean" } },
|
|
1073
|
-
"shortcutType": { girName: "shortcut-type", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_shortcut_type_get_type", "signed": false } },
|
|
1074
|
-
"subtitle": { girName: "subtitle", ffiType: { "type": "string", "ownership": "full" } },
|
|
1075
|
-
"subtitleSet": { girName: "subtitle-set", ffiType: { "type": "boolean" } },
|
|
1076
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
1077
|
-
"titleSizeGroup": { girName: "title-size-group", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1078
|
-
},
|
|
1079
|
-
GtkShortcutsWindow: {
|
|
1080
|
-
"sectionName": { girName: "section-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1081
|
-
"viewName": { girName: "view-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1082
|
-
},
|
|
1083
|
-
GtkSpinButton: {
|
|
1084
|
-
"activatesDefault": { girName: "activates-default", ffiType: { "type": "boolean" } },
|
|
1085
|
-
"climbRate": { girName: "climb-rate", ffiType: { "type": "float64" } },
|
|
1086
|
-
"digits": { girName: "digits", ffiType: { "type": "uint32" } },
|
|
1087
|
-
"numeric": { girName: "numeric", ffiType: { "type": "boolean" } },
|
|
1088
|
-
"snapToTicks": { girName: "snap-to-ticks", ffiType: { "type": "boolean" } },
|
|
1089
|
-
"updatePolicy": { girName: "update-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_spin_button_update_policy_get_type", "signed": false } },
|
|
1090
|
-
"value": { girName: "value", ffiType: { "type": "float64" } },
|
|
1091
|
-
"wrap": { girName: "wrap", ffiType: { "type": "boolean" } },
|
|
1092
|
-
"editingCanceled": { girName: "editing-canceled", ffiType: { "type": "boolean" } },
|
|
1093
|
-
"editable": { girName: "editable", ffiType: { "type": "boolean" } },
|
|
1094
|
-
"enableUndo": { girName: "enable-undo", ffiType: { "type": "boolean" } },
|
|
1095
|
-
"maxWidthChars": { girName: "max-width-chars", ffiType: { "type": "int32" } },
|
|
1096
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
1097
|
-
"widthChars": { girName: "width-chars", ffiType: { "type": "int32" } },
|
|
1098
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
1099
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
1100
|
-
},
|
|
1101
|
-
GtkSpinner: {
|
|
1102
|
-
"spinning": { girName: "spinning", ffiType: { "type": "boolean" } },
|
|
1103
|
-
},
|
|
1104
|
-
AdwSpinRow: {
|
|
1105
|
-
"climbRate": { girName: "climb-rate", ffiType: { "type": "float64" } },
|
|
1106
|
-
"digits": { girName: "digits", ffiType: { "type": "uint32" } },
|
|
1107
|
-
"numeric": { girName: "numeric", ffiType: { "type": "boolean" } },
|
|
1108
|
-
"snapToTicks": { girName: "snap-to-ticks", ffiType: { "type": "boolean" } },
|
|
1109
|
-
"updatePolicy": { girName: "update-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_spin_button_update_policy_get_type", "signed": false } },
|
|
1110
|
-
"value": { girName: "value", ffiType: { "type": "float64" } },
|
|
1111
|
-
"wrap": { girName: "wrap", ffiType: { "type": "boolean" } },
|
|
1112
|
-
"editable": { girName: "editable", ffiType: { "type": "boolean" } },
|
|
1113
|
-
"enableUndo": { girName: "enable-undo", ffiType: { "type": "boolean" } },
|
|
1114
|
-
"maxWidthChars": { girName: "max-width-chars", ffiType: { "type": "int32" } },
|
|
1115
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
1116
|
-
"widthChars": { girName: "width-chars", ffiType: { "type": "int32" } },
|
|
1117
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
1118
|
-
},
|
|
1119
|
-
AdwSplitButton: {
|
|
1120
|
-
"canShrink": { girName: "can-shrink", ffiType: { "type": "boolean" } },
|
|
1121
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1122
|
-
"direction": { girName: "direction", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_arrow_type_get_type", "signed": false } },
|
|
1123
|
-
"dropdownTooltip": { girName: "dropdown-tooltip", ffiType: { "type": "string", "ownership": "full" } },
|
|
1124
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1125
|
-
"label": { girName: "label", ffiType: { "type": "string", "ownership": "full" } },
|
|
1126
|
-
"menuModel": { girName: "menu-model", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1127
|
-
"popover": { girName: "popover", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1128
|
-
"useUnderline": { girName: "use-underline", ffiType: { "type": "boolean" } },
|
|
1129
|
-
"actionName": { girName: "action-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1130
|
-
"actionTarget": { girName: "action-target", ffiType: { "type": "fundamental", "library": "libgobject-2.0.so.0,libglib-2.0.so.0", "refFn": "g_variant_ref_sink", "unrefFn": "g_variant_unref", "ownership": "full", "typeName": "GVariant" } },
|
|
1131
|
-
},
|
|
1132
|
-
AdwSqueezer: {
|
|
1133
|
-
"allowNone": { girName: "allow-none", ffiType: { "type": "boolean" } },
|
|
1134
|
-
"homogeneous": { girName: "homogeneous", ffiType: { "type": "boolean" } },
|
|
1135
|
-
"interpolateSize": { girName: "interpolate-size", ffiType: { "type": "boolean" } },
|
|
1136
|
-
"switchThresholdPolicy": { girName: "switch-threshold-policy", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_fold_threshold_policy_get_type", "signed": false } },
|
|
1137
|
-
"transitionDuration": { girName: "transition-duration", ffiType: { "type": "uint32" } },
|
|
1138
|
-
"transitionType": { girName: "transition-type", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_squeezer_transition_type_get_type", "signed": false } },
|
|
1139
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
1140
|
-
"yalign": { girName: "yalign", ffiType: { "type": "float32" } },
|
|
1141
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
1142
|
-
},
|
|
1143
|
-
GtkStack: {
|
|
1144
|
-
"hhomogeneous": { girName: "hhomogeneous", ffiType: { "type": "boolean" } },
|
|
1145
|
-
"interpolateSize": { girName: "interpolate-size", ffiType: { "type": "boolean" } },
|
|
1146
|
-
"transitionDuration": { girName: "transition-duration", ffiType: { "type": "uint32" } },
|
|
1147
|
-
"transitionType": { girName: "transition-type", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_stack_transition_type_get_type", "signed": false } },
|
|
1148
|
-
"vhomogeneous": { girName: "vhomogeneous", ffiType: { "type": "boolean" } },
|
|
1149
|
-
},
|
|
1150
|
-
GtkStackSidebar: {
|
|
1151
|
-
"stack": { girName: "stack", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1152
|
-
},
|
|
1153
|
-
GtkStackSwitcher: {
|
|
1154
|
-
"stack": { girName: "stack", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1155
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
1156
|
-
},
|
|
1157
|
-
AdwStatusPage: {
|
|
1158
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1159
|
-
"description": { girName: "description", ffiType: { "type": "string", "ownership": "full" } },
|
|
1160
|
-
"iconName": { girName: "icon-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1161
|
-
"paintable": { girName: "paintable", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1162
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
1163
|
-
},
|
|
1164
|
-
GtkSourceStyleSchemeChooserButton: {
|
|
1165
|
-
"styleScheme": { girName: "style-scheme", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1166
|
-
},
|
|
1167
|
-
GtkSourceStyleSchemeChooserWidget: {
|
|
1168
|
-
"styleScheme": { girName: "style-scheme", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1169
|
-
},
|
|
1170
|
-
GtkSourceStyleSchemePreview: {
|
|
1171
|
-
"scheme": { girName: "scheme", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
1172
|
-
"selected": { girName: "selected", ffiType: { "type": "boolean" } },
|
|
1173
|
-
"actionName": { girName: "action-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1174
|
-
"actionTarget": { girName: "action-target", ffiType: { "type": "fundamental", "library": "libgobject-2.0.so.0,libglib-2.0.so.0", "refFn": "g_variant_ref_sink", "unrefFn": "g_variant_unref", "ownership": "full", "typeName": "GVariant" } },
|
|
1175
|
-
},
|
|
1176
|
-
GtkSwitch: {
|
|
1177
|
-
"active": { girName: "active", ffiType: { "type": "boolean" } },
|
|
1178
|
-
"state": { girName: "state", ffiType: { "type": "boolean" } },
|
|
1179
|
-
"actionName": { girName: "action-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1180
|
-
"actionTarget": { girName: "action-target", ffiType: { "type": "fundamental", "library": "libgobject-2.0.so.0,libglib-2.0.so.0", "refFn": "g_variant_ref_sink", "unrefFn": "g_variant_unref", "ownership": "full", "typeName": "GVariant" } },
|
|
1181
|
-
},
|
|
1182
|
-
AdwSwitchRow: {
|
|
1183
|
-
"active": { girName: "active", ffiType: { "type": "boolean" } },
|
|
1184
|
-
},
|
|
1185
|
-
AdwTabBar: {
|
|
1186
|
-
"autohide": { girName: "autohide", ffiType: { "type": "boolean" } },
|
|
1187
|
-
"endActionWidget": { girName: "end-action-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1188
|
-
"expandTabs": { girName: "expand-tabs", ffiType: { "type": "boolean" } },
|
|
1189
|
-
"extraDragPreload": { girName: "extra-drag-preload", ffiType: { "type": "boolean" } },
|
|
1190
|
-
"inverted": { girName: "inverted", ffiType: { "type": "boolean" } },
|
|
1191
|
-
"startActionWidget": { girName: "start-action-widget", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1192
|
-
"view": { girName: "view", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1193
|
-
},
|
|
1194
|
-
AdwTabButton: {
|
|
1195
|
-
"view": { girName: "view", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1196
|
-
"actionName": { girName: "action-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1197
|
-
"actionTarget": { girName: "action-target", ffiType: { "type": "fundamental", "library": "libgobject-2.0.so.0,libglib-2.0.so.0", "refFn": "g_variant_ref_sink", "unrefFn": "g_variant_unref", "ownership": "full", "typeName": "GVariant" } },
|
|
1198
|
-
},
|
|
1199
|
-
AdwTabOverview: {
|
|
1200
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1201
|
-
"enableNewTab": { girName: "enable-new-tab", ffiType: { "type": "boolean" } },
|
|
1202
|
-
"enableSearch": { girName: "enable-search", ffiType: { "type": "boolean" } },
|
|
1203
|
-
"extraDragPreload": { girName: "extra-drag-preload", ffiType: { "type": "boolean" } },
|
|
1204
|
-
"inverted": { girName: "inverted", ffiType: { "type": "boolean" } },
|
|
1205
|
-
"open": { girName: "open", ffiType: { "type": "boolean" } },
|
|
1206
|
-
"secondaryMenu": { girName: "secondary-menu", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1207
|
-
"showEndTitleButtons": { girName: "show-end-title-buttons", ffiType: { "type": "boolean" } },
|
|
1208
|
-
"showStartTitleButtons": { girName: "show-start-title-buttons", ffiType: { "type": "boolean" } },
|
|
1209
|
-
"view": { girName: "view", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1210
|
-
},
|
|
1211
|
-
AdwTabView: {
|
|
1212
|
-
"defaultIcon": { girName: "default-icon", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1213
|
-
"menuModel": { girName: "menu-model", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1214
|
-
"selectedPage": { girName: "selected-page", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1215
|
-
"shortcuts": { girName: "shortcuts", ffiType: { "type": "flags", "library": "libadwaita-1.so.0", "getTypeFn": "adw_tab_view_shortcuts_get_type", "signed": false } },
|
|
1216
|
-
},
|
|
1217
|
-
VteTerminal: {
|
|
1218
|
-
"allowBold": { girName: "allow-bold", ffiType: { "type": "boolean" } },
|
|
1219
|
-
"allowHyperlink": { girName: "allow-hyperlink", ffiType: { "type": "boolean" } },
|
|
1220
|
-
"audibleBell": { girName: "audible-bell", ffiType: { "type": "boolean" } },
|
|
1221
|
-
"backspaceBinding": { girName: "backspace-binding", ffiType: { "type": "enum", "library": "libvte-2.91-gtk4.so.0", "getTypeFn": "vte_erase_binding_get_type", "signed": false } },
|
|
1222
|
-
"boldIsBright": { girName: "bold-is-bright", ffiType: { "type": "boolean" } },
|
|
1223
|
-
"cellHeightScale": { girName: "cell-height-scale", ffiType: { "type": "float64" } },
|
|
1224
|
-
"cellWidthScale": { girName: "cell-width-scale", ffiType: { "type": "float64" } },
|
|
1225
|
-
"cjkAmbiguousWidth": { girName: "cjk-ambiguous-width", ffiType: { "type": "int32" } },
|
|
1226
|
-
"contextMenu": { girName: "context-menu", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1227
|
-
"contextMenuModel": { girName: "context-menu-model", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1228
|
-
"cursorBlinkMode": { girName: "cursor-blink-mode", ffiType: { "type": "enum", "library": "libvte-2.91-gtk4.so.0", "getTypeFn": "vte_cursor_blink_mode_get_type", "signed": false } },
|
|
1229
|
-
"cursorShape": { girName: "cursor-shape", ffiType: { "type": "enum", "library": "libvte-2.91-gtk4.so.0", "getTypeFn": "vte_cursor_shape_get_type", "signed": false } },
|
|
1230
|
-
"deleteBinding": { girName: "delete-binding", ffiType: { "type": "enum", "library": "libvte-2.91-gtk4.so.0", "getTypeFn": "vte_erase_binding_get_type", "signed": false } },
|
|
1231
|
-
"enableA11y": { girName: "enable-a11y", ffiType: { "type": "boolean" } },
|
|
1232
|
-
"enableBidi": { girName: "enable-bidi", ffiType: { "type": "boolean" } },
|
|
1233
|
-
"enableFallbackScrolling": { girName: "enable-fallback-scrolling", ffiType: { "type": "boolean" } },
|
|
1234
|
-
"enableLegacyOsc777": { girName: "enable-legacy-osc777", ffiType: { "type": "boolean" } },
|
|
1235
|
-
"enableShaping": { girName: "enable-shaping", ffiType: { "type": "boolean" } },
|
|
1236
|
-
"enableSixel": { girName: "enable-sixel", ffiType: { "type": "boolean" } },
|
|
1237
|
-
"encoding": { girName: "encoding", ffiType: { "type": "string", "ownership": "full" } },
|
|
1238
|
-
"fontDesc": { girName: "font-desc", ffiType: { "type": "boxed", "innerType": "PangoFontDescription", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_font_description_get_type" } },
|
|
1239
|
-
"fontOptions": { girName: "font-options", ffiType: { "type": "boxed", "innerType": "CairoFontOptions", "ownership": "full", "library": "libcairo-gobject.so.2", "getTypeFn": "cairo_gobject_font_options_get_type" } },
|
|
1240
|
-
"fontScale": { girName: "font-scale", ffiType: { "type": "float64" } },
|
|
1241
|
-
"inputEnabled": { girName: "input-enabled", ffiType: { "type": "boolean" } },
|
|
1242
|
-
"pointerAutohide": { girName: "pointer-autohide", ffiType: { "type": "boolean" } },
|
|
1243
|
-
"pty": { girName: "pty", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1244
|
-
"rewrapOnResize": { girName: "rewrap-on-resize", ffiType: { "type": "boolean" } },
|
|
1245
|
-
"scrollOnInsert": { girName: "scroll-on-insert", ffiType: { "type": "boolean" } },
|
|
1246
|
-
"scrollOnKeystroke": { girName: "scroll-on-keystroke", ffiType: { "type": "boolean" } },
|
|
1247
|
-
"scrollOnOutput": { girName: "scroll-on-output", ffiType: { "type": "boolean" } },
|
|
1248
|
-
"scrollUnitIsPixels": { girName: "scroll-unit-is-pixels", ffiType: { "type": "boolean" } },
|
|
1249
|
-
"scrollbackLines": { girName: "scrollback-lines", ffiType: { "type": "uint32" } },
|
|
1250
|
-
"textBlinkMode": { girName: "text-blink-mode", ffiType: { "type": "enum", "library": "libvte-2.91-gtk4.so.0", "getTypeFn": "vte_text_blink_mode_get_type", "signed": false } },
|
|
1251
|
-
"xalign": { girName: "xalign", ffiType: { "type": "enum", "library": "libvte-2.91-gtk4.so.0", "getTypeFn": "vte_align_get_type", "signed": false } },
|
|
1252
|
-
"xfill": { girName: "xfill", ffiType: { "type": "boolean" } },
|
|
1253
|
-
"yalign": { girName: "yalign", ffiType: { "type": "enum", "library": "libvte-2.91-gtk4.so.0", "getTypeFn": "vte_align_get_type", "signed": false } },
|
|
1254
|
-
"yfill": { girName: "yfill", ffiType: { "type": "boolean" } },
|
|
1255
|
-
"hadjustment": { girName: "hadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1256
|
-
"hscrollPolicy": { girName: "hscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
1257
|
-
"vadjustment": { girName: "vadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1258
|
-
"vscrollPolicy": { girName: "vscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
1259
|
-
},
|
|
1260
|
-
GtkText: {
|
|
1261
|
-
"activatesDefault": { girName: "activates-default", ffiType: { "type": "boolean" } },
|
|
1262
|
-
"attributes": { girName: "attributes", ffiType: { "type": "boxed", "innerType": "PangoAttrList", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_attr_list_get_type" } },
|
|
1263
|
-
"buffer": { girName: "buffer", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1264
|
-
"enableEmojiCompletion": { girName: "enable-emoji-completion", ffiType: { "type": "boolean" } },
|
|
1265
|
-
"extraMenu": { girName: "extra-menu", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1266
|
-
"imModule": { girName: "im-module", ffiType: { "type": "string", "ownership": "full" } },
|
|
1267
|
-
"inputHints": { girName: "input-hints", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_input_hints_get_type", "signed": false } },
|
|
1268
|
-
"inputPurpose": { girName: "input-purpose", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_input_purpose_get_type", "signed": false } },
|
|
1269
|
-
"invisibleChar": { girName: "invisible-char", ffiType: { "type": "uint32" } },
|
|
1270
|
-
"invisibleCharSet": { girName: "invisible-char-set", ffiType: { "type": "boolean" } },
|
|
1271
|
-
"maxLength": { girName: "max-length", ffiType: { "type": "int32" } },
|
|
1272
|
-
"overwriteMode": { girName: "overwrite-mode", ffiType: { "type": "boolean" } },
|
|
1273
|
-
"placeholderText": { girName: "placeholder-text", ffiType: { "type": "string", "ownership": "full" } },
|
|
1274
|
-
"propagateTextWidth": { girName: "propagate-text-width", ffiType: { "type": "boolean" } },
|
|
1275
|
-
"tabs": { girName: "tabs", ffiType: { "type": "boxed", "innerType": "PangoTabArray", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_tab_array_get_type" } },
|
|
1276
|
-
"truncateMultiline": { girName: "truncate-multiline", ffiType: { "type": "boolean" } },
|
|
1277
|
-
"visibility": { girName: "visibility", ffiType: { "type": "boolean" } },
|
|
1278
|
-
"editable": { girName: "editable", ffiType: { "type": "boolean" } },
|
|
1279
|
-
"enableUndo": { girName: "enable-undo", ffiType: { "type": "boolean" } },
|
|
1280
|
-
"maxWidthChars": { girName: "max-width-chars", ffiType: { "type": "int32" } },
|
|
1281
|
-
"text": { girName: "text", ffiType: { "type": "string", "ownership": "full" } },
|
|
1282
|
-
"widthChars": { girName: "width-chars", ffiType: { "type": "int32" } },
|
|
1283
|
-
"xalign": { girName: "xalign", ffiType: { "type": "float32" } },
|
|
1284
|
-
},
|
|
1285
|
-
GtkTextView: {
|
|
1286
|
-
"acceptsTab": { girName: "accepts-tab", ffiType: { "type": "boolean" } },
|
|
1287
|
-
"bottomMargin": { girName: "bottom-margin", ffiType: { "type": "int32" } },
|
|
1288
|
-
"cursorVisible": { girName: "cursor-visible", ffiType: { "type": "boolean" } },
|
|
1289
|
-
"editable": { girName: "editable", ffiType: { "type": "boolean" } },
|
|
1290
|
-
"extraMenu": { girName: "extra-menu", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1291
|
-
"imModule": { girName: "im-module", ffiType: { "type": "string", "ownership": "full" } },
|
|
1292
|
-
"indent": { girName: "indent", ffiType: { "type": "int32" } },
|
|
1293
|
-
"inputHints": { girName: "input-hints", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_input_hints_get_type", "signed": false } },
|
|
1294
|
-
"inputPurpose": { girName: "input-purpose", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_input_purpose_get_type", "signed": false } },
|
|
1295
|
-
"justification": { girName: "justification", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_justification_get_type", "signed": false } },
|
|
1296
|
-
"leftMargin": { girName: "left-margin", ffiType: { "type": "int32" } },
|
|
1297
|
-
"monospace": { girName: "monospace", ffiType: { "type": "boolean" } },
|
|
1298
|
-
"overwrite": { girName: "overwrite", ffiType: { "type": "boolean" } },
|
|
1299
|
-
"pixelsAboveLines": { girName: "pixels-above-lines", ffiType: { "type": "int32" } },
|
|
1300
|
-
"pixelsBelowLines": { girName: "pixels-below-lines", ffiType: { "type": "int32" } },
|
|
1301
|
-
"pixelsInsideWrap": { girName: "pixels-inside-wrap", ffiType: { "type": "int32" } },
|
|
1302
|
-
"rightMargin": { girName: "right-margin", ffiType: { "type": "int32" } },
|
|
1303
|
-
"tabs": { girName: "tabs", ffiType: { "type": "boxed", "innerType": "PangoTabArray", "ownership": "full", "library": "libpango-1.0.so.0", "getTypeFn": "pango_tab_array_get_type" } },
|
|
1304
|
-
"topMargin": { girName: "top-margin", ffiType: { "type": "int32" } },
|
|
1305
|
-
"wrapMode": { girName: "wrap-mode", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_wrap_mode_get_type", "signed": false } },
|
|
1306
|
-
"hadjustment": { girName: "hadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1307
|
-
"hscrollPolicy": { girName: "hscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
1308
|
-
"vadjustment": { girName: "vadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1309
|
-
"vscrollPolicy": { girName: "vscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
1310
|
-
},
|
|
1311
|
-
AdwToastOverlay: {
|
|
1312
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1313
|
-
},
|
|
1314
|
-
GtkToggleButton: {
|
|
1315
|
-
"active": { girName: "active", ffiType: { "type": "boolean" } },
|
|
1316
|
-
"group": { girName: "group", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1317
|
-
},
|
|
1318
|
-
AdwToggleGroup: {
|
|
1319
|
-
"active": { girName: "active", ffiType: { "type": "uint32" } },
|
|
1320
|
-
"activeName": { girName: "active-name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1321
|
-
"canShrink": { girName: "can-shrink", ffiType: { "type": "boolean" } },
|
|
1322
|
-
"homogeneous": { girName: "homogeneous", ffiType: { "type": "boolean" } },
|
|
1323
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
1324
|
-
},
|
|
1325
|
-
AdwToolbarView: {
|
|
1326
|
-
"bottomBarStyle": { girName: "bottom-bar-style", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_toolbar_style_get_type", "signed": false } },
|
|
1327
|
-
"content": { girName: "content", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1328
|
-
"extendContentToBottomEdge": { girName: "extend-content-to-bottom-edge", ffiType: { "type": "boolean" } },
|
|
1329
|
-
"extendContentToTopEdge": { girName: "extend-content-to-top-edge", ffiType: { "type": "boolean" } },
|
|
1330
|
-
"revealBottomBars": { girName: "reveal-bottom-bars", ffiType: { "type": "boolean" } },
|
|
1331
|
-
"revealTopBars": { girName: "reveal-top-bars", ffiType: { "type": "boolean" } },
|
|
1332
|
-
"topBarStyle": { girName: "top-bar-style", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_toolbar_style_get_type", "signed": false } },
|
|
1333
|
-
},
|
|
1334
|
-
GtkTreeExpander: {
|
|
1335
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1336
|
-
"hideExpander": { girName: "hide-expander", ffiType: { "type": "boolean" } },
|
|
1337
|
-
"indentForDepth": { girName: "indent-for-depth", ffiType: { "type": "boolean" } },
|
|
1338
|
-
"indentForIcon": { girName: "indent-for-icon", ffiType: { "type": "boolean" } },
|
|
1339
|
-
"listRow": { girName: "list-row", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1340
|
-
},
|
|
1341
|
-
GtkTreeView: {
|
|
1342
|
-
"activateOnSingleClick": { girName: "activate-on-single-click", ffiType: { "type": "boolean" } },
|
|
1343
|
-
"enableGridLines": { girName: "enable-grid-lines", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_tree_view_grid_lines_get_type", "signed": false } },
|
|
1344
|
-
"enableSearch": { girName: "enable-search", ffiType: { "type": "boolean" } },
|
|
1345
|
-
"enableTreeLines": { girName: "enable-tree-lines", ffiType: { "type": "boolean" } },
|
|
1346
|
-
"expanderColumn": { girName: "expander-column", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1347
|
-
"fixedHeightMode": { girName: "fixed-height-mode", ffiType: { "type": "boolean" } },
|
|
1348
|
-
"headersClickable": { girName: "headers-clickable", ffiType: { "type": "boolean" } },
|
|
1349
|
-
"headersVisible": { girName: "headers-visible", ffiType: { "type": "boolean" } },
|
|
1350
|
-
"hoverExpand": { girName: "hover-expand", ffiType: { "type": "boolean" } },
|
|
1351
|
-
"hoverSelection": { girName: "hover-selection", ffiType: { "type": "boolean" } },
|
|
1352
|
-
"levelIndentation": { girName: "level-indentation", ffiType: { "type": "int32" } },
|
|
1353
|
-
"model": { girName: "model", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1354
|
-
"reorderable": { girName: "reorderable", ffiType: { "type": "boolean" } },
|
|
1355
|
-
"rubberBanding": { girName: "rubber-banding", ffiType: { "type": "boolean" } },
|
|
1356
|
-
"searchColumn": { girName: "search-column", ffiType: { "type": "int32" } },
|
|
1357
|
-
"showExpanders": { girName: "show-expanders", ffiType: { "type": "boolean" } },
|
|
1358
|
-
"tooltipColumn": { girName: "tooltip-column", ffiType: { "type": "int32" } },
|
|
1359
|
-
"hadjustment": { girName: "hadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1360
|
-
"hscrollPolicy": { girName: "hscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
1361
|
-
"vadjustment": { girName: "vadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1362
|
-
"vscrollPolicy": { girName: "vscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
1363
|
-
},
|
|
1364
|
-
GtkVideo: {
|
|
1365
|
-
"autoplay": { girName: "autoplay", ffiType: { "type": "boolean" } },
|
|
1366
|
-
"file": { girName: "file", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1367
|
-
"graphicsOffload": { girName: "graphics-offload", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_graphics_offload_enabled_get_type", "signed": false } },
|
|
1368
|
-
"loop": { girName: "loop", ffiType: { "type": "boolean" } },
|
|
1369
|
-
"mediaStream": { girName: "media-stream", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1370
|
-
},
|
|
1371
|
-
GtkSourceView: {
|
|
1372
|
-
"autoIndent": { girName: "auto-indent", ffiType: { "type": "boolean" } },
|
|
1373
|
-
"backgroundPattern": { girName: "background-pattern", ffiType: { "type": "enum", "library": "libgtksourceview-5.so.0", "getTypeFn": "gtk_source_background_pattern_type_get_type", "signed": false } },
|
|
1374
|
-
"enableSnippets": { girName: "enable-snippets", ffiType: { "type": "boolean" } },
|
|
1375
|
-
"highlightCurrentLine": { girName: "highlight-current-line", ffiType: { "type": "boolean" } },
|
|
1376
|
-
"indentOnTab": { girName: "indent-on-tab", ffiType: { "type": "boolean" } },
|
|
1377
|
-
"indentWidth": { girName: "indent-width", ffiType: { "type": "int32" } },
|
|
1378
|
-
"indenter": { girName: "indenter", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1379
|
-
"insertSpacesInsteadOfTabs": { girName: "insert-spaces-instead-of-tabs", ffiType: { "type": "boolean" } },
|
|
1380
|
-
"rightMarginPosition": { girName: "right-margin-position", ffiType: { "type": "uint32" } },
|
|
1381
|
-
"showLineMarks": { girName: "show-line-marks", ffiType: { "type": "boolean" } },
|
|
1382
|
-
"showLineNumbers": { girName: "show-line-numbers", ffiType: { "type": "boolean" } },
|
|
1383
|
-
"showRightMargin": { girName: "show-right-margin", ffiType: { "type": "boolean" } },
|
|
1384
|
-
"smartBackspace": { girName: "smart-backspace", ffiType: { "type": "boolean" } },
|
|
1385
|
-
"smartHomeEnd": { girName: "smart-home-end", ffiType: { "type": "enum", "library": "libgtksourceview-5.so.0", "getTypeFn": "gtk_source_smart_home_end_type_get_type", "signed": false } },
|
|
1386
|
-
"tabWidth": { girName: "tab-width", ffiType: { "type": "uint32" } },
|
|
1387
|
-
},
|
|
1388
|
-
GtkViewport: {
|
|
1389
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1390
|
-
"scrollToFocus": { girName: "scroll-to-focus", ffiType: { "type": "boolean" } },
|
|
1391
|
-
"hadjustment": { girName: "hadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1392
|
-
"hscrollPolicy": { girName: "hscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
1393
|
-
"vadjustment": { girName: "vadjustment", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1394
|
-
"vscrollPolicy": { girName: "vscroll-policy", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_scrollable_policy_get_type", "signed": false } },
|
|
1395
|
-
},
|
|
1396
|
-
AdwViewStack: {
|
|
1397
|
-
"enableTransitions": { girName: "enable-transitions", ffiType: { "type": "boolean" } },
|
|
1398
|
-
"hhomogeneous": { girName: "hhomogeneous", ffiType: { "type": "boolean" } },
|
|
1399
|
-
"transitionDuration": { girName: "transition-duration", ffiType: { "type": "uint32" } },
|
|
1400
|
-
"vhomogeneous": { girName: "vhomogeneous", ffiType: { "type": "boolean" } },
|
|
1401
|
-
},
|
|
1402
|
-
AdwViewSwitcher: {
|
|
1403
|
-
"policy": { girName: "policy", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_view_switcher_policy_get_type", "signed": false } },
|
|
1404
|
-
"stack": { girName: "stack", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1405
|
-
},
|
|
1406
|
-
AdwViewSwitcherBar: {
|
|
1407
|
-
"reveal": { girName: "reveal", ffiType: { "type": "boolean" } },
|
|
1408
|
-
"stack": { girName: "stack", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1409
|
-
},
|
|
1410
|
-
AdwViewSwitcherTitle: {
|
|
1411
|
-
"stack": { girName: "stack", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1412
|
-
"subtitle": { girName: "subtitle", ffiType: { "type": "string", "ownership": "full" } },
|
|
1413
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
1414
|
-
"viewSwitcherEnabled": { girName: "view-switcher-enabled", ffiType: { "type": "boolean" } },
|
|
1415
|
-
},
|
|
1416
|
-
GtkVolumeButton: {
|
|
1417
|
-
"useSymbolic": { girName: "use-symbolic", ffiType: { "type": "boolean" } },
|
|
1418
|
-
},
|
|
1419
|
-
WebKitWebView: {
|
|
1420
|
-
"automationPresentationType": { girName: "automation-presentation-type", ffiType: { "type": "enum", "library": "libwebkitgtk-6.0.so.4,libjavascriptcoregtk-6.0.so.1", "getTypeFn": "webkit_automation_browsing_context_presentation_get_type", "signed": false }, constructOnly: true },
|
|
1421
|
-
"cameraCaptureState": { girName: "camera-capture-state", ffiType: { "type": "enum", "library": "libwebkitgtk-6.0.so.4,libjavascriptcoregtk-6.0.so.1", "getTypeFn": "webkit_media_capture_state_get_type", "signed": false } },
|
|
1422
|
-
"defaultContentSecurityPolicy": { girName: "default-content-security-policy", ffiType: { "type": "string", "ownership": "full" }, constructOnly: true },
|
|
1423
|
-
"displayCaptureState": { girName: "display-capture-state", ffiType: { "type": "enum", "library": "libwebkitgtk-6.0.so.4,libjavascriptcoregtk-6.0.so.1", "getTypeFn": "webkit_media_capture_state_get_type", "signed": false } },
|
|
1424
|
-
"editable": { girName: "editable", ffiType: { "type": "boolean" } },
|
|
1425
|
-
"isControlledByAutomation": { girName: "is-controlled-by-automation", ffiType: { "type": "boolean" }, constructOnly: true },
|
|
1426
|
-
"isMuted": { girName: "is-muted", ffiType: { "type": "boolean" } },
|
|
1427
|
-
"microphoneCaptureState": { girName: "microphone-capture-state", ffiType: { "type": "enum", "library": "libwebkitgtk-6.0.so.4,libjavascriptcoregtk-6.0.so.1", "getTypeFn": "webkit_media_capture_state_get_type", "signed": false } },
|
|
1428
|
-
"networkSession": { girName: "network-session", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
1429
|
-
"relatedView": { girName: "related-view", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
1430
|
-
"settings": { girName: "settings", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1431
|
-
"userContentManager": { girName: "user-content-manager", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
1432
|
-
"webContext": { girName: "web-context", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
1433
|
-
"webExtensionMode": { girName: "web-extension-mode", ffiType: { "type": "enum", "library": "libwebkitgtk-6.0.so.4,libjavascriptcoregtk-6.0.so.1", "getTypeFn": "webkit_web_extension_mode_get_type", "signed": false }, constructOnly: true },
|
|
1434
|
-
"websitePolicies": { girName: "website-policies", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
1435
|
-
"zoomLevel": { girName: "zoom-level", ffiType: { "type": "float64" } },
|
|
1436
|
-
},
|
|
1437
|
-
GtkWindowControls: {
|
|
1438
|
-
"decorationLayout": { girName: "decoration-layout", ffiType: { "type": "string", "ownership": "full" } },
|
|
1439
|
-
"side": { girName: "side", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_pack_type_get_type", "signed": false } },
|
|
1440
|
-
"useNativeControls": { girName: "use-native-controls", ffiType: { "type": "boolean" } },
|
|
1441
|
-
},
|
|
1442
|
-
GtkWindowHandle: {
|
|
1443
|
-
"child": { girName: "child", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1444
|
-
},
|
|
1445
|
-
AdwWindowTitle: {
|
|
1446
|
-
"subtitle": { girName: "subtitle", ffiType: { "type": "string", "ownership": "full" } },
|
|
1447
|
-
"title": { girName: "title", ffiType: { "type": "string", "ownership": "full" } },
|
|
1448
|
-
},
|
|
1449
|
-
AdwWrapBox: {
|
|
1450
|
-
"align": { girName: "align", ffiType: { "type": "float32" } },
|
|
1451
|
-
"childSpacing": { girName: "child-spacing", ffiType: { "type": "int32" } },
|
|
1452
|
-
"childSpacingUnit": { girName: "child-spacing-unit", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_length_unit_get_type", "signed": false } },
|
|
1453
|
-
"justify": { girName: "justify", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_justify_mode_get_type", "signed": false } },
|
|
1454
|
-
"justifyLastLine": { girName: "justify-last-line", ffiType: { "type": "boolean" } },
|
|
1455
|
-
"lineHomogeneous": { girName: "line-homogeneous", ffiType: { "type": "boolean" } },
|
|
1456
|
-
"lineSpacing": { girName: "line-spacing", ffiType: { "type": "int32" } },
|
|
1457
|
-
"lineSpacingUnit": { girName: "line-spacing-unit", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_length_unit_get_type", "signed": false } },
|
|
1458
|
-
"naturalLineLength": { girName: "natural-line-length", ffiType: { "type": "int32" } },
|
|
1459
|
-
"naturalLineLengthUnit": { girName: "natural-line-length-unit", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_length_unit_get_type", "signed": false } },
|
|
1460
|
-
"packDirection": { girName: "pack-direction", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_pack_direction_get_type", "signed": false } },
|
|
1461
|
-
"wrapPolicy": { girName: "wrap-policy", ffiType: { "type": "enum", "library": "libadwaita-1.so.0", "getTypeFn": "adw_wrap_policy_get_type", "signed": false } },
|
|
1462
|
-
"wrapReverse": { girName: "wrap-reverse", ffiType: { "type": "boolean" } },
|
|
1463
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
1464
|
-
},
|
|
1465
|
-
GtkDragSource: {
|
|
1466
|
-
"actions": { girName: "actions", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gdk_drag_action_get_type", "signed": false } },
|
|
1467
|
-
"content": { girName: "content", ffiType: { "type": "gobject", "ownership": "full" } },
|
|
1468
|
-
},
|
|
1469
|
-
GtkDropTarget: {
|
|
1470
|
-
"actions": { girName: "actions", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gdk_drag_action_get_type", "signed": false } },
|
|
1471
|
-
"formats": { girName: "formats", ffiType: { "type": "boxed", "innerType": "GdkContentFormats", "ownership": "full", "library": "libgtk-4.so.1", "getTypeFn": "gdk_content_formats_get_type" }, constructOnly: true },
|
|
1472
|
-
"preload": { girName: "preload", ffiType: { "type": "boolean" } },
|
|
1473
|
-
},
|
|
1474
|
-
GtkDropTargetAsync: {
|
|
1475
|
-
"actions": { girName: "actions", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gdk_drag_action_get_type", "signed": false } },
|
|
1476
|
-
"formats": { girName: "formats", ffiType: { "type": "boxed", "innerType": "GdkContentFormats", "ownership": "full", "library": "libgtk-4.so.1", "getTypeFn": "gdk_content_formats_get_type" } },
|
|
1477
|
-
},
|
|
1478
|
-
GtkEventController: {
|
|
1479
|
-
"name": { girName: "name", ffiType: { "type": "string", "ownership": "full" } },
|
|
1480
|
-
"propagationLimit": { girName: "propagation-limit", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_propagation_limit_get_type", "signed": false } },
|
|
1481
|
-
"propagationPhase": { girName: "propagation-phase", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_propagation_phase_get_type", "signed": false } },
|
|
1482
|
-
},
|
|
1483
|
-
GtkEventControllerScroll: {
|
|
1484
|
-
"flags": { girName: "flags", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gtk_event_controller_scroll_flags_get_type", "signed": false } },
|
|
1485
|
-
},
|
|
1486
|
-
GtkGesture: {
|
|
1487
|
-
"nPoints": { girName: "n-points", ffiType: { "type": "uint32" }, constructOnly: true },
|
|
1488
|
-
},
|
|
1489
|
-
GtkGestureLongPress: {
|
|
1490
|
-
"delayFactor": { girName: "delay-factor", ffiType: { "type": "float64" } },
|
|
1491
|
-
},
|
|
1492
|
-
GtkGesturePan: {
|
|
1493
|
-
"orientation": { girName: "orientation", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_orientation_get_type", "signed": false } },
|
|
1494
|
-
},
|
|
1495
|
-
GtkGestureSingle: {
|
|
1496
|
-
"button": { girName: "button", ffiType: { "type": "uint32" } },
|
|
1497
|
-
"exclusive": { girName: "exclusive", ffiType: { "type": "boolean" } },
|
|
1498
|
-
"touchOnly": { girName: "touch-only", ffiType: { "type": "boolean" } },
|
|
1499
|
-
},
|
|
1500
|
-
GtkGestureStylus: {
|
|
1501
|
-
"stylusOnly": { girName: "stylus-only", ffiType: { "type": "boolean" } },
|
|
1502
|
-
},
|
|
1503
|
-
GtkPadController: {
|
|
1504
|
-
"actionGroup": { girName: "action-group", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
1505
|
-
"pad": { girName: "pad", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
1506
|
-
},
|
|
1507
|
-
GtkShortcutController: {
|
|
1508
|
-
"mnemonicModifiers": { girName: "mnemonic-modifiers", ffiType: { "type": "flags", "library": "libgtk-4.so.1", "getTypeFn": "gdk_modifier_type_get_type", "signed": false } },
|
|
1509
|
-
"model": { girName: "model", ffiType: { "type": "gobject", "ownership": "full" }, constructOnly: true },
|
|
1510
|
-
"scope": { girName: "scope", ffiType: { "type": "enum", "library": "libgtk-4.so.1", "getTypeFn": "gtk_shortcut_scope_get_type", "signed": false } },
|
|
1511
|
-
},
|
|
1512
|
-
};
|
|
1513
|
-
export const PROPS = {
|
|
1514
|
-
GtkWidget: {
|
|
1515
|
-
"canFocus": "canFocus",
|
|
1516
|
-
"canTarget": "canTarget",
|
|
1517
|
-
"cssClasses": "cssClasses",
|
|
1518
|
-
"cssName": "cssName",
|
|
1519
|
-
"cursor": "cursor",
|
|
1520
|
-
"focusOnClick": "focusOnClick",
|
|
1521
|
-
"focusable": "focusable",
|
|
1522
|
-
"halign": "halign",
|
|
1523
|
-
"hasTooltip": "hasTooltip",
|
|
1524
|
-
"heightRequest": "heightRequest",
|
|
1525
|
-
"hexpand": "hexpand",
|
|
1526
|
-
"hexpandSet": "hexpandSet",
|
|
1527
|
-
"layoutManager": "layoutManager",
|
|
1528
|
-
"limitEvents": "limitEvents",
|
|
1529
|
-
"marginBottom": "marginBottom",
|
|
1530
|
-
"marginEnd": "marginEnd",
|
|
1531
|
-
"marginStart": "marginStart",
|
|
1532
|
-
"marginTop": "marginTop",
|
|
1533
|
-
"name": "name",
|
|
1534
|
-
"opacity": "opacity",
|
|
1535
|
-
"overflow": "overflow",
|
|
1536
|
-
"receivesDefault": "receivesDefault",
|
|
1537
|
-
"sensitive": "sensitive",
|
|
1538
|
-
"tooltipMarkup": "tooltipMarkup",
|
|
1539
|
-
"tooltipText": "tooltipText",
|
|
1540
|
-
"valign": "valign",
|
|
1541
|
-
"vexpand": "vexpand",
|
|
1542
|
-
"vexpandSet": "vexpandSet",
|
|
1543
|
-
"visible": "visible",
|
|
1544
|
-
"widthRequest": "widthRequest",
|
|
1545
|
-
"accessibleRole": "accessibleRole",
|
|
1546
|
-
},
|
|
1547
|
-
GtkWindow: {
|
|
1548
|
-
"application": "application",
|
|
1549
|
-
"child": "child",
|
|
1550
|
-
"decorated": "decorated",
|
|
1551
|
-
"defaultHeight": "defaultHeight",
|
|
1552
|
-
"defaultWidget": "defaultWidget",
|
|
1553
|
-
"defaultWidth": "defaultWidth",
|
|
1554
|
-
"deletable": "deletable",
|
|
1555
|
-
"destroyWithParent": "destroyWithParent",
|
|
1556
|
-
"display": "display",
|
|
1557
|
-
"focusVisible": "focusVisible",
|
|
1558
|
-
"focusWidget": "focusWidget",
|
|
1559
|
-
"fullscreened": "fullscreened",
|
|
1560
|
-
"gravity": "gravity",
|
|
1561
|
-
"handleMenubarAccel": "handleMenubarAccel",
|
|
1562
|
-
"hideOnClose": "hideOnClose",
|
|
1563
|
-
"iconName": "iconName",
|
|
1564
|
-
"maximized": "maximized",
|
|
1565
|
-
"mnemonicsVisible": "mnemonicsVisible",
|
|
1566
|
-
"modal": "modal",
|
|
1567
|
-
"resizable": "resizable",
|
|
1568
|
-
"startupId": "startupId",
|
|
1569
|
-
"title": "title",
|
|
1570
|
-
"titlebar": "titlebar",
|
|
1571
|
-
"transientFor": "transientFor",
|
|
1572
|
-
},
|
|
1573
|
-
AdwWindow: {
|
|
1574
|
-
"adaptivePreview": "adaptivePreview",
|
|
1575
|
-
"content": "content",
|
|
1576
|
-
},
|
|
1577
|
-
GtkAboutDialog: {
|
|
1578
|
-
"artists": "artists",
|
|
1579
|
-
"authors": "authors",
|
|
1580
|
-
"comments": "comments",
|
|
1581
|
-
"copyright": "copyright",
|
|
1582
|
-
"documenters": "documenters",
|
|
1583
|
-
"license": "license",
|
|
1584
|
-
"licenseType": "licenseType",
|
|
1585
|
-
"logo": "logo",
|
|
1586
|
-
"logoIconName": "logoIconName",
|
|
1587
|
-
"programName": "programName",
|
|
1588
|
-
"systemInformation": "systemInformation",
|
|
1589
|
-
"translatorCredits": "translatorCredits",
|
|
1590
|
-
"version": "version",
|
|
1591
|
-
"website": "website",
|
|
1592
|
-
"websiteLabel": "websiteLabel",
|
|
1593
|
-
"wrapLicense": "wrapLicense",
|
|
1594
|
-
},
|
|
1595
|
-
AdwAboutDialog: {
|
|
1596
|
-
"applicationIcon": "applicationIcon",
|
|
1597
|
-
"applicationName": "applicationName",
|
|
1598
|
-
"artists": "artists",
|
|
1599
|
-
"comments": "comments",
|
|
1600
|
-
"copyright": "copyright",
|
|
1601
|
-
"debugInfo": "debugInfo",
|
|
1602
|
-
"debugInfoFilename": "debugInfoFilename",
|
|
1603
|
-
"designers": "designers",
|
|
1604
|
-
"developerName": "developerName",
|
|
1605
|
-
"developers": "developers",
|
|
1606
|
-
"documenters": "documenters",
|
|
1607
|
-
"issueUrl": "issueUrl",
|
|
1608
|
-
"license": "license",
|
|
1609
|
-
"licenseType": "licenseType",
|
|
1610
|
-
"releaseNotes": "releaseNotes",
|
|
1611
|
-
"releaseNotesVersion": "releaseNotesVersion",
|
|
1612
|
-
"supportUrl": "supportUrl",
|
|
1613
|
-
"translatorCredits": "translatorCredits",
|
|
1614
|
-
"version": "version",
|
|
1615
|
-
"website": "website",
|
|
1616
|
-
},
|
|
1617
|
-
AdwAboutWindow: {
|
|
1618
|
-
"applicationIcon": "applicationIcon",
|
|
1619
|
-
"applicationName": "applicationName",
|
|
1620
|
-
"artists": "artists",
|
|
1621
|
-
"comments": "comments",
|
|
1622
|
-
"copyright": "copyright",
|
|
1623
|
-
"debugInfo": "debugInfo",
|
|
1624
|
-
"debugInfoFilename": "debugInfoFilename",
|
|
1625
|
-
"designers": "designers",
|
|
1626
|
-
"developerName": "developerName",
|
|
1627
|
-
"developers": "developers",
|
|
1628
|
-
"documenters": "documenters",
|
|
1629
|
-
"issueUrl": "issueUrl",
|
|
1630
|
-
"license": "license",
|
|
1631
|
-
"licenseType": "licenseType",
|
|
1632
|
-
"releaseNotes": "releaseNotes",
|
|
1633
|
-
"releaseNotesVersion": "releaseNotesVersion",
|
|
1634
|
-
"supportUrl": "supportUrl",
|
|
1635
|
-
"translatorCredits": "translatorCredits",
|
|
1636
|
-
"version": "version",
|
|
1637
|
-
"website": "website",
|
|
1638
|
-
},
|
|
1639
|
-
GtkActionBar: {
|
|
1640
|
-
"revealed": "revealed",
|
|
1641
|
-
},
|
|
1642
|
-
AdwActionRow: {
|
|
1643
|
-
"activatableWidget": "activatableWidget",
|
|
1644
|
-
"iconName": "iconName",
|
|
1645
|
-
"subtitle": "subtitle",
|
|
1646
|
-
"subtitleLines": "subtitleLines",
|
|
1647
|
-
"subtitleSelectable": "subtitleSelectable",
|
|
1648
|
-
"titleLines": "titleLines",
|
|
1649
|
-
},
|
|
1650
|
-
AdwAlertDialog: {
|
|
1651
|
-
"body": "body",
|
|
1652
|
-
"bodyUseMarkup": "bodyUseMarkup",
|
|
1653
|
-
"closeResponse": "closeResponse",
|
|
1654
|
-
"defaultResponse": "defaultResponse",
|
|
1655
|
-
"extraChild": "extraChild",
|
|
1656
|
-
"heading": "heading",
|
|
1657
|
-
"headingUseMarkup": "headingUseMarkup",
|
|
1658
|
-
"preferWideLayout": "preferWideLayout",
|
|
1659
|
-
},
|
|
1660
|
-
GtkAppChooserButton: {
|
|
1661
|
-
"heading": "heading",
|
|
1662
|
-
"modal": "modal",
|
|
1663
|
-
"showDefaultItem": "showDefaultItem",
|
|
1664
|
-
"showDialogItem": "showDialogItem",
|
|
1665
|
-
"contentType": "contentType",
|
|
1666
|
-
},
|
|
1667
|
-
GtkAppChooserDialog: {
|
|
1668
|
-
"gfile": "gfile",
|
|
1669
|
-
"heading": "heading",
|
|
1670
|
-
"contentType": "contentType",
|
|
1671
|
-
},
|
|
1672
|
-
GtkAppChooserWidget: {
|
|
1673
|
-
"defaultText": "defaultText",
|
|
1674
|
-
"showAll": "showAll",
|
|
1675
|
-
"showDefault": "showDefault",
|
|
1676
|
-
"showFallback": "showFallback",
|
|
1677
|
-
"showOther": "showOther",
|
|
1678
|
-
"showRecommended": "showRecommended",
|
|
1679
|
-
"contentType": "contentType",
|
|
1680
|
-
},
|
|
1681
|
-
GtkApplicationWindow: {
|
|
1682
|
-
"showMenubar": "showMenubar",
|
|
1683
|
-
},
|
|
1684
|
-
AdwApplicationWindow: {
|
|
1685
|
-
"adaptivePreview": "adaptivePreview",
|
|
1686
|
-
"content": "content",
|
|
1687
|
-
},
|
|
1688
|
-
GtkAspectFrame: {
|
|
1689
|
-
"child": "child",
|
|
1690
|
-
"obeyChild": "obeyChild",
|
|
1691
|
-
"ratio": "ratio",
|
|
1692
|
-
"xalign": "xalign",
|
|
1693
|
-
"yalign": "yalign",
|
|
1694
|
-
},
|
|
1695
|
-
GtkAssistant: {
|
|
1696
|
-
"useHeaderBar": "useHeaderBar",
|
|
1697
|
-
},
|
|
1698
|
-
AdwAvatar: {
|
|
1699
|
-
"customImage": "customImage",
|
|
1700
|
-
"iconName": "iconName",
|
|
1701
|
-
"showInitials": "showInitials",
|
|
1702
|
-
"size": "size",
|
|
1703
|
-
"text": "text",
|
|
1704
|
-
},
|
|
1705
|
-
AdwBanner: {
|
|
1706
|
-
"buttonLabel": "buttonLabel",
|
|
1707
|
-
"buttonStyle": "buttonStyle",
|
|
1708
|
-
"revealed": "revealed",
|
|
1709
|
-
"title": "title",
|
|
1710
|
-
"useMarkup": "useMarkup",
|
|
1711
|
-
"actionName": "actionName",
|
|
1712
|
-
"actionTarget": "actionTarget",
|
|
1713
|
-
},
|
|
1714
|
-
AdwBin: {
|
|
1715
|
-
"child": "child",
|
|
1716
|
-
},
|
|
1717
|
-
AdwBottomSheet: {
|
|
1718
|
-
"align": "align",
|
|
1719
|
-
"bottomBar": "bottomBar",
|
|
1720
|
-
"canClose": "canClose",
|
|
1721
|
-
"canOpen": "canOpen",
|
|
1722
|
-
"content": "content",
|
|
1723
|
-
"fullWidth": "fullWidth",
|
|
1724
|
-
"modal": "modal",
|
|
1725
|
-
"open": "open",
|
|
1726
|
-
"revealBottomBar": "revealBottomBar",
|
|
1727
|
-
"sheet": "sheet",
|
|
1728
|
-
"showDragHandle": "showDragHandle",
|
|
1729
|
-
},
|
|
1730
|
-
GtkBox: {
|
|
1731
|
-
"baselineChild": "baselineChild",
|
|
1732
|
-
"baselinePosition": "baselinePosition",
|
|
1733
|
-
"homogeneous": "homogeneous",
|
|
1734
|
-
"spacing": "spacing",
|
|
1735
|
-
"orientation": "orientation",
|
|
1736
|
-
},
|
|
1737
|
-
AdwBreakpointBin: {
|
|
1738
|
-
"child": "child",
|
|
1739
|
-
},
|
|
1740
|
-
GtkButton: {
|
|
1741
|
-
"canShrink": "canShrink",
|
|
1742
|
-
"child": "child",
|
|
1743
|
-
"hasFrame": "hasFrame",
|
|
1744
|
-
"iconName": "iconName",
|
|
1745
|
-
"label": "label",
|
|
1746
|
-
"useUnderline": "useUnderline",
|
|
1747
|
-
"actionName": "actionName",
|
|
1748
|
-
"actionTarget": "actionTarget",
|
|
1749
|
-
},
|
|
1750
|
-
AdwButtonContent: {
|
|
1751
|
-
"canShrink": "canShrink",
|
|
1752
|
-
"iconName": "iconName",
|
|
1753
|
-
"label": "label",
|
|
1754
|
-
"useUnderline": "useUnderline",
|
|
1755
|
-
},
|
|
1756
|
-
AdwButtonRow: {
|
|
1757
|
-
"endIconName": "endIconName",
|
|
1758
|
-
"startIconName": "startIconName",
|
|
1759
|
-
},
|
|
1760
|
-
GtkCalendar: {
|
|
1761
|
-
"date": "date",
|
|
1762
|
-
"day": "day",
|
|
1763
|
-
"month": "month",
|
|
1764
|
-
"showDayNames": "showDayNames",
|
|
1765
|
-
"showHeading": "showHeading",
|
|
1766
|
-
"showWeekNumbers": "showWeekNumbers",
|
|
1767
|
-
"year": "year",
|
|
1768
|
-
},
|
|
1769
|
-
AdwCarousel: {
|
|
1770
|
-
"allowLongSwipes": "allowLongSwipes",
|
|
1771
|
-
"allowMouseDrag": "allowMouseDrag",
|
|
1772
|
-
"allowScrollWheel": "allowScrollWheel",
|
|
1773
|
-
"interactive": "interactive",
|
|
1774
|
-
"revealDuration": "revealDuration",
|
|
1775
|
-
"scrollParams": "scrollParams",
|
|
1776
|
-
"spacing": "spacing",
|
|
1777
|
-
"orientation": "orientation",
|
|
1778
|
-
},
|
|
1779
|
-
AdwCarouselIndicatorDots: {
|
|
1780
|
-
"carousel": "carousel",
|
|
1781
|
-
"orientation": "orientation",
|
|
1782
|
-
},
|
|
1783
|
-
AdwCarouselIndicatorLines: {
|
|
1784
|
-
"carousel": "carousel",
|
|
1785
|
-
"orientation": "orientation",
|
|
1786
|
-
},
|
|
1787
|
-
GtkCellView: {
|
|
1788
|
-
"cellArea": "cellArea",
|
|
1789
|
-
"cellAreaContext": "cellAreaContext",
|
|
1790
|
-
"drawSensitive": "drawSensitive",
|
|
1791
|
-
"fitModel": "fitModel",
|
|
1792
|
-
"model": "model",
|
|
1793
|
-
"orientation": "orientation",
|
|
1794
|
-
},
|
|
1795
|
-
GtkCenterBox: {
|
|
1796
|
-
"baselinePosition": "baselinePosition",
|
|
1797
|
-
"centerWidget": "centerWidget",
|
|
1798
|
-
"endWidget": "endWidget",
|
|
1799
|
-
"shrinkCenterLast": "shrinkCenterLast",
|
|
1800
|
-
"startWidget": "startWidget",
|
|
1801
|
-
"orientation": "orientation",
|
|
1802
|
-
},
|
|
1803
|
-
GtkCheckButton: {
|
|
1804
|
-
"active": "active",
|
|
1805
|
-
"child": "child",
|
|
1806
|
-
"group": "group",
|
|
1807
|
-
"inconsistent": "inconsistent",
|
|
1808
|
-
"label": "label",
|
|
1809
|
-
"useUnderline": "useUnderline",
|
|
1810
|
-
"actionName": "actionName",
|
|
1811
|
-
"actionTarget": "actionTarget",
|
|
1812
|
-
},
|
|
1813
|
-
AdwClamp: {
|
|
1814
|
-
"child": "child",
|
|
1815
|
-
"maximumSize": "maximumSize",
|
|
1816
|
-
"tighteningThreshold": "tighteningThreshold",
|
|
1817
|
-
"unit": "unit",
|
|
1818
|
-
"orientation": "orientation",
|
|
1819
|
-
},
|
|
1820
|
-
AdwClampScrollable: {
|
|
1821
|
-
"child": "child",
|
|
1822
|
-
"maximumSize": "maximumSize",
|
|
1823
|
-
"tighteningThreshold": "tighteningThreshold",
|
|
1824
|
-
"unit": "unit",
|
|
1825
|
-
"orientation": "orientation",
|
|
1826
|
-
"hadjustment": "hadjustment",
|
|
1827
|
-
"hscrollPolicy": "hscrollPolicy",
|
|
1828
|
-
"vadjustment": "vadjustment",
|
|
1829
|
-
"vscrollPolicy": "vscrollPolicy",
|
|
1830
|
-
},
|
|
1831
|
-
GtkColorButton: {
|
|
1832
|
-
"modal": "modal",
|
|
1833
|
-
"showEditor": "showEditor",
|
|
1834
|
-
"title": "title",
|
|
1835
|
-
"rgba": "rgba",
|
|
1836
|
-
"useAlpha": "useAlpha",
|
|
1837
|
-
},
|
|
1838
|
-
GtkColorChooserDialog: {
|
|
1839
|
-
"showEditor": "showEditor",
|
|
1840
|
-
"rgba": "rgba",
|
|
1841
|
-
"useAlpha": "useAlpha",
|
|
1842
|
-
},
|
|
1843
|
-
GtkColorChooserWidget: {
|
|
1844
|
-
"showEditor": "showEditor",
|
|
1845
|
-
"rgba": "rgba",
|
|
1846
|
-
"useAlpha": "useAlpha",
|
|
1847
|
-
},
|
|
1848
|
-
GtkColorDialogButton: {
|
|
1849
|
-
"rgba": "rgba",
|
|
1850
|
-
},
|
|
1851
|
-
GtkColumnView: {
|
|
1852
|
-
"enableRubberband": "enableRubberband",
|
|
1853
|
-
"headerFactory": "headerFactory",
|
|
1854
|
-
"reorderable": "reorderable",
|
|
1855
|
-
"rowFactory": "rowFactory",
|
|
1856
|
-
"showColumnSeparators": "showColumnSeparators",
|
|
1857
|
-
"showRowSeparators": "showRowSeparators",
|
|
1858
|
-
"singleClickActivate": "singleClickActivate",
|
|
1859
|
-
"tabBehavior": "tabBehavior",
|
|
1860
|
-
"hadjustment": "hadjustment",
|
|
1861
|
-
"hscrollPolicy": "hscrollPolicy",
|
|
1862
|
-
"vadjustment": "vadjustment",
|
|
1863
|
-
"vscrollPolicy": "vscrollPolicy",
|
|
1864
|
-
},
|
|
1865
|
-
GtkComboBox: {
|
|
1866
|
-
"active": "active",
|
|
1867
|
-
"activeId": "activeId",
|
|
1868
|
-
"buttonSensitivity": "buttonSensitivity",
|
|
1869
|
-
"child": "child",
|
|
1870
|
-
"entryTextColumn": "entryTextColumn",
|
|
1871
|
-
"hasEntry": "hasEntry",
|
|
1872
|
-
"hasFrame": "hasFrame",
|
|
1873
|
-
"idColumn": "idColumn",
|
|
1874
|
-
"model": "model",
|
|
1875
|
-
"popupFixedWidth": "popupFixedWidth",
|
|
1876
|
-
"editingCanceled": "editingCanceled",
|
|
1877
|
-
},
|
|
1878
|
-
AdwComboRow: {
|
|
1879
|
-
"enableSearch": "enableSearch",
|
|
1880
|
-
"headerFactory": "headerFactory",
|
|
1881
|
-
"searchMatchMode": "searchMatchMode",
|
|
1882
|
-
"useSubtitle": "useSubtitle",
|
|
1883
|
-
},
|
|
1884
|
-
GtkSourceCompletionCell: {
|
|
1885
|
-
"column": "column",
|
|
1886
|
-
"markup": "markup",
|
|
1887
|
-
"paintable": "paintable",
|
|
1888
|
-
"text": "text",
|
|
1889
|
-
"widget": "widget",
|
|
1890
|
-
},
|
|
1891
|
-
GtkDialog: {
|
|
1892
|
-
"useHeaderBar": "useHeaderBar",
|
|
1893
|
-
},
|
|
1894
|
-
AdwDialog: {
|
|
1895
|
-
"canClose": "canClose",
|
|
1896
|
-
"child": "child",
|
|
1897
|
-
"contentHeight": "contentHeight",
|
|
1898
|
-
"contentWidth": "contentWidth",
|
|
1899
|
-
"defaultWidget": "defaultWidget",
|
|
1900
|
-
"focusWidget": "focusWidget",
|
|
1901
|
-
"followsContentSize": "followsContentSize",
|
|
1902
|
-
"presentationMode": "presentationMode",
|
|
1903
|
-
"title": "title",
|
|
1904
|
-
},
|
|
1905
|
-
GtkDragIcon: {
|
|
1906
|
-
"child": "child",
|
|
1907
|
-
},
|
|
1908
|
-
GtkDrawingArea: {
|
|
1909
|
-
"contentHeight": "contentHeight",
|
|
1910
|
-
"contentWidth": "contentWidth",
|
|
1911
|
-
},
|
|
1912
|
-
GtkDropDown: {
|
|
1913
|
-
"enableSearch": "enableSearch",
|
|
1914
|
-
"headerFactory": "headerFactory",
|
|
1915
|
-
"searchMatchMode": "searchMatchMode",
|
|
1916
|
-
"showArrow": "showArrow",
|
|
1917
|
-
},
|
|
1918
|
-
GtkEditableLabel: {
|
|
1919
|
-
"editing": "editing",
|
|
1920
|
-
"editable": "editable",
|
|
1921
|
-
"enableUndo": "enableUndo",
|
|
1922
|
-
"maxWidthChars": "maxWidthChars",
|
|
1923
|
-
"text": "text",
|
|
1924
|
-
"widthChars": "widthChars",
|
|
1925
|
-
"xalign": "xalign",
|
|
1926
|
-
},
|
|
1927
|
-
GtkEntry: {
|
|
1928
|
-
"activatesDefault": "activatesDefault",
|
|
1929
|
-
"attributes": "attributes",
|
|
1930
|
-
"buffer": "buffer",
|
|
1931
|
-
"completion": "completion",
|
|
1932
|
-
"enableEmojiCompletion": "enableEmojiCompletion",
|
|
1933
|
-
"extraMenu": "extraMenu",
|
|
1934
|
-
"hasFrame": "hasFrame",
|
|
1935
|
-
"imModule": "imModule",
|
|
1936
|
-
"inputHints": "inputHints",
|
|
1937
|
-
"inputPurpose": "inputPurpose",
|
|
1938
|
-
"invisibleChar": "invisibleChar",
|
|
1939
|
-
"invisibleCharSet": "invisibleCharSet",
|
|
1940
|
-
"maxLength": "maxLength",
|
|
1941
|
-
"menuEntryIconPrimaryText": "menuEntryIconPrimaryText",
|
|
1942
|
-
"menuEntryIconSecondaryText": "menuEntryIconSecondaryText",
|
|
1943
|
-
"overwriteMode": "overwriteMode",
|
|
1944
|
-
"placeholderText": "placeholderText",
|
|
1945
|
-
"primaryIconActivatable": "primaryIconActivatable",
|
|
1946
|
-
"primaryIconGicon": "primaryIconGicon",
|
|
1947
|
-
"primaryIconName": "primaryIconName",
|
|
1948
|
-
"primaryIconPaintable": "primaryIconPaintable",
|
|
1949
|
-
"primaryIconSensitive": "primaryIconSensitive",
|
|
1950
|
-
"primaryIconTooltipMarkup": "primaryIconTooltipMarkup",
|
|
1951
|
-
"primaryIconTooltipText": "primaryIconTooltipText",
|
|
1952
|
-
"progressFraction": "progressFraction",
|
|
1953
|
-
"progressPulseStep": "progressPulseStep",
|
|
1954
|
-
"secondaryIconActivatable": "secondaryIconActivatable",
|
|
1955
|
-
"secondaryIconGicon": "secondaryIconGicon",
|
|
1956
|
-
"secondaryIconName": "secondaryIconName",
|
|
1957
|
-
"secondaryIconPaintable": "secondaryIconPaintable",
|
|
1958
|
-
"secondaryIconSensitive": "secondaryIconSensitive",
|
|
1959
|
-
"secondaryIconTooltipMarkup": "secondaryIconTooltipMarkup",
|
|
1960
|
-
"secondaryIconTooltipText": "secondaryIconTooltipText",
|
|
1961
|
-
"showEmojiIcon": "showEmojiIcon",
|
|
1962
|
-
"tabs": "tabs",
|
|
1963
|
-
"truncateMultiline": "truncateMultiline",
|
|
1964
|
-
"visibility": "visibility",
|
|
1965
|
-
"editingCanceled": "editingCanceled",
|
|
1966
|
-
"editable": "editable",
|
|
1967
|
-
"enableUndo": "enableUndo",
|
|
1968
|
-
"maxWidthChars": "maxWidthChars",
|
|
1969
|
-
"text": "text",
|
|
1970
|
-
"widthChars": "widthChars",
|
|
1971
|
-
"xalign": "xalign",
|
|
1972
|
-
},
|
|
1973
|
-
AdwEntryRow: {
|
|
1974
|
-
"activatesDefault": "activatesDefault",
|
|
1975
|
-
"attributes": "attributes",
|
|
1976
|
-
"enableEmojiCompletion": "enableEmojiCompletion",
|
|
1977
|
-
"inputHints": "inputHints",
|
|
1978
|
-
"inputPurpose": "inputPurpose",
|
|
1979
|
-
"maxLength": "maxLength",
|
|
1980
|
-
"showApplyButton": "showApplyButton",
|
|
1981
|
-
"editable": "editable",
|
|
1982
|
-
"enableUndo": "enableUndo",
|
|
1983
|
-
"maxWidthChars": "maxWidthChars",
|
|
1984
|
-
"text": "text",
|
|
1985
|
-
"widthChars": "widthChars",
|
|
1986
|
-
"xalign": "xalign",
|
|
1987
|
-
},
|
|
1988
|
-
GtkExpander: {
|
|
1989
|
-
"child": "child",
|
|
1990
|
-
"expanded": "expanded",
|
|
1991
|
-
"label": "label",
|
|
1992
|
-
"labelWidget": "labelWidget",
|
|
1993
|
-
"resizeToplevel": "resizeToplevel",
|
|
1994
|
-
"useMarkup": "useMarkup",
|
|
1995
|
-
"useUnderline": "useUnderline",
|
|
1996
|
-
},
|
|
1997
|
-
AdwExpanderRow: {
|
|
1998
|
-
"enableExpansion": "enableExpansion",
|
|
1999
|
-
"expanded": "expanded",
|
|
2000
|
-
"iconName": "iconName",
|
|
2001
|
-
"showEnableSwitch": "showEnableSwitch",
|
|
2002
|
-
"subtitle": "subtitle",
|
|
2003
|
-
"subtitleLines": "subtitleLines",
|
|
2004
|
-
"titleLines": "titleLines",
|
|
2005
|
-
},
|
|
2006
|
-
GtkFileChooserDialog: {
|
|
2007
|
-
"action": "action",
|
|
2008
|
-
"createFolders": "createFolders",
|
|
2009
|
-
"filter": "filter",
|
|
2010
|
-
"selectMultiple": "selectMultiple",
|
|
2011
|
-
},
|
|
2012
|
-
GtkFileChooserWidget: {
|
|
2013
|
-
"searchMode": "searchMode",
|
|
2014
|
-
"action": "action",
|
|
2015
|
-
"createFolders": "createFolders",
|
|
2016
|
-
"filter": "filter",
|
|
2017
|
-
"selectMultiple": "selectMultiple",
|
|
2018
|
-
},
|
|
2019
|
-
AdwFlap: {
|
|
2020
|
-
"content": "content",
|
|
2021
|
-
"flap": "flap",
|
|
2022
|
-
"flapPosition": "flapPosition",
|
|
2023
|
-
"foldDuration": "foldDuration",
|
|
2024
|
-
"foldPolicy": "foldPolicy",
|
|
2025
|
-
"foldThresholdPolicy": "foldThresholdPolicy",
|
|
2026
|
-
"locked": "locked",
|
|
2027
|
-
"modal": "modal",
|
|
2028
|
-
"revealFlap": "revealFlap",
|
|
2029
|
-
"revealParams": "revealParams",
|
|
2030
|
-
"separator": "separator",
|
|
2031
|
-
"swipeToClose": "swipeToClose",
|
|
2032
|
-
"swipeToOpen": "swipeToOpen",
|
|
2033
|
-
"transitionType": "transitionType",
|
|
2034
|
-
"orientation": "orientation",
|
|
2035
|
-
},
|
|
2036
|
-
GtkFlowBox: {
|
|
2037
|
-
"acceptUnpairedRelease": "acceptUnpairedRelease",
|
|
2038
|
-
"activateOnSingleClick": "activateOnSingleClick",
|
|
2039
|
-
"columnSpacing": "columnSpacing",
|
|
2040
|
-
"homogeneous": "homogeneous",
|
|
2041
|
-
"maxChildrenPerLine": "maxChildrenPerLine",
|
|
2042
|
-
"minChildrenPerLine": "minChildrenPerLine",
|
|
2043
|
-
"rowSpacing": "rowSpacing",
|
|
2044
|
-
"selectionMode": "selectionMode",
|
|
2045
|
-
"orientation": "orientation",
|
|
2046
|
-
},
|
|
2047
|
-
GtkFlowBoxChild: {
|
|
2048
|
-
"child": "child",
|
|
2049
|
-
},
|
|
2050
|
-
GtkFontButton: {
|
|
2051
|
-
"modal": "modal",
|
|
2052
|
-
"title": "title",
|
|
2053
|
-
"useFont": "useFont",
|
|
2054
|
-
"useSize": "useSize",
|
|
2055
|
-
"font": "font",
|
|
2056
|
-
"fontDesc": "fontDesc",
|
|
2057
|
-
"language": "language",
|
|
2058
|
-
"level": "level",
|
|
2059
|
-
"previewText": "previewText",
|
|
2060
|
-
"showPreviewEntry": "showPreviewEntry",
|
|
2061
|
-
},
|
|
2062
|
-
GtkFontChooserDialog: {
|
|
2063
|
-
"font": "font",
|
|
2064
|
-
"fontDesc": "fontDesc",
|
|
2065
|
-
"language": "language",
|
|
2066
|
-
"level": "level",
|
|
2067
|
-
"previewText": "previewText",
|
|
2068
|
-
"showPreviewEntry": "showPreviewEntry",
|
|
2069
|
-
},
|
|
2070
|
-
GtkFontChooserWidget: {
|
|
2071
|
-
"font": "font",
|
|
2072
|
-
"fontDesc": "fontDesc",
|
|
2073
|
-
"language": "language",
|
|
2074
|
-
"level": "level",
|
|
2075
|
-
"previewText": "previewText",
|
|
2076
|
-
"showPreviewEntry": "showPreviewEntry",
|
|
2077
|
-
},
|
|
2078
|
-
GtkFontDialogButton: {
|
|
2079
|
-
"fontDesc": "fontDesc",
|
|
2080
|
-
"fontFeatures": "fontFeatures",
|
|
2081
|
-
"language": "language",
|
|
2082
|
-
"level": "level",
|
|
2083
|
-
"useFont": "useFont",
|
|
2084
|
-
"useSize": "useSize",
|
|
2085
|
-
},
|
|
2086
|
-
GtkFrame: {
|
|
2087
|
-
"child": "child",
|
|
2088
|
-
"label": "label",
|
|
2089
|
-
"labelWidget": "labelWidget",
|
|
2090
|
-
"labelXalign": "labelXalign",
|
|
2091
|
-
},
|
|
2092
|
-
GtkGLArea: {
|
|
2093
|
-
"allowedApis": "allowedApis",
|
|
2094
|
-
"autoRender": "autoRender",
|
|
2095
|
-
"hasDepthBuffer": "hasDepthBuffer",
|
|
2096
|
-
"hasStencilBuffer": "hasStencilBuffer",
|
|
2097
|
-
"useEs": "useEs",
|
|
2098
|
-
},
|
|
2099
|
-
GtkGraphicsOffload: {
|
|
2100
|
-
"blackBackground": "blackBackground",
|
|
2101
|
-
"child": "child",
|
|
2102
|
-
"enabled": "enabled",
|
|
2103
|
-
},
|
|
2104
|
-
GtkGrid: {
|
|
2105
|
-
"baselineRow": "baselineRow",
|
|
2106
|
-
"columnHomogeneous": "columnHomogeneous",
|
|
2107
|
-
"columnSpacing": "columnSpacing",
|
|
2108
|
-
"rowHomogeneous": "rowHomogeneous",
|
|
2109
|
-
"rowSpacing": "rowSpacing",
|
|
2110
|
-
"orientation": "orientation",
|
|
2111
|
-
},
|
|
2112
|
-
GtkGridView: {
|
|
2113
|
-
"enableRubberband": "enableRubberband",
|
|
2114
|
-
"maxColumns": "maxColumns",
|
|
2115
|
-
"minColumns": "minColumns",
|
|
2116
|
-
"singleClickActivate": "singleClickActivate",
|
|
2117
|
-
"tabBehavior": "tabBehavior",
|
|
2118
|
-
},
|
|
2119
|
-
GtkSourceGutter: {
|
|
2120
|
-
"view": "view",
|
|
2121
|
-
"windowType": "windowType",
|
|
2122
|
-
},
|
|
2123
|
-
GtkSourceGutterRenderer: {
|
|
2124
|
-
"alignmentMode": "alignmentMode",
|
|
2125
|
-
"xalign": "xalign",
|
|
2126
|
-
"xpad": "xpad",
|
|
2127
|
-
"yalign": "yalign",
|
|
2128
|
-
"ypad": "ypad",
|
|
2129
|
-
},
|
|
2130
|
-
GtkSourceGutterRendererPixbuf: {
|
|
2131
|
-
"gicon": "gicon",
|
|
2132
|
-
"iconName": "iconName",
|
|
2133
|
-
"paintable": "paintable",
|
|
2134
|
-
"pixbuf": "pixbuf",
|
|
2135
|
-
},
|
|
2136
|
-
GtkSourceGutterRendererText: {
|
|
2137
|
-
"markup": "markup",
|
|
2138
|
-
"text": "text",
|
|
2139
|
-
},
|
|
2140
|
-
GtkHeaderBar: {
|
|
2141
|
-
"decorationLayout": "decorationLayout",
|
|
2142
|
-
"showTitleButtons": "showTitleButtons",
|
|
2143
|
-
"titleWidget": "titleWidget",
|
|
2144
|
-
"useNativeControls": "useNativeControls",
|
|
2145
|
-
},
|
|
2146
|
-
AdwHeaderBar: {
|
|
2147
|
-
"centeringPolicy": "centeringPolicy",
|
|
2148
|
-
"decorationLayout": "decorationLayout",
|
|
2149
|
-
"showBackButton": "showBackButton",
|
|
2150
|
-
"showEndTitleButtons": "showEndTitleButtons",
|
|
2151
|
-
"showStartTitleButtons": "showStartTitleButtons",
|
|
2152
|
-
"showTitle": "showTitle",
|
|
2153
|
-
"titleWidget": "titleWidget",
|
|
2154
|
-
},
|
|
2155
|
-
GtkIconView: {
|
|
2156
|
-
"activateOnSingleClick": "activateOnSingleClick",
|
|
2157
|
-
"cellArea": "cellArea",
|
|
2158
|
-
"columnSpacing": "columnSpacing",
|
|
2159
|
-
"columns": "columns",
|
|
2160
|
-
"itemOrientation": "itemOrientation",
|
|
2161
|
-
"itemPadding": "itemPadding",
|
|
2162
|
-
"itemWidth": "itemWidth",
|
|
2163
|
-
"margin": "margin",
|
|
2164
|
-
"markupColumn": "markupColumn",
|
|
2165
|
-
"model": "model",
|
|
2166
|
-
"pixbufColumn": "pixbufColumn",
|
|
2167
|
-
"reorderable": "reorderable",
|
|
2168
|
-
"rowSpacing": "rowSpacing",
|
|
2169
|
-
"selectionMode": "selectionMode",
|
|
2170
|
-
"spacing": "spacing",
|
|
2171
|
-
"textColumn": "textColumn",
|
|
2172
|
-
"tooltipColumn": "tooltipColumn",
|
|
2173
|
-
"hadjustment": "hadjustment",
|
|
2174
|
-
"hscrollPolicy": "hscrollPolicy",
|
|
2175
|
-
"vadjustment": "vadjustment",
|
|
2176
|
-
"vscrollPolicy": "vscrollPolicy",
|
|
2177
|
-
},
|
|
2178
|
-
GtkImage: {
|
|
2179
|
-
"file": "file",
|
|
2180
|
-
"gicon": "gicon",
|
|
2181
|
-
"iconName": "iconName",
|
|
2182
|
-
"iconSize": "iconSize",
|
|
2183
|
-
"paintable": "paintable",
|
|
2184
|
-
"pixelSize": "pixelSize",
|
|
2185
|
-
"resource": "resource",
|
|
2186
|
-
"useFallback": "useFallback",
|
|
2187
|
-
},
|
|
2188
|
-
GtkInfoBar: {
|
|
2189
|
-
"messageType": "messageType",
|
|
2190
|
-
"revealed": "revealed",
|
|
2191
|
-
"showCloseButton": "showCloseButton",
|
|
2192
|
-
},
|
|
2193
|
-
AdwInlineViewSwitcher: {
|
|
2194
|
-
"canShrink": "canShrink",
|
|
2195
|
-
"displayMode": "displayMode",
|
|
2196
|
-
"homogeneous": "homogeneous",
|
|
2197
|
-
"stack": "stack",
|
|
2198
|
-
"orientation": "orientation",
|
|
2199
|
-
},
|
|
2200
|
-
GtkInscription: {
|
|
2201
|
-
"attributes": "attributes",
|
|
2202
|
-
"markup": "markup",
|
|
2203
|
-
"minChars": "minChars",
|
|
2204
|
-
"minLines": "minLines",
|
|
2205
|
-
"natChars": "natChars",
|
|
2206
|
-
"natLines": "natLines",
|
|
2207
|
-
"text": "text",
|
|
2208
|
-
"textOverflow": "textOverflow",
|
|
2209
|
-
"wrapMode": "wrapMode",
|
|
2210
|
-
"xalign": "xalign",
|
|
2211
|
-
"yalign": "yalign",
|
|
2212
|
-
},
|
|
2213
|
-
GtkLabel: {
|
|
2214
|
-
"attributes": "attributes",
|
|
2215
|
-
"ellipsize": "ellipsize",
|
|
2216
|
-
"extraMenu": "extraMenu",
|
|
2217
|
-
"justify": "justify",
|
|
2218
|
-
"label": "label",
|
|
2219
|
-
"lines": "lines",
|
|
2220
|
-
"maxWidthChars": "maxWidthChars",
|
|
2221
|
-
"mnemonicWidget": "mnemonicWidget",
|
|
2222
|
-
"naturalWrapMode": "naturalWrapMode",
|
|
2223
|
-
"selectable": "selectable",
|
|
2224
|
-
"singleLineMode": "singleLineMode",
|
|
2225
|
-
"tabs": "tabs",
|
|
2226
|
-
"useMarkup": "useMarkup",
|
|
2227
|
-
"useUnderline": "useUnderline",
|
|
2228
|
-
"widthChars": "widthChars",
|
|
2229
|
-
"wrap": "wrap",
|
|
2230
|
-
"wrapMode": "wrapMode",
|
|
2231
|
-
"xalign": "xalign",
|
|
2232
|
-
"yalign": "yalign",
|
|
2233
|
-
},
|
|
2234
|
-
AdwLayoutSlot: {
|
|
2235
|
-
"id": "id",
|
|
2236
|
-
},
|
|
2237
|
-
AdwLeaflet: {
|
|
2238
|
-
"canNavigateBack": "canNavigateBack",
|
|
2239
|
-
"canNavigateForward": "canNavigateForward",
|
|
2240
|
-
"canUnfold": "canUnfold",
|
|
2241
|
-
"childTransitionParams": "childTransitionParams",
|
|
2242
|
-
"foldThresholdPolicy": "foldThresholdPolicy",
|
|
2243
|
-
"homogeneous": "homogeneous",
|
|
2244
|
-
"modeTransitionDuration": "modeTransitionDuration",
|
|
2245
|
-
"transitionType": "transitionType",
|
|
2246
|
-
"visibleChild": "visibleChild",
|
|
2247
|
-
"visibleChildName": "visibleChildName",
|
|
2248
|
-
"orientation": "orientation",
|
|
2249
|
-
},
|
|
2250
|
-
GtkLevelBar: {
|
|
2251
|
-
"inverted": "inverted",
|
|
2252
|
-
"maxValue": "maxValue",
|
|
2253
|
-
"minValue": "minValue",
|
|
2254
|
-
"mode": "mode",
|
|
2255
|
-
"value": "value",
|
|
2256
|
-
"orientation": "orientation",
|
|
2257
|
-
},
|
|
2258
|
-
GtkLinkButton: {
|
|
2259
|
-
"uri": "uri",
|
|
2260
|
-
"visited": "visited",
|
|
2261
|
-
},
|
|
2262
|
-
GtkListBase: {
|
|
2263
|
-
"orientation": "orientation",
|
|
2264
|
-
"hadjustment": "hadjustment",
|
|
2265
|
-
"hscrollPolicy": "hscrollPolicy",
|
|
2266
|
-
"vadjustment": "vadjustment",
|
|
2267
|
-
"vscrollPolicy": "vscrollPolicy",
|
|
2268
|
-
},
|
|
2269
|
-
GtkListBox: {
|
|
2270
|
-
"acceptUnpairedRelease": "acceptUnpairedRelease",
|
|
2271
|
-
"activateOnSingleClick": "activateOnSingleClick",
|
|
2272
|
-
"selectionMode": "selectionMode",
|
|
2273
|
-
"showSeparators": "showSeparators",
|
|
2274
|
-
"tabBehavior": "tabBehavior",
|
|
2275
|
-
},
|
|
2276
|
-
GtkListBoxRow: {
|
|
2277
|
-
"activatable": "activatable",
|
|
2278
|
-
"child": "child",
|
|
2279
|
-
"selectable": "selectable",
|
|
2280
|
-
"actionName": "actionName",
|
|
2281
|
-
"actionTarget": "actionTarget",
|
|
2282
|
-
},
|
|
2283
|
-
GtkListView: {
|
|
2284
|
-
"enableRubberband": "enableRubberband",
|
|
2285
|
-
"headerFactory": "headerFactory",
|
|
2286
|
-
"showSeparators": "showSeparators",
|
|
2287
|
-
"singleClickActivate": "singleClickActivate",
|
|
2288
|
-
"tabBehavior": "tabBehavior",
|
|
2289
|
-
},
|
|
2290
|
-
GtkLockButton: {
|
|
2291
|
-
"permission": "permission",
|
|
2292
|
-
"textLock": "textLock",
|
|
2293
|
-
"textUnlock": "textUnlock",
|
|
2294
|
-
"tooltipLock": "tooltipLock",
|
|
2295
|
-
"tooltipNotAuthorized": "tooltipNotAuthorized",
|
|
2296
|
-
"tooltipUnlock": "tooltipUnlock",
|
|
2297
|
-
},
|
|
2298
|
-
GtkSourceMap: {
|
|
2299
|
-
"fontDesc": "fontDesc",
|
|
2300
|
-
"view": "view",
|
|
2301
|
-
},
|
|
2302
|
-
GtkMediaControls: {
|
|
2303
|
-
"mediaStream": "mediaStream",
|
|
2304
|
-
},
|
|
2305
|
-
GtkMenuButton: {
|
|
2306
|
-
"active": "active",
|
|
2307
|
-
"alwaysShowArrow": "alwaysShowArrow",
|
|
2308
|
-
"canShrink": "canShrink",
|
|
2309
|
-
"child": "child",
|
|
2310
|
-
"direction": "direction",
|
|
2311
|
-
"hasFrame": "hasFrame",
|
|
2312
|
-
"iconName": "iconName",
|
|
2313
|
-
"label": "label",
|
|
2314
|
-
"popover": "popover",
|
|
2315
|
-
"primary": "primary",
|
|
2316
|
-
"useUnderline": "useUnderline",
|
|
2317
|
-
},
|
|
2318
|
-
GtkMessageDialog: {
|
|
2319
|
-
"buttons": "buttons",
|
|
2320
|
-
"messageType": "messageType",
|
|
2321
|
-
"secondaryText": "secondaryText",
|
|
2322
|
-
"secondaryUseMarkup": "secondaryUseMarkup",
|
|
2323
|
-
"text": "text",
|
|
2324
|
-
"useMarkup": "useMarkup",
|
|
2325
|
-
},
|
|
2326
|
-
AdwMessageDialog: {
|
|
2327
|
-
"body": "body",
|
|
2328
|
-
"bodyUseMarkup": "bodyUseMarkup",
|
|
2329
|
-
"closeResponse": "closeResponse",
|
|
2330
|
-
"defaultResponse": "defaultResponse",
|
|
2331
|
-
"extraChild": "extraChild",
|
|
2332
|
-
"heading": "heading",
|
|
2333
|
-
"headingUseMarkup": "headingUseMarkup",
|
|
2334
|
-
},
|
|
2335
|
-
AdwMultiLayoutView: {
|
|
2336
|
-
"layout": "layout",
|
|
2337
|
-
"layoutName": "layoutName",
|
|
2338
|
-
},
|
|
2339
|
-
AdwNavigationPage: {
|
|
2340
|
-
"canPop": "canPop",
|
|
2341
|
-
"child": "child",
|
|
2342
|
-
"tag": "tag",
|
|
2343
|
-
"title": "title",
|
|
2344
|
-
},
|
|
2345
|
-
AdwNavigationSplitView: {
|
|
2346
|
-
"collapsed": "collapsed",
|
|
2347
|
-
"content": "content",
|
|
2348
|
-
"maxSidebarWidth": "maxSidebarWidth",
|
|
2349
|
-
"minSidebarWidth": "minSidebarWidth",
|
|
2350
|
-
"showContent": "showContent",
|
|
2351
|
-
"sidebar": "sidebar",
|
|
2352
|
-
"sidebarPosition": "sidebarPosition",
|
|
2353
|
-
"sidebarWidthFraction": "sidebarWidthFraction",
|
|
2354
|
-
"sidebarWidthUnit": "sidebarWidthUnit",
|
|
2355
|
-
},
|
|
2356
|
-
AdwNavigationView: {
|
|
2357
|
-
"animateTransitions": "animateTransitions",
|
|
2358
|
-
"hhomogeneous": "hhomogeneous",
|
|
2359
|
-
"popOnEscape": "popOnEscape",
|
|
2360
|
-
"vhomogeneous": "vhomogeneous",
|
|
2361
|
-
},
|
|
2362
|
-
GtkNotebook: {
|
|
2363
|
-
"enablePopup": "enablePopup",
|
|
2364
|
-
"groupName": "groupName",
|
|
2365
|
-
"page": "page",
|
|
2366
|
-
"scrollable": "scrollable",
|
|
2367
|
-
"showBorder": "showBorder",
|
|
2368
|
-
"showTabs": "showTabs",
|
|
2369
|
-
"tabPos": "tabPos",
|
|
2370
|
-
},
|
|
2371
|
-
GtkOverlay: {
|
|
2372
|
-
"child": "child",
|
|
2373
|
-
},
|
|
2374
|
-
AdwOverlaySplitView: {
|
|
2375
|
-
"collapsed": "collapsed",
|
|
2376
|
-
"content": "content",
|
|
2377
|
-
"enableHideGesture": "enableHideGesture",
|
|
2378
|
-
"enableShowGesture": "enableShowGesture",
|
|
2379
|
-
"maxSidebarWidth": "maxSidebarWidth",
|
|
2380
|
-
"minSidebarWidth": "minSidebarWidth",
|
|
2381
|
-
"pinSidebar": "pinSidebar",
|
|
2382
|
-
"showSidebar": "showSidebar",
|
|
2383
|
-
"sidebar": "sidebar",
|
|
2384
|
-
"sidebarPosition": "sidebarPosition",
|
|
2385
|
-
"sidebarWidthFraction": "sidebarWidthFraction",
|
|
2386
|
-
"sidebarWidthUnit": "sidebarWidthUnit",
|
|
2387
|
-
},
|
|
2388
|
-
GtkPaned: {
|
|
2389
|
-
"endChild": "endChild",
|
|
2390
|
-
"position": "position",
|
|
2391
|
-
"positionSet": "positionSet",
|
|
2392
|
-
"resizeEndChild": "resizeEndChild",
|
|
2393
|
-
"resizeStartChild": "resizeStartChild",
|
|
2394
|
-
"shrinkEndChild": "shrinkEndChild",
|
|
2395
|
-
"shrinkStartChild": "shrinkStartChild",
|
|
2396
|
-
"startChild": "startChild",
|
|
2397
|
-
"wideHandle": "wideHandle",
|
|
2398
|
-
"orientation": "orientation",
|
|
2399
|
-
},
|
|
2400
|
-
GtkPasswordEntry: {
|
|
2401
|
-
"activatesDefault": "activatesDefault",
|
|
2402
|
-
"extraMenu": "extraMenu",
|
|
2403
|
-
"placeholderText": "placeholderText",
|
|
2404
|
-
"showPeekIcon": "showPeekIcon",
|
|
2405
|
-
"editable": "editable",
|
|
2406
|
-
"enableUndo": "enableUndo",
|
|
2407
|
-
"maxWidthChars": "maxWidthChars",
|
|
2408
|
-
"text": "text",
|
|
2409
|
-
"widthChars": "widthChars",
|
|
2410
|
-
"xalign": "xalign",
|
|
2411
|
-
},
|
|
2412
|
-
GtkPicture: {
|
|
2413
|
-
"alternativeText": "alternativeText",
|
|
2414
|
-
"canShrink": "canShrink",
|
|
2415
|
-
"contentFit": "contentFit",
|
|
2416
|
-
"file": "file",
|
|
2417
|
-
"keepAspectRatio": "keepAspectRatio",
|
|
2418
|
-
"paintable": "paintable",
|
|
2419
|
-
},
|
|
2420
|
-
GtkPopover: {
|
|
2421
|
-
"autohide": "autohide",
|
|
2422
|
-
"cascadePopdown": "cascadePopdown",
|
|
2423
|
-
"child": "child",
|
|
2424
|
-
"defaultWidget": "defaultWidget",
|
|
2425
|
-
"hasArrow": "hasArrow",
|
|
2426
|
-
"mnemonicsVisible": "mnemonicsVisible",
|
|
2427
|
-
"pointingTo": "pointingTo",
|
|
2428
|
-
"position": "position",
|
|
2429
|
-
},
|
|
2430
|
-
GtkPopoverMenu: {
|
|
2431
|
-
"flags": "flags",
|
|
2432
|
-
"visibleSubmenu": "visibleSubmenu",
|
|
2433
|
-
},
|
|
2434
|
-
AdwPreferencesDialog: {
|
|
2435
|
-
"searchEnabled": "searchEnabled",
|
|
2436
|
-
"visiblePage": "visiblePage",
|
|
2437
|
-
"visiblePageName": "visiblePageName",
|
|
2438
|
-
},
|
|
2439
|
-
AdwPreferencesGroup: {
|
|
2440
|
-
"description": "description",
|
|
2441
|
-
"headerSuffix": "headerSuffix",
|
|
2442
|
-
"separateRows": "separateRows",
|
|
2443
|
-
"title": "title",
|
|
2444
|
-
},
|
|
2445
|
-
AdwPreferencesPage: {
|
|
2446
|
-
"banner": "banner",
|
|
2447
|
-
"description": "description",
|
|
2448
|
-
"descriptionCentered": "descriptionCentered",
|
|
2449
|
-
"iconName": "iconName",
|
|
2450
|
-
"title": "title",
|
|
2451
|
-
"useUnderline": "useUnderline",
|
|
2452
|
-
},
|
|
2453
|
-
AdwPreferencesRow: {
|
|
2454
|
-
"title": "title",
|
|
2455
|
-
"titleSelectable": "titleSelectable",
|
|
2456
|
-
"useMarkup": "useMarkup",
|
|
2457
|
-
"useUnderline": "useUnderline",
|
|
2458
|
-
},
|
|
2459
|
-
AdwPreferencesWindow: {
|
|
2460
|
-
"canNavigateBack": "canNavigateBack",
|
|
2461
|
-
"searchEnabled": "searchEnabled",
|
|
2462
|
-
"visiblePage": "visiblePage",
|
|
2463
|
-
"visiblePageName": "visiblePageName",
|
|
2464
|
-
},
|
|
2465
|
-
GtkPrintUnixDialog: {
|
|
2466
|
-
"currentPage": "currentPage",
|
|
2467
|
-
"embedPageSetup": "embedPageSetup",
|
|
2468
|
-
"hasSelection": "hasSelection",
|
|
2469
|
-
"manualCapabilities": "manualCapabilities",
|
|
2470
|
-
"pageSetup": "pageSetup",
|
|
2471
|
-
"printSettings": "printSettings",
|
|
2472
|
-
"supportSelection": "supportSelection",
|
|
2473
|
-
},
|
|
2474
|
-
GtkProgressBar: {
|
|
2475
|
-
"ellipsize": "ellipsize",
|
|
2476
|
-
"fraction": "fraction",
|
|
2477
|
-
"inverted": "inverted",
|
|
2478
|
-
"pulseStep": "pulseStep",
|
|
2479
|
-
"showText": "showText",
|
|
2480
|
-
"text": "text",
|
|
2481
|
-
"orientation": "orientation",
|
|
2482
|
-
},
|
|
2483
|
-
GtkRange: {
|
|
2484
|
-
"fillLevel": "fillLevel",
|
|
2485
|
-
"inverted": "inverted",
|
|
2486
|
-
"restrictToFillLevel": "restrictToFillLevel",
|
|
2487
|
-
"roundDigits": "roundDigits",
|
|
2488
|
-
"showFillLevel": "showFillLevel",
|
|
2489
|
-
"orientation": "orientation",
|
|
2490
|
-
},
|
|
2491
|
-
GtkRevealer: {
|
|
2492
|
-
"child": "child",
|
|
2493
|
-
"revealChild": "revealChild",
|
|
2494
|
-
"transitionDuration": "transitionDuration",
|
|
2495
|
-
"transitionType": "transitionType",
|
|
2496
|
-
},
|
|
2497
|
-
GtkScale: {
|
|
2498
|
-
"digits": "digits",
|
|
2499
|
-
"drawValue": "drawValue",
|
|
2500
|
-
"hasOrigin": "hasOrigin",
|
|
2501
|
-
"valuePos": "valuePos",
|
|
2502
|
-
},
|
|
2503
|
-
GtkScaleButton: {
|
|
2504
|
-
"hasFrame": "hasFrame",
|
|
2505
|
-
"icons": "icons",
|
|
2506
|
-
"value": "value",
|
|
2507
|
-
"orientation": "orientation",
|
|
2508
|
-
},
|
|
2509
|
-
GtkScrollbar: {
|
|
2510
|
-
"adjustment": "adjustment",
|
|
2511
|
-
"orientation": "orientation",
|
|
2512
|
-
},
|
|
2513
|
-
GtkScrolledWindow: {
|
|
2514
|
-
"child": "child",
|
|
2515
|
-
"hadjustment": "hadjustment",
|
|
2516
|
-
"hasFrame": "hasFrame",
|
|
2517
|
-
"hscrollbarPolicy": "hscrollbarPolicy",
|
|
2518
|
-
"kineticScrolling": "kineticScrolling",
|
|
2519
|
-
"maxContentHeight": "maxContentHeight",
|
|
2520
|
-
"maxContentWidth": "maxContentWidth",
|
|
2521
|
-
"minContentHeight": "minContentHeight",
|
|
2522
|
-
"minContentWidth": "minContentWidth",
|
|
2523
|
-
"overlayScrolling": "overlayScrolling",
|
|
2524
|
-
"propagateNaturalHeight": "propagateNaturalHeight",
|
|
2525
|
-
"propagateNaturalWidth": "propagateNaturalWidth",
|
|
2526
|
-
"vadjustment": "vadjustment",
|
|
2527
|
-
"vscrollbarPolicy": "vscrollbarPolicy",
|
|
2528
|
-
"windowPlacement": "windowPlacement",
|
|
2529
|
-
},
|
|
2530
|
-
GtkSearchBar: {
|
|
2531
|
-
"child": "child",
|
|
2532
|
-
"keyCaptureWidget": "keyCaptureWidget",
|
|
2533
|
-
"searchModeEnabled": "searchModeEnabled",
|
|
2534
|
-
"showCloseButton": "showCloseButton",
|
|
2535
|
-
},
|
|
2536
|
-
GtkSearchEntry: {
|
|
2537
|
-
"activatesDefault": "activatesDefault",
|
|
2538
|
-
"inputHints": "inputHints",
|
|
2539
|
-
"inputPurpose": "inputPurpose",
|
|
2540
|
-
"placeholderText": "placeholderText",
|
|
2541
|
-
"searchDelay": "searchDelay",
|
|
2542
|
-
"editable": "editable",
|
|
2543
|
-
"enableUndo": "enableUndo",
|
|
2544
|
-
"maxWidthChars": "maxWidthChars",
|
|
2545
|
-
"text": "text",
|
|
2546
|
-
"widthChars": "widthChars",
|
|
2547
|
-
"xalign": "xalign",
|
|
2548
|
-
},
|
|
2549
|
-
GtkSeparator: {
|
|
2550
|
-
"orientation": "orientation",
|
|
2551
|
-
},
|
|
2552
|
-
GtkShortcutLabel: {
|
|
2553
|
-
"accelerator": "accelerator",
|
|
2554
|
-
"disabledText": "disabledText",
|
|
2555
|
-
},
|
|
2556
|
-
AdwShortcutLabel: {
|
|
2557
|
-
"accelerator": "accelerator",
|
|
2558
|
-
"disabledText": "disabledText",
|
|
2559
|
-
},
|
|
2560
|
-
GtkShortcutsGroup: {
|
|
2561
|
-
"accelSizeGroup": "accelSizeGroup",
|
|
2562
|
-
"title": "title",
|
|
2563
|
-
"titleSizeGroup": "titleSizeGroup",
|
|
2564
|
-
"view": "view",
|
|
2565
|
-
},
|
|
2566
|
-
GtkShortcutsSection: {
|
|
2567
|
-
"maxHeight": "maxHeight",
|
|
2568
|
-
"sectionName": "sectionName",
|
|
2569
|
-
"title": "title",
|
|
2570
|
-
"viewName": "viewName",
|
|
2571
|
-
},
|
|
2572
|
-
GtkShortcutsShortcut: {
|
|
2573
|
-
"accelSizeGroup": "accelSizeGroup",
|
|
2574
|
-
"accelerator": "accelerator",
|
|
2575
|
-
"actionName": "actionName",
|
|
2576
|
-
"direction": "direction",
|
|
2577
|
-
"icon": "icon",
|
|
2578
|
-
"iconSet": "iconSet",
|
|
2579
|
-
"shortcutType": "shortcutType",
|
|
2580
|
-
"subtitle": "subtitle",
|
|
2581
|
-
"subtitleSet": "subtitleSet",
|
|
2582
|
-
"title": "title",
|
|
2583
|
-
"titleSizeGroup": "titleSizeGroup",
|
|
2584
|
-
},
|
|
2585
|
-
GtkShortcutsWindow: {
|
|
2586
|
-
"sectionName": "sectionName",
|
|
2587
|
-
"viewName": "viewName",
|
|
2588
|
-
},
|
|
2589
|
-
GtkSpinButton: {
|
|
2590
|
-
"activatesDefault": "activatesDefault",
|
|
2591
|
-
"climbRate": "climbRate",
|
|
2592
|
-
"digits": "digits",
|
|
2593
|
-
"numeric": "numeric",
|
|
2594
|
-
"snapToTicks": "snapToTicks",
|
|
2595
|
-
"updatePolicy": "updatePolicy",
|
|
2596
|
-
"value": "value",
|
|
2597
|
-
"wrap": "wrap",
|
|
2598
|
-
"editingCanceled": "editingCanceled",
|
|
2599
|
-
"editable": "editable",
|
|
2600
|
-
"enableUndo": "enableUndo",
|
|
2601
|
-
"maxWidthChars": "maxWidthChars",
|
|
2602
|
-
"text": "text",
|
|
2603
|
-
"widthChars": "widthChars",
|
|
2604
|
-
"xalign": "xalign",
|
|
2605
|
-
"orientation": "orientation",
|
|
2606
|
-
},
|
|
2607
|
-
GtkSpinner: {
|
|
2608
|
-
"spinning": "spinning",
|
|
2609
|
-
},
|
|
2610
|
-
AdwSpinRow: {
|
|
2611
|
-
"climbRate": "climbRate",
|
|
2612
|
-
"digits": "digits",
|
|
2613
|
-
"numeric": "numeric",
|
|
2614
|
-
"snapToTicks": "snapToTicks",
|
|
2615
|
-
"updatePolicy": "updatePolicy",
|
|
2616
|
-
"value": "value",
|
|
2617
|
-
"wrap": "wrap",
|
|
2618
|
-
"editable": "editable",
|
|
2619
|
-
"enableUndo": "enableUndo",
|
|
2620
|
-
"maxWidthChars": "maxWidthChars",
|
|
2621
|
-
"text": "text",
|
|
2622
|
-
"widthChars": "widthChars",
|
|
2623
|
-
"xalign": "xalign",
|
|
2624
|
-
},
|
|
2625
|
-
AdwSplitButton: {
|
|
2626
|
-
"canShrink": "canShrink",
|
|
2627
|
-
"child": "child",
|
|
2628
|
-
"direction": "direction",
|
|
2629
|
-
"dropdownTooltip": "dropdownTooltip",
|
|
2630
|
-
"iconName": "iconName",
|
|
2631
|
-
"label": "label",
|
|
2632
|
-
"menuModel": "menuModel",
|
|
2633
|
-
"popover": "popover",
|
|
2634
|
-
"useUnderline": "useUnderline",
|
|
2635
|
-
"actionName": "actionName",
|
|
2636
|
-
"actionTarget": "actionTarget",
|
|
2637
|
-
},
|
|
2638
|
-
AdwSqueezer: {
|
|
2639
|
-
"allowNone": "allowNone",
|
|
2640
|
-
"homogeneous": "homogeneous",
|
|
2641
|
-
"interpolateSize": "interpolateSize",
|
|
2642
|
-
"switchThresholdPolicy": "switchThresholdPolicy",
|
|
2643
|
-
"transitionDuration": "transitionDuration",
|
|
2644
|
-
"transitionType": "transitionType",
|
|
2645
|
-
"xalign": "xalign",
|
|
2646
|
-
"yalign": "yalign",
|
|
2647
|
-
"orientation": "orientation",
|
|
2648
|
-
},
|
|
2649
|
-
GtkStack: {
|
|
2650
|
-
"hhomogeneous": "hhomogeneous",
|
|
2651
|
-
"interpolateSize": "interpolateSize",
|
|
2652
|
-
"transitionDuration": "transitionDuration",
|
|
2653
|
-
"transitionType": "transitionType",
|
|
2654
|
-
"vhomogeneous": "vhomogeneous",
|
|
2655
|
-
},
|
|
2656
|
-
GtkStackSidebar: {
|
|
2657
|
-
"stack": "stack",
|
|
2658
|
-
},
|
|
2659
|
-
GtkStackSwitcher: {
|
|
2660
|
-
"stack": "stack",
|
|
2661
|
-
"orientation": "orientation",
|
|
2662
|
-
},
|
|
2663
|
-
AdwStatusPage: {
|
|
2664
|
-
"child": "child",
|
|
2665
|
-
"description": "description",
|
|
2666
|
-
"iconName": "iconName",
|
|
2667
|
-
"paintable": "paintable",
|
|
2668
|
-
"title": "title",
|
|
2669
|
-
},
|
|
2670
|
-
GtkSourceStyleSchemeChooserButton: {
|
|
2671
|
-
"styleScheme": "styleScheme",
|
|
2672
|
-
},
|
|
2673
|
-
GtkSourceStyleSchemeChooserWidget: {
|
|
2674
|
-
"styleScheme": "styleScheme",
|
|
2675
|
-
},
|
|
2676
|
-
GtkSourceStyleSchemePreview: {
|
|
2677
|
-
"scheme": "scheme",
|
|
2678
|
-
"selected": "selected",
|
|
2679
|
-
"actionName": "actionName",
|
|
2680
|
-
"actionTarget": "actionTarget",
|
|
2681
|
-
},
|
|
2682
|
-
GtkSwitch: {
|
|
2683
|
-
"active": "active",
|
|
2684
|
-
"state": "state",
|
|
2685
|
-
"actionName": "actionName",
|
|
2686
|
-
"actionTarget": "actionTarget",
|
|
2687
|
-
},
|
|
2688
|
-
AdwSwitchRow: {
|
|
2689
|
-
"active": "active",
|
|
2690
|
-
},
|
|
2691
|
-
AdwTabBar: {
|
|
2692
|
-
"autohide": "autohide",
|
|
2693
|
-
"endActionWidget": "endActionWidget",
|
|
2694
|
-
"expandTabs": "expandTabs",
|
|
2695
|
-
"extraDragPreload": "extraDragPreload",
|
|
2696
|
-
"inverted": "inverted",
|
|
2697
|
-
"startActionWidget": "startActionWidget",
|
|
2698
|
-
"view": "view",
|
|
2699
|
-
},
|
|
2700
|
-
AdwTabButton: {
|
|
2701
|
-
"view": "view",
|
|
2702
|
-
"actionName": "actionName",
|
|
2703
|
-
"actionTarget": "actionTarget",
|
|
2704
|
-
},
|
|
2705
|
-
AdwTabOverview: {
|
|
2706
|
-
"child": "child",
|
|
2707
|
-
"enableNewTab": "enableNewTab",
|
|
2708
|
-
"enableSearch": "enableSearch",
|
|
2709
|
-
"extraDragPreload": "extraDragPreload",
|
|
2710
|
-
"inverted": "inverted",
|
|
2711
|
-
"open": "open",
|
|
2712
|
-
"secondaryMenu": "secondaryMenu",
|
|
2713
|
-
"showEndTitleButtons": "showEndTitleButtons",
|
|
2714
|
-
"showStartTitleButtons": "showStartTitleButtons",
|
|
2715
|
-
"view": "view",
|
|
2716
|
-
},
|
|
2717
|
-
AdwTabView: {
|
|
2718
|
-
"defaultIcon": "defaultIcon",
|
|
2719
|
-
"menuModel": "menuModel",
|
|
2720
|
-
"selectedPage": "selectedPage",
|
|
2721
|
-
"shortcuts": "shortcuts",
|
|
2722
|
-
},
|
|
2723
|
-
VteTerminal: {
|
|
2724
|
-
"allowBold": "allowBold",
|
|
2725
|
-
"allowHyperlink": "allowHyperlink",
|
|
2726
|
-
"audibleBell": "audibleBell",
|
|
2727
|
-
"backspaceBinding": "backspaceBinding",
|
|
2728
|
-
"boldIsBright": "boldIsBright",
|
|
2729
|
-
"cellHeightScale": "cellHeightScale",
|
|
2730
|
-
"cellWidthScale": "cellWidthScale",
|
|
2731
|
-
"cjkAmbiguousWidth": "cjkAmbiguousWidth",
|
|
2732
|
-
"contextMenu": "contextMenu",
|
|
2733
|
-
"contextMenuModel": "contextMenuModel",
|
|
2734
|
-
"cursorBlinkMode": "cursorBlinkMode",
|
|
2735
|
-
"cursorShape": "cursorShape",
|
|
2736
|
-
"deleteBinding": "deleteBinding",
|
|
2737
|
-
"enableA11y": "enableA11y",
|
|
2738
|
-
"enableBidi": "enableBidi",
|
|
2739
|
-
"enableFallbackScrolling": "enableFallbackScrolling",
|
|
2740
|
-
"enableLegacyOsc777": "enableLegacyOsc777",
|
|
2741
|
-
"enableShaping": "enableShaping",
|
|
2742
|
-
"enableSixel": "enableSixel",
|
|
2743
|
-
"encoding": "encoding",
|
|
2744
|
-
"fontDesc": "fontDesc",
|
|
2745
|
-
"fontOptions": "fontOptions",
|
|
2746
|
-
"fontScale": "fontScale",
|
|
2747
|
-
"inputEnabled": "inputEnabled",
|
|
2748
|
-
"pointerAutohide": "pointerAutohide",
|
|
2749
|
-
"pty": "pty",
|
|
2750
|
-
"rewrapOnResize": "rewrapOnResize",
|
|
2751
|
-
"scrollOnInsert": "scrollOnInsert",
|
|
2752
|
-
"scrollOnKeystroke": "scrollOnKeystroke",
|
|
2753
|
-
"scrollOnOutput": "scrollOnOutput",
|
|
2754
|
-
"scrollUnitIsPixels": "scrollUnitIsPixels",
|
|
2755
|
-
"scrollbackLines": "scrollbackLines",
|
|
2756
|
-
"textBlinkMode": "textBlinkMode",
|
|
2757
|
-
"xalign": "xalign",
|
|
2758
|
-
"xfill": "xfill",
|
|
2759
|
-
"yalign": "yalign",
|
|
2760
|
-
"yfill": "yfill",
|
|
2761
|
-
"hadjustment": "hadjustment",
|
|
2762
|
-
"hscrollPolicy": "hscrollPolicy",
|
|
2763
|
-
"vadjustment": "vadjustment",
|
|
2764
|
-
"vscrollPolicy": "vscrollPolicy",
|
|
2765
|
-
},
|
|
2766
|
-
GtkText: {
|
|
2767
|
-
"activatesDefault": "activatesDefault",
|
|
2768
|
-
"attributes": "attributes",
|
|
2769
|
-
"buffer": "buffer",
|
|
2770
|
-
"enableEmojiCompletion": "enableEmojiCompletion",
|
|
2771
|
-
"extraMenu": "extraMenu",
|
|
2772
|
-
"imModule": "imModule",
|
|
2773
|
-
"inputHints": "inputHints",
|
|
2774
|
-
"inputPurpose": "inputPurpose",
|
|
2775
|
-
"invisibleChar": "invisibleChar",
|
|
2776
|
-
"invisibleCharSet": "invisibleCharSet",
|
|
2777
|
-
"maxLength": "maxLength",
|
|
2778
|
-
"overwriteMode": "overwriteMode",
|
|
2779
|
-
"placeholderText": "placeholderText",
|
|
2780
|
-
"propagateTextWidth": "propagateTextWidth",
|
|
2781
|
-
"tabs": "tabs",
|
|
2782
|
-
"truncateMultiline": "truncateMultiline",
|
|
2783
|
-
"visibility": "visibility",
|
|
2784
|
-
"editable": "editable",
|
|
2785
|
-
"enableUndo": "enableUndo",
|
|
2786
|
-
"maxWidthChars": "maxWidthChars",
|
|
2787
|
-
"text": "text",
|
|
2788
|
-
"widthChars": "widthChars",
|
|
2789
|
-
"xalign": "xalign",
|
|
2790
|
-
},
|
|
2791
|
-
GtkTextView: {
|
|
2792
|
-
"acceptsTab": "acceptsTab",
|
|
2793
|
-
"bottomMargin": "bottomMargin",
|
|
2794
|
-
"cursorVisible": "cursorVisible",
|
|
2795
|
-
"editable": "editable",
|
|
2796
|
-
"extraMenu": "extraMenu",
|
|
2797
|
-
"imModule": "imModule",
|
|
2798
|
-
"indent": "indent",
|
|
2799
|
-
"inputHints": "inputHints",
|
|
2800
|
-
"inputPurpose": "inputPurpose",
|
|
2801
|
-
"justification": "justification",
|
|
2802
|
-
"leftMargin": "leftMargin",
|
|
2803
|
-
"monospace": "monospace",
|
|
2804
|
-
"overwrite": "overwrite",
|
|
2805
|
-
"pixelsAboveLines": "pixelsAboveLines",
|
|
2806
|
-
"pixelsBelowLines": "pixelsBelowLines",
|
|
2807
|
-
"pixelsInsideWrap": "pixelsInsideWrap",
|
|
2808
|
-
"rightMargin": "rightMargin",
|
|
2809
|
-
"tabs": "tabs",
|
|
2810
|
-
"topMargin": "topMargin",
|
|
2811
|
-
"wrapMode": "wrapMode",
|
|
2812
|
-
"hadjustment": "hadjustment",
|
|
2813
|
-
"hscrollPolicy": "hscrollPolicy",
|
|
2814
|
-
"vadjustment": "vadjustment",
|
|
2815
|
-
"vscrollPolicy": "vscrollPolicy",
|
|
2816
|
-
},
|
|
2817
|
-
AdwToastOverlay: {
|
|
2818
|
-
"child": "child",
|
|
2819
|
-
},
|
|
2820
|
-
GtkToggleButton: {
|
|
2821
|
-
"active": "active",
|
|
2822
|
-
"group": "group",
|
|
2823
|
-
},
|
|
2824
|
-
AdwToggleGroup: {
|
|
2825
|
-
"active": "active",
|
|
2826
|
-
"activeName": "activeName",
|
|
2827
|
-
"canShrink": "canShrink",
|
|
2828
|
-
"homogeneous": "homogeneous",
|
|
2829
|
-
"orientation": "orientation",
|
|
2830
|
-
},
|
|
2831
|
-
AdwToolbarView: {
|
|
2832
|
-
"bottomBarStyle": "bottomBarStyle",
|
|
2833
|
-
"content": "content",
|
|
2834
|
-
"extendContentToBottomEdge": "extendContentToBottomEdge",
|
|
2835
|
-
"extendContentToTopEdge": "extendContentToTopEdge",
|
|
2836
|
-
"revealBottomBars": "revealBottomBars",
|
|
2837
|
-
"revealTopBars": "revealTopBars",
|
|
2838
|
-
"topBarStyle": "topBarStyle",
|
|
2839
|
-
},
|
|
2840
|
-
GtkTreeExpander: {
|
|
2841
|
-
"child": "child",
|
|
2842
|
-
"hideExpander": "hideExpander",
|
|
2843
|
-
"indentForDepth": "indentForDepth",
|
|
2844
|
-
"indentForIcon": "indentForIcon",
|
|
2845
|
-
"listRow": "listRow",
|
|
2846
|
-
},
|
|
2847
|
-
GtkTreeView: {
|
|
2848
|
-
"activateOnSingleClick": "activateOnSingleClick",
|
|
2849
|
-
"enableGridLines": "enableGridLines",
|
|
2850
|
-
"enableSearch": "enableSearch",
|
|
2851
|
-
"enableTreeLines": "enableTreeLines",
|
|
2852
|
-
"expanderColumn": "expanderColumn",
|
|
2853
|
-
"fixedHeightMode": "fixedHeightMode",
|
|
2854
|
-
"headersClickable": "headersClickable",
|
|
2855
|
-
"headersVisible": "headersVisible",
|
|
2856
|
-
"hoverExpand": "hoverExpand",
|
|
2857
|
-
"hoverSelection": "hoverSelection",
|
|
2858
|
-
"levelIndentation": "levelIndentation",
|
|
2859
|
-
"model": "model",
|
|
2860
|
-
"reorderable": "reorderable",
|
|
2861
|
-
"rubberBanding": "rubberBanding",
|
|
2862
|
-
"searchColumn": "searchColumn",
|
|
2863
|
-
"showExpanders": "showExpanders",
|
|
2864
|
-
"tooltipColumn": "tooltipColumn",
|
|
2865
|
-
"hadjustment": "hadjustment",
|
|
2866
|
-
"hscrollPolicy": "hscrollPolicy",
|
|
2867
|
-
"vadjustment": "vadjustment",
|
|
2868
|
-
"vscrollPolicy": "vscrollPolicy",
|
|
2869
|
-
},
|
|
2870
|
-
GtkVideo: {
|
|
2871
|
-
"autoplay": "autoplay",
|
|
2872
|
-
"file": "file",
|
|
2873
|
-
"graphicsOffload": "graphicsOffload",
|
|
2874
|
-
"loop": "loop",
|
|
2875
|
-
"mediaStream": "mediaStream",
|
|
2876
|
-
},
|
|
2877
|
-
GtkSourceView: {
|
|
2878
|
-
"autoIndent": "autoIndent",
|
|
2879
|
-
"backgroundPattern": "backgroundPattern",
|
|
2880
|
-
"enableSnippets": "enableSnippets",
|
|
2881
|
-
"highlightCurrentLine": "highlightCurrentLine",
|
|
2882
|
-
"indentOnTab": "indentOnTab",
|
|
2883
|
-
"indentWidth": "indentWidth",
|
|
2884
|
-
"indenter": "indenter",
|
|
2885
|
-
"insertSpacesInsteadOfTabs": "insertSpacesInsteadOfTabs",
|
|
2886
|
-
"rightMarginPosition": "rightMarginPosition",
|
|
2887
|
-
"showLineMarks": "showLineMarks",
|
|
2888
|
-
"showLineNumbers": "showLineNumbers",
|
|
2889
|
-
"showRightMargin": "showRightMargin",
|
|
2890
|
-
"smartBackspace": "smartBackspace",
|
|
2891
|
-
"smartHomeEnd": "smartHomeEnd",
|
|
2892
|
-
"tabWidth": "tabWidth",
|
|
2893
|
-
},
|
|
2894
|
-
GtkViewport: {
|
|
2895
|
-
"child": "child",
|
|
2896
|
-
"scrollToFocus": "scrollToFocus",
|
|
2897
|
-
"hadjustment": "hadjustment",
|
|
2898
|
-
"hscrollPolicy": "hscrollPolicy",
|
|
2899
|
-
"vadjustment": "vadjustment",
|
|
2900
|
-
"vscrollPolicy": "vscrollPolicy",
|
|
2901
|
-
},
|
|
2902
|
-
AdwViewStack: {
|
|
2903
|
-
"enableTransitions": "enableTransitions",
|
|
2904
|
-
"hhomogeneous": "hhomogeneous",
|
|
2905
|
-
"transitionDuration": "transitionDuration",
|
|
2906
|
-
"vhomogeneous": "vhomogeneous",
|
|
2907
|
-
},
|
|
2908
|
-
AdwViewSwitcher: {
|
|
2909
|
-
"policy": "policy",
|
|
2910
|
-
"stack": "stack",
|
|
2911
|
-
},
|
|
2912
|
-
AdwViewSwitcherBar: {
|
|
2913
|
-
"reveal": "reveal",
|
|
2914
|
-
"stack": "stack",
|
|
2915
|
-
},
|
|
2916
|
-
AdwViewSwitcherTitle: {
|
|
2917
|
-
"stack": "stack",
|
|
2918
|
-
"subtitle": "subtitle",
|
|
2919
|
-
"title": "title",
|
|
2920
|
-
"viewSwitcherEnabled": "viewSwitcherEnabled",
|
|
2921
|
-
},
|
|
2922
|
-
GtkVolumeButton: {
|
|
2923
|
-
"useSymbolic": "useSymbolic",
|
|
2924
|
-
},
|
|
2925
|
-
WebKitWebView: {
|
|
2926
|
-
"automationPresentationType": "automationPresentationType",
|
|
2927
|
-
"cameraCaptureState": "cameraCaptureState",
|
|
2928
|
-
"defaultContentSecurityPolicy": "defaultContentSecurityPolicy",
|
|
2929
|
-
"displayCaptureState": "displayCaptureState",
|
|
2930
|
-
"editable": "editable",
|
|
2931
|
-
"isControlledByAutomation": "isControlledByAutomation",
|
|
2932
|
-
"isMuted": "isMuted",
|
|
2933
|
-
"microphoneCaptureState": "microphoneCaptureState",
|
|
2934
|
-
"networkSession": "networkSession",
|
|
2935
|
-
"relatedView": "relatedView",
|
|
2936
|
-
"settings": "settings",
|
|
2937
|
-
"userContentManager": "userContentManager",
|
|
2938
|
-
"webContext": "webContext",
|
|
2939
|
-
"webExtensionMode": "webExtensionMode",
|
|
2940
|
-
"websitePolicies": "websitePolicies",
|
|
2941
|
-
"zoomLevel": "zoomLevel",
|
|
2942
|
-
},
|
|
2943
|
-
GtkWindowControls: {
|
|
2944
|
-
"decorationLayout": "decorationLayout",
|
|
2945
|
-
"side": "side",
|
|
2946
|
-
"useNativeControls": "useNativeControls",
|
|
2947
|
-
},
|
|
2948
|
-
GtkWindowHandle: {
|
|
2949
|
-
"child": "child",
|
|
2950
|
-
},
|
|
2951
|
-
AdwWindowTitle: {
|
|
2952
|
-
"subtitle": "subtitle",
|
|
2953
|
-
"title": "title",
|
|
2954
|
-
},
|
|
2955
|
-
AdwWrapBox: {
|
|
2956
|
-
"align": "align",
|
|
2957
|
-
"childSpacing": "childSpacing",
|
|
2958
|
-
"childSpacingUnit": "childSpacingUnit",
|
|
2959
|
-
"justify": "justify",
|
|
2960
|
-
"justifyLastLine": "justifyLastLine",
|
|
2961
|
-
"lineHomogeneous": "lineHomogeneous",
|
|
2962
|
-
"lineSpacing": "lineSpacing",
|
|
2963
|
-
"lineSpacingUnit": "lineSpacingUnit",
|
|
2964
|
-
"naturalLineLength": "naturalLineLength",
|
|
2965
|
-
"naturalLineLengthUnit": "naturalLineLengthUnit",
|
|
2966
|
-
"packDirection": "packDirection",
|
|
2967
|
-
"wrapPolicy": "wrapPolicy",
|
|
2968
|
-
"wrapReverse": "wrapReverse",
|
|
2969
|
-
"orientation": "orientation",
|
|
2970
|
-
},
|
|
2971
|
-
GtkDragSource: {
|
|
2972
|
-
"actions": "actions",
|
|
2973
|
-
"content": "content",
|
|
2974
|
-
},
|
|
2975
|
-
GtkDropTarget: {
|
|
2976
|
-
"actions": "actions",
|
|
2977
|
-
"formats": "formats",
|
|
2978
|
-
"preload": "preload",
|
|
2979
|
-
},
|
|
2980
|
-
GtkDropTargetAsync: {
|
|
2981
|
-
"actions": "actions",
|
|
2982
|
-
"formats": "formats",
|
|
2983
|
-
},
|
|
2984
|
-
GtkEventController: {
|
|
2985
|
-
"name": "name",
|
|
2986
|
-
"propagationLimit": "propagationLimit",
|
|
2987
|
-
"propagationPhase": "propagationPhase",
|
|
2988
|
-
},
|
|
2989
|
-
GtkEventControllerScroll: {
|
|
2990
|
-
"flags": "flags",
|
|
2991
|
-
},
|
|
2992
|
-
GtkGesture: {
|
|
2993
|
-
"nPoints": "nPoints",
|
|
2994
|
-
},
|
|
2995
|
-
GtkGestureLongPress: {
|
|
2996
|
-
"delayFactor": "delayFactor",
|
|
2997
|
-
},
|
|
2998
|
-
GtkGesturePan: {
|
|
2999
|
-
"orientation": "orientation",
|
|
3000
|
-
},
|
|
3001
|
-
GtkGestureSingle: {
|
|
3002
|
-
"button": "button",
|
|
3003
|
-
"exclusive": "exclusive",
|
|
3004
|
-
"touchOnly": "touchOnly",
|
|
3005
|
-
},
|
|
3006
|
-
GtkGestureStylus: {
|
|
3007
|
-
"stylusOnly": "stylusOnly",
|
|
3008
|
-
},
|
|
3009
|
-
GtkPadController: {
|
|
3010
|
-
"actionGroup": "actionGroup",
|
|
3011
|
-
"pad": "pad",
|
|
3012
|
-
},
|
|
3013
|
-
GtkShortcutController: {
|
|
3014
|
-
"mnemonicModifiers": "mnemonicModifiers",
|
|
3015
|
-
"model": "model",
|
|
3016
|
-
"scope": "scope",
|
|
3017
|
-
},
|
|
3018
|
-
};
|
|
3019
|
-
/** Signal handler prop name to GTK signal name mapping for widgets and controllers. */
|
|
3020
|
-
export const SIGNALS = {
|
|
3021
|
-
GtkWidget: {
|
|
3022
|
-
"onDestroy": "destroy",
|
|
3023
|
-
"onDirectionChanged": "direction-changed",
|
|
3024
|
-
"onHide": "hide",
|
|
3025
|
-
"onKeynavFailed": "keynav-failed",
|
|
3026
|
-
"onMap": "map",
|
|
3027
|
-
"onMnemonicActivate": "mnemonic-activate",
|
|
3028
|
-
"onMoveFocus": "move-focus",
|
|
3029
|
-
"onQueryTooltip": "query-tooltip",
|
|
3030
|
-
"onRealize": "realize",
|
|
3031
|
-
"onShow": "show",
|
|
3032
|
-
"onStateFlagsChanged": "state-flags-changed",
|
|
3033
|
-
"onUnmap": "unmap",
|
|
3034
|
-
"onUnrealize": "unrealize",
|
|
3035
|
-
"onNotify": "notify",
|
|
3036
|
-
},
|
|
3037
|
-
GtkWindow: {
|
|
3038
|
-
"onActivateDefault": "activate-default",
|
|
3039
|
-
"onActivateFocus": "activate-focus",
|
|
3040
|
-
"onCloseRequest": "close-request",
|
|
3041
|
-
"onEnableDebugging": "enable-debugging",
|
|
3042
|
-
"onKeysChanged": "keys-changed",
|
|
3043
|
-
},
|
|
3044
|
-
GtkAboutDialog: {
|
|
3045
|
-
"onActivateLink": "activate-link",
|
|
3046
|
-
},
|
|
3047
|
-
AdwAboutDialog: {
|
|
3048
|
-
"onActivateLink": "activate-link",
|
|
3049
|
-
},
|
|
3050
|
-
AdwAboutWindow: {
|
|
3051
|
-
"onActivateLink": "activate-link",
|
|
3052
|
-
},
|
|
3053
|
-
AdwActionRow: {
|
|
3054
|
-
"onActivated": "activated",
|
|
3055
|
-
},
|
|
3056
|
-
AdwAlertDialog: {
|
|
3057
|
-
"onResponse": "response",
|
|
3058
|
-
},
|
|
3059
|
-
GtkAppChooserButton: {
|
|
3060
|
-
"onActivate": "activate",
|
|
3061
|
-
"onChanged": "changed",
|
|
3062
|
-
"onCustomItemActivated": "custom-item-activated",
|
|
3063
|
-
},
|
|
3064
|
-
GtkAppChooserWidget: {
|
|
3065
|
-
"onApplicationActivated": "application-activated",
|
|
3066
|
-
"onApplicationSelected": "application-selected",
|
|
3067
|
-
},
|
|
3068
|
-
GtkApplicationWindow: {
|
|
3069
|
-
"onActionAdded": "action-added",
|
|
3070
|
-
"onActionEnabledChanged": "action-enabled-changed",
|
|
3071
|
-
"onActionRemoved": "action-removed",
|
|
3072
|
-
"onActionStateChanged": "action-state-changed",
|
|
3073
|
-
},
|
|
3074
|
-
GtkAssistant: {
|
|
3075
|
-
"onApply": "apply",
|
|
3076
|
-
"onCancel": "cancel",
|
|
3077
|
-
"onClose": "close",
|
|
3078
|
-
"onEscape": "escape",
|
|
3079
|
-
"onPrepare": "prepare",
|
|
3080
|
-
},
|
|
3081
|
-
AdwBanner: {
|
|
3082
|
-
"onButtonClicked": "button-clicked",
|
|
3083
|
-
},
|
|
3084
|
-
AdwBottomSheet: {
|
|
3085
|
-
"onCloseAttempt": "close-attempt",
|
|
3086
|
-
},
|
|
3087
|
-
GtkButton: {
|
|
3088
|
-
"onActivate": "activate",
|
|
3089
|
-
"onClicked": "clicked",
|
|
3090
|
-
},
|
|
3091
|
-
AdwButtonRow: {
|
|
3092
|
-
"onActivated": "activated",
|
|
3093
|
-
},
|
|
3094
|
-
GtkCalendar: {
|
|
3095
|
-
"onDaySelected": "day-selected",
|
|
3096
|
-
"onNextMonth": "next-month",
|
|
3097
|
-
"onNextYear": "next-year",
|
|
3098
|
-
"onPrevMonth": "prev-month",
|
|
3099
|
-
"onPrevYear": "prev-year",
|
|
3100
|
-
},
|
|
3101
|
-
AdwCarousel: {
|
|
3102
|
-
"onPageChanged": "page-changed",
|
|
3103
|
-
},
|
|
3104
|
-
GtkCheckButton: {
|
|
3105
|
-
"onActivate": "activate",
|
|
3106
|
-
"onToggled": "toggled",
|
|
3107
|
-
},
|
|
3108
|
-
GtkColorButton: {
|
|
3109
|
-
"onActivate": "activate",
|
|
3110
|
-
"onColorSet": "color-set",
|
|
3111
|
-
"onColorActivated": "color-activated",
|
|
3112
|
-
},
|
|
3113
|
-
GtkColorChooserDialog: {
|
|
3114
|
-
"onColorActivated": "color-activated",
|
|
3115
|
-
},
|
|
3116
|
-
GtkColorChooserWidget: {
|
|
3117
|
-
"onColorActivated": "color-activated",
|
|
3118
|
-
},
|
|
3119
|
-
GtkColorDialogButton: {
|
|
3120
|
-
"onActivate": "activate",
|
|
3121
|
-
},
|
|
3122
|
-
GtkColumnView: {
|
|
3123
|
-
"onActivate": "activate",
|
|
3124
|
-
},
|
|
3125
|
-
GtkComboBox: {
|
|
3126
|
-
"onActivate": "activate",
|
|
3127
|
-
"onChanged": "changed",
|
|
3128
|
-
"onFormatEntryText": "format-entry-text",
|
|
3129
|
-
"onMoveActive": "move-active",
|
|
3130
|
-
"onPopdown": "popdown",
|
|
3131
|
-
"onPopup": "popup",
|
|
3132
|
-
"onEditingDone": "editing-done",
|
|
3133
|
-
"onRemoveWidget": "remove-widget",
|
|
3134
|
-
},
|
|
3135
|
-
GtkDialog: {
|
|
3136
|
-
"onClose": "close",
|
|
3137
|
-
"onResponse": "response",
|
|
3138
|
-
},
|
|
3139
|
-
AdwDialog: {
|
|
3140
|
-
"onCloseAttempt": "close-attempt",
|
|
3141
|
-
"onClosed": "closed",
|
|
3142
|
-
},
|
|
3143
|
-
GtkDrawingArea: {
|
|
3144
|
-
"onResize": "resize",
|
|
3145
|
-
},
|
|
3146
|
-
GtkDropDown: {
|
|
3147
|
-
"onActivate": "activate",
|
|
3148
|
-
},
|
|
3149
|
-
GtkEditableLabel: {
|
|
3150
|
-
"onChanged": "changed",
|
|
3151
|
-
"onDeleteText": "delete-text",
|
|
3152
|
-
"onInsertText": "insert-text",
|
|
3153
|
-
},
|
|
3154
|
-
GtkEmojiChooser: {
|
|
3155
|
-
"onEmojiPicked": "emoji-picked",
|
|
3156
|
-
},
|
|
3157
|
-
GtkEntry: {
|
|
3158
|
-
"onActivate": "activate",
|
|
3159
|
-
"onIconPress": "icon-press",
|
|
3160
|
-
"onIconRelease": "icon-release",
|
|
3161
|
-
"onEditingDone": "editing-done",
|
|
3162
|
-
"onRemoveWidget": "remove-widget",
|
|
3163
|
-
"onChanged": "changed",
|
|
3164
|
-
"onDeleteText": "delete-text",
|
|
3165
|
-
"onInsertText": "insert-text",
|
|
3166
|
-
},
|
|
3167
|
-
AdwEntryRow: {
|
|
3168
|
-
"onApply": "apply",
|
|
3169
|
-
"onEntryActivated": "entry-activated",
|
|
3170
|
-
"onChanged": "changed",
|
|
3171
|
-
"onDeleteText": "delete-text",
|
|
3172
|
-
"onInsertText": "insert-text",
|
|
3173
|
-
},
|
|
3174
|
-
GtkExpander: {
|
|
3175
|
-
"onActivate": "activate",
|
|
3176
|
-
},
|
|
3177
|
-
GtkFileChooserWidget: {
|
|
3178
|
-
"onDesktopFolder": "desktop-folder",
|
|
3179
|
-
"onDownFolder": "down-folder",
|
|
3180
|
-
"onHomeFolder": "home-folder",
|
|
3181
|
-
"onLocationPopup": "location-popup",
|
|
3182
|
-
"onLocationPopupOnPaste": "location-popup-on-paste",
|
|
3183
|
-
"onLocationTogglePopup": "location-toggle-popup",
|
|
3184
|
-
"onPlacesShortcut": "places-shortcut",
|
|
3185
|
-
"onQuickBookmark": "quick-bookmark",
|
|
3186
|
-
"onRecentShortcut": "recent-shortcut",
|
|
3187
|
-
"onSearchShortcut": "search-shortcut",
|
|
3188
|
-
"onShowHidden": "show-hidden",
|
|
3189
|
-
"onUpFolder": "up-folder",
|
|
3190
|
-
},
|
|
3191
|
-
GtkFlowBox: {
|
|
3192
|
-
"onActivateCursorChild": "activate-cursor-child",
|
|
3193
|
-
"onChildActivated": "child-activated",
|
|
3194
|
-
"onMoveCursor": "move-cursor",
|
|
3195
|
-
"onSelectAll": "select-all",
|
|
3196
|
-
"onSelectedChildrenChanged": "selected-children-changed",
|
|
3197
|
-
"onToggleCursorChild": "toggle-cursor-child",
|
|
3198
|
-
"onUnselectAll": "unselect-all",
|
|
3199
|
-
},
|
|
3200
|
-
GtkFlowBoxChild: {
|
|
3201
|
-
"onActivate": "activate",
|
|
3202
|
-
},
|
|
3203
|
-
GtkFontButton: {
|
|
3204
|
-
"onActivate": "activate",
|
|
3205
|
-
"onFontSet": "font-set",
|
|
3206
|
-
"onFontActivated": "font-activated",
|
|
3207
|
-
},
|
|
3208
|
-
GtkFontChooserDialog: {
|
|
3209
|
-
"onFontActivated": "font-activated",
|
|
3210
|
-
},
|
|
3211
|
-
GtkFontChooserWidget: {
|
|
3212
|
-
"onFontActivated": "font-activated",
|
|
3213
|
-
},
|
|
3214
|
-
GtkFontDialogButton: {
|
|
3215
|
-
"onActivate": "activate",
|
|
3216
|
-
},
|
|
3217
|
-
GtkGLArea: {
|
|
3218
|
-
"onCreateContext": "create-context",
|
|
3219
|
-
"onRender": "render",
|
|
3220
|
-
"onResize": "resize",
|
|
3221
|
-
},
|
|
3222
|
-
GtkGridView: {
|
|
3223
|
-
"onActivate": "activate",
|
|
3224
|
-
},
|
|
3225
|
-
GtkSourceGutterRenderer: {
|
|
3226
|
-
"onActivate": "activate",
|
|
3227
|
-
"onQueryActivatable": "query-activatable",
|
|
3228
|
-
"onQueryData": "query-data",
|
|
3229
|
-
},
|
|
3230
|
-
GtkIconView: {
|
|
3231
|
-
"onActivateCursorItem": "activate-cursor-item",
|
|
3232
|
-
"onItemActivated": "item-activated",
|
|
3233
|
-
"onMoveCursor": "move-cursor",
|
|
3234
|
-
"onSelectAll": "select-all",
|
|
3235
|
-
"onSelectCursorItem": "select-cursor-item",
|
|
3236
|
-
"onSelectionChanged": "selection-changed",
|
|
3237
|
-
"onToggleCursorItem": "toggle-cursor-item",
|
|
3238
|
-
"onUnselectAll": "unselect-all",
|
|
3239
|
-
},
|
|
3240
|
-
GtkInfoBar: {
|
|
3241
|
-
"onClose": "close",
|
|
3242
|
-
"onResponse": "response",
|
|
3243
|
-
},
|
|
3244
|
-
GtkLabel: {
|
|
3245
|
-
"onActivateCurrentLink": "activate-current-link",
|
|
3246
|
-
"onActivateLink": "activate-link",
|
|
3247
|
-
"onCopyClipboard": "copy-clipboard",
|
|
3248
|
-
"onMoveCursor": "move-cursor",
|
|
3249
|
-
},
|
|
3250
|
-
GtkLevelBar: {
|
|
3251
|
-
"onOffsetChanged": "offset-changed",
|
|
3252
|
-
},
|
|
3253
|
-
GtkLinkButton: {
|
|
3254
|
-
"onActivateLink": "activate-link",
|
|
3255
|
-
},
|
|
3256
|
-
GtkListBox: {
|
|
3257
|
-
"onActivateCursorRow": "activate-cursor-row",
|
|
3258
|
-
"onMoveCursor": "move-cursor",
|
|
3259
|
-
"onRowActivated": "row-activated",
|
|
3260
|
-
"onRowSelected": "row-selected",
|
|
3261
|
-
"onSelectAll": "select-all",
|
|
3262
|
-
"onSelectedRowsChanged": "selected-rows-changed",
|
|
3263
|
-
"onToggleCursorRow": "toggle-cursor-row",
|
|
3264
|
-
"onUnselectAll": "unselect-all",
|
|
3265
|
-
},
|
|
3266
|
-
GtkListBoxRow: {
|
|
3267
|
-
"onActivate": "activate",
|
|
3268
|
-
},
|
|
3269
|
-
GtkListView: {
|
|
3270
|
-
"onActivate": "activate",
|
|
3271
|
-
},
|
|
3272
|
-
GtkMenuButton: {
|
|
3273
|
-
"onActivate": "activate",
|
|
3274
|
-
},
|
|
3275
|
-
AdwMessageDialog: {
|
|
3276
|
-
"onResponse": "response",
|
|
3277
|
-
},
|
|
3278
|
-
AdwNavigationPage: {
|
|
3279
|
-
"onHidden": "hidden",
|
|
3280
|
-
"onHiding": "hiding",
|
|
3281
|
-
"onShowing": "showing",
|
|
3282
|
-
"onShown": "shown",
|
|
3283
|
-
},
|
|
3284
|
-
AdwNavigationView: {
|
|
3285
|
-
"onGetNextPage": "get-next-page",
|
|
3286
|
-
"onPopped": "popped",
|
|
3287
|
-
"onPushed": "pushed",
|
|
3288
|
-
"onReplaced": "replaced",
|
|
3289
|
-
},
|
|
3290
|
-
GtkNotebook: {
|
|
3291
|
-
"onChangeCurrentPage": "change-current-page",
|
|
3292
|
-
"onCreateWindow": "create-window",
|
|
3293
|
-
"onFocusTab": "focus-tab",
|
|
3294
|
-
"onMoveFocusOut": "move-focus-out",
|
|
3295
|
-
"onPageAdded": "page-added",
|
|
3296
|
-
"onPageRemoved": "page-removed",
|
|
3297
|
-
"onPageReordered": "page-reordered",
|
|
3298
|
-
"onReorderTab": "reorder-tab",
|
|
3299
|
-
"onSelectPage": "select-page",
|
|
3300
|
-
"onSwitchPage": "switch-page",
|
|
3301
|
-
},
|
|
3302
|
-
GtkOverlay: {
|
|
3303
|
-
"onGetChildPosition": "get-child-position",
|
|
3304
|
-
},
|
|
3305
|
-
GtkPaned: {
|
|
3306
|
-
"onAcceptPosition": "accept-position",
|
|
3307
|
-
"onCancelPosition": "cancel-position",
|
|
3308
|
-
"onCycleChildFocus": "cycle-child-focus",
|
|
3309
|
-
"onCycleHandleFocus": "cycle-handle-focus",
|
|
3310
|
-
"onMoveHandle": "move-handle",
|
|
3311
|
-
"onToggleHandleFocus": "toggle-handle-focus",
|
|
3312
|
-
},
|
|
3313
|
-
GtkPasswordEntry: {
|
|
3314
|
-
"onActivate": "activate",
|
|
3315
|
-
"onChanged": "changed",
|
|
3316
|
-
"onDeleteText": "delete-text",
|
|
3317
|
-
"onInsertText": "insert-text",
|
|
3318
|
-
},
|
|
3319
|
-
GtkPopover: {
|
|
3320
|
-
"onActivateDefault": "activate-default",
|
|
3321
|
-
"onClosed": "closed",
|
|
3322
|
-
},
|
|
3323
|
-
GtkRange: {
|
|
3324
|
-
"onAdjustBounds": "adjust-bounds",
|
|
3325
|
-
"onChangeValue": "change-value",
|
|
3326
|
-
"onMoveSlider": "move-slider",
|
|
3327
|
-
"onValueChanged": "value-changed",
|
|
3328
|
-
},
|
|
3329
|
-
GtkScaleButton: {
|
|
3330
|
-
"onPopdown": "popdown",
|
|
3331
|
-
"onPopup": "popup",
|
|
3332
|
-
"onValueChanged": "value-changed",
|
|
3333
|
-
},
|
|
3334
|
-
GtkScrolledWindow: {
|
|
3335
|
-
"onEdgeOvershot": "edge-overshot",
|
|
3336
|
-
"onEdgeReached": "edge-reached",
|
|
3337
|
-
"onMoveFocusOut": "move-focus-out",
|
|
3338
|
-
"onScrollChild": "scroll-child",
|
|
3339
|
-
},
|
|
3340
|
-
GtkSearchEntry: {
|
|
3341
|
-
"onActivate": "activate",
|
|
3342
|
-
"onNextMatch": "next-match",
|
|
3343
|
-
"onPreviousMatch": "previous-match",
|
|
3344
|
-
"onSearchChanged": "search-changed",
|
|
3345
|
-
"onSearchStarted": "search-started",
|
|
3346
|
-
"onStopSearch": "stop-search",
|
|
3347
|
-
"onChanged": "changed",
|
|
3348
|
-
"onDeleteText": "delete-text",
|
|
3349
|
-
"onInsertText": "insert-text",
|
|
3350
|
-
},
|
|
3351
|
-
GtkShortcutsSection: {
|
|
3352
|
-
"onChangeCurrentPage": "change-current-page",
|
|
3353
|
-
},
|
|
3354
|
-
GtkShortcutsWindow: {
|
|
3355
|
-
"onClose": "close",
|
|
3356
|
-
"onSearch": "search",
|
|
3357
|
-
},
|
|
3358
|
-
GtkSpinButton: {
|
|
3359
|
-
"onActivate": "activate",
|
|
3360
|
-
"onChangeValue": "change-value",
|
|
3361
|
-
"onInput": "input",
|
|
3362
|
-
"onOutput": "output",
|
|
3363
|
-
"onValueChanged": "value-changed",
|
|
3364
|
-
"onWrapped": "wrapped",
|
|
3365
|
-
"onEditingDone": "editing-done",
|
|
3366
|
-
"onRemoveWidget": "remove-widget",
|
|
3367
|
-
"onChanged": "changed",
|
|
3368
|
-
"onDeleteText": "delete-text",
|
|
3369
|
-
"onInsertText": "insert-text",
|
|
3370
|
-
},
|
|
3371
|
-
AdwSpinRow: {
|
|
3372
|
-
"onInput": "input",
|
|
3373
|
-
"onOutput": "output",
|
|
3374
|
-
"onWrapped": "wrapped",
|
|
3375
|
-
"onChanged": "changed",
|
|
3376
|
-
"onDeleteText": "delete-text",
|
|
3377
|
-
"onInsertText": "insert-text",
|
|
3378
|
-
},
|
|
3379
|
-
AdwSplitButton: {
|
|
3380
|
-
"onActivate": "activate",
|
|
3381
|
-
"onClicked": "clicked",
|
|
3382
|
-
},
|
|
3383
|
-
GtkStatusbar: {
|
|
3384
|
-
"onTextPopped": "text-popped",
|
|
3385
|
-
"onTextPushed": "text-pushed",
|
|
3386
|
-
},
|
|
3387
|
-
GtkSourceStyleSchemePreview: {
|
|
3388
|
-
"onActivate": "activate",
|
|
3389
|
-
},
|
|
3390
|
-
GtkSwitch: {
|
|
3391
|
-
"onActivate": "activate",
|
|
3392
|
-
"onStateSet": "state-set",
|
|
3393
|
-
},
|
|
3394
|
-
AdwTabBar: {
|
|
3395
|
-
"onExtraDragDrop": "extra-drag-drop",
|
|
3396
|
-
"onExtraDragValue": "extra-drag-value",
|
|
3397
|
-
},
|
|
3398
|
-
AdwTabButton: {
|
|
3399
|
-
"onActivate": "activate",
|
|
3400
|
-
"onClicked": "clicked",
|
|
3401
|
-
},
|
|
3402
|
-
AdwTabOverview: {
|
|
3403
|
-
"onCreateTab": "create-tab",
|
|
3404
|
-
"onExtraDragDrop": "extra-drag-drop",
|
|
3405
|
-
"onExtraDragValue": "extra-drag-value",
|
|
3406
|
-
},
|
|
3407
|
-
AdwTabView: {
|
|
3408
|
-
"onClosePage": "close-page",
|
|
3409
|
-
"onCreateWindow": "create-window",
|
|
3410
|
-
"onIndicatorActivated": "indicator-activated",
|
|
3411
|
-
"onPageAttached": "page-attached",
|
|
3412
|
-
"onPageDetached": "page-detached",
|
|
3413
|
-
"onPageReordered": "page-reordered",
|
|
3414
|
-
"onSetupMenu": "setup-menu",
|
|
3415
|
-
},
|
|
3416
|
-
VteTerminal: {
|
|
3417
|
-
"onBell": "bell",
|
|
3418
|
-
"onCharSizeChanged": "char-size-changed",
|
|
3419
|
-
"onChildExited": "child-exited",
|
|
3420
|
-
"onCommit": "commit",
|
|
3421
|
-
"onContentsChanged": "contents-changed",
|
|
3422
|
-
"onCopyClipboard": "copy-clipboard",
|
|
3423
|
-
"onCurrentDirectoryUriChanged": "current-directory-uri-changed",
|
|
3424
|
-
"onCurrentFileUriChanged": "current-file-uri-changed",
|
|
3425
|
-
"onCursorMoved": "cursor-moved",
|
|
3426
|
-
"onDecreaseFontSize": "decrease-font-size",
|
|
3427
|
-
"onDeiconifyWindow": "deiconify-window",
|
|
3428
|
-
"onEncodingChanged": "encoding-changed",
|
|
3429
|
-
"onEof": "eof",
|
|
3430
|
-
"onHyperlinkHoverUriChanged": "hyperlink-hover-uri-changed",
|
|
3431
|
-
"onIconTitleChanged": "icon-title-changed",
|
|
3432
|
-
"onIconifyWindow": "iconify-window",
|
|
3433
|
-
"onIncreaseFontSize": "increase-font-size",
|
|
3434
|
-
"onLowerWindow": "lower-window",
|
|
3435
|
-
"onMaximizeWindow": "maximize-window",
|
|
3436
|
-
"onMoveWindow": "move-window",
|
|
3437
|
-
"onPasteClipboard": "paste-clipboard",
|
|
3438
|
-
"onRaiseWindow": "raise-window",
|
|
3439
|
-
"onRefreshWindow": "refresh-window",
|
|
3440
|
-
"onResizeWindow": "resize-window",
|
|
3441
|
-
"onRestoreWindow": "restore-window",
|
|
3442
|
-
"onSelectionChanged": "selection-changed",
|
|
3443
|
-
"onSetupContextMenu": "setup-context-menu",
|
|
3444
|
-
"onTermpropChanged": "termprop-changed",
|
|
3445
|
-
"onTermpropsChanged": "termprops-changed",
|
|
3446
|
-
"onWindowTitleChanged": "window-title-changed",
|
|
3447
|
-
},
|
|
3448
|
-
GtkText: {
|
|
3449
|
-
"onActivate": "activate",
|
|
3450
|
-
"onBackspace": "backspace",
|
|
3451
|
-
"onCopyClipboard": "copy-clipboard",
|
|
3452
|
-
"onCutClipboard": "cut-clipboard",
|
|
3453
|
-
"onDeleteFromCursor": "delete-from-cursor",
|
|
3454
|
-
"onInsertAtCursor": "insert-at-cursor",
|
|
3455
|
-
"onInsertEmoji": "insert-emoji",
|
|
3456
|
-
"onMoveCursor": "move-cursor",
|
|
3457
|
-
"onPasteClipboard": "paste-clipboard",
|
|
3458
|
-
"onPreeditChanged": "preedit-changed",
|
|
3459
|
-
"onToggleOverwrite": "toggle-overwrite",
|
|
3460
|
-
"onChanged": "changed",
|
|
3461
|
-
"onDeleteText": "delete-text",
|
|
3462
|
-
"onInsertText": "insert-text",
|
|
3463
|
-
},
|
|
3464
|
-
GtkTextView: {
|
|
3465
|
-
"onBackspace": "backspace",
|
|
3466
|
-
"onCopyClipboard": "copy-clipboard",
|
|
3467
|
-
"onCutClipboard": "cut-clipboard",
|
|
3468
|
-
"onDeleteFromCursor": "delete-from-cursor",
|
|
3469
|
-
"onExtendSelection": "extend-selection",
|
|
3470
|
-
"onInsertAtCursor": "insert-at-cursor",
|
|
3471
|
-
"onInsertEmoji": "insert-emoji",
|
|
3472
|
-
"onMoveCursor": "move-cursor",
|
|
3473
|
-
"onMoveViewport": "move-viewport",
|
|
3474
|
-
"onPasteClipboard": "paste-clipboard",
|
|
3475
|
-
"onPreeditChanged": "preedit-changed",
|
|
3476
|
-
"onSelectAll": "select-all",
|
|
3477
|
-
"onSetAnchor": "set-anchor",
|
|
3478
|
-
"onToggleCursorVisible": "toggle-cursor-visible",
|
|
3479
|
-
"onToggleOverwrite": "toggle-overwrite",
|
|
3480
|
-
},
|
|
3481
|
-
GtkToggleButton: {
|
|
3482
|
-
"onToggled": "toggled",
|
|
3483
|
-
},
|
|
3484
|
-
GtkTreeView: {
|
|
3485
|
-
"onColumnsChanged": "columns-changed",
|
|
3486
|
-
"onCursorChanged": "cursor-changed",
|
|
3487
|
-
"onExpandCollapseCursorRow": "expand-collapse-cursor-row",
|
|
3488
|
-
"onMoveCursor": "move-cursor",
|
|
3489
|
-
"onRowActivated": "row-activated",
|
|
3490
|
-
"onRowCollapsed": "row-collapsed",
|
|
3491
|
-
"onRowExpanded": "row-expanded",
|
|
3492
|
-
"onSelectAll": "select-all",
|
|
3493
|
-
"onSelectCursorParent": "select-cursor-parent",
|
|
3494
|
-
"onSelectCursorRow": "select-cursor-row",
|
|
3495
|
-
"onStartInteractiveSearch": "start-interactive-search",
|
|
3496
|
-
"onTestCollapseRow": "test-collapse-row",
|
|
3497
|
-
"onTestExpandRow": "test-expand-row",
|
|
3498
|
-
"onToggleCursorRow": "toggle-cursor-row",
|
|
3499
|
-
"onUnselectAll": "unselect-all",
|
|
3500
|
-
},
|
|
3501
|
-
GtkSourceView: {
|
|
3502
|
-
"onChangeCase": "change-case",
|
|
3503
|
-
"onChangeNumber": "change-number",
|
|
3504
|
-
"onJoinLines": "join-lines",
|
|
3505
|
-
"onLineMarkActivated": "line-mark-activated",
|
|
3506
|
-
"onMoveLines": "move-lines",
|
|
3507
|
-
"onMoveToMatchingBracket": "move-to-matching-bracket",
|
|
3508
|
-
"onMoveWords": "move-words",
|
|
3509
|
-
"onPushSnippet": "push-snippet",
|
|
3510
|
-
"onShowCompletion": "show-completion",
|
|
3511
|
-
"onSmartHomeEnd": "smart-home-end",
|
|
3512
|
-
},
|
|
3513
|
-
WebKitWebView: {
|
|
3514
|
-
"onAuthenticate": "authenticate",
|
|
3515
|
-
"onClose": "close",
|
|
3516
|
-
"onContextMenu": "context-menu",
|
|
3517
|
-
"onContextMenuDismissed": "context-menu-dismissed",
|
|
3518
|
-
"onCreate": "create",
|
|
3519
|
-
"onDecidePolicy": "decide-policy",
|
|
3520
|
-
"onEnterFullscreen": "enter-fullscreen",
|
|
3521
|
-
"onInsecureContentDetected": "insecure-content-detected",
|
|
3522
|
-
"onLeaveFullscreen": "leave-fullscreen",
|
|
3523
|
-
"onLoadChanged": "load-changed",
|
|
3524
|
-
"onLoadFailed": "load-failed",
|
|
3525
|
-
"onLoadFailedWithTlsErrors": "load-failed-with-tls-errors",
|
|
3526
|
-
"onMouseTargetChanged": "mouse-target-changed",
|
|
3527
|
-
"onPermissionRequest": "permission-request",
|
|
3528
|
-
"onPrint": "print",
|
|
3529
|
-
"onQueryPermissionState": "query-permission-state",
|
|
3530
|
-
"onReadyToShow": "ready-to-show",
|
|
3531
|
-
"onResourceLoadStarted": "resource-load-started",
|
|
3532
|
-
"onRunAsModal": "run-as-modal",
|
|
3533
|
-
"onRunColorChooser": "run-color-chooser",
|
|
3534
|
-
"onRunFileChooser": "run-file-chooser",
|
|
3535
|
-
"onScriptDialog": "script-dialog",
|
|
3536
|
-
"onShowNotification": "show-notification",
|
|
3537
|
-
"onShowOptionMenu": "show-option-menu",
|
|
3538
|
-
"onSubmitForm": "submit-form",
|
|
3539
|
-
"onUserMessageReceived": "user-message-received",
|
|
3540
|
-
"onWebProcessTerminated": "web-process-terminated",
|
|
3541
|
-
},
|
|
3542
|
-
GtkDragSource: {
|
|
3543
|
-
"onDragBegin": "drag-begin",
|
|
3544
|
-
"onDragCancel": "drag-cancel",
|
|
3545
|
-
"onDragEnd": "drag-end",
|
|
3546
|
-
"onPrepare": "prepare",
|
|
3547
|
-
},
|
|
3548
|
-
GtkDropControllerMotion: {
|
|
3549
|
-
"onEnter": "enter",
|
|
3550
|
-
"onLeave": "leave",
|
|
3551
|
-
"onMotion": "motion",
|
|
3552
|
-
},
|
|
3553
|
-
GtkDropTarget: {
|
|
3554
|
-
"onAccept": "accept",
|
|
3555
|
-
"onDrop": "drop",
|
|
3556
|
-
"onEnter": "enter",
|
|
3557
|
-
"onLeave": "leave",
|
|
3558
|
-
"onMotion": "motion",
|
|
3559
|
-
},
|
|
3560
|
-
GtkDropTargetAsync: {
|
|
3561
|
-
"onAccept": "accept",
|
|
3562
|
-
"onDragEnter": "drag-enter",
|
|
3563
|
-
"onDragLeave": "drag-leave",
|
|
3564
|
-
"onDragMotion": "drag-motion",
|
|
3565
|
-
"onDrop": "drop",
|
|
3566
|
-
},
|
|
3567
|
-
GtkEventController: {
|
|
3568
|
-
"onNotify": "notify",
|
|
3569
|
-
},
|
|
3570
|
-
GtkEventControllerFocus: {
|
|
3571
|
-
"onEnter": "enter",
|
|
3572
|
-
"onLeave": "leave",
|
|
3573
|
-
},
|
|
3574
|
-
GtkEventControllerKey: {
|
|
3575
|
-
"onImUpdate": "im-update",
|
|
3576
|
-
"onKeyPressed": "key-pressed",
|
|
3577
|
-
"onKeyReleased": "key-released",
|
|
3578
|
-
"onModifiers": "modifiers",
|
|
3579
|
-
},
|
|
3580
|
-
GtkEventControllerLegacy: {
|
|
3581
|
-
"onEvent": "event",
|
|
3582
|
-
},
|
|
3583
|
-
GtkEventControllerMotion: {
|
|
3584
|
-
"onEnter": "enter",
|
|
3585
|
-
"onLeave": "leave",
|
|
3586
|
-
"onMotion": "motion",
|
|
3587
|
-
},
|
|
3588
|
-
GtkEventControllerScroll: {
|
|
3589
|
-
"onDecelerate": "decelerate",
|
|
3590
|
-
"onScroll": "scroll",
|
|
3591
|
-
"onScrollBegin": "scroll-begin",
|
|
3592
|
-
"onScrollEnd": "scroll-end",
|
|
3593
|
-
},
|
|
3594
|
-
GtkGesture: {
|
|
3595
|
-
"onBegin": "begin",
|
|
3596
|
-
"onCancel": "cancel",
|
|
3597
|
-
"onEnd": "end",
|
|
3598
|
-
"onSequenceStateChanged": "sequence-state-changed",
|
|
3599
|
-
"onUpdate": "update",
|
|
3600
|
-
},
|
|
3601
|
-
GtkGestureClick: {
|
|
3602
|
-
"onPressed": "pressed",
|
|
3603
|
-
"onReleased": "released",
|
|
3604
|
-
"onStopped": "stopped",
|
|
3605
|
-
"onUnpairedRelease": "unpaired-release",
|
|
3606
|
-
},
|
|
3607
|
-
GtkGestureDrag: {
|
|
3608
|
-
"onDragBegin": "drag-begin",
|
|
3609
|
-
"onDragEnd": "drag-end",
|
|
3610
|
-
"onDragUpdate": "drag-update",
|
|
3611
|
-
},
|
|
3612
|
-
GtkGestureLongPress: {
|
|
3613
|
-
"onCancelled": "cancelled",
|
|
3614
|
-
"onPressed": "pressed",
|
|
3615
|
-
},
|
|
3616
|
-
GtkGesturePan: {
|
|
3617
|
-
"onPan": "pan",
|
|
3618
|
-
},
|
|
3619
|
-
GtkGestureRotate: {
|
|
3620
|
-
"onAngleChanged": "angle-changed",
|
|
3621
|
-
},
|
|
3622
|
-
GtkGestureStylus: {
|
|
3623
|
-
"onDown": "down",
|
|
3624
|
-
"onMotion": "motion",
|
|
3625
|
-
"onProximity": "proximity",
|
|
3626
|
-
"onUp": "up",
|
|
3627
|
-
},
|
|
3628
|
-
GtkGestureSwipe: {
|
|
3629
|
-
"onSwipe": "swipe",
|
|
3630
|
-
},
|
|
3631
|
-
GtkGestureZoom: {
|
|
3632
|
-
"onScaleChanged": "scale-changed",
|
|
3633
|
-
},
|
|
3634
|
-
GtkShortcutController: {
|
|
3635
|
-
"onItemsChanged": "items-changed",
|
|
3636
|
-
},
|
|
3637
|
-
};
|
|
3638
|
-
//# sourceMappingURL=internal.js.map
|