aboutsummaryrefslogtreecommitdiff
path: root/lumina-config/AppDialog.ui
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-10-01 11:01:55 -0400
committerKen Moore <ken@pcbsd.org>2014-10-01 11:01:55 -0400
commit7e468ffd5ca6395ddef1d35b17315f9c71c04a14 (patch)
tree0cd72a1d7ebac4c609ce89cd5ba16c2a7bd93a41 /lumina-config/AppDialog.ui
parentWhen adding an applauncher plugin to the desktop: prompt for the application ... (diff)
downloadlumina-7e468ffd5ca6395ddef1d35b17315f9c71c04a14.tar.gz
lumina-7e468ffd5ca6395ddef1d35b17315f9c71c04a14.tar.bz2
lumina-7e468ffd5ca6395ddef1d35b17315f9c71c04a14.zip
Add a new dialog to lumina-config for selecting applications:
This makes it easier for the user to select the application either by icon or name.
Diffstat (limited to 'lumina-config/AppDialog.ui')
-rw-r--r--lumina-config/AppDialog.ui106
1 files changed, 106 insertions, 0 deletions
diff --git a/lumina-config/AppDialog.ui b/lumina-config/AppDialog.ui
new file mode 100644
index 00000000..49a1e921
--- /dev/null
+++ b/lumina-config/AppDialog.ui
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>AppDialog</class>
+ <widget class="QDialog" name="AppDialog">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>303</width>
+ <height>88</height>
+ </rect>
+ </property>
+ <property name="windowTitle">
+ <string>Select Application</string>
+ </property>
+ <layout class="QVBoxLayout" name="verticalLayout">
+ <item>
+ <spacer name="verticalSpacer_2">
+ <property name="orientation">
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>20</width>
+ <height>40</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ <item>
+ <widget class="QComboBox" name="comboBox">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="iconSize">
+ <size>
+ <width>32</width>
+ <height>32</height>
+ </size>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <spacer name="verticalSpacer">
+ <property name="orientation">
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>20</width>
+ <height>40</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ <item>
+ <widget class="QDialogButtonBox" name="buttonBox">
+ <property name="orientation">
+ <enum>Qt::Horizontal</enum>
+ </property>
+ <property name="standardButtons">
+ <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ <resources/>
+ <connections>
+ <connection>
+ <sender>buttonBox</sender>
+ <signal>accepted()</signal>
+ <receiver>AppDialog</receiver>
+ <slot>accept()</slot>
+ <hints>
+ <hint type="sourcelabel">
+ <x>248</x>
+ <y>254</y>
+ </hint>
+ <hint type="destinationlabel">
+ <x>157</x>
+ <y>274</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>buttonBox</sender>
+ <signal>rejected()</signal>
+ <receiver>AppDialog</receiver>
+ <slot>reject()</slot>
+ <hints>
+ <hint type="sourcelabel">
+ <x>316</x>
+ <y>260</y>
+ </hint>
+ <hint type="destinationlabel">
+ <x>286</x>
+ <y>274</y>
+ </hint>
+ </hints>
+ </connection>
+ </connections>
+</ui>
bgstack15