diff options
Diffstat (limited to 'src-qt5/desktop-utils/lumina-mediaplayer/mainUI.ui')
-rw-r--r-- | src-qt5/desktop-utils/lumina-mediaplayer/mainUI.ui | 157 |
1 files changed, 157 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/mainUI.ui b/src-qt5/desktop-utils/lumina-mediaplayer/mainUI.ui new file mode 100644 index 00000000..d662b20c --- /dev/null +++ b/src-qt5/desktop-utils/lumina-mediaplayer/mainUI.ui @@ -0,0 +1,157 @@ +<?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>385</width> + <height>410</height> + </rect> + </property> + <property name="windowTitle"> + <string>MainWindow</string> + </property> + <widget class="QWidget" name="centralwidget"> + <layout class="QVBoxLayout" name="verticalLayout"> + <property name="spacing"> + <number>0</number> + </property> + <property name="leftMargin"> + <number>0</number> + </property> + <property name="topMargin"> + <number>0</number> + </property> + <property name="rightMargin"> + <number>0</number> + </property> + <property name="bottomMargin"> + <number>0</number> + </property> + <item> + <widget class="QFrame" name="frame_type"> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QRadioButton" name="radio_local"> + <property name="text"> + <string>Local Files</string> + </property> + </widget> + </item> + <item> + <widget class="QRadioButton" name="radio_pandora"> + <property name="text"> + <string>Pandora Radio</string> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> + <widget class="QStackedWidget" name="stackedWidget"> + <widget class="QWidget" name="page_local"/> + <widget class="QWidget" name="page_pandora"> + <layout class="QVBoxLayout" name="verticalLayout_2"> + <item> + <widget class="QTabWidget" name="tabWidget"> + <property name="currentIndex"> + <number>0</number> + </property> + <widget class="QWidget" name="tab_pandora_playing"> + <attribute name="title"> + <string>Now Playing</string> + </attribute> + </widget> + <widget class="QWidget" name="tab_pandora_settings"> + <attribute name="title"> + <string>Settings</string> + </attribute> + </widget> + </widget> + </item> + </layout> + </widget> + </widget> + </item> + </layout> + </widget> + <widget class="QMenuBar" name="menubar"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>385</width> + <height>22</height> + </rect> + </property> + </widget> + <widget class="QStatusBar" name="statusbar"/> + <widget class="QToolBar" name="toolBar"> + <property name="windowTitle"> + <string>toolBar</string> + </property> + <property name="movable"> + <bool>false</bool> + </property> + <property name="allowedAreas"> + <set>Qt::TopToolBarArea</set> + </property> + <property name="floatable"> + <bool>false</bool> + </property> + <attribute name="toolBarArea"> + <enum>TopToolBarArea</enum> + </attribute> + <attribute name="toolBarBreak"> + <bool>false</bool> + </attribute> + <addaction name="actionPlay"/> + <addaction name="actionPause"/> + <addaction name="actionStop"/> + <addaction name="actionNext"/> + <addaction name="actionBack"/> + <addaction name="actionVolUp"/> + <addaction name="actionVolDown"/> + </widget> + <action name="actionPlay"> + <property name="text"> + <string>Play</string> + </property> + </action> + <action name="actionPause"> + <property name="text"> + <string>Pause</string> + </property> + </action> + <action name="actionStop"> + <property name="text"> + <string>Stop</string> + </property> + </action> + <action name="actionNext"> + <property name="text"> + <string>Next</string> + </property> + </action> + <action name="actionBack"> + <property name="text"> + <string>Back</string> + </property> + </action> + <action name="actionVolUp"> + <property name="text"> + <string>VolUp</string> + </property> + </action> + <action name="actionVolDown"> + <property name="text"> + <string>VolDown</string> + </property> + </action> + </widget> + <resources/> + <connections/> +</ui> |