summaryrefslogtreecommitdiff
authorharlekin <harlekin>2002-10-05 22:15:43 (UTC)
committer harlekin <harlekin>2002-10-05 22:15:43 (UTC)
commit94180a2019a945e6a492405dc6a30420c760529f (patch) (unidiff)
treed50e2c308b94a563f82db8bd9086cfc46da09c0f
parent4e27d072b90cf1d877f0f31b44da10639ff3803f (diff)
downloadopie-94180a2019a945e6a492405dc6a30420c760529f.zip
opie-94180a2019a945e6a492405dc6a30420c760529f.tar.gz
opie-94180a2019a945e6a492405dc6a30420c760529f.tar.bz2
making otabwidget more simular to qtabwidget - drw
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/otabwidget.cpp32
-rw-r--r--libopie/otabwidget.h17
2 files changed, 49 insertions, 0 deletions
diff --git a/libopie/otabwidget.cpp b/libopie/otabwidget.cpp
index d5b963b..1f3fbb0 100644
--- a/libopie/otabwidget.cpp
+++ b/libopie/otabwidget.cpp
@@ -1,267 +1,299 @@
1/* 1/*
2                This file is part of the Opie Project 2                This file is part of the Opie Project
3 3
4              Copyright (c) 2002 Dan Williams <williamsdr@acm.org> 4              Copyright (c) 2002 Dan Williams <williamsdr@acm.org>
5 =. 5 =.
6 .=l. 6 .=l.
7           .>+-= 7           .>+-=
8 _;:,     .>    :=|. This program is free software; you can 8 _;:,     .>    :=|. This program is free software; you can
9.> <`_,   >  .   <= redistribute it and/or modify it under 9.> <`_,   >  .   <= redistribute it and/or modify it under
10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
11.="- .-=="i,     .._ License as published by the Free Software 11.="- .-=="i,     .._ License as published by the Free Software
12 - .   .-<_>     .<> Foundation; either version 2 of the License, 12 - .   .-<_>     .<> Foundation; either version 2 of the License,
13     ._= =}       : or (at your option) any later version. 13     ._= =}       : or (at your option) any later version.
14    .%`+i>       _;_. 14    .%`+i>       _;_.
15    .i_,=:_.      -<s. This program is distributed in the hope that 15    .i_,=:_.      -<s. This program is distributed in the hope that
16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
17    : ..    .:,     . . . without even the implied warranty of 17    : ..    .:,     . . . without even the implied warranty of
18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
20..}^=.=       =       ; Library General Public License for more 20..}^=.=       =       ; Library General Public License for more
21++=   -.     .`     .: details. 21++=   -.     .`     .: details.
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::StyledPanel | QFrame::Raised );
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 currentTab= 0x0; 98 currentTab= 0x0;
98} 99}
99 100
100OTabWidget::~OTabWidget() 101OTabWidget::~OTabWidget()
101{ 102{
102} 103}
103 104
104void OTabWidget::addTab( QWidget *child, const QString &icon, const QString &label ) 105void OTabWidget::addTab( QWidget *child, const QString &icon, const QString &label )
105{ 106{
106 QPixmap iconset = loadSmooth( icon ); 107 QPixmap iconset = loadSmooth( icon );
107 108
108 QTab * tab = new QTab(); 109 QTab * tab = new QTab();
109 if ( tabBarStyle == IconTab ) 110 if ( tabBarStyle == IconTab )
110 { 111 {
111 tab->label = QString::null; 112 tab->label = QString::null;
112 } 113 }
113 else 114 else
114 { 115 {
115 tab->label = label; 116 tab->label = label;
116 } 117 }
117 if ( tabBarStyle == IconTab || tabBarStyle == IconList) 118 if ( tabBarStyle == IconTab || tabBarStyle == IconList)
118 { 119 {
119 tab->iconset = new QIconSet( iconset ); 120 tab->iconset = new QIconSet( iconset );
120 } 121 }
121 int tabid = tabBar->addTab( tab ); 122 int tabid = tabBar->addTab( tab );
122 123
123 if ( tabBarStyle == IconTab || tabBarStyle == IconList ) 124 if ( tabBarStyle == IconTab || tabBarStyle == IconList )
124 { 125 {
125 tabList->insertItem( iconset, label, -1 ); 126 tabList->insertItem( iconset, label, -1 );
126 } 127 }
127 else 128 else
128 { 129 {
129 tabList->insertItem( label ); 130 tabList->insertItem( label );
130 } 131 }
131 132
132 widgetStack->addWidget( child, tabid ); 133 widgetStack->addWidget( child, tabid );
133 widgetStack->raiseWidget( child ); 134 widgetStack->raiseWidget( child );
134 135
135 OTabInfo *tabinfo = new OTabInfo( tabid, child, icon, label ); 136 OTabInfo *tabinfo = new OTabInfo( tabid, child, icon, label );
136 tabs.append( tabinfo ); 137 tabs.append( tabinfo );
137 selectTab( tabinfo ); 138 selectTab( tabinfo );
138} 139}
139 140
141void OTabWidget::removePage( QWidget *childwidget )
142{
143 if ( childwidget )
144 {
145 OTabInfo *tab = tabs.first();
146 while ( tab && tab->control() != childwidget )
147 {
148 tab = tabs.next();
149 }
150 if ( tab && tab->control() == childwidget )
151 {
152 tabBar->setTabEnabled( tab->id(), FALSE );
153 tabBar->removeTab( tabBar->tab( tab->id() ) );
154 int i = 0;
155 while ( i < tabList->count() && tabList->text( i ) != tab->label() )
156 {
157 i++;
158 }
159 if ( tabList->text( i ) == tab->label() )
160 {
161 tabList->removeItem( i );
162 }
163 widgetStack->removeWidget( childwidget );
164 tabs.remove( tab );
165 setUpLayout();
166 }
167 }
168}
169
140void OTabWidget::setCurrentTab( QWidget *childwidget ) 170void OTabWidget::setCurrentTab( QWidget *childwidget )
141{ 171{
142 OTabInfo *newtab = tabs.first(); 172 OTabInfo *newtab = tabs.first();
143 while ( newtab && newtab->control() != childwidget ) 173 while ( newtab && newtab->control() != childwidget )
144 { 174 {
145 newtab = tabs.next(); 175 newtab = tabs.next();
146 } 176 }
147 if ( newtab && newtab->control() == childwidget ) 177 if ( newtab && newtab->control() == childwidget )
148 { 178 {
149 selectTab( newtab ); 179 selectTab( newtab );
150 } 180 }
151} 181}
152 182
153void OTabWidget::setCurrentTab( const QString &tabname ) 183void OTabWidget::setCurrentTab( const QString &tabname )
154{ 184{
155 OTabInfo *newtab = tabs.first(); 185 OTabInfo *newtab = tabs.first();
156 while ( newtab && newtab->label() != tabname ) 186 while ( newtab && newtab->label() != tabname )
157 { 187 {
158 newtab = tabs.next(); 188 newtab = tabs.next();
159 } 189 }
160 if ( newtab && newtab->label() == tabname ) 190 if ( newtab && newtab->label() == tabname )
161 { 191 {
162 selectTab( newtab ); 192 selectTab( newtab );
163 } 193 }
164} 194}
165 195
166OTabWidget::TabStyle OTabWidget::tabStyle() const 196OTabWidget::TabStyle OTabWidget::tabStyle() const
167{ 197{
168 return tabBarStyle; 198 return tabBarStyle;
169} 199}
170 200
171void OTabWidget::setTabStyle( TabStyle s ) 201void OTabWidget::setTabStyle( TabStyle s )
172{ 202{
173 tabBarStyle = s; 203 tabBarStyle = s;
174} 204}
175 205
176OTabWidget::TabPosition OTabWidget::tabPosition() const 206OTabWidget::TabPosition OTabWidget::tabPosition() const
177{ 207{
178 return tabBarPosition; 208 return tabBarPosition;
179} 209}
180 210
181void OTabWidget::setTabPosition( TabPosition p ) 211void OTabWidget::setTabPosition( TabPosition p )
182{ 212{
183 tabBarPosition = p; 213 tabBarPosition = p;
184} 214}
185 215
186void OTabWidget::slotTabBarSelected( int id ) 216void OTabWidget::slotTabBarSelected( int id )
187{ 217{
188 OTabInfo *newtab = tabs.first(); 218 OTabInfo *newtab = tabs.first();
189 while ( newtab && newtab->id() != id ) 219 while ( newtab && newtab->id() != id )
190 { 220 {
191 newtab = tabs.next(); 221 newtab = tabs.next();
192 } 222 }
193 if ( newtab && newtab->id() == id ) 223 if ( newtab && newtab->id() == id )
194 { 224 {
195 selectTab( newtab ); 225 selectTab( newtab );
196 } 226 }
197} 227}
198 228
199void OTabWidget::slotTabListSelected( int index ) 229void OTabWidget::slotTabListSelected( int index )
200{ 230{
201 OTabInfo *newtab = tabs.at( index ); 231 OTabInfo *newtab = tabs.at( index );
202 if ( newtab ) 232 if ( newtab )
203 { 233 {
204 selectTab( newtab ); 234 selectTab( newtab );
205 } 235 }
206} 236}
207 237
208QPixmap OTabWidget::loadSmooth( const QString &name ) 238QPixmap OTabWidget::loadSmooth( const QString &name )
209{ 239{
210 QImage image = Resource::loadImage( name ); 240 QImage image = Resource::loadImage( name );
211 QPixmap pixmap; 241 QPixmap pixmap;
212 pixmap.convertFromImage( image.smoothScale( 16, 16 ) ); 242 pixmap.convertFromImage( image.smoothScale( 16, 16 ) );
213 return pixmap; 243 return pixmap;
214} 244}
215 245
216void OTabWidget::selectTab( OTabInfo *tab ) 246void OTabWidget::selectTab( OTabInfo *tab )
217{ 247{
218 if ( tabBarStyle == IconTab ) 248 if ( tabBarStyle == IconTab )
219 { 249 {
220 if ( currentTab ) 250 if ( currentTab )
221 { 251 {
222 tabBar->tab( currentTab->id() )->setText( QString::null ); 252 tabBar->tab( currentTab->id() )->setText( QString::null );
223 setUpLayout(); 253 setUpLayout();
224 } 254 }
225 tabBar->tab( tab->id() )->setText( tab->label() ); 255 tabBar->tab( tab->id() )->setText( tab->label() );
226 currentTab = tab; 256 currentTab = tab;
227 } 257 }
228 tabBar->setCurrentTab( tab->id() ); 258 tabBar->setCurrentTab( tab->id() );
229 setUpLayout(); 259 setUpLayout();
230 tabBar->update(); 260 tabBar->update();
231 261
232 widgetStack->raiseWidget( tab->control() ); 262 widgetStack->raiseWidget( tab->control() );
263
264 emit currentChanged( tab->control() );
233} 265}
234 266
235void OTabWidget::setUpLayout() 267void OTabWidget::setUpLayout()
236{ 268{
237 tabBar->layoutTabs(); 269 tabBar->layoutTabs();
238 QSize t( tabBarStack->sizeHint() ); 270 QSize t( tabBarStack->sizeHint() );
239 if ( t.width() > width() ) 271 if ( t.width() > width() )
240 t.setWidth( width() ); 272 t.setWidth( width() );
241 int lw = widgetStack->lineWidth(); 273 int lw = widgetStack->lineWidth();
242 if ( tabBarPosition == Bottom ) 274 if ( tabBarPosition == Bottom )
243 { 275 {
244 tabBarStack->setGeometry( QMAX(0, lw-2), height() - t.height() - lw, t.width(), t.height() ); 276 tabBarStack->setGeometry( QMAX(0, lw-2), height() - t.height() - lw, t.width(), t.height() );
245 widgetStack->setGeometry( 0, 0, width(), height()-t.height()+QMAX(0, lw-2) ); 277 widgetStack->setGeometry( 0, 0, width(), height()-t.height()+QMAX(0, lw-2) );
246 } 278 }
247 else 279 else
248 { 280 {
249 tabBarStack->setGeometry( QMAX(0, lw-2), 0, t.width(), t.height() ); 281 tabBarStack->setGeometry( QMAX(0, lw-2), 0, t.width(), t.height() );
250 widgetStack->setGeometry( 0, t.height()-lw, width(), height()-t.height()+QMAX(0, lw-2)); 282 widgetStack->setGeometry( 0, t.height()-lw, width(), height()-t.height()+QMAX(0, lw-2));
251 } 283 }
252 284
253 if ( autoMask() ) 285 if ( autoMask() )
254 updateMask(); 286 updateMask();
255} 287}
256 288
257QSize OTabWidget::sizeHint() const 289QSize OTabWidget::sizeHint() const
258{ 290{
259 QSize s( widgetStack->sizeHint() ); 291 QSize s( widgetStack->sizeHint() );
260 QSize t( tabBarStack->sizeHint() ); 292 QSize t( tabBarStack->sizeHint() );
261 return QSize( QMAX( s.width(), t.width()), s.height() + t.height() ); 293 return QSize( QMAX( s.width(), t.width()), s.height() + t.height() );
262} 294}
263 295
264void OTabWidget::resizeEvent( QResizeEvent * ) 296void OTabWidget::resizeEvent( QResizeEvent * )
265{ 297{
266 setUpLayout(); 298 setUpLayout();
267} 299}
diff --git a/libopie/otabwidget.h b/libopie/otabwidget.h
index bacda07..d61fe9e 100644
--- a/libopie/otabwidget.h
+++ b/libopie/otabwidget.h
@@ -25,209 +25,226 @@
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#ifndef OTABWIDGET_H 32#ifndef OTABWIDGET_H
33#define OTABWIDGET_H 33#define OTABWIDGET_H
34 34
35#include "otabinfo.h" 35#include "otabinfo.h"
36 36
37#include <qwidget.h> 37#include <qwidget.h>
38#include <qlist.h> 38#include <qlist.h>
39 39
40class OTabBar; 40class OTabBar;
41class QComboBox; 41class QComboBox;
42class QPixmap; 42class QPixmap;
43class QTabBar; 43class QTabBar;
44class QWidgetStack; 44class QWidgetStack;
45 45
46/** 46/**
47 * @class OTabWidget 47 * @class OTabWidget
48 * @brief The OTabWidget class provides a stack of widgets. 48 * @brief The OTabWidget class provides a stack of widgets.
49 * 49 *
50 * OTabWidget is a derivation of TrollTech's QTabWidget which provides 50 * OTabWidget is a derivation of TrollTech's QTabWidget which provides
51 * a stack of widgets. Widgets can be selected using either a tab bar or 51 * a stack of widgets. Widgets can be selected using either a tab bar or
52 * drop down list box. 52 * drop down list box.
53 * 53 *
54 * The normal way to use OTabWidget is to do the following in the 54 * The normal way to use OTabWidget is to do the following in the
55 * constructor: 55 * constructor:
56 * - Create a OTabWidget. 56 * - Create a OTabWidget.
57 * - Create a QWidget for each of the pages in the control, insert 57 * - Create a QWidget for each of the pages in the control, insert
58 * children into it, set up geometry management for it, and use addTab() 58 * children into it, set up geometry management for it, and use addTab()
59 * to add the widget. 59 * to add the widget.
60 */ 60 */
61class OTabWidget : public QWidget 61class OTabWidget : public QWidget
62{ 62{
63 Q_OBJECT 63 Q_OBJECT
64public: 64public:
65 65
66/** 66/**
67 * @enum TabStyle 67 * @enum TabStyle
68 * @brief Defines how the widget selection control is displayed. 68 * @brief Defines how the widget selection control is displayed.
69 * 69 *
70 * Valid values: 70 * Valid values:
71 * - Global: use globally selected options (qpe.conf - TabStyle & TabPosition) 71 * - Global: use globally selected options (qpe.conf - TabStyle & TabPosition)
72 * - TextTab: Tabbed widget selection with text labels 72 * - TextTab: Tabbed widget selection with text labels
73 * - IconTab: Tabbed widget selection with icon labels, text label for active widget 73 * - IconTab: Tabbed widget selection with icon labels, text label for active widget
74 * (similar to Opie launcher) 74 * (similar to Opie launcher)
75 * - TextList: Drop down list widget selection with text labels 75 * - TextList: Drop down list widget selection with text labels
76 * - IconList: Drop down list widget selection with icon & text labels 76 * - IconList: Drop down list widget selection with icon & text labels
77 */ 77 */
78 enum TabStyle { Global, TextTab, IconTab, TextList, IconList }; 78 enum TabStyle { Global, TextTab, IconTab, TextList, IconList };
79 79
80/** 80/**
81 * @enum TabPosition 81 * @enum TabPosition
82 * @brief Defines where the widget selection control is drawn. 82 * @brief Defines where the widget selection control is drawn.
83 * 83 *
84 * Valid values: 84 * Valid values:
85 * - Top: Widget selection control is drawn above widgets 85 * - Top: Widget selection control is drawn above widgets
86 * - Bottom: Widget selection control is drawn below widgets 86 * - Bottom: Widget selection control is drawn below widgets
87 */ 87 */
88 enum TabPosition { Top, Bottom }; 88 enum TabPosition { Top, Bottom };
89 89
90/** 90/**
91 * @fn OTabWidget( QWidget *parent = 0, const char *name = 0, TabStyle s = Global, TabPosition p = Top ) 91 * @fn OTabWidget( QWidget *parent = 0, const char *name = 0, TabStyle s = Global, TabPosition p = Top )
92 * @brief Object constructor. 92 * @brief Object constructor.
93 * 93 *
94 * @param parent Pointer to parent of this control. 94 * @param parent Pointer to parent of this control.
95 * @param name Name of control. 95 * @param name Name of control.
96 * @param s Style of widget selection control. 96 * @param s Style of widget selection control.
97 * @param p Position of the widget selection control. 97 * @param p Position of the widget selection control.
98 * 98 *
99 * Constructs a new OTabWidget control with parent and name. The style and position parameters 99 * Constructs a new OTabWidget control with parent and name. The style and position parameters
100 * determine how the widget selection control will be displayed. 100 * determine how the widget selection control will be displayed.
101 */ 101 */
102 OTabWidget( QWidget * = 0, const char * = 0, TabStyle = Global, TabPosition = Top ); 102 OTabWidget( QWidget * = 0, const char * = 0, TabStyle = Global, TabPosition = Top );
103 103
104/** 104/**
105 * @fn ~OTabWidget() 105 * @fn ~OTabWidget()
106 * @brief Object destructor. 106 * @brief Object destructor.
107 */ 107 */
108 ~OTabWidget(); 108 ~OTabWidget();
109 109
110/** 110/**
111 * @fn addTab( QWidget *child, const QString &icon, const QString &label ) 111 * @fn addTab( QWidget *child, const QString &icon, const QString &label )
112 * @brief Add new widget to control. 112 * @brief Add new widget to control.
113 * 113 *
114 * @param child Widget control. 114 * @param child Widget control.
115 * @param icon Path to icon. 115 * @param icon Path to icon.
116 * @param label Text label. 116 * @param label Text label.
117 */ 117 */
118 void addTab( QWidget *, const QString &, const QString & ); 118 void addTab( QWidget *, const QString &, const QString & );
119 119
120/** 120/**
121 * @fn removePage( QWidget *widget )
122 * @brief Remove widget from control. Does not delete widget.
123 *
124 * @param widget Widget control to be removed.
125 */
126 void removePage( QWidget * );
127
128/**
121 * @fn tabStyle() 129 * @fn tabStyle()
122 * @brief Returns current widget selection control style. 130 * @brief Returns current widget selection control style.
123 */ 131 */
124 TabStyle tabStyle() const; 132 TabStyle tabStyle() const;
125 133
126/** 134/**
127 * @fn setTabStyle( TabStyle s ) 135 * @fn setTabStyle( TabStyle s )
128 * @brief Set the current widget selection control style. 136 * @brief Set the current widget selection control style.
129 * 137 *
130 * @param s New style to be used. 138 * @param s New style to be used.
131 */ 139 */
132 void setTabStyle( TabStyle ); 140 void setTabStyle( TabStyle );
133 141
134/** 142/**
135 * @fn tabPosition() 143 * @fn tabPosition()
136 * @brief Returns current widget selection control position. 144 * @brief Returns current widget selection control position.
137 */ 145 */
138 TabPosition tabPosition() const; 146 TabPosition tabPosition() const;
139 147
140/** 148/**
141 * @fn setTabPosition( TabPosition p ) 149 * @fn setTabPosition( TabPosition p )
142 * @brief Set the current widget selection control position. 150 * @brief Set the current widget selection control position.
143 * 151 *
144 * @param p New position of widget selection control. 152 * @param p New position of widget selection control.
145 */ 153 */
146 void setTabPosition( TabPosition ); 154 void setTabPosition( TabPosition );
147 155
148/** 156/**
149 * @fn setCurrentTab( QWidget *childwidget ) 157 * @fn setCurrentTab( QWidget *childwidget )
150 * @brief Selects and brings to top the desired widget by using widget pointer. 158 * @brief Selects and brings to top the desired widget by using widget pointer.
151 * 159 *
152 * @param childwidget Widget to select. 160 * @param childwidget Widget to select.
153 */ 161 */
154 void setCurrentTab( QWidget * ); 162 void setCurrentTab( QWidget * );
155 163
156/** 164/**
157 * @fn setCurrentTab( const QString &tabname ) 165 * @fn setCurrentTab( const QString &tabname )
158 * @brief Selects and brings to top the desired widget, by using label. 166 * @brief Selects and brings to top the desired widget, by using label.
159 * 167 *
160 * @param tabname Text label for widget to select. 168 * @param tabname Text label for widget to select.
161 */ 169 */
162 void setCurrentTab( const QString & ); 170 void setCurrentTab( const QString & );
163 171
164/** 172/**
165 * @fn sizeHint() 173 * @fn sizeHint()
166 * @brief Reimplemented for internal purposes. 174 * @brief Reimplemented for internal purposes.
167 */ 175 */
168 QSize sizeHint() const; 176 QSize sizeHint() const;
169 177
170 178
171protected: 179protected:
172 180
173/** 181/**
174 * @fn resizeEvent( QResizeEvent * ) 182 * @fn resizeEvent( QResizeEvent * )
175 * @brief Reimplemented for internal purposes. 183 * @brief Reimplemented for internal purposes.
176 */ 184 */
177 void resizeEvent( QResizeEvent * ); 185 void resizeEvent( QResizeEvent * );
178 186
179private: 187private:
180 OTabInfoList tabs; 188 OTabInfoList tabs;
181 OTabInfo *currentTab; 189 OTabInfo *currentTab;
182 190
183 TabStyle tabBarStyle; 191 TabStyle tabBarStyle;
184 TabPosition tabBarPosition; 192 TabPosition tabBarPosition;
185 193
186 QWidgetStack *tabBarStack; 194 QWidgetStack *tabBarStack;
187 OTabBar *tabBar; 195 OTabBar *tabBar;
188 QComboBox *tabList; 196 QComboBox *tabList;
189 197
190 QWidgetStack *widgetStack; 198 QWidgetStack *widgetStack;
191 199
192/** 200/**
193 * @fn loadSmooth( const QString &name ) 201 * @fn loadSmooth( const QString &name )
194 * @brief Loads icon for widget. 202 * @brief Loads icon for widget.
195 * 203 *
196 * @param name Name of icon image file. 204 * @param name Name of icon image file.
197 */ 205 */
198 QPixmap loadSmooth( const QString & ); 206 QPixmap loadSmooth( const QString & );
199 207
200/** 208/**
201 * @fn selectTab( OTabInfo *tab ) 209 * @fn selectTab( OTabInfo *tab )
202 * @brief Internal function to select desired widget. 210 * @brief Internal function to select desired widget.
203 * 211 *
204 * @param tab Pointer to data for widget. 212 * @param tab Pointer to data for widget.
205 */ 213 */
206 void selectTab( OTabInfo * ); 214 void selectTab( OTabInfo * );
207 215
208/** 216/**
209 * @fn setUpLayout() 217 * @fn setUpLayout()
210 * @brief Internal function to adjust layout. 218 * @brief Internal function to adjust layout.
211 */ 219 */
212 void setUpLayout(); 220 void setUpLayout();
213 221
222signals:
223/**
224 * @fn currentChanegd( QWidget *widget )
225 * @brief This signal is emitted whenever the widget has changed.
226 *
227 * @param widget Pointer to new current widget.
228 */
229 void currentChanged( QWidget * );
230
214private slots: 231private slots:
215 232
216/** 233/**
217 * @fn slotTabBarSelected( int id ) 234 * @fn slotTabBarSelected( int id )
218 * @brief Slot which is called when a tab is selected. 235 * @brief Slot which is called when a tab is selected.
219 * 236 *
220 * @param id ID of widget selected. 237 * @param id ID of widget selected.
221 */ 238 */
222 void slotTabBarSelected( int ); 239 void slotTabBarSelected( int );
223 240
224/** 241/**
225 * @fn slotTabListSelected( int index ) 242 * @fn slotTabListSelected( int index )
226 * @brief Slot which is called when a drop down selection is made. 243 * @brief Slot which is called when a drop down selection is made.
227 * 244 *
228 * @param id Index of widget selected. 245 * @param id Index of widget selected.
229 */ 246 */
230 void slotTabListSelected( int ); 247 void slotTabListSelected( int );
231}; 248};
232 249
233#endif 250#endif