diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2009-01-20 19:05:01 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2009-01-20 19:05:01 -0500 |
| commit | a8c1f4849fa8bf44c2f36bdeb39ed0332a68d15f (patch) | |
| tree | 7fc2e277698d07a24d2440a993a84cb634158699 | |
| parent | a2300fab4ddf2f2c156466a9b91191a9a1664076 (diff) | |
Cleaned up Store widget
| -rw-r--r-- | sigmodr/gui/store.ui | 60 |
1 files changed, 34 insertions, 26 deletions
diff --git a/sigmodr/gui/store.ui b/sigmodr/gui/store.ui index a67439e0..fa08ae5d 100644 --- a/sigmodr/gui/store.ui +++ b/sigmodr/gui/store.ui @@ -1,12 +1,22 @@ <ui version="4.0" > <class>formStore</class> <widget class="QWidget" name="formStore" > - <layout class="QVBoxLayout" > - <item> - <widget class="QGroupBox" name="boxName" > - <property name="title" > - <string comment="Label for the name if the store" >Name</string> + <layout class="QGridLayout" > + <item row="0" column="0" > + <widget class="QLabel" name="labelName" > + <property name="text" > + <string comment="Label for the name of the store" >Name:</string> + </property> + <property name="alignment" > + <set>Qt::AlignRight|Qt::AlignVCenter</set> </property> + <property name="buddy" > + <cstring>varName</cstring> + </property> + </widget> + </item> + <item row="0" column="1" > + <widget class="KLineEdit" name="varName" > <property name="toolTip" > <string>The name of the status (internal use only)</string> </property> @@ -16,34 +26,28 @@ <property name="whatsThis" > <string>The name of the status (internal use only)</string> </property> - <layout class="QHBoxLayout" > - <item> - <widget class="KLineEdit" name="varName" > - <property name="showClearButton" stdset="0" > - <bool>true</bool> - </property> - </widget> - </item> - </layout> + <property name="showClearButton" stdset="0" > + <bool>true</bool> + </property> </widget> </item> - <item> + <item row="1" column="0" colspan="2" > <widget class="QGroupBox" name="boxItems" > <property name="title" > <string>Items</string> </property> - <property name="toolTip" > - <string>The items for sale at the store</string> - </property> - <property name="statusTip" > - <string>The items for sale at the store</string> - </property> - <property name="whatsThis" > - <string>The items for sale at the store</string> - </property> - <layout class="QHBoxLayout" > - <item> + <layout class="QGridLayout" > + <item row="0" column="0" > <widget class="KActionSelector" name="varItems" > + <property name="toolTip" > + <string>The items for sale at the store</string> + </property> + <property name="statusTip" > + <string>The items for sale at the store</string> + </property> + <property name="whatsThis" > + <string>The items for sale at the store</string> + </property> <property name="showUpDownButtons" > <bool>false</bool> </property> @@ -79,6 +83,10 @@ <header location="global" >KLineEdit</header> </customwidget> </customwidgets> + <tabstops> + <tabstop>varName</tabstop> + <tabstop>varItems</tabstop> + </tabstops> <resources/> <connections/> </ui> |
