summaryrefslogtreecommitdiff
Unidiff
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
@@ -73,91 +73,121 @@ OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPositi
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 }
@@ -209,48 +239,50 @@ QPixmap 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
diff --git a/libopie/otabwidget.h b/libopie/otabwidget.h
index bacda07..d61fe9e 100644
--- a/libopie/otabwidget.h
+++ b/libopie/otabwidget.h
@@ -97,48 +97,56 @@ public:
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.
@@ -190,44 +198,53 @@ private:
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