diff options
author | Ken Moore <moorekou@gmail.com> | 2016-06-22 15:28:49 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-06-22 15:28:49 -0400 |
commit | 49065b25b2e41e3cfc7037e1459c9c33ab94d6d4 (patch) | |
tree | 7966904cb9e209037372bc08f15c3ecdf3faf24c /src-qt5/core-utils/lumina-config/mainWindow.ui | |
parent | Add the backtrace of the dbus crash on Qt 5.6.1 (diff) | |
download | lumina-49065b25b2e41e3cfc7037e1459c9c33ab94d6d4.tar.gz lumina-49065b25b2e41e3cfc7037e1459c9c33ab94d6d4.tar.bz2 lumina-49065b25b2e41e3cfc7037e1459c9c33ab94d6d4.zip |
Continue splitting up all the various pages/tabs into distinct pages for lumina-config. All the UI files are now split up - starting to add in the cpp/h files now.
(Still not tied into build yet)
Diffstat (limited to 'src-qt5/core-utils/lumina-config/mainWindow.ui')
-rw-r--r-- | src-qt5/core-utils/lumina-config/mainWindow.ui | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src-qt5/core-utils/lumina-config/mainWindow.ui b/src-qt5/core-utils/lumina-config/mainWindow.ui new file mode 100644 index 00000000..55e39233 --- /dev/null +++ b/src-qt5/core-utils/lumina-config/mainWindow.ui @@ -0,0 +1,69 @@ +<?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>486</width> + <height>388</height> + </rect> + </property> + <property name="windowTitle"> + <string>MainWindow</string> + </property> + <widget class="QWidget" name="centralwidget"/> + <widget class="QStatusBar" name="statusbar"/> + <widget class="QToolBar" name="toolBar"> + <property name="contextMenuPolicy"> + <enum>Qt::CustomContextMenu</enum> + </property> + <property name="windowTitle"> + <string>toolBar</string> + </property> + <property name="movable"> + <bool>false</bool> + </property> + <property name="allowedAreas"> + <set>Qt::TopToolBarArea</set> + </property> + <attribute name="toolBarArea"> + <enum>TopToolBarArea</enum> + </attribute> + <attribute name="toolBarBreak"> + <bool>false</bool> + </attribute> + <addaction name="actionBack"/> + <addaction name="separator"/> + <addaction name="actionSave"/> + </widget> + <action name="actionSave"> + <property name="text"> + <string>Save</string> + </property> + <property name="statusTip"> + <string>Save current changes</string> + </property> + <property name="shortcut"> + <string>Ctrl+S</string> + </property> + </action> + <action name="actionBack"> + <property name="text"> + <string>Back to settings</string> + </property> + <property name="toolTip"> + <string>Back to overall settings</string> + </property> + <property name="statusTip"> + <string>Back to overall settings</string> + </property> + <property name="shortcut"> + <string>Esc</string> + </property> + </action> + </widget> + <resources/> + <connections/> +</ui> |