aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-xconfig/MainUI.ui
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core-utils/lumina-xconfig/MainUI.ui')
-rw-r--r--src-qt5/core-utils/lumina-xconfig/MainUI.ui125
1 files changed, 102 insertions, 23 deletions
diff --git a/src-qt5/core-utils/lumina-xconfig/MainUI.ui b/src-qt5/core-utils/lumina-xconfig/MainUI.ui
index 872df95b..b6ef4383 100644
--- a/src-qt5/core-utils/lumina-xconfig/MainUI.ui
+++ b/src-qt5/core-utils/lumina-xconfig/MainUI.ui
@@ -30,6 +30,19 @@
<item>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
+ <widget class="QToolButton" name="push_rescan">
+ <property name="toolTip">
+ <string>Refresh Screens</string>
+ </property>
+ <property name="text">
+ <string>Refresh Screens</string>
+ </property>
+ <property name="icon">
+ <iconset theme="view-refresh"/>
+ </property>
+ </widget>
+ </item>
+ <item>
<widget class="QToolButton" name="tool_deactivate">
<property name="toolTip">
<string>Disable Current Screen</string>
@@ -37,6 +50,9 @@
<property name="text">
<string notr="true">...</string>
</property>
+ <property name="icon">
+ <iconset theme="list-remove"/>
+ </property>
</widget>
</item>
<item>
@@ -71,7 +87,8 @@
<string notr="true">...</string>
</property>
<property name="icon">
- <iconset theme="format-view-column"/>
+ <iconset theme="format-view-column">
+ <normaloff>.</normaloff>.</iconset>
</property>
</widget>
</item>
@@ -81,7 +98,8 @@
<string notr="true">...</string>
</property>
<property name="icon">
- <iconset theme="format-view-agenda"/>
+ <iconset theme="format-view-agenda">
+ <normaloff>.</normaloff>.</iconset>
</property>
</widget>
</item>
@@ -106,7 +124,7 @@
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
- <number>1</number>
+ <number>2</number>
</property>
<widget class="QWidget" name="tab_config">
<attribute name="title">
@@ -219,6 +237,53 @@
</item>
</layout>
</widget>
+ <widget class="QWidget" name="tab">
+ <attribute name="title">
+ <string>Profiles</string>
+ </attribute>
+ <layout class="QFormLayout" name="formLayout_2">
+ <item row="0" column="0">
+ <widget class="QLabel" name="label_3">
+ <property name="text">
+ <string>Profiles</string>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="1">
+ <widget class="QComboBox" name="combo_profiles"/>
+ </item>
+ <item row="1" column="1">
+ <layout class="QHBoxLayout" name="horizontalLayout_4">
+ <item>
+ <widget class="QToolButton" name="tool_profile_load">
+ <property name="text">
+ <string>Preview</string>
+ </property>
+ <property name="icon">
+ <iconset theme="view-restore"/>
+ </property>
+ <property name="toolButtonStyle">
+ <enum>Qt::ToolButtonTextBesideIcon</enum>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QToolButton" name="tool_profile_remove">
+ <property name="text">
+ <string>Delete</string>
+ </property>
+ <property name="icon">
+ <iconset theme="view-close"/>
+ </property>
+ <property name="toolButtonStyle">
+ <enum>Qt::ToolButtonTextBesideIcon</enum>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </item>
+ </layout>
+ </widget>
</widget>
</item>
<item>
@@ -237,27 +302,13 @@
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
- <widget class="QPushButton" name="push_rescan">
- <property name="text">
- <string>Refresh Screens</string>
- </property>
- </widget>
- </item>
- <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="QToolButton" name="tool_applyconfig">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
<property name="text">
<string>Apply</string>
</property>
@@ -268,6 +319,12 @@
</item>
<item>
<widget class="QToolButton" name="tool_save">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
<property name="toolTip">
<string>Save current settings as user defaults</string>
</property>
@@ -278,13 +335,35 @@
<iconset theme="document-save">
<normaloff>.</normaloff>.</iconset>
</property>
+ <property name="popupMode">
+ <enum>QToolButton::MenuButtonPopup</enum>
+ </property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextBesideIcon</enum>
</property>
</widget>
</item>
<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="QPushButton" name="push_close">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
<property name="text">
<string>Close</string>
</property>
bgstack15