diff options
| author | Dominik Wenger <domonoky@googlemail.com> | 2007-12-14 20:06:39 +0000 |
|---|---|---|
| committer | Dominik Wenger <domonoky@googlemail.com> | 2007-12-14 20:06:39 +0000 |
| commit | 37113e69df30421c7a4713ab2e28f98fe4411cc0 (patch) | |
| tree | 0d02764d3eb97259311327b5023d8fd577efd239 | |
| parent | f5c695b43fcf4a4f82984878ceab0a23e87bacfc (diff) | |
| download | rockbox-37113e69df30421c7a4713ab2e28f98fe4411cc0.zip rockbox-37113e69df30421c7a4713ab2e28f98fe4411cc0.tar.gz rockbox-37113e69df30421c7a4713ab2e28f98fe4411cc0.tar.bz2 rockbox-37113e69df30421c7a4713ab2e28f98fe4411cc0.tar.xz | |
rbutil: Oops, the missing ui file.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15927 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/rbutilqt/encexescfgfrm.ui | 158 |
1 files changed, 158 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/encexescfgfrm.ui b/rbutil/rbutilqt/encexescfgfrm.ui new file mode 100644 index 0000000..22c61e1 --- /dev/null +++ b/rbutil/rbutilqt/encexescfgfrm.ui @@ -0,0 +1,158 @@ +<ui version="4.0" > + <class>EncExesCfgFrm</class> + <widget class="QDialog" name="EncExesCfgFrm" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>463</width> + <height>214</height> + </rect> + </property> + <property name="windowTitle" > + <string>Configuration</string> + </property> + <layout class="QHBoxLayout" > + <item> + <widget class="QGroupBox" name="groupBox" > + <property name="title" > + <string>Configure Encoder</string> + </property> + <layout class="QVBoxLayout" > + <item> + <widget class="QLabel" name="label" > + <property name="sizePolicy" > + <sizepolicy vsizetype="Preferred" hsizetype="Preferred" > + <horstretch>0</horstretch> + <verstretch>255</verstretch> + </sizepolicy> + </property> + <property name="text" > + <string>Path to Encoder</string> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" > + <item> + <widget class="QLineEdit" name="encoderpath" /> + </item> + <item> + <widget class="QPushButton" name="browse" > + <property name="text" > + <string>&Browse</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="QLabel" name="label_2" > + <property name="text" > + <string>Encoder options</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="encoderoptions" /> + </item> + <item> + <spacer> + <property name="orientation" > + <enum>Qt::Vertical</enum> + </property> + <property name="sizeHint" > + <size> + <width>20</width> + <height>40</height> + </size> + </property> + </spacer> + </item> + <item> + <layout class="QHBoxLayout" > + <item> + <widget class="QPushButton" name="reset" > + <property name="text" > + <string>Reset</string> + </property> + </widget> + </item> + <item> + <spacer> + <property name="orientation" > + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" > + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QPushButton" name="buttonOk" > + <property name="text" > + <string>&Ok</string> + </property> + <property name="icon" > + <iconset resource="rbutilqt.qrc" >:/icons/icons/go-next.png</iconset> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="buttonCancel" > + <property name="text" > + <string>&Cancel</string> + </property> + <property name="icon" > + <iconset resource="rbutilqt.qrc" >:/icons/icons/process-stop.png</iconset> + </property> + </widget> + </item> + </layout> + </item> + </layout> + </widget> + </item> + </layout> + </widget> + <resources> + <include location="rbutilqt.qrc" /> + </resources> + <connections> + <connection> + <sender>buttonOk</sender> + <signal>clicked()</signal> + <receiver>EncExesCfgFrm</receiver> + <slot>accept()</slot> + <hints> + <hint type="sourcelabel" > + <x>253</x> + <y>147</y> + </hint> + <hint type="destinationlabel" > + <x>203</x> + <y>86</y> + </hint> + </hints> + </connection> + <connection> + <sender>buttonCancel</sender> + <signal>clicked()</signal> + <receiver>EncExesCfgFrm</receiver> + <slot>reject()</slot> + <hints> + <hint type="sourcelabel" > + <x>352</x> + <y>147</y> + </hint> + <hint type="destinationlabel" > + <x>203</x> + <y>86</y> + </hint> + </hints> + </connection> + </connections> +</ui> |