diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2013-04-07 15:20:43 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-04-07 15:59:33 -0700 |
commit | ba712c3b5420ed461b8b7a1fdd14849e622ae974 (patch) | |
tree | 4a18b4d7c740e5b20c110279f29594ec1550a266 /qt-ui/mainwindow.ui | |
parent | 081000963a822c1a9814bf4eba3e9dd4485a2cf9 (diff) | |
download | subsurface-ba712c3b5420ed461b8b7a1fdd14849e622ae974.tar.gz |
Start creating the Qt UI
This is based on several commits from Tomaz - mingled together and mildly
extended by Dirk (mostly Makefile hacking).
All Qt UI related stuff should eventually move into the qt-ui directory.
So the Makefile rules for moc and uic have been adjusted accordingly.
The MainWindow class has been moved into its own file in qt-ui (but just
with a placeholder, the existing class has simply been ifdef'ed out in
qt-gui.cpp for the moment).
We still have a couple of Qt things in qt-gui.cpp in the main directory...
all this needs to move into the qt-ui directory and be built with separate
.h files. Right now we have the one-off Makefile rule to create the
qt-gui.moc file from the qt-gui.cpp file.
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.ui')
-rw-r--r-- | qt-ui/mainwindow.ui | 297 |
1 files changed, 297 insertions, 0 deletions
diff --git a/qt-ui/mainwindow.ui b/qt-ui/mainwindow.ui new file mode 100644 index 000000000..b99d10222 --- /dev/null +++ b/qt-ui/mainwindow.ui @@ -0,0 +1,297 @@ +<?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>763</width> + <height>548</height> + </rect> + </property> + <property name="windowTitle"> + <string>MainWindow</string> + </property> + <widget class="QWidget" name="centralwidget"> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QSplitter" name="splitter_3"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <widget class="QSplitter" name="splitter_2"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <widget class="MainTab" name="widget" native="true"/> + <widget class="QGraphicsView" name="graphicsView"/> + </widget> + <widget class="QTableView" name="tableView"/> + </widget> + </item> + <item> + <widget class="QSplitter" name="splitter"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + </widget> + </item> + </layout> + </widget> + <widget class="QMenuBar" name="menubar"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>763</width> + <height>19</height> + </rect> + </property> + <widget class="QMenu" name="menuFile"> + <property name="title"> + <string>File</string> + </property> + <addaction name="actionNew"/> + <addaction name="actionOpen"/> + <addaction name="actSave"/> + <addaction name="actSaveAs"/> + <addaction name="actClose"/> + <addaction name="separator"/> + <addaction name="actImport"/> + <addaction name="actExportUDDF"/> + <addaction name="separator"/> + <addaction name="actPrint"/> + <addaction name="separator"/> + <addaction name="actPreferences"/> + <addaction name="separator"/> + <addaction name="actQuit"/> + </widget> + <widget class="QMenu" name="menuLog"> + <property name="title"> + <string>Log</string> + </property> + <addaction name="actDowFromDiveComputer"/> + <addaction name="actDownloadFromWeb"/> + <addaction name="actionEdit_Device_Names"/> + <addaction name="separator"/> + <addaction name="actionAdd_Dive"/> + <addaction name="separator"/> + <addaction name="actionRenumber"/> + <addaction name="actionAuto_Group"/> + <addaction name="actionToggle_Zoom"/> + <addaction name="actionYearly_Statistics"/> + </widget> + <widget class="QMenu" name="menuView"> + <property name="title"> + <string>View</string> + </property> + <addaction name="actionList"/> + <addaction name="actionProfile"/> + <addaction name="actionInfo"/> + <addaction name="actionTree"/> + <addaction name="actionPrev_DC"/> + <addaction name="actionNext_DC"/> + </widget> + <widget class="QMenu" name="menuFilter"> + <property name="title"> + <string>Filter</string> + </property> + <addaction name="actionSelect_Events"/> + </widget> + <widget class="QMenu" name="menuPlanner"> + <property name="title"> + <string>Planner</string> + </property> + <addaction name="actionInput_Plan"/> + </widget> + <widget class="QMenu" name="menuHelp"> + <property name="title"> + <string>Help</string> + </property> + <addaction name="actionAbout_Subsurface"/> + <addaction name="actionUser_Manual"/> + </widget> + <addaction name="menuFile"/> + <addaction name="menuLog"/> + <addaction name="menuView"/> + <addaction name="menuFilter"/> + <addaction name="menuPlanner"/> + <addaction name="menuHelp"/> + </widget> + <action name="actionNew"> + <property name="text"> + <string>New</string> + </property> + <property name="shortcut"> + <string>Ctrl+N</string> + </property> + </action> + <action name="actionOpen"> + <property name="text"> + <string>Open</string> + </property> + <property name="shortcut"> + <string>Ctrl+O</string> + </property> + </action> + <action name="actSave"> + <property name="text"> + <string>Save</string> + </property> + <property name="shortcut"> + <string>Ctrl+S</string> + </property> + </action> + <action name="actSaveAs"> + <property name="text"> + <string>Save as</string> + </property> + <property name="shortcut"> + <string>Ctrl+Shift+S</string> + </property> + </action> + <action name="actClose"> + <property name="text"> + <string>Close</string> + </property> + <property name="shortcut"> + <string>Ctrl+W</string> + </property> + </action> + <action name="actImport"> + <property name="text"> + <string>Import Files</string> + </property> + <property name="shortcut"> + <string>Ctrl+I</string> + </property> + </action> + <action name="actExportUDDF"> + <property name="text"> + <string>Export UDDF</string> + </property> + </action> + <action name="actPrint"> + <property name="text"> + <string>Print</string> + </property> + <property name="shortcut"> + <string>Ctrl+P</string> + </property> + </action> + <action name="actPreferences"> + <property name="text"> + <string>Preferences</string> + </property> + </action> + <action name="actQuit"> + <property name="text"> + <string>Quit</string> + </property> + <property name="shortcut"> + <string>Ctrl+Q</string> + </property> + </action> + <action name="actDowFromDiveComputer"> + <property name="text"> + <string>Download from Dive computer</string> + </property> + </action> + <action name="actDownloadFromWeb"> + <property name="text"> + <string>Download from Web Service</string> + </property> + </action> + <action name="actionEdit_Device_Names"> + <property name="text"> + <string>Edit Device Names</string> + </property> + </action> + <action name="actionAdd_Dive"> + <property name="text"> + <string>Add Dive</string> + </property> + </action> + <action name="actionRenumber"> + <property name="text"> + <string>Renumber</string> + </property> + </action> + <action name="actionAuto_Group"> + <property name="text"> + <string>Auto Group</string> + </property> + </action> + <action name="actionToggle_Zoom"> + <property name="text"> + <string>Toggle Zoom</string> + </property> + </action> + <action name="actionYearly_Statistics"> + <property name="text"> + <string>Yearly Statistics</string> + </property> + </action> + <action name="actionList"> + <property name="text"> + <string>List</string> + </property> + </action> + <action name="actionProfile"> + <property name="text"> + <string>Profile</string> + </property> + </action> + <action name="actionInfo"> + <property name="text"> + <string>Info</string> + </property> + </action> + <action name="actionTree"> + <property name="text"> + <string>Tree</string> + </property> + </action> + <action name="actionPrev_DC"> + <property name="text"> + <string>Prev DC</string> + </property> + </action> + <action name="actionNext_DC"> + <property name="text"> + <string>Next DC</string> + </property> + </action> + <action name="actionSelect_Events"> + <property name="text"> + <string>Select Events</string> + </property> + </action> + <action name="actionInput_Plan"> + <property name="text"> + <string>Input Plan</string> + </property> + </action> + <action name="actionAbout_Subsurface"> + <property name="text"> + <string>About Subsurface</string> + </property> + </action> + <action name="actionUser_Manual"> + <property name="text"> + <string>User Manual</string> + </property> + </action> + </widget> + <customwidgets> + <customwidget> + <class>MainTab</class> + <extends>QWidget</extends> + <header>maintab.h</header> + <container>1</container> + </customwidget> + </customwidgets> + <resources/> + <connections/> +</ui> |