summaryrefslogtreecommitdiff
authorsandman <sandman>2002-06-21 23:07:50 (UTC)
committer sandman <sandman>2002-06-21 23:07:50 (UTC)
commit1b876ce8dbc5933db5b84d55e5cabecdb0adec2e (patch) (unidiff)
treead2f141fed331ac7037a621c4c71fdfea03142b4
parent36670ad2bb45fac351361cfa48db99eaadfa13ce (diff)
downloadopie-1b876ce8dbc5933db5b84d55e5cabecdb0adec2e.zip
opie-1b876ce8dbc5933db5b84d55e5cabecdb0adec2e.tar.gz
opie-1b876ce8dbc5933db5b84d55e5cabecdb0adec2e.tar.bz2
Made the tabbar icons a litte bit more "liquid compliant" -- seems like
the TT styles return wrong values for tabbarMetrics ...
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/launcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/launcher/launcher.cpp b/core/launcher/launcher.cpp
index e9e17f7..02124d2 100644
--- a/core/launcher/launcher.cpp
+++ b/core/launcher/launcher.cpp
@@ -279,25 +279,25 @@ CategoryTabBar::CategoryTabBar( QWidget *parent, const char *name )
279} 279}
280 280
281CategoryTabBar::~CategoryTabBar() 281CategoryTabBar::~CategoryTabBar()
282{ 282{
283} 283}
284 284
285void CategoryTabBar::layoutTabs() 285void CategoryTabBar::layoutTabs()
286{ 286{
287 if ( !count() ) 287 if ( !count() )
288 return; 288 return;
289 289
290// int percentFalloffTable[] = { 100, 70, 40, 12, 6, 3, 1, 0 }; 290// int percentFalloffTable[] = { 100, 70, 40, 12, 6, 3, 1, 0 };
291 int hiddenTabWidth = -12; 291 int hiddenTabWidth = -7;
292 int middleTab = currentTab(); 292 int middleTab = currentTab();
293 int hframe, vframe, overlap; 293 int hframe, vframe, overlap;
294 style().tabbarMetrics( this, hframe, vframe, overlap ); 294 style().tabbarMetrics( this, hframe, vframe, overlap );
295 QFontMetrics fm = fontMetrics(); 295 QFontMetrics fm = fontMetrics();
296 int x = 0; 296 int x = 0;
297 QRect r; 297 QRect r;
298 QTab *t; 298 QTab *t;
299 int available = width()-1; 299 int available = width()-1;
300 int required = 0; 300 int required = 0;
301 for ( int i = 0; i < count(); i++ ) { 301 for ( int i = 0; i < count(); i++ ) {
302 t = tab(i); 302 t = tab(i);
303 // if (( i < (middleTab - 1) ) || ( i > (middleTab + 1) )) { 303 // if (( i < (middleTab - 1) ) || ( i > (middleTab + 1) )) {