author | harlekin <harlekin> | 2002-09-21 21:15:59 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-09-21 21:15:59 (UTC) |
commit | 2e6dd40a0ba17ccf5503fa02bec810b0eeb82f8c (patch) (unidiff) | |
tree | 5f302398099f158e8df188420e817017b1acb160 | |
parent | 023b34ea1584474a0ba625be4b099cb9a2de376c (diff) | |
download | opie-2e6dd40a0ba17ccf5503fa02bec810b0eeb82f8c.zip opie-2e6dd40a0ba17ccf5503fa02bec810b0eeb82f8c.tar.gz opie-2e6dd40a0ba17ccf5503fa02bec810b0eeb82f8c.tar.bz2 |
code cleanups
-rw-r--r-- | core/pim/today/today.cpp | 6 | ||||
-rw-r--r-- | core/pim/today/todaybase.cpp | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 901a61a..7673df5 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp | |||
@@ -100,227 +100,227 @@ void Today::setOwnerField() { | |||
100 | void Today::setOwnerField( QString &message ) { | 100 | void Today::setOwnerField( QString &message ) { |
101 | if ( !message.isEmpty() ) { | 101 | if ( !message.isEmpty() ) { |
102 | OwnerField->setText( "<b>" + message + "</b>" ); | 102 | OwnerField->setText( "<b>" + message + "</b>" ); |
103 | } | 103 | } |
104 | } | 104 | } |
105 | 105 | ||
106 | 106 | ||
107 | /** | 107 | /** |
108 | * Init stuff needed for today. Reads the config file. | 108 | * Init stuff needed for today. Reads the config file. |
109 | */ | 109 | */ |
110 | void Today::init() { | 110 | void Today::init() { |
111 | // read config | 111 | // read config |
112 | Config cfg( "today" ); | 112 | Config cfg( "today" ); |
113 | cfg.setGroup( "Plugins" ); | 113 | cfg.setGroup( "Plugins" ); |
114 | 114 | ||
115 | m_excludeApplets = cfg.readListEntry( "ExcludeApplets", ',' ); | 115 | m_excludeApplets = cfg.readListEntry( "ExcludeApplets", ',' ); |
116 | m_allApplets = cfg.readListEntry( "AllApplets", ',' ); | 116 | m_allApplets = cfg.readListEntry( "AllApplets", ',' ); |
117 | } | 117 | } |
118 | 118 | ||
119 | 119 | ||
120 | /** | 120 | /** |
121 | * Load the plugins | 121 | * Load the plugins |
122 | */ | 122 | */ |
123 | void Today::loadPlugins() { | 123 | void Today::loadPlugins() { |
124 | 124 | ||
125 | QValueList<TodayPlugin>::Iterator tit; | 125 | QValueList<TodayPlugin>::Iterator tit; |
126 | for ( tit = pluginList.begin(); tit != pluginList.end(); ++tit ) { | 126 | for ( tit = pluginList.begin(); tit != pluginList.end(); ++tit ) { |
127 | (*tit).library->unload(); | 127 | (*tit).library->unload(); |
128 | delete (*tit).library; | 128 | delete (*tit).library; |
129 | } | 129 | } |
130 | pluginList.clear(); | 130 | pluginList.clear(); |
131 | 131 | ||
132 | QString path = QPEApplication::qpeDir() + "/plugins/today"; | 132 | QString path = QPEApplication::qpeDir() + "/plugins/today"; |
133 | QDir dir( path, "lib*.so" ); | 133 | QDir dir( path, "lib*.so" ); |
134 | 134 | ||
135 | QStringList list = dir.entryList(); | 135 | QStringList list = dir.entryList(); |
136 | QStringList::Iterator it; | 136 | QStringList::Iterator it; |
137 | 137 | ||
138 | 138 | ||
139 | QMap<QString, TodayPlugin> tempList; | 139 | QMap<QString, TodayPlugin> tempList; |
140 | 140 | ||
141 | for ( it = list.begin(); it != list.end(); ++it ) { | 141 | for ( it = list.begin(); it != list.end(); ++it ) { |
142 | TodayPluginInterface *iface = 0; | 142 | TodayPluginInterface *iface = 0; |
143 | QLibrary *lib = new QLibrary( path + "/" + *it ); | 143 | QLibrary *lib = new QLibrary( path + "/" + *it ); |
144 | 144 | ||
145 | qDebug( "querying: %s", QString( path + "/" + *it ).latin1() ); | 145 | qDebug( "querying: %s", QString( path + "/" + *it ).latin1() ); |
146 | if ( lib->queryInterface( IID_TodayPluginInterface, (QUnknownInterface**)&iface ) == QS_OK ) { | 146 | if ( lib->queryInterface( IID_TodayPluginInterface, (QUnknownInterface**)&iface ) == QS_OK ) { |
147 | qDebug( "loading: %s", QString( path + "/" + *it ).latin1() ); | 147 | qDebug( "loading: %s", QString( path + "/" + *it ).latin1() ); |
148 | qDebug( QString(*it) ); | 148 | qDebug( QString(*it) ); |
149 | TodayPlugin plugin; | 149 | TodayPlugin plugin; |
150 | plugin.library = lib; | 150 | plugin.library = lib; |
151 | plugin.iface = iface; | 151 | plugin.iface = iface; |
152 | plugin.name = QString(*it); | 152 | plugin.name = QString(*it); |
153 | 153 | ||
154 | // find out if plugins should be shown | 154 | // find out if plugins should be shown |
155 | if ( m_excludeApplets.grep( *it ).isEmpty() ) { | 155 | if ( m_excludeApplets.grep( *it ).isEmpty() ) { |
156 | plugin.active = true; | 156 | plugin.active = true; |
157 | } else { | 157 | } else { |
158 | plugin.active = false; | 158 | plugin.active = false; |
159 | } | 159 | } |
160 | plugin.guiPart = plugin.iface->guiPart(); | 160 | plugin.guiPart = plugin.iface->guiPart(); |
161 | 161 | ||
162 | // package the whole thing into a qwidget so it can be shown and hidden | 162 | // package the whole thing into a qwidget so it can be shown and hidden |
163 | plugin.guiBox = new QWidget( this ); | 163 | plugin.guiBox = new QWidget( this ); |
164 | QHBoxLayout *boxLayout = new QHBoxLayout( plugin.guiBox ); | 164 | QHBoxLayout *boxLayout = new QHBoxLayout( plugin.guiBox ); |
165 | QPixmap plugPix; | 165 | QPixmap plugPix; |
166 | plugPix.convertFromImage( Resource::loadImage( plugin.guiPart->pixmapNameWidget() ).smoothScale( 18, 18 ), 0 ); | 166 | plugPix.convertFromImage( Resource::loadImage( plugin.guiPart->pixmapNameWidget() ).smoothScale( 18, 18 ), 0 ); |
167 | OClickableLabel* plugIcon = new OClickableLabel( plugin.guiBox ); | 167 | OClickableLabel* plugIcon = new OClickableLabel( plugin.guiBox ); |
168 | plugIcon->setPixmap( plugPix ); | 168 | plugIcon->setPixmap( plugPix ); |
169 | // a scrollview for each plugin | 169 | // a scrollview for each plugin |
170 | QScrollView* sv = new QScrollView( plugin.guiBox ); | 170 | QScrollView* sv = new QScrollView( plugin.guiBox ); |
171 | QWidget *plugWidget = plugin.guiPart->widget( sv->viewport() ); | 171 | QWidget *plugWidget = plugin.guiPart->widget( sv->viewport() ); |
172 | sv->setMinimumHeight( plugin.guiPart->minHeight() ); | 172 | sv->setMinimumHeight( plugin.guiPart->minHeight() ); |
173 | sv->setResizePolicy( QScrollView::AutoOneFit ); | 173 | sv->setResizePolicy( QScrollView::AutoOneFit ); |
174 | sv->setHScrollBarMode( QScrollView::AlwaysOff ); | 174 | sv->setHScrollBarMode( QScrollView::AlwaysOff ); |
175 | sv->setFrameShape( QFrame::NoFrame ); | 175 | sv->setFrameShape( QFrame::NoFrame ); |
176 | sv->addChild( plugWidget ); | 176 | sv->addChild( plugWidget ); |
177 | // make sure the icon is on the top alligned | 177 | // make sure the icon is on the top alligned |
178 | boxLayout->addWidget( plugIcon, 0, AlignTop ); | 178 | boxLayout->addWidget( plugIcon, 0, AlignTop ); |
179 | boxLayout->addWidget( sv, 0, AlignTop ); | 179 | boxLayout->addWidget( sv, 0, AlignTop ); |
180 | boxLayout->setStretchFactor( plugIcon, 1 ); | 180 | boxLayout->setStretchFactor( plugIcon, 1 ); |
181 | boxLayout->setStretchFactor( sv, 9 ); | 181 | boxLayout->setStretchFactor( sv, 9 ); |
182 | // "prebuffer" it in one more list, to get the sorting done | 182 | // "prebuffer" it in one more list, to get the sorting done |
183 | tempList.insert( plugin.name, plugin ); | 183 | tempList.insert( plugin.name, plugin ); |
184 | 184 | ||
185 | // on first start the list is off course empty | 185 | // on first start the list is off course empty |
186 | if ( m_allApplets.isEmpty() ) { | 186 | if ( m_allApplets.isEmpty() ) { |
187 | layout->addWidget( plugin.guiBox ); | 187 | layout->addWidget( plugin.guiBox ); |
188 | pluginList.append( plugin ); | 188 | pluginList.append( plugin ); |
189 | } | 189 | } |
190 | } else { | 190 | } else { |
191 | qDebug( "could not recognize %s", QString( path + "/" + *it ).latin1() ); | 191 | qDebug( "could not recognize %s", QString( path + "/" + *it ).latin1() ); |
192 | delete lib; | 192 | delete lib; |
193 | } | 193 | } |
194 | } | 194 | } |
195 | 195 | ||
196 | if ( !m_allApplets.isEmpty() ) { | 196 | if ( !m_allApplets.isEmpty() ) { |
197 | TodayPlugin tempPlugin; | 197 | TodayPlugin tempPlugin; |
198 | QStringList::Iterator stringit; | 198 | QStringList::Iterator stringit; |
199 | for( stringit = m_allApplets.begin(); stringit != m_allApplets.end(); ++stringit ) { | 199 | for( stringit = m_allApplets.begin(); stringit != m_allApplets.end(); ++stringit ) { |
200 | tempPlugin = ( tempList.find( *stringit ) ).data(); | 200 | tempPlugin = ( tempList.find( *stringit ) ).data(); |
201 | if ( !( (tempPlugin.name).isEmpty() ) ) { | 201 | if ( !( (tempPlugin.name).isEmpty() ) ) { |
202 | layout->addWidget( tempPlugin.guiBox ); | 202 | layout->addWidget( tempPlugin.guiBox ); |
203 | pluginList.append( tempPlugin ); | 203 | pluginList.append( tempPlugin ); |
204 | } | 204 | } |
205 | } | 205 | } |
206 | } | 206 | } |
207 | } | 207 | } |
208 | 208 | ||
209 | 209 | ||
210 | /** | 210 | /** |
211 | * Repaint method. Reread all fields. | 211 | * Repaint method. Reread all fields. |
212 | */ | 212 | */ |
213 | void Today::draw() { | 213 | void Today::draw() { |
214 | 214 | ||
215 | if ( pluginList.count() == 0 ) { | 215 | if ( pluginList.count() == 0 ) { |
216 | QLabel *noPlugins = new QLabel( this ); | 216 | QLabel *noPlugins = new QLabel( this ); |
217 | noPlugins->setText( tr( "No plugins found" ) ); | 217 | noPlugins->setText( tr( "No plugins found" ) ); |
218 | layout->addWidget( noPlugins ); | 218 | layout->addWidget( noPlugins ); |
219 | return; | 219 | return; |
220 | } | 220 | } |
221 | 221 | ||
222 | uint count = 0; | 222 | uint count = 0; |
223 | TodayPlugin plugin; | 223 | TodayPlugin plugin; |
224 | for ( uint i = 0; i < pluginList.count(); i++ ) { | 224 | for ( uint i = 0; i < pluginList.count(); i++ ) { |
225 | plugin = pluginList[i]; | 225 | plugin = pluginList[i]; |
226 | 226 | ||
227 | if ( plugin.active ) { | 227 | if ( plugin.active ) { |
228 | qDebug( plugin.name + " is ACTIVE " ); | 228 | // qDebug( plugin.name + " is ACTIVE " ); |
229 | plugin.guiBox->show(); | 229 | plugin.guiBox->show(); |
230 | } else { | 230 | } else { |
231 | qDebug( plugin.name + " is INACTIVE" ); | 231 | // qDebug( plugin.name + " is INACTIVE" ); |
232 | plugin.guiBox->hide(); | 232 | plugin.guiBox->hide(); |
233 | } | 233 | } |
234 | count++; | 234 | count++; |
235 | } | 235 | } |
236 | 236 | ||
237 | if ( count == 0 ) { | 237 | if ( count == 0 ) { |
238 | QLabel *noPluginsActive = new QLabel( this ); | 238 | QLabel *noPluginsActive = new QLabel( this ); |
239 | noPluginsActive->setText( tr( "No plugins activated" ) ); | 239 | noPluginsActive->setText( tr( "No plugins activated" ) ); |
240 | layout->addWidget( noPluginsActive ); | 240 | layout->addWidget( noPluginsActive ); |
241 | } | 241 | } |
242 | layout->addStretch(0); | 242 | layout->addStretch(0); |
243 | } | 243 | } |
244 | 244 | ||
245 | 245 | ||
246 | /** | 246 | /** |
247 | * The method for the configuration dialog. | 247 | * The method for the configuration dialog. |
248 | */ | 248 | */ |
249 | void Today::startConfig() { | 249 | void Today::startConfig() { |
250 | 250 | ||
251 | TodayConfig conf( this, "dialog", true ); | 251 | TodayConfig conf( this, "dialog", true ); |
252 | 252 | ||
253 | TodayPlugin plugin; | 253 | TodayPlugin plugin; |
254 | QList<ConfigWidget> configWidgetList; | 254 | QList<ConfigWidget> configWidgetList; |
255 | 255 | ||
256 | for ( int i = pluginList.count() - 1 ; i >= 0; i-- ) { | 256 | for ( int i = pluginList.count() - 1 ; i >= 0; i-- ) { |
257 | plugin = pluginList[i]; | 257 | plugin = pluginList[i]; |
258 | 258 | ||
259 | // load the config widgets in the tabs | 259 | // load the config widgets in the tabs |
260 | if ( plugin.guiPart->configWidget( this ) != 0l ) { | 260 | if ( plugin.guiPart->configWidget( this ) != 0l ) { |
261 | ConfigWidget* widget = plugin.guiPart->configWidget( conf.TabWidget3 ); | 261 | ConfigWidget* widget = plugin.guiPart->configWidget( conf.TabWidget3 ); |
262 | configWidgetList.append( widget ); | 262 | configWidgetList.append( widget ); |
263 | conf.TabWidget3->addTab( widget, plugin.guiPart->pixmapNameConfig() | 263 | conf.TabWidget3->addTab( widget, plugin.guiPart->pixmapNameConfig() |
264 | , plugin.guiPart->appName() ); | 264 | , plugin.guiPart->appName() ); |
265 | } | 265 | } |
266 | // set the order/activate tab | 266 | // set the order/activate tab |
267 | conf.pluginManagement( plugin.name, plugin.guiPart->pluginName(), | 267 | conf.pluginManagement( plugin.name, plugin.guiPart->pluginName(), |
268 | Resource::loadPixmap( plugin.guiPart->pixmapNameWidget() ) ); | 268 | Resource::loadPixmap( plugin.guiPart->pixmapNameWidget() ) ); |
269 | } | 269 | } |
270 | 270 | ||
271 | if ( conf.exec() == QDialog::Accepted ) { | 271 | if ( conf.exec() == QDialog::Accepted ) { |
272 | conf.writeConfig(); | 272 | conf.writeConfig(); |
273 | ConfigWidget *confWidget; | 273 | ConfigWidget *confWidget; |
274 | for ( confWidget = configWidgetList.first(); confWidget != 0; | 274 | for ( confWidget = configWidgetList.first(); confWidget != 0; |
275 | confWidget = configWidgetList.next() ) { | 275 | confWidget = configWidgetList.next() ) { |
276 | confWidget->writeConfig(); | 276 | confWidget->writeConfig(); |
277 | } | 277 | } |
278 | refresh(); | 278 | refresh(); |
279 | } | 279 | } |
280 | } | 280 | } |
281 | 281 | ||
282 | 282 | ||
283 | /** | 283 | /** |
284 | * Refresh for the view. Reload all applets | 284 | * Refresh for the view. Reload all applets |
285 | * | 285 | * |
286 | */ | 286 | */ |
287 | void Today::refresh() { | 287 | void Today::refresh() { |
288 | init(); | 288 | init(); |
289 | 289 | ||
290 | // set the date in top label | 290 | // set the date in top label |
291 | QDate date = QDate::currentDate(); | 291 | QDate date = QDate::currentDate(); |
292 | QString time = ( tr( date.toString() ) ); | 292 | QString time = ( tr( date.toString() ) ); |
293 | 293 | ||
294 | DateLabel->setText( QString( "<font color=#FFFFFF>" + time + "</font>" ) ); | 294 | DateLabel->setText( QString( "<font color=#FFFFFF>" + time + "</font>" ) ); |
295 | 295 | ||
296 | if ( layout ) { | 296 | if ( layout ) { |
297 | delete layout; | 297 | delete layout; |
298 | } | 298 | } |
299 | layout = new QVBoxLayout( this ); | 299 | layout = new QVBoxLayout( this ); |
300 | layout->addWidget( Frame ); | 300 | layout->addWidget( Frame ); |
301 | layout->addWidget( OwnerField ); | 301 | layout->addWidget( OwnerField ); |
302 | 302 | ||
303 | loadPlugins(); | 303 | loadPlugins(); |
304 | draw(); | 304 | draw(); |
305 | } | 305 | } |
306 | 306 | ||
307 | void Today::startAddressbook() { | 307 | void Today::startAddressbook() { |
308 | QCopEnvelope e( "QPE/System", "execute(QString)" ); | 308 | QCopEnvelope e( "QPE/System", "execute(QString)" ); |
309 | e << QString( "addressbook" ); | 309 | e << QString( "addressbook" ); |
310 | } | 310 | } |
311 | 311 | ||
312 | 312 | ||
313 | /** | 313 | /** |
314 | * launch addressbook (personal card) | 314 | * launch addressbook (personal card) |
315 | */ | 315 | */ |
316 | void Today::editCard() { | 316 | void Today::editCard() { |
317 | startAddressbook(); | 317 | startAddressbook(); |
318 | while( !QCopChannel::isRegistered( "QPE/Addressbook" ) ) { | 318 | while( !QCopChannel::isRegistered( "QPE/Addressbook" ) ) { |
319 | qApp->processEvents(); | 319 | qApp->processEvents(); |
320 | } | 320 | } |
321 | QCopEnvelope v( "QPE/Addressbook", "editPersonalAndClose()" ); | 321 | QCopEnvelope v( "QPE/Addressbook", "editPersonalAndClose()" ); |
322 | } | 322 | } |
323 | 323 | ||
324 | Today::~Today() { | 324 | Today::~Today() { |
325 | } | 325 | } |
326 | 326 | ||
diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp index 800ca5d..1424b95 100644 --- a/core/pim/today/todaybase.cpp +++ b/core/pim/today/todaybase.cpp | |||
@@ -1,105 +1,103 @@ | |||
1 | /* | 1 | /* |
2 | * todaybase.cpp | 2 | * todaybase.cpp |
3 | * | 3 | * |
4 | * copyright : (c) 2002 by Maximilian Reiß | 4 | * copyright : (c) 2002 by Maximilian Reiß |
5 | * email : harlekin@handhelds.org | 5 | * email : harlekin@handhelds.org |
6 | * | 6 | * |
7 | */ | 7 | */ |
8 | /*************************************************************************** | 8 | /*************************************************************************** |
9 | * * | 9 | * * |
10 | * This program is free software; you can redistribute it and/or modify * | 10 | * This program is free software; you can redistribute it and/or modify * |
11 | * it under the terms of the GNU General Public License as published by * | 11 | * it under the terms of the GNU General Public License as published by * |
12 | * the Free Software Foundation; either version 2 of the License, or * | 12 | * the Free Software Foundation; either version 2 of the License, or * |
13 | * (at your option) any later version. * | 13 | * (at your option) any later version. * |
14 | * * | 14 | * * |
15 | ***************************************************************************/ | 15 | ***************************************************************************/ |
16 | 16 | ||
17 | #include "todaybase.h" | 17 | #include "todaybase.h" |
18 | 18 | ||
19 | #include <qframe.h> | 19 | #include <qframe.h> |
20 | #include <qlabel.h> | 20 | #include <qlabel.h> |
21 | #include <qimage.h> | 21 | #include <qimage.h> |
22 | #include <qpixmap.h> | 22 | #include <qpixmap.h> |
23 | #include <qapplication.h> | 23 | #include <qapplication.h> |
24 | 24 | ||
25 | #include <qpe/resource.h> | 25 | #include <qpe/resource.h> |
26 | 26 | ||
27 | 27 | ||
28 | TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl ) | 28 | TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl ) |
29 | : QWidget( parent, name, fl ) { | 29 | : QWidget( parent, name, fl ) { |
30 | 30 | ||
31 | QPixmap logo = Resource::loadPixmap( "today/today_logo"); // logo | 31 | QPixmap logo = Resource::loadPixmap( "today/today_logo"); // logo |
32 | QPixmap opiezilla = Resource::loadPixmap("today/opiezilla" ); //the opiezilla | 32 | QPixmap opiezilla = Resource::loadPixmap("today/opiezilla" ); //the opiezilla |
33 | QPixmap config = Resource::loadPixmap( "today/config" ); // config icon | 33 | QPixmap config = Resource::loadPixmap( "today/config" ); // config icon |
34 | 34 | ||
35 | layout = new QVBoxLayout( this ); | 35 | layout = new QVBoxLayout( this ); |
36 | 36 | ||
37 | QVBoxLayout *mainLayout = new QVBoxLayout( this ); | ||
38 | |||
39 | QPalette pal = this->palette(); | 37 | QPalette pal = this->palette(); |
40 | QColor col = pal.color( QPalette::Active, QColorGroup::Background ); | 38 | QColor col = pal.color( QPalette::Active, QColorGroup::Background ); |
41 | pal.setColor( QPalette::Active, QColorGroup::Button, col ); | 39 | pal.setColor( QPalette::Active, QColorGroup::Button, col ); |
42 | pal.setColor( QPalette::Inactive, QColorGroup::Button, col ); | 40 | pal.setColor( QPalette::Inactive, QColorGroup::Button, col ); |
43 | pal.setColor( QPalette::Normal, QColorGroup::Button, col ); | 41 | pal.setColor( QPalette::Normal, QColorGroup::Button, col ); |
44 | pal.setColor( QPalette::Disabled, QColorGroup::Button, col ); | 42 | pal.setColor( QPalette::Disabled, QColorGroup::Button, col ); |
45 | this->setPalette( pal ); | 43 | this->setPalette( pal ); |
46 | 44 | ||
47 | // --- logo Section --- | 45 | // --- logo Section --- |
48 | QPalette pal2; | 46 | QPalette pal2; |
49 | QColorGroup cg; | 47 | QColorGroup cg; |
50 | cg.setColor( QColorGroup::Text, white ); | 48 | cg.setColor( QColorGroup::Text, white ); |
51 | cg.setBrush( QColorGroup::Background, QBrush( QColor( 238, 238, 230 ), logo ) ); | 49 | cg.setBrush( QColorGroup::Background, QBrush( QColor( 238, 238, 230 ), logo ) ); |
52 | pal2.setActive( cg ); | 50 | pal2.setActive( cg ); |
53 | // today logo | 51 | // today logo |
54 | Frame = new QLabel( this, "Frame" ); | 52 | Frame = new QLabel( this, "Frame" ); |
55 | Frame->setPalette( pal2 ); | 53 | Frame->setPalette( pal2 ); |
56 | Frame->setFrameShape( QFrame::StyledPanel ); | 54 | Frame->setFrameShape( QFrame::StyledPanel ); |
57 | Frame->setFrameShadow( QFrame::Raised ); | 55 | Frame->setFrameShadow( QFrame::Raised ); |
58 | Frame->setLineWidth( 0 ); | 56 | Frame->setLineWidth( 0 ); |
59 | Frame->setMaximumHeight( 50 ); | 57 | Frame->setMaximumHeight( 50 ); |
60 | Frame->setMinimumHeight( 50 ); | 58 | Frame->setMinimumHeight( 50 ); |
61 | 59 | ||
62 | // Today text | 60 | // Today text |
63 | QLabel* TodayLabel = new QLabel( Frame, "TodayText" ); | 61 | QLabel* TodayLabel = new QLabel( Frame, "TodayText" ); |
64 | TodayLabel->setGeometry( QRect( 10, 0, 168, 40 ) ); | 62 | TodayLabel->setGeometry( QRect( 10, 0, 168, 40 ) ); |
65 | QFont TodayLabel_font( TodayLabel->font() ); | 63 | QFont TodayLabel_font( TodayLabel->font() ); |
66 | TodayLabel_font.setBold( TRUE ); | 64 | TodayLabel_font.setBold( TRUE ); |
67 | TodayLabel_font.setPointSize( 40 ); | 65 | TodayLabel_font.setPointSize( 40 ); |
68 | TodayLabel->setFont( TodayLabel_font ); | 66 | TodayLabel->setFont( TodayLabel_font ); |
69 | TodayLabel->setBackgroundOrigin( QLabel::ParentOrigin ); | 67 | TodayLabel->setBackgroundOrigin( QLabel::ParentOrigin ); |
70 | TodayLabel->setText( "<font color=#FFFFFF>" + tr("Today²") +"</font>" ); | 68 | TodayLabel->setText( "<font color=#FFFFFF>" + tr("Today²") +"</font>" ); |
71 | 69 | ||
72 | // date | 70 | // date |
73 | DateLabel = new QLabel( Frame, "TextLabel1" ); | 71 | DateLabel = new QLabel( Frame, "TextLabel1" ); |
74 | DateLabel->setGeometry( QRect( 10, 35, 168, 12 ) ); | 72 | DateLabel->setGeometry( QRect( 10, 35, 168, 12 ) ); |
75 | QFont DateLabel_font( DateLabel->font() ); | 73 | QFont DateLabel_font( DateLabel->font() ); |
76 | DateLabel_font.setBold( TRUE ); | 74 | DateLabel_font.setBold( TRUE ); |
77 | DateLabel->setFont( DateLabel_font ); | 75 | DateLabel->setFont( DateLabel_font ); |
78 | DateLabel->setBackgroundOrigin( QLabel::ParentOrigin ); | 76 | DateLabel->setBackgroundOrigin( QLabel::ParentOrigin ); |
79 | DateLabel->setTextFormat( RichText ); | 77 | DateLabel->setTextFormat( RichText ); |
80 | 78 | ||
81 | // Opiezilla | 79 | // Opiezilla |
82 | QLabel* Opiezilla = new QLabel( Frame, "OpieZilla" ); | 80 | QLabel* Opiezilla = new QLabel( Frame, "OpieZilla" ); |
83 | Opiezilla->setPixmap( opiezilla ); | 81 | Opiezilla->setPixmap( opiezilla ); |
84 | Opiezilla->setGeometry( QApplication::desktop()->width()-50 ,1, 45, 47 ); | 82 | Opiezilla->setGeometry( QApplication::desktop()->width()-50 ,1, 45, 47 ); |
85 | Opiezilla->setBackgroundOrigin( QLabel::ParentOrigin ); | 83 | Opiezilla->setBackgroundOrigin( QLabel::ParentOrigin ); |
86 | 84 | ||
87 | // Ownerfield | 85 | // Ownerfield |
88 | OwnerField = new OClickableLabel( this , "Owner" ); | 86 | OwnerField = new OClickableLabel( this , "Owner" ); |
89 | OwnerField->setGeometry( QRect( 0, 0, this->width(), 12 ) ); | 87 | OwnerField->setGeometry( QRect( 0, 0, this->width(), 12 ) ); |
90 | OwnerField->setAlignment( int (QLabel::AlignTop | QLabel::AlignLeft ) ); | 88 | OwnerField->setAlignment( int (QLabel::AlignTop | QLabel::AlignLeft ) ); |
91 | OwnerField->setMaximumHeight(12); | 89 | OwnerField->setMaximumHeight(12); |
92 | 90 | ||
93 | // config | 91 | // config |
94 | ConfigButton = new OClickableLabel ( Frame, "PushButton1" ); | 92 | ConfigButton = new OClickableLabel ( Frame, "PushButton1" ); |
95 | ConfigButton->setGeometry( QRect( QApplication::desktop()->width()-80, 30, 25, 21 ) ); | 93 | ConfigButton->setGeometry( QRect( QApplication::desktop()->width()-80, 30, 25, 21 ) ); |
96 | ConfigButton->setPixmap( config ); | 94 | ConfigButton->setPixmap( config ); |
97 | ConfigButton->setBackgroundOrigin( QLabel::ParentOrigin ); | 95 | ConfigButton->setBackgroundOrigin( QLabel::ParentOrigin ); |
98 | } | 96 | } |
99 | 97 | ||
100 | /** | 98 | /** |
101 | * D' tor | 99 | * D' tor |
102 | */ | 100 | */ |
103 | TodayBase::~TodayBase() { | 101 | TodayBase::~TodayBase() { |
104 | } | 102 | } |
105 | 103 | ||