From b52e2e46ec535a5307276b8fdf1e578aa5d29283 Mon Sep 17 00:00:00 2001 From: zecke Date: Sun, 12 Sep 2004 20:31:20 +0000 Subject: -Only create configWidgets once per config dialog, properly delete them -Delete the Widgets before we remove the plugin from our address space some random clean ups --- (limited to 'core/pim/today/today.cpp') diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index a8c8651..be7cbce 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp @@ -28,6 +28,7 @@ #include #include #include +#include using namespace Opie::Ui; using Opie::Core::OPluginItem; @@ -54,14 +55,12 @@ Today::Today( QWidget* parent, const char* name, WFlags fl ) QObject::connect( (QObject*)ConfigButton, SIGNAL( clicked() ), this, SLOT( startConfig() ) ); QObject::connect( (QObject*)OwnerField, SIGNAL( clicked() ), this, SLOT( editCard() ) ); - #if defined(Q_WS_QWS) - #if !defined(QT_NO_COP) +#if !defined(QT_NO_COP) QCopChannel *todayChannel = new QCopChannel( "QPE/Today" , this ); connect ( todayChannel, SIGNAL( received(const QCString&,const QByteArray&) ), this, SLOT ( channelReceived(const QCString&,const QByteArray&) ) ); - #endif - #endif +#endif setOwnerField(); m_big_box = 0L; @@ -84,7 +83,6 @@ Today::Today( QWidget* parent, const char* name, WFlags fl ) init(); loadPlugins(); initialize(); - QPEApplication::showWidget( this ); } /** @@ -179,11 +177,24 @@ void Today::loadPlugins() { m_pluginLoader = new OPluginLoader( "today", true ); m_pluginLoader->setAutoDelete( true ); - OPluginItem::List lst = m_pluginLoader->allAvailable( true ); - m_manager = new OPluginManager( m_pluginLoader ); m_manager->load(); + /* + * check if loading of Plugins crashed + */ + if( m_pluginLoader->isInSafeMode() ) { + QMessageBox::information(this, tr("Today Error"), + tr("The plugin '%1' caused Today to crash." + " It could be that the plugin is not properly" + " installed.
Today tries to continue loading" + " plugins.
") + .arg( m_manager->crashedPlugin().name())); + } + + OPluginItem::List lst = m_pluginLoader->filtered( true ); + + for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) { TodayPluginInterface* iface = m_pluginLoader->load( *it, IID_TodayPluginInterface ); @@ -233,7 +244,7 @@ void Today::startConfig() { TodayConfig conf( this, "dialog", true ); conf.setUpPlugins( m_manager, m_pluginLoader ); - if ( conf.exec() == QDialog::Accepted ) { + if ( QPEApplication::execDialog(&conf) == QDialog::Accepted ) { conf.writeConfig(); initialize(); } else { @@ -344,11 +355,10 @@ void Today::editCard() { Today::~Today() { - if (m_pluginLoader) { - delete m_pluginLoader; - } - if (m_manager) { - delete m_manager; - } + for(QMap::Iterator it = pluginList.begin(); it != pluginList.end(); ++it ) + delete it.data().guiBox; + + delete m_pluginLoader; + delete m_manager; } -- cgit v0.9.0.2