diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-08-29 10:55:42 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-29 12:10:23 +0100 |
commit | bf431c912497d1f895d9d2f7bfe59adad7f093b7 (patch) | |
tree | 8bf8a4c7a63058fcfa2dbfebd8427a821038537c /cui/uiconfig | |
parent | a932be6923abb6b9e6edea35de067136b58ec6bf (diff) |
lets just switch directly on the EID_OPTIONS
and remove the intermediate resource ids used
as proxies for them
Change-Id: I3ef542d1eaef274dbefed0b0bb76c6e413c6ce80
Diffstat (limited to 'cui/uiconfig')
-rw-r--r-- | cui/uiconfig/ui/breaknumberoption.ui | 86 |
1 files changed, 36 insertions, 50 deletions
diff --git a/cui/uiconfig/ui/breaknumberoption.ui b/cui/uiconfig/ui/breaknumberoption.ui index c8323819f6ce..e102b01b030f 100644 --- a/cui/uiconfig/ui/breaknumberoption.ui +++ b/cui/uiconfig/ui/breaknumberoption.ui @@ -1,13 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <interface> <!-- interface-requires gtk+ 3.0 --> - <object class="GtkAdjustment" id="adjustment1"> - <property name="lower">2</property> - <property name="upper">9</property> - <property name="value">1</property> - <property name="step_increment">1</property> - <property name="page_increment">10</property> - </object> <object class="GtkDialog" id="BreakNumberOption"> <property name="can_focus">False</property> <property name="border_width">6</property> @@ -16,12 +9,12 @@ <child internal-child="vbox"> <object class="GtkBox" id="dialog-vbox1"> <property name="can_focus">False</property> + <property name="orientation">vertical</property> <property name="spacing">12</property> <child internal-child="action_area"> <object class="GtkButtonBox" id="dialog-action_area1"> <property name="can_focus">False</property> - <property name="orientation">vertical</property> - <property name="layout_style">start</property> + <property name="layout_style">end</property> <child> <object class="GtkButton" id="ok"> <property name="label">gtk-ok</property> @@ -66,8 +59,8 @@ <property name="can_focus">False</property> <child> <object class="GtkFrame" id="beforeframe"> - <property name="visible">True</property> <property name="can_focus">False</property> + <property name="no_show_all">True</property> <property name="label_xalign">0</property> <property name="shadow_type">none</property> <child> @@ -77,7 +70,14 @@ <property name="top_padding">6</property> <property name="left_padding">12</property> <child> - <placeholder/> + <object class="GtkSpinButton" id="beforebreak"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="halign">start</property> + <property name="invisible_char">•</property> + <property name="invisible_char_set">True</property> + <property name="adjustment">adjustment1</property> + </object> </child> </object> </child> @@ -101,8 +101,8 @@ </child> <child> <object class="GtkFrame" id="afterframe"> - <property name="visible">True</property> <property name="can_focus">False</property> + <property name="no_show_all">True</property> <property name="label_xalign">0</property> <property name="shadow_type">none</property> <child> @@ -112,7 +112,14 @@ <property name="top_padding">6</property> <property name="left_padding">12</property> <child> - <placeholder/> + <object class="GtkSpinButton" id="afterbreak"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="halign">start</property> + <property name="invisible_char">•</property> + <property name="invisible_char_set">True</property> + <property name="adjustment">adjustment1</property> + </object> </child> </object> </child> @@ -136,8 +143,8 @@ </child> <child> <object class="GtkFrame" id="miniframe"> - <property name="visible">True</property> <property name="can_focus">False</property> + <property name="no_show_all">True</property> <property name="label_xalign">0</property> <property name="shadow_type">none</property> <child> @@ -147,7 +154,14 @@ <property name="top_padding">6</property> <property name="left_padding">12</property> <child> - <placeholder/> + <object class="GtkSpinButton" id="wordlength"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="halign">start</property> + <property name="invisible_char">•</property> + <property name="invisible_char_set">True</property> + <property name="adjustment">adjustment1</property> + </object> </child> </object> </child> @@ -169,41 +183,6 @@ <property name="height">1</property> </packing> </child> - <child> - <object class="GtkAlignment" id="alignment4"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="top_padding">6</property> - <property name="left_padding">12</property> - <child> - <object class="GtkGrid" id="grid5"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="column_spacing">12</property> - <child> - <object class="GtkSpinButton" id="breaknumber"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="invisible_char">•</property> - <property name="adjustment">adjustment1</property> - </object> - <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> - </object> - </child> - </object> - <packing> - <property name="left_attach">0</property> - <property name="top_attach">3</property> - <property name="width">1</property> - <property name="height">1</property> - </packing> - </child> </object> <packing> <property name="expand">False</property> @@ -218,4 +197,11 @@ <action-widget response="0">cancel</action-widget> </action-widgets> </object> + <object class="GtkAdjustment" id="adjustment1"> + <property name="lower">2</property> + <property name="upper">9</property> + <property name="value">1</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> + </object> </interface> |