author | harlekin <harlekin> | 2002-10-05 22:15:43 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-10-05 22:15:43 (UTC) |
commit | 94180a2019a945e6a492405dc6a30420c760529f (patch) (unidiff) | |
tree | d50e2c308b94a563f82db8bd9086cfc46da09c0f | |
parent | 4e27d072b90cf1d877f0f31b44da10639ff3803f (diff) | |
download | opie-94180a2019a945e6a492405dc6a30420c760529f.zip opie-94180a2019a945e6a492405dc6a30420c760529f.tar.gz opie-94180a2019a945e6a492405dc6a30420c760529f.tar.bz2 |
making otabwidget more simular to qtabwidget - drw
-rw-r--r-- | libopie/otabwidget.cpp | 32 | ||||
-rw-r--r-- | libopie/otabwidget.h | 17 |
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 | |||
@@ -85,24 +85,25 @@ OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPositi | |||
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 | ||
100 | OTabWidget::~OTabWidget() | 101 | OTabWidget::~OTabWidget() |
101 | { | 102 | { |
102 | } | 103 | } |
103 | 104 | ||
104 | void OTabWidget::addTab( QWidget *child, const QString &icon, const QString &label ) | 105 | void 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(); |
@@ -128,24 +129,53 @@ void OTabWidget::addTab( QWidget *child, const QString &icon, const QString &lab | |||
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 | ||
141 | void 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 | |||
140 | void OTabWidget::setCurrentTab( QWidget *childwidget ) | 170 | void 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 | } |
@@ -221,24 +251,26 @@ void OTabWidget::selectTab( OTabInfo *tab ) | |||
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 | ||
235 | void OTabWidget::setUpLayout() | 267 | void 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() ); |
diff --git a/libopie/otabwidget.h b/libopie/otabwidget.h index bacda07..d61fe9e 100644 --- a/libopie/otabwidget.h +++ b/libopie/otabwidget.h | |||
@@ -109,24 +109,32 @@ public: | |||
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 ); |
@@ -202,24 +210,33 @@ private: | |||
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 | ||
222 | signals: | ||
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 | |||
214 | private slots: | 231 | private 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 ) |