summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/otabwidget.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/libopie/otabwidget.cpp b/libopie/otabwidget.cpp
index 6ef4034..aaf14ce 100644
--- a/libopie/otabwidget.cpp
+++ b/libopie/otabwidget.cpp
@@ -22,193 +22,199 @@
22 :     =  ...= . :.=- 22 :     =  ...= . :.=-
23 -.   .:....=;==+<; You should have received a copy of the GNU 23 -.   .:....=;==+<; You should have received a copy of the GNU
24  -_. . .   )=.  = Library General Public License along with 24  -_. . .   )=.  = Library General Public License along with
25    --        :-=` this library; see the file COPYING.LIB. 25    --        :-=` this library; see the file COPYING.LIB.
26 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
27 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
29 29
30*/ 30*/
31 31
32#include "otabwidget.h" 32#include "otabwidget.h"
33 33
34#include <qpe/config.h> 34#include <qpe/config.h>
35#include <qpe/resource.h> 35#include <qpe/resource.h>
36#include <opie/otabbar.h> 36#include <opie/otabbar.h>
37 37
38#include <qcombobox.h> 38#include <qcombobox.h>
39#include <qwidgetstack.h> 39#include <qwidgetstack.h>
40 40
41OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPosition p ) 41OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPosition p )
42 : QWidget( parent, name ) 42 : QWidget( parent, name )
43{ 43{
44 if ( s == Global ) 44 if ( s == Global )
45 { 45 {
46 Config config( "qpe" ); 46 Config config( "qpe" );
47 config.setGroup( "Appearance" ); 47 config.setGroup( "Appearance" );
48 tabBarStyle = ( TabStyle ) config.readNumEntry( "TabStyle", (int) IconTab ); 48 tabBarStyle = ( TabStyle ) config.readNumEntry( "TabStyle", (int) IconTab );
49 if ( tabBarStyle <= Global || tabBarStyle > IconList) 49 if ( tabBarStyle <= Global || tabBarStyle > IconList)
50 { 50 {
51 tabBarStyle = IconTab; 51 tabBarStyle = IconTab;
52 } 52 }
53 QString pos = config.readEntry( "TabPosition", "Top"); 53 QString pos = config.readEntry( "TabPosition", "Top");
54 if ( pos == "Bottom" ) 54 if ( pos == "Bottom" )
55 { 55 {
56 tabBarPosition = Bottom; 56 tabBarPosition = Bottom;
57 } 57 }
58 else 58 else
59 { 59 {
60 tabBarPosition = Top; 60 tabBarPosition = Top;
61 } 61 }
62 } 62 }
63 else 63 else
64 { 64 {
65 tabBarStyle = s; 65 tabBarStyle = s;
66 tabBarPosition = p; 66 tabBarPosition = p;
67 } 67 }
68 68
69 widgetStack = new QWidgetStack( this, "widgetstack" ); 69 widgetStack = new QWidgetStack( this, "widgetstack" );
70 widgetStack->setFrameStyle( QFrame::StyledPanel | QFrame::Raised ); 70 widgetStack->setFrameStyle( QFrame::NoFrame );
71 widgetStack->setLineWidth( style().defaultFrameWidth() ); 71 widgetStack->setLineWidth( style().defaultFrameWidth() );
72 72
73 tabBarStack = new QWidgetStack( this, "tabbarstack" ); 73 tabBarStack = new QWidgetStack( this, "tabbarstack" );
74 74
75 tabBar = new OTabBar( tabBarStack, "tabbar" ); 75 tabBar = new OTabBar( tabBarStack, "tabbar" );
76 tabBarStack->addWidget( tabBar, 0 ); 76 tabBarStack->addWidget( tabBar, 0 );
77 connect( tabBar, SIGNAL( selected( int ) ), this, SLOT( slotTabBarSelected( int ) ) ); 77 connect( tabBar, SIGNAL( selected( int ) ), this, SLOT( slotTabBarSelected( int ) ) );
78 78
79 tabList = new QComboBox( false, tabBarStack, "tablist" ); 79 tabList = new QComboBox( false, tabBarStack, "tablist" );
80 tabBarStack->addWidget( tabList, 1 ); 80 tabBarStack->addWidget( tabList, 1 );
81 connect( tabList, SIGNAL( activated( int ) ), this, SLOT( slotTabListSelected( int ) ) ); 81 connect( tabList, SIGNAL( activated( int ) ), this, SLOT( slotTabListSelected( int ) ) );
82 82
83 if ( tabBarStyle == TextTab || tabBarStyle == IconTab ) 83 if ( tabBarStyle == TextTab || tabBarStyle == IconTab )
84 { 84 {
85 tabBarStack->raiseWidget( tabBar ); 85 tabBarStack->raiseWidget( tabBar );
86 } 86 }
87 else if ( tabBarStyle == TextList || tabBarStyle == IconList ) 87 else if ( tabBarStyle == TextList || tabBarStyle == IconList )
88 { 88 {
89 tabBarStack->raiseWidget( tabList ); 89 tabBarStack->raiseWidget( tabList );
90 } 90 }
91 91
92 if ( tabBarPosition == Bottom ) 92 if ( tabBarPosition == Bottom )
93 { 93 {
94 tabBar->setShape( QTabBar::RoundedBelow ); 94 tabBar->setShape( QTabBar::RoundedBelow );
95 } 95 }
96 96
97 //tabs.setAutoDelete( TRUE ); 97 //tabs.setAutoDelete( TRUE );
98 currentTab= 0x0; 98 currentTab= 0x0;
99} 99}
100 100
101OTabWidget::~OTabWidget() 101OTabWidget::~OTabWidget()
102{ 102{
103} 103}
104 104
105void OTabWidget::addTab( QWidget *child, const QString &icon, const QString &label ) 105void OTabWidget::addTab( QWidget *child, const QString &icon, const QString &label )
106{ 106{
107 QPixmap iconset = loadSmooth( icon ); 107 QPixmap iconset = loadSmooth( icon );
108 108
109 QTab * tab = new QTab(); 109 QTab * tab = new QTab();
110 if ( tabBarStyle == IconTab ) 110 if ( tabBarStyle == IconTab )
111 { 111 {
112 tab->label = QString::null; 112 tab->label = QString::null;
113 } 113 }
114 else 114 else
115 { 115 {
116 tab->label = label; 116 tab->label = label;
117 } 117 }
118 if ( tabBarStyle == IconTab || tabBarStyle == IconList) 118 if ( tabBarStyle == IconTab || tabBarStyle == IconList)
119 { 119 {
120 tab->iconset = new QIconSet( iconset ); 120 tab->iconset = new QIconSet( iconset );
121 } 121 }
122 int tabid = tabBar->addTab( tab ); 122 int tabid = tabBar->addTab( tab );
123 123
124 if ( tabBarStyle == IconTab || tabBarStyle == IconList ) 124 if ( tabBarStyle == IconTab || tabBarStyle == IconList )
125 { 125 {
126 tabList->insertItem( iconset, label, -1 ); 126 tabList->insertItem( iconset, label, -1 );
127 } 127 }
128 else 128 else
129 { 129 {
130 tabList->insertItem( label ); 130 tabList->insertItem( label );
131 } 131 }
132 132
133 widgetStack->addWidget( child, tabid ); 133 widgetStack->addWidget( child, tabid );
134 widgetStack->raiseWidget( child ); 134 widgetStack->raiseWidget( child );
135 widgetStack->setFrameStyle( QFrame::StyledPanel | QFrame::Raised );
135 136
136 OTabInfo *tabinfo = new OTabInfo( tabid, child, icon, label ); 137 OTabInfo *tabinfo = new OTabInfo( tabid, child, icon, label );
137 tabs.append( tabinfo ); 138 tabs.append( tabinfo );
138 selectTab( tabinfo ); 139 selectTab( tabinfo );
139} 140}
140 141
141void OTabWidget::removePage( QWidget *childwidget ) 142void OTabWidget::removePage( QWidget *childwidget )
142{ 143{
143 if ( childwidget ) 144 if ( childwidget )
144 { 145 {
145 OTabInfo *tab = tabs.first(); 146 OTabInfo *tab = tabs.first();
146 while ( tab && tab->control() != childwidget ) 147 while ( tab && tab->control() != childwidget )
147 { 148 {
148 tab = tabs.next(); 149 tab = tabs.next();
149 } 150 }
150 if ( tab && tab->control() == childwidget ) 151 if ( tab && tab->control() == childwidget )
151 { 152 {
152 tabBar->setTabEnabled( tab->id(), FALSE ); 153 tabBar->setTabEnabled( tab->id(), FALSE );
153 tabBar->removeTab( tabBar->tab( tab->id() ) ); 154 tabBar->removeTab( tabBar->tab( tab->id() ) );
154 int i = 0; 155 int i = 0;
155 while ( i < tabList->count() && tabList->text( i ) != tab->label() ) 156 while ( i < tabList->count() && tabList->text( i ) != tab->label() )
156 { 157 {
157 i++; 158 i++;
158 } 159 }
159 if ( tabList->text( i ) == tab->label() ) 160 if ( tabList->text( i ) == tab->label() )
160 { 161 {
161 tabList->removeItem( i ); 162 tabList->removeItem( i );
162 } 163 }
163 widgetStack->removeWidget( childwidget ); 164 widgetStack->removeWidget( childwidget );
164 tabs.remove( tab ); 165 tabs.remove( tab );
165 delete tab; 166 delete tab;
166 currentTab = tabs.current(); 167 currentTab = tabs.current();
168 if ( !currentTab )
169 {
170 widgetStack->setFrameStyle( QFrame::NoFrame );
171 }
172
167 setUpLayout(); 173 setUpLayout();
168 } 174 }
169 } 175 }
170} 176}
171 177
172void OTabWidget::setCurrentTab( QWidget *childwidget ) 178void OTabWidget::setCurrentTab( QWidget *childwidget )
173{ 179{
174 OTabInfo *newtab = tabs.first(); 180 OTabInfo *newtab = tabs.first();
175 while ( newtab && newtab->control() != childwidget ) 181 while ( newtab && newtab->control() != childwidget )
176 { 182 {
177 newtab = tabs.next(); 183 newtab = tabs.next();
178 } 184 }
179 if ( newtab && newtab->control() == childwidget ) 185 if ( newtab && newtab->control() == childwidget )
180 { 186 {
181 selectTab( newtab ); 187 selectTab( newtab );
182 } 188 }
183} 189}
184 190
185void OTabWidget::setCurrentTab( const QString &tabname ) 191void OTabWidget::setCurrentTab( const QString &tabname )
186{ 192{
187 OTabInfo *newtab = tabs.first(); 193 OTabInfo *newtab = tabs.first();
188 while ( newtab && newtab->label() != tabname ) 194 while ( newtab && newtab->label() != tabname )
189 { 195 {
190 newtab = tabs.next(); 196 newtab = tabs.next();
191 } 197 }
192 if ( newtab && newtab->label() == tabname ) 198 if ( newtab && newtab->label() == tabname )
193 { 199 {
194 selectTab( newtab ); 200 selectTab( newtab );
195 } 201 }
196} 202}
197 203
198OTabWidget::TabStyle OTabWidget::tabStyle() const 204OTabWidget::TabStyle OTabWidget::tabStyle() const
199{ 205{
200 return tabBarStyle; 206 return tabBarStyle;
201} 207}
202 208
203void OTabWidget::setTabStyle( TabStyle s ) 209void OTabWidget::setTabStyle( TabStyle s )
204{ 210{
205 tabBarStyle = s; 211 tabBarStyle = s;
206} 212}
207 213
208OTabWidget::TabPosition OTabWidget::tabPosition() const 214OTabWidget::TabPosition OTabWidget::tabPosition() const
209{ 215{
210 return tabBarPosition; 216 return tabBarPosition;
211} 217}
212 218
213void OTabWidget::setTabPosition( TabPosition p ) 219void OTabWidget::setTabPosition( TabPosition p )
214{ 220{