aboutsummaryrefslogtreecommitdiff
path: root/dev-tools/test-dbus/test.ui
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-03-17 12:38:22 -0400
committerKen Moore <moorekou@gmail.com>2016-03-17 12:38:22 -0400
commitc536c936aec5f080a684d959d1567e27c45b8952 (patch)
tree601d473f593191c1baf1445a2b6c65e75cd8bbe4 /dev-tools/test-dbus/test.ui
parentAdd a generic AUTHORS file for keeping track of contributors (diff)
downloadlumina-c536c936aec5f080a684d959d1567e27c45b8952.tar.gz
lumina-c536c936aec5f080a684d959d1567e27c45b8952.tar.bz2
lumina-c536c936aec5f080a684d959d1567e27c45b8952.zip
Add a new dev-tool: test-dbus. This is a simple app to just run and load a designer UI form.
Diffstat (limited to 'dev-tools/test-dbus/test.ui')
-rw-r--r--dev-tools/test-dbus/test.ui80
1 files changed, 80 insertions, 0 deletions
diff --git a/dev-tools/test-dbus/test.ui b/dev-tools/test-dbus/test.ui
new file mode 100644
index 00000000..64bd4125
--- /dev/null
+++ b/dev-tools/test-dbus/test.ui
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>Test</class>
+ <widget class="QDialog" name="Test">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>400</width>
+ <height>300</height>
+ </rect>
+ </property>
+ <property name="windowTitle">
+ <string>Dialog</string>
+ </property>
+ <layout class="QGridLayout" name="gridLayout">
+ <item row="0" column="1">
+ <spacer name="verticalSpacer">
+ <property name="orientation">
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>20</width>
+ <height>119</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ <item row="1" column="0">
+ <spacer name="horizontalSpacer">
+ <property name="orientation">
+ <enum>Qt::Horizontal</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>142</width>
+ <height>20</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ <item row="1" column="1">
+ <widget class="QPushButton" name="push_close">
+ <property name="text">
+ <string>Close Test</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="2">
+ <spacer name="horizontalSpacer_2">
+ <property name="orientation">
+ <enum>Qt::Horizontal</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>142</width>
+ <height>20</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ <item row="2" column="1">
+ <spacer name="verticalSpacer_2">
+ <property name="orientation">
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>20</width>
+ <height>119</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ </layout>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
bgstack15