diff options
author | necoro <> | 2007-04-24 15:34:07 +0000 |
---|---|---|
committer | necoro <> | 2007-04-24 15:34:07 +0000 |
commit | e8868d63c39db975c8627c7fc87dfdd4f2308bf6 (patch) | |
tree | 801a6c1ab0d7d899007e39a4c0d7720bd37c9b15 /portato/gui/templates/ui/SearchDialog.ui | |
parent | 5067dac60487edc83ac88c18b9b880eb7ccd5259 (diff) | |
download | portato-e8868d63c39db975c8627c7fc87dfdd4f2308bf6.tar.gz portato-e8868d63c39db975c8627c7fc87dfdd4f2308bf6.tar.bz2 portato-e8868d63c39db975c8627c7fc87dfdd4f2308bf6.zip |
moved *.glade and *.ui to one directory to omit the change of the config.py each time
Diffstat (limited to 'portato/gui/templates/ui/SearchDialog.ui')
-rw-r--r-- | portato/gui/templates/ui/SearchDialog.ui | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/portato/gui/templates/ui/SearchDialog.ui b/portato/gui/templates/ui/SearchDialog.ui new file mode 100644 index 0000000..02c62ff --- /dev/null +++ b/portato/gui/templates/ui/SearchDialog.ui @@ -0,0 +1,78 @@ +<ui version="4.0" > + <class>SearchDialog</class> + <widget class="QDialog" name="SearchDialog" > + <property name="windowModality" > + <enum>Qt::ApplicationModal</enum> + </property> + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>246</width> + <height>97</height> + </rect> + </property> + <property name="windowTitle" > + <string>Search...</string> + </property> + <layout class="QVBoxLayout" > + <property name="margin" > + <number>9</number> + </property> + <property name="spacing" > + <number>6</number> + </property> + <item> + <widget class="QComboBox" name="comboBox" /> + </item> + <item> + <widget class="QDialogButtonBox" name="buttonBox" > + <property name="orientation" > + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons" > + <set>QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok</set> + </property> + <property name="centerButtons" > + <bool>true</bool> + </property> + </widget> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>SearchDialog</receiver> + <slot>accept()</slot> + <hints> + <hint type="sourcelabel" > + <x>164</x> + <y>112</y> + </hint> + <hint type="destinationlabel" > + <x>157</x> + <y>70</y> + </hint> + </hints> + </connection> + <connection> + <sender>buttonBox</sender> + <signal>rejected()</signal> + <receiver>SearchDialog</receiver> + <slot>reject()</slot> + <hints> + <hint type="sourcelabel" > + <x>164</x> + <y>112</y> + </hint> + <hint type="destinationlabel" > + <x>173</x> + <y>70</y> + </hint> + </hints> + </connection> + </connections> +</ui> |