diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-06-25 21:24:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-06-26 15:44:11 +0200 |
commit | 07875e36f7f8aab16e5a1e5e78c189e572d57bf8 (patch) | |
tree | 2d1a0dc5cdaa893b90f3e0da410f8e53c480acc4 /svtools | |
parent | bda370031e669d4a9b19d0a8247da0db230ebf00 (diff) |
weld SpinfieldControl
Change-Id: I1696105ead648c86076f05f50f6286e9a3a932d4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97218
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/UIConfig_svt.mk | 1 | ||||
-rw-r--r-- | svtools/uiconfig/ui/spinfieldcontrol.ui | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/svtools/UIConfig_svt.mk b/svtools/UIConfig_svt.mk index 9cf052bbc0da..46fd24e6a4c2 100644 --- a/svtools/UIConfig_svt.mk +++ b/svtools/UIConfig_svt.mk @@ -26,6 +26,7 @@ $(eval $(call gb_UIConfig_add_uifiles,svt,\ svtools/uiconfig/ui/printersetupdialog \ svtools/uiconfig/ui/querydeletedialog \ svtools/uiconfig/ui/restartdialog \ + svtools/uiconfig/ui/spinfieldcontrol \ )) # vim: set noet sw=4 ts=4: diff --git a/svtools/uiconfig/ui/spinfieldcontrol.ui b/svtools/uiconfig/ui/spinfieldcontrol.ui new file mode 100644 index 000000000000..c2ef659926ae --- /dev/null +++ b/svtools/uiconfig/ui/spinfieldcontrol.ui @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Generated with glade 3.22.2 --> +<interface domain="svt"> + <requires lib="gtk+" version="3.18"/> + <object class="GtkAdjustment" id="adjustment1"> + <property name="lower">-1000000000</property> + <property name="upper">1000000000</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> + </object> + <object class="GtkBox" id="SpinFieldControl"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="orientation">vertical</property> + <child> + <object class="GtkSpinButton" id="spinbutton"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="hexpand">True</property> + <property name="adjustment">adjustment1</property> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + </object> +</interface> |