author | zecke <zecke> | 2004-09-13 00:54:39 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-09-13 00:54:39 (UTC) |
commit | 3ea857919c16be19d44181a1be01ab8328b3ccea (patch) (side-by-side diff) | |
tree | 0c2172ae03ca987ed66bb35cbe12ec413dcbc308 | |
parent | 848be27ce441430b6946221cd288ff9d6297096c (diff) | |
download | opie-3ea857919c16be19d44181a1be01ab8328b3ccea.zip opie-3ea857919c16be19d44181a1be01ab8328b3ccea.tar.gz opie-3ea857919c16be19d44181a1be01ab8328b3ccea.tar.bz2 |
Try to make the tabbar a bit 'higher' but less wide
-rw-r--r-- | noncore/styles/phase/phasestyle.cpp | 6 | ||||
-rw-r--r-- | noncore/styles/phase/phasestyle.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/noncore/styles/phase/phasestyle.cpp b/noncore/styles/phase/phasestyle.cpp index 139505f..ba8c460 100644 --- a/noncore/styles/phase/phasestyle.cpp +++ b/noncore/styles/phase/phasestyle.cpp @@ -756,2 +756,8 @@ void PhaseStyle::drawComboButton( QPainter * p, int x, int y, +void PhaseStyle::tabbarMetrics( const QTabBar* t, int &hframe, int &vframe, int& ov ) { + QCommonStyle::tabbarMetrics( t, hframe, vframe, ov ); + hframe -= 2; + vframe += 1; +} + diff --git a/noncore/styles/phase/phasestyle.h b/noncore/styles/phase/phasestyle.h index ab593e6..cbaa534 100644 --- a/noncore/styles/phase/phasestyle.h +++ b/noncore/styles/phase/phasestyle.h @@ -123,2 +123,3 @@ public: bool ); + void tabbarMetrics( const QTabBar* t, int &hframe, int &vframe, int &overlap); |