diff options
author | Alessio Treglia <alessio@debian.org> | 2013-10-05 15:29:30 +0100 |
---|---|---|
committer | Alessio Treglia <alessio@debian.org> | 2013-10-05 15:29:30 +0100 |
commit | e51f2bbb5a0f25b37330891d769b996a2c13d277 (patch) | |
tree | 25d429c588012a476c15b6ca5b4bf393613beca3 /data/simple-scan.ui | |
parent | 438230655b539ad6aa15b017a792cab8ca7f6d89 (diff) | |
parent | 2d71d20a62ca8f6989d86db58ce64c7a862675dd (diff) |
Merge tag 'upstream/3.10.0'
Upstream version 3.10.0
Diffstat (limited to 'data/simple-scan.ui')
-rw-r--r-- | data/simple-scan.ui | 121 |
1 files changed, 120 insertions, 1 deletions
diff --git a/data/simple-scan.ui b/data/simple-scan.ui index 7a5d7c1..eb4ae02 100644 --- a/data/simple-scan.ui +++ b/data/simple-scan.ui @@ -325,6 +325,17 @@ </object> </child> <child> + <object class="GtkImageMenuItem" id="copy_to_clipboard_menuitem"> + <property name="label">gtk-copy</property> + <property name="visible">True</property> + <property name="sensitive">False</property> + <property name="use_underline">True</property> + <property name="use_stock">True</property> + <accelerator key="c" signal="activate" modifiers="GDK_CONTROL_MASK"/> + <signal name="activate" handler="copy_to_clipboard_button_clicked_cb"/> + </object> + </child> + <child> <object class="GtkImageMenuItem" id="page_delete_menuitem"> <property name="label">gtk-delete</property> <property name="visible">True</property> @@ -676,7 +687,7 @@ <object class="GtkTable" id="table3"> <property name="visible">True</property> <property name="border_width">5</property> - <property name="n_rows">5</property> + <property name="n_rows">7</property> <property name="n_columns">2</property> <property name="column_spacing">6</property> <property name="row_spacing">6</property> @@ -818,6 +829,96 @@ <property name="y_options">GTK_FILL</property> </packing> </child> + <child> + <object class="GtkLabel" id="brightness_label"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="label" translatable="yes" comments="Label beside brightness scale">Brightness:</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">brightness_adjustment</property> + </object> + <packing> + <property name="top_attach">5</property> + <property name="bottom_attach">6</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkScale" id="brightness_scale"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="adjustment">brightness_adjustment</property> + <property name="draw_value">False</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">5</property> + <property name="bottom_attach">6</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="contrast_label"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="label" translatable="yes" comments="Label beside contrast scale">Contrast:</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">contrast_scale</property> + </object> + <packing> + <property name="top_attach">6</property> + <property name="bottom_attach">7</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkScale" id="contrast_scale"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="adjustment">contrast_adjustment</property> + <property name="draw_value">False</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">6</property> + <property name="bottom_attach">7</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="quality_label"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="label" translatable="yes" comments="Label beside quality scale">Quality:</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">quality_scale</property> + </object> + <packing> + <property name="top_attach">7</property> + <property name="bottom_attach">8</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkScale" id="quality_scale"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="adjustment">quality_adjustment</property> + <property name="draw_value">False</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">7</property> + <property name="bottom_attach">8</property> + </packing> + </child> </object> <packing> <property name="position">1</property> @@ -954,4 +1055,22 @@ <column type="gchararray"/> </columns> </object> + <object class="GtkAdjustment" id="brightness_adjustment"> + <property name="lower">-100</property> + <property name="upper">100</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> + </object> + <object class="GtkAdjustment" id="contrast_adjustment"> + <property name="lower">-100</property> + <property name="upper">100</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> + </object> + <object class="GtkAdjustment" id="quality_adjustment"> + <property name="lower">0</property> + <property name="upper">100</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> + </object> </interface> |