summaryrefslogtreecommitdiff
authordrw <drw>2005-03-01 00:16:32 (UTC)
committer drw <drw>2005-03-01 00:16:32 (UTC)
commit73faad9d936d5af7a331411a9572fd362907e023 (patch) (unidiff)
treeaaa2b212906baba1b5c25d772b9a181f52f05284
parent2daad674b92c1fd94b0260a15f0baa732e5db20e (diff)
downloadopie-73faad9d936d5af7a331411a9572fd362907e023.zip
opie-73faad9d936d5af7a331411a9572fd362907e023.tar.gz
opie-73faad9d936d5af7a331411a9572fd362907e023.tar.bz2
Provide initial values for tab bar style & position
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opieui/otabwidget.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/libopie2/opieui/otabwidget.cpp b/libopie2/opieui/otabwidget.cpp
index 01747e1..ae396b9 100644
--- a/libopie2/opieui/otabwidget.cpp
+++ b/libopie2/opieui/otabwidget.cpp
@@ -37,24 +37,26 @@ _;:, .> :=|. This program is free software; you can
37#include <qpe/resource.h> 37#include <qpe/resource.h>
38#include <opie2/otabbar.h> 38#include <opie2/otabbar.h>
39 39
40/* QT */ 40/* QT */
41#include <qcombobox.h> 41#include <qcombobox.h>
42#include <qwidgetstack.h> 42#include <qwidgetstack.h>
43 43
44using namespace Opie::Ui; 44using namespace Opie::Ui;
45 45
46OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPosition p ) 46OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPosition p )
47 : QWidget( parent, name ) 47 : QWidget( parent, name )
48 , m_currTab( 0l ) 48 , m_currTab( 0l )
49 , m_tabBarStyle( Global )
50 , m_tabBarPosition( Top )
49 , m_usingTabs( true ) 51 , m_usingTabs( true )
50 , m_tabBar( 0l ) 52 , m_tabBar( 0l )
51 , m_tabList( 0l ) 53 , m_tabList( 0l )
52{ 54{
53 if ( s == Global ) 55 if ( s == Global )
54 { 56 {
55 // Read Opie global settings for style and position 57 // Read Opie global settings for style and position
56 Config config( "qpe" ); 58 Config config( "qpe" );
57 config.setGroup( "Appearance" ); 59 config.setGroup( "Appearance" );
58 60
59 // Style 61 // Style
60 s = ( TabStyle ) config.readNumEntry( "TabStyle", (int) IconTab ); 62 s = ( TabStyle ) config.readNumEntry( "TabStyle", (int) IconTab );