]> Some of my projects - aniplayer2.git/commitdiff
Add menu.ui to the project.
authorAPTX <marek321@gmail.com>
Sat, 16 Aug 2014 10:56:16 +0000 (12:56 +0200)
committerAPTX <marek321@gmail.com>
Sat, 16 Aug 2014 10:56:16 +0000 (12:56 +0200)
This file remained untracked by accident.

player/menu.ui [new file with mode: 0644]
player/player.pro

diff --git a/player/menu.ui b/player/menu.ui
new file mode 100644 (file)
index 0000000..6fcc172
--- /dev/null
@@ -0,0 +1,121 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>Menu</class>
+ <widget class="QMainWindow" name="Menu">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>395</width>
+    <height>79</height>
+   </rect>
+  </property>
+  <property name="minimumSize">
+   <size>
+    <width>0</width>
+    <height>0</height>
+   </size>
+  </property>
+  <property name="windowTitle">
+   <string>Menu</string>
+  </property>
+  <widget class="QWidget" name="centralWidget">
+   <property name="sizePolicy">
+    <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+     <horstretch>0</horstretch>
+     <verstretch>0</verstretch>
+    </sizepolicy>
+   </property>
+   <property name="minimumSize">
+    <size>
+     <width>0</width>
+     <height>0</height>
+    </size>
+   </property>
+   <property name="maximumSize">
+    <size>
+     <width>16777215</width>
+     <height>0</height>
+    </size>
+   </property>
+   <property name="styleSheet">
+    <string>background-color:red;</string>
+   </property>
+  </widget>
+  <widget class="QMenuBar" name="menuBar">
+   <property name="geometry">
+    <rect>
+     <x>0</x>
+     <y>0</y>
+     <width>395</width>
+     <height>21</height>
+    </rect>
+   </property>
+   <property name="maximumSize">
+    <size>
+     <width>16777215</width>
+     <height>16777215</height>
+    </size>
+   </property>
+  </widget>
+  <widget class="QToolBar" name="mainToolBar">
+   <property name="windowTitle">
+    <string>Main Bar</string>
+   </property>
+   <attribute name="toolBarArea">
+    <enum>TopToolBarArea</enum>
+   </attribute>
+   <attribute name="toolBarBreak">
+    <bool>false</bool>
+   </attribute>
+  </widget>
+  <widget class="QStatusBar" name="statusBar"/>
+  <widget class="QToolBar" name="playBar">
+   <property name="windowTitle">
+    <string>Play Bar</string>
+   </property>
+   <attribute name="toolBarArea">
+    <enum>TopToolBarArea</enum>
+   </attribute>
+   <attribute name="toolBarBreak">
+    <bool>true</bool>
+   </attribute>
+  </widget>
+  <widget class="QToolBar" name="seekBar">
+   <property name="windowTitle">
+    <string>Seek Bar</string>
+   </property>
+   <attribute name="toolBarArea">
+    <enum>TopToolBarArea</enum>
+   </attribute>
+   <attribute name="toolBarBreak">
+    <bool>true</bool>
+   </attribute>
+  </widget>
+  <widget class="QToolBar" name="timeBar">
+   <property name="windowTitle">
+    <string>Time</string>
+   </property>
+   <attribute name="toolBarArea">
+    <enum>TopToolBarArea</enum>
+   </attribute>
+   <attribute name="toolBarBreak">
+    <bool>false</bool>
+   </attribute>
+  </widget>
+  <widget class="QToolBar" name="volumeBar">
+   <property name="windowTitle">
+    <string>Volume</string>
+   </property>
+   <attribute name="toolBarArea">
+    <enum>TopToolBarArea</enum>
+   </attribute>
+   <attribute name="toolBarBreak">
+    <bool>false</bool>
+   </attribute>
+  </widget>
+ </widget>
+ <layoutdefault spacing="6" margin="11"/>
+ <resources/>
+ <connections/>
+</ui>
index e7894afd63900dea80da08627d91c83714220e21..e8a9d1cb5117e99cc4e23cad2cc57bab68654456 100644 (file)
@@ -7,7 +7,7 @@ TEMPLATE = app
 TARGET = aniplayer
 DESTDIR = ../build
 
-HEADERS  += mainwindow.h \
+HEADERS += mainwindow.h \
        menu.h \
        seekslider.h \
        versiondialog.h \
@@ -20,7 +20,7 @@ SOURCES += main.cpp\
        versiondialog.cpp \
        configdialog.cpp
 
-FORMS    += mainwindow.ui \
+FORMS += mainwindow.ui \
        menu.ui \
        configdialog.ui