summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/today.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index 3ddb88d..0a6269e 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -187,13 +187,13 @@ void Today::loadPlugins() {
187 } 187 }
188 pluginList.clear(); 188 pluginList.clear();
189 } 189 }
190 190
191 QString path = QPEApplication::qpeDir() + "/plugins/today"; 191 QString path = QPEApplication::qpeDir() + "/plugins/today";
192#ifdef Q_OS_MACX 192#ifdef Q_OS_MACX
193 Opie::Core::owarn << "Searching for Plugins in: " << path << oendl; 193 owarn << "Searching for Plugins in: " << path << oendl;
194 QDir dir( path, "lib*.dylib" ); 194 QDir dir( path, "lib*.dylib" );
195#else 195#else
196 QDir dir( path, "lib*.so" ); 196 QDir dir( path, "lib*.so" );
197#endif 197#endif
198 198
199 QStringList list = dir.entryList(); 199 QStringList list = dir.entryList();
@@ -202,16 +202,16 @@ void Today::loadPlugins() {
202 // QMap<QString, TodayPlugin> tempList; 202 // QMap<QString, TodayPlugin> tempList;
203 203
204 for ( it = list.begin(); it != list.end(); ++it ) { 204 for ( it = list.begin(); it != list.end(); ++it ) {
205 QInterfacePtr<TodayPluginInterface> iface; 205 QInterfacePtr<TodayPluginInterface> iface;
206 QLibrary *lib = new QLibrary( path + "/" + *it ); 206 QLibrary *lib = new QLibrary( path + "/" + *it );
207 207
208 Opie::Core::odebug << "querying: " << path + "/" + *it << oendl; 208 odebug << "querying: " << path + "/" + *it << oendl;
209 if ( lib->queryInterface( IID_TodayPluginInterface, (QUnknownInterface**)&iface ) == QS_OK ) { 209 if ( lib->queryInterface( IID_TodayPluginInterface, (QUnknownInterface**)&iface ) == QS_OK ) {
210 Opie::Core::odebug << "accepted: " << path + "/" + *it << oendl; 210 odebug << "accepted: " << path + "/" + *it << oendl;
211 Opie::Core::odebug << *it << oendl; 211 odebug << *it << oendl;
212 212
213 TodayPlugin plugin; 213 TodayPlugin plugin;
214 plugin.library = lib; 214 plugin.library = lib;
215 plugin.iface = iface; 215 plugin.iface = iface;
216 plugin.name = QString(*it); 216 plugin.name = QString(*it);
217 217
@@ -219,13 +219,13 @@ void Today::loadPlugins() {
219 219
220 QString lang; 220 QString lang;
221 Config config("locale"); 221 Config config("locale");
222 config.setGroup("Language"); 222 config.setGroup("Language");
223 lang = config.readEntry( "Language", "en" ); 223 lang = config.readEntry( "Language", "en" );
224 224
225 Opie::Core::odebug << "Languages: " << lang << oendl; 225 odebug << "Languages: " << lang << oendl;
226 QTranslator * trans = new QTranslator( qApp ); 226 QTranslator * trans = new QTranslator( qApp );
227 QString tfn = QPEApplication::qpeDir()+"/i18n/" + lang + "/" + type + ".qm"; 227 QString tfn = QPEApplication::qpeDir()+"/i18n/" + lang + "/" + type + ".qm";
228 if ( trans->load( tfn ) ) { 228 if ( trans->load( tfn ) ) {
229 qApp->installTranslator( trans ); 229 qApp->installTranslator( trans );
230 } else { 230 } else {
231 delete trans; 231 delete trans;
@@ -270,13 +270,13 @@ void Today::loadPlugins() {
270 270
271 // if plugin is not yet in the list, add it to the layout too 271 // if plugin is not yet in the list, add it to the layout too
272 else if ( !m_allApplets.contains( plugin.name ) ) { 272 else if ( !m_allApplets.contains( plugin.name ) ) {
273 pluginList.append( plugin ); 273 pluginList.append( plugin );
274 } 274 }
275 } else { 275 } else {
276 Opie::Core::odebug << "could not recognize " << path + "/" + *it << oendl; 276 odebug << "could not recognize " << path + "/" + *it << oendl;
277 delete lib; 277 delete lib;
278 } 278 }
279 279
280 } 280 }
281 281
282 282
@@ -314,16 +314,16 @@ void Today::draw() {
314 uint count = 0; 314 uint count = 0;
315 TodayPlugin plugin; 315 TodayPlugin plugin;
316 for ( uint i = 0; i < pluginList.count(); i++ ) { 316 for ( uint i = 0; i < pluginList.count(); i++ ) {
317 plugin = pluginList[i]; 317 plugin = pluginList[i];
318 318
319 if ( plugin.active ) { 319 if ( plugin.active ) {
320 //Opie::Core::odebug << plugin.name << " is ACTIVE " << oendl; 320 //odebug << plugin.name << " is ACTIVE " << oendl;
321 plugin.guiBox->show(); 321 plugin.guiBox->show();
322 } else { 322 } else {
323 //Opie::Core::odebug << plugin.name << " is INACTIVE " << oendl; 323 //odebug << plugin.name << " is INACTIVE " << oendl;
324 plugin.guiBox->hide(); 324 plugin.guiBox->hide();
325 } 325 }
326 count++; 326 count++;
327 } 327 }
328 328
329 if ( count == 0 ) { 329 if ( count == 0 ) {
@@ -394,13 +394,13 @@ void Today::reinitialize() {
394 394
395 /* reinitialize all plugins */ 395 /* reinitialize all plugins */
396 QValueList<TodayPlugin>::Iterator it; 396 QValueList<TodayPlugin>::Iterator it;
397 for ( it = pluginList.begin(); it != pluginList.end(); ++it ) { 397 for ( it = pluginList.begin(); it != pluginList.end(); ++it ) {
398 if ( !(*it).excludeRefresh ) { 398 if ( !(*it).excludeRefresh ) {
399 (*it).guiPart->reinitialize(); 399 (*it).guiPart->reinitialize();
400 Opie::Core::odebug << "reinit" << oendl; 400 odebug << "reinit" << oendl;
401 } 401 }
402 402
403 /* check if plugins is still to be shown */ 403 /* check if plugins is still to be shown */
404 if ( m_excludeApplets.grep( (*it).name ).isEmpty() ) { 404 if ( m_excludeApplets.grep( (*it).name ).isEmpty() ) {
405 (*it).active = true; 405 (*it).active = true;
406 } else { 406 } else {
@@ -448,13 +448,13 @@ void Today::reinitialize() {
448void Today::refresh() { 448void Today::refresh() {
449 449
450 QValueList<TodayPlugin>::Iterator it; 450 QValueList<TodayPlugin>::Iterator it;
451 for ( it = pluginList.begin(); it != pluginList.end(); ++it ) { 451 for ( it = pluginList.begin(); it != pluginList.end(); ++it ) {
452 if ( !(*it).excludeRefresh ) { 452 if ( !(*it).excludeRefresh ) {
453 (*it).guiPart->refresh(); 453 (*it).guiPart->refresh();
454 Opie::Core::odebug << "refresh" << oendl; 454 odebug << "refresh" << oendl;
455 } 455 }
456 } 456 }
457 457
458 DateLabel->setText( QString( "<font color=#FFFFFF>" + TimeString::longDateString( QDate::currentDate() ) + "</font>" ) ); 458 DateLabel->setText( QString( "<font color=#FFFFFF>" + TimeString::longDateString( QDate::currentDate() ) + "</font>" ) );
459 459
460 updateGeometry(); 460 updateGeometry();