diff options
Diffstat (limited to 'mainwindow.ui')
| -rw-r--r-- | mainwindow.ui | 143 |
1 files changed, 143 insertions, 0 deletions
diff --git a/mainwindow.ui b/mainwindow.ui new file mode 100644 index 0000000..5f71cc1 --- /dev/null +++ b/mainwindow.ui @@ -0,0 +1,143 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>MainWindow</class> + <widget class="QMainWindow" name="MainWindow"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>400</width> + <height>300</height> + </rect> + </property> + <property name="windowTitle"> + <string>GUIProjekt SS2015_SS</string> + </property> + <widget class="QWidget" name="centralWidget"> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QLabel" name="label"> + <property name="text"> + <string>Hello Qt World.</string> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer_2"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> + </widget> + <widget class="QStatusBar" name="statusBar"/> + <widget class="QMenuBar" name="menuBar"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>400</width> + <height>29</height> + </rect> + </property> + <widget class="QMenu" name="menuFile"> + <property name="title"> + <string>Fi&le</string> + </property> + <addaction name="actionExit"/> + </widget> + <widget class="QMenu" name="menuEdir"> + <property name="title"> + <string>Edi&t</string> + </property> + <addaction name="actionPreferences"/> + </widget> + <widget class="QMenu" name="menuHelp"> + <property name="title"> + <string>Hel&p</string> + </property> + <addaction name="actionAbout"/> + </widget> + <addaction name="menuFile"/> + <addaction name="menuEdir"/> + <addaction name="menuHelp"/> + </widget> + <action name="actionExit"> + <property name="checkable"> + <bool>false</bool> + </property> + <property name="text"> + <string>&Exit</string> + </property> + </action> + <action name="actionPreferences"> + <property name="text"> + <string>&Preferences</string> + </property> + </action> + <action name="actionAbout"> + <property name="text"> + <string>&About</string> + </property> + </action> + </widget> + <layoutdefault spacing="6" margin="11"/> + <resources/> + <connections> + <connection> + <sender>actionExit</sender> + <signal>triggered()</signal> + <receiver>MainWindow</receiver> + <slot>close()</slot> + <hints> + <hint type="sourcelabel"> + <x>-1</x> + <y>-1</y> + </hint> + <hint type="destinationlabel"> + <x>199</x> + <y>149</y> + </hint> + </hints> + </connection> + <connection> + <sender>actionPreferences</sender> + <signal>triggered()</signal> + <receiver>MainWindow</receiver> + <slot>on_action_Preferences_triggered()</slot> + <hints> + <hint type="sourcelabel"> + <x>-1</x> + <y>-1</y> + </hint> + <hint type="destinationlabel"> + <x>199</x> + <y>149</y> + </hint> + </hints> + </connection> + </connections> + <slots> + <slot>on_action_Preferences_triggered()</slot> + </slots> +</ui> |
