diff options
author | Thomas Viehmann <tv@beamnet.de> | 2014-08-15 00:07:58 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2014-08-14 19:50:27 -0500 |
commit | 6af3bc396eedde71e40c3e8d714a728c8fa881aa (patch) | |
tree | 4593a0c84a353658e58b418efc2f76b779f58f14 /sc/uiconfig/scalc/ui/pastespecial.ui | |
parent | ec7ab6356b02d85011485048d0f4d11239d386af (diff) |
fdo#79116 make paste special easier to use
This patch adds three short cut buttons to the calc paste special
dialog: paste values only (numbers, strings, dates), paste values and
formats, and paste transposed.
Change-Id: Ie70fbaa28976b2311b1d9cf53b094a5083fb42d4
Reviewed-on: https://gerrit.libreoffice.org/10928
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'sc/uiconfig/scalc/ui/pastespecial.ui')
-rw-r--r-- | sc/uiconfig/scalc/ui/pastespecial.ui | 89 |
1 files changed, 78 insertions, 11 deletions
diff --git a/sc/uiconfig/scalc/ui/pastespecial.ui b/sc/uiconfig/scalc/ui/pastespecial.ui index c8c7eccc8684..bf6b9d02f141 100644 --- a/sc/uiconfig/scalc/ui/pastespecial.ui +++ b/sc/uiconfig/scalc/ui/pastespecial.ui @@ -1,7 +1,22 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- Generated with glade 3.16.0 on Tue Jan 28 13:14:40 2014 --> +<!-- Generated with glade 3.18.3 --> <interface> - <!-- interface-requires gtk+ 3.0 --> + <requires lib="gtk+" version="3.0"/> + <object class="GtkImage" id="img_paste_values_formats"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="pixbuf">sc/res/paste_values_formats.png</property> + </object> + <object class="GtkImage" id="img_paste_values_only"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="pixbuf">sc/res/paste_values_only.png</property> + </object> + <object class="GtkImage" id="img_paste_transpose"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="pixbuf">sc/res/paste_transpose.png</property> + </object> <object class="GtkDialog" id="PasteSpecial"> <property name="can_focus">False</property> <property name="border_width">6</property> @@ -68,6 +83,66 @@ </packing> </child> <child> + <object class="GtkButtonBox" id="buttonbox1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="layout_style">start</property> + <child> + <object class="GtkButton" id="paste_values_only"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + <property name="has_tooltip">True</property> + <property name="tooltip_markup" translatable="yes">Values Only</property> + <property name="tooltip_text" translatable="yes">Values Only</property> + <property name="image">img_paste_values_only</property> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkButton" id="paste_values_formats"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + <property name="has_tooltip">True</property> + <property name="tooltip_markup" translatable="yes">Values & Formats</property> + <property name="tooltip_text" translatable="yes">Values & Formats</property> + <property name="image">img_paste_values_formats</property> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkButton" id="paste_transpose"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + <property name="has_tooltip">True</property> + <property name="tooltip_markup" translatable="yes">Transpose</property> + <property name="tooltip_text" translatable="yes">Transpose</property> + <property name="image">img_paste_transpose</property> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> <object class="GtkGrid" id="grid1"> <property name="visible">True</property> <property name="can_focus">False</property> @@ -239,8 +314,6 @@ <packing> <property name="left_attach">0</property> <property name="top_attach">0</property> - <property name="width">1</property> - <property name="height">1</property> </packing> </child> <child> @@ -371,8 +444,6 @@ <packing> <property name="left_attach">1</property> <property name="top_attach">0</property> - <property name="width">1</property> - <property name="height">1</property> </packing> </child> <child> @@ -464,8 +535,6 @@ <packing> <property name="left_attach">0</property> <property name="top_attach">1</property> - <property name="width">1</property> - <property name="height">1</property> </packing> </child> <child> @@ -561,15 +630,13 @@ <packing> <property name="left_attach">1</property> <property name="top_attach">1</property> - <property name="width">1</property> - <property name="height">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> - <property name="position">1</property> + <property name="position">2</property> </packing> </child> </object> |