@gtkx/react 0.13.3 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,18 +1,18 @@
1
1
  <p align="center">
2
- <img src="https://raw.githubusercontent.com/eugeniodepalo/gtkx/main/logo.svg" alt="GTKX" width="60" height="60">
2
+ <img src="https://raw.githubusercontent.com/eugeniodepalo/gtkx/main/logo.svg" alt="GTKX" width="60" height="60">
3
3
  </p>
4
4
 
5
5
  <h1 align="center">GTKX</h1>
6
6
 
7
7
  <p align="center">
8
- <strong>Build native GTK4 desktop applications with React and TypeScript.</strong>
8
+ <strong>Build native GTK4 desktop applications with React and TypeScript.</strong>
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <a href="https://www.npmjs.com/package/@gtkx/react"><img src="https://img.shields.io/npm/v/@gtkx/react.svg" alt="npm version"></a>
13
- <a href="https://github.com/eugeniodepalo/gtkx/actions"><img src="https://img.shields.io/github/actions/workflow/status/eugeniodepalo/gtkx/ci.yml" alt="CI"></a>
14
- <a href="https://github.com/eugeniodepalo/gtkx/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MPL--2.0-blue.svg" alt="License"></a>
15
- <a href="https://github.com/eugeniodepalo/gtkx/discussions"><img src="https://img.shields.io/badge/discussions-GitHub-blue" alt="GitHub Discussions"></a>
12
+ <a href="https://www.npmjs.com/package/@gtkx/react"><img src="https://img.shields.io/npm/v/@gtkx/react.svg" alt="npm version"></a>
13
+ <a href="https://github.com/eugeniodepalo/gtkx/actions"><img src="https://img.shields.io/github/actions/workflow/status/eugeniodepalo/gtkx/ci.yml" alt="CI"></a>
14
+ <a href="https://github.com/eugeniodepalo/gtkx/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MPL--2.0-blue.svg" alt="License"></a>
15
+ <a href="https://github.com/eugeniodepalo/gtkx/discussions"><img src="https://img.shields.io/badge/discussions-GitHub-blue" alt="GitHub Discussions"></a>
16
16
  </p>
17
17
 
18
18
  ---
@@ -31,36 +31,36 @@ npm run dev
31
31
 
32
32
  ```tsx
33
33
  import {
34
- GtkApplicationWindow,
35
- GtkBox,
36
- GtkButton,
37
- GtkLabel,
38
- quit,
39
- render,
34
+ GtkApplicationWindow,
35
+ GtkBox,
36
+ GtkButton,
37
+ GtkLabel,
38
+ quit,
39
+ render,
40
40
  } from "@gtkx/react";
41
41
  import * as Gtk from "@gtkx/ffi/gtk";
42
42
  import { useState } from "react";
43
43
 
44
44
  const App = () => {
45
- const [count, setCount] = useState(0);
46
-
47
- return (
48
- <GtkApplicationWindow
49
- title="Counter"
50
- defaultWidth={300}
51
- defaultHeight={200}
52
- onClose={quit}
53
- >
54
- <GtkBox
55
- orientation={Gtk.Orientation.VERTICAL}
56
- spacing={20}
57
- valign={Gtk.Align.CENTER}
58
- >
59
- <GtkLabel label={`Count: ${count}`} cssClasses={["title-1"]} />
60
- <GtkButton label="Increment" onClicked={() => setCount((c) => c + 1)} />
61
- </GtkBox>
62
- </GtkApplicationWindow>
63
- );
45
+ const [count, setCount] = useState(0);
46
+
47
+ return (
48
+ <GtkApplicationWindow
49
+ title="Counter"
50
+ defaultWidth={300}
51
+ defaultHeight={200}
52
+ onClose={quit}
53
+ >
54
+ <GtkBox
55
+ orientation={Gtk.Orientation.VERTICAL}
56
+ spacing={20}
57
+ valign={Gtk.Align.CENTER}
58
+ >
59
+ <GtkLabel label={`Count: ${count}`} cssClasses={["title-1"]} />
60
+ <GtkButton label="Increment" onClicked={() => setCount((c) => c + 1)} />
61
+ </GtkBox>
62
+ </GtkApplicationWindow>
63
+ );
64
64
  };
65
65
 
66
66
  render(<App />, "com.example.counter");
@@ -80,6 +80,7 @@ render(<App />, "com.example.counter");
80
80
 
81
81
  Explore complete applications in the [`examples/`](./examples) directory:
82
82
 
83
+ - **[browser](./examples/browser)** — Simple browser using WebKitWebView
83
84
  - **[gtk-demo](./examples/gtk-demo)** — Full replica of the official GTK demo app
84
85
  - **[hello-world](./examples/hello-world)** — Minimal application showing a counter
85
86
  - **[todo](./examples/todo)** — Full-featured todo application with Adwaita styling and testing
@@ -77,6 +77,7 @@ export const PROPS = {
77
77
  focusable: ["getFocusable", "setFocusable"],
78
78
  halign: ["getHalign", "setHalign"],
79
79
  hasTooltip: ["getHasTooltip", "setHasTooltip"],
80
+ heightRequest: [null, "setHeightRequest"],
80
81
  hexpand: ["getHexpand", "setHexpand"],
81
82
  hexpandSet: ["getHexpandSet", "setHexpandSet"],
82
83
  layoutManager: ["getLayoutManager", "setLayoutManager"],
@@ -96,6 +97,8 @@ export const PROPS = {
96
97
  vexpand: ["getVexpand", "setVexpand"],
97
98
  vexpandSet: ["getVexpandSet", "setVexpandSet"],
98
99
  visible: ["getVisible", "setVisible"],
100
+ widthRequest: [null, "setWidthRequest"],
101
+ accessibleRole: ["getAccessibleRole", "setAccessibleRole"],
99
102
  },
100
103
  AdwWindow: {
101
104
  adaptivePreview: ["getAdaptivePreview", "setAdaptivePreview"],
@@ -105,16 +108,20 @@ export const PROPS = {
105
108
  application: ["getApplication", "setApplication"],
106
109
  child: ["getChild", "setChild"],
107
110
  decorated: ["getDecorated", "setDecorated"],
111
+ defaultHeight: [null, "setDefaultHeight"],
108
112
  defaultWidget: ["getDefaultWidget", "setDefaultWidget"],
113
+ defaultWidth: [null, "setDefaultWidth"],
109
114
  deletable: ["getDeletable", "setDeletable"],
110
115
  destroyWithParent: ["getDestroyWithParent", "setDestroyWithParent"],
111
116
  display: [null, "setDisplay"],
112
117
  focusVisible: ["getFocusVisible", "setFocusVisible"],
113
118
  focusWidget: ["getFocus", "setFocus"],
119
+ fullscreened: ["isFullscreen", "setFullscreened"],
114
120
  gravity: ["getGravity", "setGravity"],
115
121
  handleMenubarAccel: ["getHandleMenubarAccel", "setHandleMenubarAccel"],
116
122
  hideOnClose: ["getHideOnClose", "setHideOnClose"],
117
123
  iconName: ["getIconName", "setIconName"],
124
+ maximized: ["isMaximized", "setMaximized"],
118
125
  mnemonicsVisible: ["getMnemonicsVisible", "setMnemonicsVisible"],
119
126
  modal: ["getModal", "setModal"],
120
127
  resizable: ["getResizable", "setResizable"],
@@ -370,15 +377,18 @@ export const PROPS = {
370
377
  },
371
378
  GtkColorButton: {
372
379
  modal: ["getModal", "setModal"],
380
+ showEditor: [null, "setShowEditor"],
373
381
  title: ["getTitle", "setTitle"],
374
382
  rgba: ["getRgba", "setRgba"],
375
383
  useAlpha: ["getUseAlpha", "setUseAlpha"],
376
384
  },
377
385
  GtkColorChooserDialog: {
386
+ showEditor: [null, "setShowEditor"],
378
387
  rgba: ["getRgba", "setRgba"],
379
388
  useAlpha: ["getUseAlpha", "setUseAlpha"],
380
389
  },
381
390
  GtkColorChooserWidget: {
391
+ showEditor: [null, "setShowEditor"],
382
392
  rgba: ["getRgba", "setRgba"],
383
393
  useAlpha: ["getUseAlpha", "setUseAlpha"],
384
394
  },
@@ -407,9 +417,11 @@ export const PROPS = {
407
417
  buttonSensitivity: ["getButtonSensitivity", "setButtonSensitivity"],
408
418
  child: ["getChild", "setChild"],
409
419
  entryTextColumn: ["getEntryTextColumn", "setEntryTextColumn"],
420
+ hasFrame: [null, "setHasFrame"],
410
421
  idColumn: ["getIdColumn", "setIdColumn"],
411
422
  model: ["getModel", "setModel"],
412
423
  popupFixedWidth: ["getPopupFixedWidth", "setPopupFixedWidth"],
424
+ editingCanceled: [null, "setEditingCanceled"],
413
425
  },
414
426
  AdwComboRow: {
415
427
  enableSearch: ["getEnableSearch", "setEnableSearch"],
@@ -458,6 +470,7 @@ export const PROPS = {
458
470
  showArrow: ["getShowArrow", "setShowArrow"],
459
471
  },
460
472
  GtkEditableLabel: {
473
+ editing: ["getEditing", "setEditing"],
461
474
  editable: ["getEditable", "setEditable"],
462
475
  enableUndo: ["getEnableUndo", "setEnableUndo"],
463
476
  maxWidthChars: ["getMaxWidthChars", "setMaxWidthChars"],
@@ -470,18 +483,40 @@ export const PROPS = {
470
483
  attributes: ["getAttributes", "setAttributes"],
471
484
  buffer: ["getBuffer", "setBuffer"],
472
485
  completion: ["getCompletion", "setCompletion"],
486
+ enableEmojiCompletion: [null, "setEnableEmojiCompletion"],
473
487
  extraMenu: ["getExtraMenu", "setExtraMenu"],
474
488
  hasFrame: ["getHasFrame", "setHasFrame"],
489
+ imModule: [null, "setImModule"],
475
490
  inputHints: ["getInputHints", "setInputHints"],
476
491
  inputPurpose: ["getInputPurpose", "setInputPurpose"],
477
492
  invisibleChar: ["getInvisibleChar", "setInvisibleChar"],
493
+ invisibleCharSet: [null, "setInvisibleCharSet"],
478
494
  maxLength: ["getMaxLength", "setMaxLength"],
495
+ menuEntryIconPrimaryText: [null, "setMenuEntryIconPrimaryText"],
496
+ menuEntryIconSecondaryText: [null, "setMenuEntryIconSecondaryText"],
479
497
  overwriteMode: ["getOverwriteMode", "setOverwriteMode"],
480
498
  placeholderText: ["getPlaceholderText", "setPlaceholderText"],
499
+ primaryIconActivatable: [null, "setPrimaryIconActivatable"],
500
+ primaryIconGicon: [null, "setPrimaryIconGicon"],
501
+ primaryIconName: [null, "setPrimaryIconName"],
502
+ primaryIconPaintable: [null, "setPrimaryIconPaintable"],
503
+ primaryIconSensitive: [null, "setPrimaryIconSensitive"],
504
+ primaryIconTooltipMarkup: [null, "setPrimaryIconTooltipMarkup"],
505
+ primaryIconTooltipText: [null, "setPrimaryIconTooltipText"],
481
506
  progressFraction: ["getProgressFraction", "setProgressFraction"],
482
507
  progressPulseStep: ["getProgressPulseStep", "setProgressPulseStep"],
508
+ secondaryIconActivatable: [null, "setSecondaryIconActivatable"],
509
+ secondaryIconGicon: [null, "setSecondaryIconGicon"],
510
+ secondaryIconName: [null, "setSecondaryIconName"],
511
+ secondaryIconPaintable: [null, "setSecondaryIconPaintable"],
512
+ secondaryIconSensitive: [null, "setSecondaryIconSensitive"],
513
+ secondaryIconTooltipMarkup: [null, "setSecondaryIconTooltipMarkup"],
514
+ secondaryIconTooltipText: [null, "setSecondaryIconTooltipText"],
515
+ showEmojiIcon: [null, "setShowEmojiIcon"],
483
516
  tabs: ["getTabs", "setTabs"],
517
+ truncateMultiline: [null, "setTruncateMultiline"],
484
518
  visibility: ["getVisibility", "setVisibility"],
519
+ editingCanceled: [null, "setEditingCanceled"],
485
520
  editable: ["getEditable", "setEditable"],
486
521
  enableUndo: ["getEnableUndo", "setEnableUndo"],
487
522
  maxWidthChars: ["getMaxWidthChars", "setMaxWidthChars"],
@@ -529,6 +564,7 @@ export const PROPS = {
529
564
  selectMultiple: ["getSelectMultiple", "setSelectMultiple"],
530
565
  },
531
566
  GtkFileChooserWidget: {
567
+ searchMode: [null, "setSearchMode"],
532
568
  action: ["getAction", "setAction"],
533
569
  createFolders: ["getCreateFolders", "setCreateFolders"],
534
570
  filter: ["getFilter", "setFilter"],
@@ -552,6 +588,7 @@ export const PROPS = {
552
588
  orientation: ["getOrientation", "setOrientation"],
553
589
  },
554
590
  GtkFlowBox: {
591
+ acceptUnpairedRelease: [null, "setAcceptUnpairedRelease"],
555
592
  activateOnSingleClick: ["getActivateOnSingleClick", "setActivateOnSingleClick"],
556
593
  columnSpacing: ["getColumnSpacing", "setColumnSpacing"],
557
594
  homogeneous: ["getHomogeneous", "setHomogeneous"],
@@ -698,6 +735,7 @@ export const PROPS = {
698
735
  paintable: ["getPaintable", "setFromPaintable"],
699
736
  pixelSize: ["getPixelSize", "setPixelSize"],
700
737
  resource: [null, "setFromResource"],
738
+ useFallback: [null, "setUseFallback"],
701
739
  },
702
740
  GtkInfoBar: {
703
741
  messageType: ["getMessageType", "setMessageType"],
@@ -771,12 +809,14 @@ export const PROPS = {
771
809
  visited: ["getVisited", "setVisited"],
772
810
  },
773
811
  GtkListBase: {
812
+ orientation: [null, "setOrientation"],
774
813
  hadjustment: ["getHadjustment", "setHadjustment"],
775
814
  hscrollPolicy: ["getHscrollPolicy", "setHscrollPolicy"],
776
815
  vadjustment: ["getVadjustment", "setVadjustment"],
777
816
  vscrollPolicy: ["getVscrollPolicy", "setVscrollPolicy"],
778
817
  },
779
818
  GtkListBox: {
819
+ acceptUnpairedRelease: [null, "setAcceptUnpairedRelease"],
780
820
  activateOnSingleClick: ["getActivateOnSingleClick", "setActivateOnSingleClick"],
781
821
  selectionMode: ["getSelectionMode", "setSelectionMode"],
782
822
  showSeparators: ["getShowSeparators", "setShowSeparators"],
@@ -800,6 +840,11 @@ export const PROPS = {
800
840
  },
801
841
  GtkLockButton: {
802
842
  permission: ["getPermission", "setPermission"],
843
+ textLock: [null, "setTextLock"],
844
+ textUnlock: [null, "setTextUnlock"],
845
+ tooltipLock: [null, "setTooltipLock"],
846
+ tooltipNotAuthorized: [null, "setTooltipNotAuthorized"],
847
+ tooltipUnlock: [null, "setTooltipUnlock"],
803
848
  },
804
849
  GtkSourceMap: {
805
850
  view: ["getView", "setView"],
@@ -830,6 +875,13 @@ export const PROPS = {
830
875
  heading: ["getHeading", "setHeading"],
831
876
  headingUseMarkup: ["getHeadingUseMarkup", "setHeadingUseMarkup"],
832
877
  },
878
+ GtkMessageDialog: {
879
+ messageType: [null, "setMessageType"],
880
+ secondaryText: [null, "setSecondaryText"],
881
+ secondaryUseMarkup: [null, "setSecondaryUseMarkup"],
882
+ text: [null, "setText"],
883
+ useMarkup: [null, "setUseMarkup"],
884
+ },
833
885
  AdwMultiLayoutView: {
834
886
  layout: ["getLayout", "setLayout"],
835
887
  layoutName: ["getLayoutName", "setLayoutName"],
@@ -858,6 +910,7 @@ export const PROPS = {
858
910
  vhomogeneous: ["getVhomogeneous", "setVhomogeneous"],
859
911
  },
860
912
  GtkNotebook: {
913
+ enablePopup: [null, "setEnablePopup"],
861
914
  groupName: ["getGroupName", "setGroupName"],
862
915
  page: ["getCurrentPage", "setCurrentPage"],
863
916
  scrollable: ["getScrollable", "setScrollable"],
@@ -885,6 +938,7 @@ export const PROPS = {
885
938
  GtkPaned: {
886
939
  endChild: ["getEndChild", "setEndChild"],
887
940
  position: ["getPosition", "setPosition"],
941
+ positionSet: [null, "setPositionSet"],
888
942
  resizeEndChild: ["getResizeEndChild", "setResizeEndChild"],
889
943
  resizeStartChild: ["getResizeStartChild", "setResizeStartChild"],
890
944
  shrinkEndChild: ["getShrinkEndChild", "setShrinkEndChild"],
@@ -894,7 +948,9 @@ export const PROPS = {
894
948
  orientation: ["getOrientation", "setOrientation"],
895
949
  },
896
950
  GtkPasswordEntry: {
951
+ activatesDefault: [null, "setActivatesDefault"],
897
952
  extraMenu: ["getExtraMenu", "setExtraMenu"],
953
+ placeholderText: [null, "setPlaceholderText"],
898
954
  showPeekIcon: ["getShowPeekIcon", "setShowPeekIcon"],
899
955
  editable: ["getEditable", "setEditable"],
900
956
  enableUndo: ["getEnableUndo", "setEnableUndo"],
@@ -924,6 +980,7 @@ export const PROPS = {
924
980
  GtkPopoverMenu: {
925
981
  flags: ["getFlags", "setFlags"],
926
982
  menuModel: ["getMenuModel", "setMenuModel"],
983
+ visibleSubmenu: [null, "setVisibleSubmenu"],
927
984
  },
928
985
  GtkPopoverMenuBar: {
929
986
  menuModel: ["getMenuModel", "setMenuModel"],
@@ -1013,6 +1070,7 @@ export const PROPS = {
1013
1070
  child: ["getChild", "setChild"],
1014
1071
  hadjustment: ["getHadjustment", "setHadjustment"],
1015
1072
  hasFrame: ["getHasFrame", "setHasFrame"],
1073
+ hscrollbarPolicy: [null, "setHscrollbarPolicy"],
1016
1074
  kineticScrolling: ["getKineticScrolling", "setKineticScrolling"],
1017
1075
  maxContentHeight: ["getMaxContentHeight", "setMaxContentHeight"],
1018
1076
  maxContentWidth: ["getMaxContentWidth", "setMaxContentWidth"],
@@ -1022,6 +1080,7 @@ export const PROPS = {
1022
1080
  propagateNaturalHeight: ["getPropagateNaturalHeight", "setPropagateNaturalHeight"],
1023
1081
  propagateNaturalWidth: ["getPropagateNaturalWidth", "setPropagateNaturalWidth"],
1024
1082
  vadjustment: ["getVadjustment", "setVadjustment"],
1083
+ vscrollbarPolicy: [null, "setVscrollbarPolicy"],
1025
1084
  windowPlacement: ["getPlacement", "setPlacement"],
1026
1085
  },
1027
1086
  GtkSearchBar: {
@@ -1031,6 +1090,7 @@ export const PROPS = {
1031
1090
  showCloseButton: ["getShowCloseButton", "setShowCloseButton"],
1032
1091
  },
1033
1092
  GtkSearchEntry: {
1093
+ activatesDefault: [null, "setActivatesDefault"],
1034
1094
  inputHints: ["getInputHints", "setInputHints"],
1035
1095
  inputPurpose: ["getInputPurpose", "setInputPurpose"],
1036
1096
  placeholderText: ["getPlaceholderText", "setPlaceholderText"],
@@ -1053,6 +1113,35 @@ export const PROPS = {
1053
1113
  accelerator: ["getAccelerator", "setAccelerator"],
1054
1114
  disabledText: ["getDisabledText", "setDisabledText"],
1055
1115
  },
1116
+ GtkShortcutsGroup: {
1117
+ accelSizeGroup: [null, "setAccelSizeGroup"],
1118
+ title: [null, "setTitle"],
1119
+ titleSizeGroup: [null, "setTitleSizeGroup"],
1120
+ view: [null, "setView"],
1121
+ },
1122
+ GtkShortcutsSection: {
1123
+ maxHeight: [null, "setMaxHeight"],
1124
+ sectionName: [null, "setSectionName"],
1125
+ title: [null, "setTitle"],
1126
+ viewName: [null, "setViewName"],
1127
+ },
1128
+ GtkShortcutsShortcut: {
1129
+ accelSizeGroup: [null, "setAccelSizeGroup"],
1130
+ accelerator: [null, "setAccelerator"],
1131
+ actionName: [null, "setActionName"],
1132
+ direction: [null, "setDirection"],
1133
+ icon: [null, "setIcon"],
1134
+ iconSet: [null, "setIconSet"],
1135
+ shortcutType: [null, "setShortcutType"],
1136
+ subtitle: [null, "setSubtitle"],
1137
+ subtitleSet: [null, "setSubtitleSet"],
1138
+ title: [null, "setTitle"],
1139
+ titleSizeGroup: [null, "setTitleSizeGroup"],
1140
+ },
1141
+ GtkShortcutsWindow: {
1142
+ sectionName: [null, "setSectionName"],
1143
+ viewName: [null, "setViewName"],
1144
+ },
1056
1145
  GtkSpinButton: {
1057
1146
  activatesDefault: ["getActivatesDefault", "setActivatesDefault"],
1058
1147
  adjustment: ["getAdjustment", "setAdjustment"],
@@ -1063,6 +1152,7 @@ export const PROPS = {
1063
1152
  updatePolicy: ["getUpdatePolicy", "setUpdatePolicy"],
1064
1153
  value: ["getValue", "setValue"],
1065
1154
  wrap: ["getWrap", "setWrap"],
1155
+ editingCanceled: [null, "setEditingCanceled"],
1066
1156
  editable: ["getEditable", "setEditable"],
1067
1157
  enableUndo: ["getEnableUndo", "setEnableUndo"],
1068
1158
  maxWidthChars: ["getMaxWidthChars", "setMaxWidthChars"],
@@ -1213,6 +1303,7 @@ export const PROPS = {
1213
1303
  fontOptions: ["getFontOptions", "setFontOptions"],
1214
1304
  fontScale: ["getFontScale", "setFontScale"],
1215
1305
  inputEnabled: ["getInputEnabled", "setInputEnabled"],
1306
+ pointerAutohide: [null, "setPointerAutohide"],
1216
1307
  pty: ["getPty", "setPty"],
1217
1308
  rewrapOnResize: ["getRewrapOnResize", "setRewrapOnResize"],
1218
1309
  scrollOnInsert: ["getScrollOnInsert", "setScrollOnInsert"],
@@ -1236,9 +1327,11 @@ export const PROPS = {
1236
1327
  buffer: ["getBuffer", "setBuffer"],
1237
1328
  enableEmojiCompletion: ["getEnableEmojiCompletion", "setEnableEmojiCompletion"],
1238
1329
  extraMenu: ["getExtraMenu", "setExtraMenu"],
1330
+ imModule: [null, "setImModule"],
1239
1331
  inputHints: ["getInputHints", "setInputHints"],
1240
1332
  inputPurpose: ["getInputPurpose", "setInputPurpose"],
1241
1333
  invisibleChar: ["getInvisibleChar", "setInvisibleChar"],
1334
+ invisibleCharSet: [null, "setInvisibleCharSet"],
1242
1335
  maxLength: ["getMaxLength", "setMaxLength"],
1243
1336
  overwriteMode: ["getOverwriteMode", "setOverwriteMode"],
1244
1337
  placeholderText: ["getPlaceholderText", "setPlaceholderText"],
@@ -1260,6 +1353,7 @@ export const PROPS = {
1260
1353
  cursorVisible: ["getCursorVisible", "setCursorVisible"],
1261
1354
  editable: ["getEditable", "setEditable"],
1262
1355
  extraMenu: ["getExtraMenu", "setExtraMenu"],
1356
+ imModule: [null, "setImModule"],
1263
1357
  indent: ["getIndent", "setIndent"],
1264
1358
  inputHints: ["getInputHints", "setInputHints"],
1265
1359
  inputPurpose: ["getInputPurpose", "setInputPurpose"],
@@ -1311,6 +1405,7 @@ export const PROPS = {
1311
1405
  },
1312
1406
  GtkTreeView: {
1313
1407
  activateOnSingleClick: ["getActivateOnSingleClick", "setActivateOnSingleClick"],
1408
+ enableGridLines: [null, "setEnableGridLines"],
1314
1409
  enableSearch: ["getEnableSearch", "setEnableSearch"],
1315
1410
  enableTreeLines: ["getEnableTreeLines", "setEnableTreeLines"],
1316
1411
  expanderColumn: ["getExpanderColumn", "setExpanderColumn"],
@@ -1385,6 +1480,9 @@ export const PROPS = {
1385
1480
  title: ["getTitle", "setTitle"],
1386
1481
  viewSwitcherEnabled: ["getViewSwitcherEnabled", "setViewSwitcherEnabled"],
1387
1482
  },
1483
+ GtkVolumeButton: {
1484
+ useSymbolic: [null, "setUseSymbolic"],
1485
+ },
1388
1486
  WebKitWebView: {
1389
1487
  cameraCaptureState: ["getCameraCaptureState", "setCameraCaptureState"],
1390
1488
  displayCaptureState: ["getDisplayCaptureState", "setDisplayCaptureState"],