diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2013-09-26 16:51:11 -0300 |
---|---|---|
committer | Tomaz Canabrava <tcanabrava@kde.org> | 2013-09-26 16:51:11 -0300 |
commit | 8f94b904dd122ea2b6988fc04781a08637d02f60 (patch) | |
tree | 0bc81c9ec9acd6e86dcc6d4e5aad51c2e68270c2 /qt-ui | |
parent | d6f2988bcf1b950e60fb820fe1bd5e96c025c979 (diff) | |
download | subsurface-8f94b904dd122ea2b6988fc04781a08637d02f60.tar.gz |
Cleanup the prettyness of subsurface on Gtk+ style.
Fix some stuff concerning the pretyness of subsurface while running
on Gnome and XFCE enviroments. This is the kind of stuff that I
really didn`t want to put on the code but sometimes it`s for the
best. this makes the MainTab much more bearable. There are still
things to fix, like the size and positioning of some of the icons.
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/maintab.cpp | 5 | ||||
-rw-r--r-- | qt-ui/mainwindow.ui | 38 |
2 files changed, 20 insertions, 23 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index c10d8737d..18e9b743a 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -42,7 +42,10 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), #ifdef __APPLE__ setDocumentMode(false); #else - setDocumentMode(true); + if (qApp->style()->objectName() == "gtk+") + setDocumentMode(false); + else + setDocumentMode(true); #endif // we start out with the fields read-only; once things are // filled from a dive, they are made writeable diff --git a/qt-ui/mainwindow.ui b/qt-ui/mainwindow.ui index 05a59524e..72f7444a0 100644 --- a/qt-ui/mainwindow.ui +++ b/qt-ui/mainwindow.ui @@ -26,10 +26,16 @@ </property> <widget class="QStackedWidget" name="infoPane"> <property name="currentIndex"> - <number>0</number> + <number>1</number> </property> <widget class="QWidget" name="page"> <layout class="QHBoxLayout" name="horizontalLayout_3"> + <property name="spacing"> + <number>0</number> + </property> + <property name="margin"> + <number>0</number> + </property> <item> <widget class="MainTab" name="InfoWidget" native="true"/> </item> @@ -37,6 +43,12 @@ </widget> <widget class="QWidget" name="page_2"> <layout class="QHBoxLayout" name="horizontalLayout_4"> + <property name="spacing"> + <number>0</number> + </property> + <property name="margin"> + <number>0</number> + </property> <item> <widget class="DivePlannerWidget" name="widget" native="true"/> </item> @@ -52,16 +64,7 @@ <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"> + <property name="margin"> <number>0</number> </property> <item> @@ -74,16 +77,7 @@ <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"> + <property name="margin"> <number>0</number> </property> <item> @@ -169,7 +163,7 @@ <x>0</x> <y>0</y> <width>763</width> - <height>19</height> + <height>23</height> </rect> </property> <widget class="QMenu" name="menuFile"> |