-rw-r--r-- | core/pim/today/plugins/datebook/datebookplugin.cpp | 2 | ||||
-rw-r--r-- | core/pim/today/plugins/todolist/todoplugin.cpp | 2 | ||||
-rw-r--r-- | core/pim/today/today.cpp | 172 | ||||
-rw-r--r-- | core/pim/today/today.h | 8 | ||||
-rw-r--r-- | core/pim/today/todayconfig.cpp | 7 |
5 files changed, 76 insertions, 115 deletions
diff --git a/core/pim/today/plugins/datebook/datebookplugin.cpp b/core/pim/today/plugins/datebook/datebookplugin.cpp index 892a0ad..bef284e 100644 --- a/core/pim/today/plugins/datebook/datebookplugin.cpp +++ b/core/pim/today/plugins/datebook/datebookplugin.cpp | |||
@@ -37,25 +37,25 @@ QString DatebookPlugin::pixmapNameWidget() const { | |||
37 | } | 37 | } |
38 | 38 | ||
39 | QWidget* DatebookPlugin::widget( QWidget* wid ) { | 39 | QWidget* DatebookPlugin::widget( QWidget* wid ) { |
40 | m_widget = new DatebookPluginWidget( wid, "Datebook" ); | 40 | m_widget = new DatebookPluginWidget( wid, "Datebook" ); |
41 | return m_widget; | 41 | return m_widget; |
42 | } | 42 | } |
43 | 43 | ||
44 | QString DatebookPlugin::pixmapNameConfig() const { | 44 | QString DatebookPlugin::pixmapNameConfig() const { |
45 | return "datebook/DateBook"; | 45 | return "datebook/DateBook"; |
46 | } | 46 | } |
47 | 47 | ||
48 | TodayConfigWidget* DatebookPlugin::configWidget( QWidget* wid ) { | 48 | TodayConfigWidget* DatebookPlugin::configWidget( QWidget* wid ) { |
49 | return new DatebookPluginConfig( wid , "Datebook" ); | 49 | return new DatebookPluginConfig( wid , "Datebook Config" ); |
50 | } | 50 | } |
51 | 51 | ||
52 | QString DatebookPlugin::appName() const { | 52 | QString DatebookPlugin::appName() const { |
53 | return "datebook"; | 53 | return "datebook"; |
54 | } | 54 | } |
55 | 55 | ||
56 | bool DatebookPlugin::excludeFromRefresh() const { | 56 | bool DatebookPlugin::excludeFromRefresh() const { |
57 | return false; | 57 | return false; |
58 | } | 58 | } |
59 | 59 | ||
60 | void DatebookPlugin::refresh() { | 60 | void DatebookPlugin::refresh() { |
61 | if ( m_widget ) { | 61 | if ( m_widget ) { |
diff --git a/core/pim/today/plugins/todolist/todoplugin.cpp b/core/pim/today/plugins/todolist/todoplugin.cpp index 6cfcbe0..4be5673 100644 --- a/core/pim/today/plugins/todolist/todoplugin.cpp +++ b/core/pim/today/plugins/todolist/todoplugin.cpp | |||
@@ -38,25 +38,25 @@ QString TodolistPlugin::pixmapNameWidget() const { | |||
38 | } | 38 | } |
39 | 39 | ||
40 | QWidget* TodolistPlugin::widget( QWidget *wid ) { | 40 | QWidget* TodolistPlugin::widget( QWidget *wid ) { |
41 | m_widget = new TodolistPluginWidget( wid, "Todolist" ); | 41 | m_widget = new TodolistPluginWidget( wid, "Todolist" ); |
42 | return m_widget; | 42 | return m_widget; |
43 | } | 43 | } |
44 | 44 | ||
45 | QString TodolistPlugin::pixmapNameConfig() const { | 45 | QString TodolistPlugin::pixmapNameConfig() const { |
46 | return "todo/TodoList"; | 46 | return "todo/TodoList"; |
47 | } | 47 | } |
48 | 48 | ||
49 | TodayConfigWidget* TodolistPlugin::configWidget( QWidget* wid ) { | 49 | TodayConfigWidget* TodolistPlugin::configWidget( QWidget* wid ) { |
50 | return new TodolistPluginConfig( wid , "Todolist" ); | 50 | return new TodolistPluginConfig( wid , "Todolist Config" ); |
51 | } | 51 | } |
52 | 52 | ||
53 | QString TodolistPlugin::appName() const { | 53 | QString TodolistPlugin::appName() const { |
54 | return "todolist"; | 54 | return "todolist"; |
55 | } | 55 | } |
56 | 56 | ||
57 | 57 | ||
58 | bool TodolistPlugin::excludeFromRefresh() const { | 58 | bool TodolistPlugin::excludeFromRefresh() const { |
59 | return false; | 59 | return false; |
60 | } | 60 | } |
61 | 61 | ||
62 | void TodolistPlugin::refresh() { | 62 | void TodolistPlugin::refresh() { |
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index be7cbce..3e895a4 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp | |||
@@ -41,57 +41,63 @@ struct TodayPlugin { | |||
41 | TodayPlugin() : iface( 0 ), guiPart( 0 ), guiBox( 0 ) {} | 41 | TodayPlugin() : iface( 0 ), guiPart( 0 ), guiBox( 0 ) {} |
42 | QInterfacePtr<TodayPluginInterface> iface; | 42 | QInterfacePtr<TodayPluginInterface> iface; |
43 | TodayPluginObject *guiPart; | 43 | TodayPluginObject *guiPart; |
44 | OPluginItem oplugin; | 44 | OPluginItem oplugin; |
45 | QWidget *guiBox; | 45 | QWidget *guiBox; |
46 | QString name; | 46 | QString name; |
47 | bool excludeRefresh; | 47 | bool excludeRefresh; |
48 | }; | 48 | }; |
49 | 49 | ||
50 | static QMap<QString, TodayPlugin> pluginList; | 50 | static QMap<QString, TodayPlugin> pluginList; |
51 | 51 | ||
52 | Today::Today( QWidget* parent, const char* name, WFlags fl ) | 52 | Today::Today( QWidget* parent, const char* name, WFlags fl ) |
53 | : TodayBase( parent, name, fl ) { | 53 | : TodayBase( parent, name, fl | WStyle_ContextHelp) { |
54 | 54 | ||
55 | QObject::connect( (QObject*)ConfigButton, SIGNAL( clicked() ), this, SLOT( startConfig() ) ); | 55 | setCaption( tr("Today") ); |
56 | QObject::connect( (QObject*)OwnerField, SIGNAL( clicked() ), this, SLOT( editCard() ) ); | 56 | connect( (QObject*)ConfigButton, SIGNAL( clicked() ), this, SLOT( startConfig() ) ); |
57 | connect( (QObject*)OwnerField, SIGNAL( clicked() ), this, SLOT( editCard() ) ); | ||
57 | 58 | ||
58 | #if !defined(QT_NO_COP) | 59 | #if !defined(QT_NO_COP) |
59 | 60 | ||
60 | QCopChannel *todayChannel = new QCopChannel( "QPE/Today" , this ); | 61 | QCopChannel *todayChannel = new QCopChannel( "QPE/Today" , this ); |
61 | connect ( todayChannel, SIGNAL( received(const QCString&,const QByteArray&) ), | 62 | connect ( todayChannel, SIGNAL( received(const QCString&,const QByteArray&) ), |
62 | this, SLOT ( channelReceived(const QCString&,const QByteArray&) ) ); | 63 | this, SLOT ( channelReceived(const QCString&,const QByteArray&) ) ); |
63 | #endif | 64 | #endif |
64 | 65 | ||
65 | setOwnerField(); | 66 | setOwnerField(); |
66 | m_big_box = 0L; | 67 | m_big_box = 0l; |
68 | m_bblayout = 0l; | ||
67 | 69 | ||
68 | layout = new QVBoxLayout( this ); | 70 | layout = new QVBoxLayout( this ); |
69 | layout->addWidget( Frame ); | 71 | layout->addWidget( Frame ); |
70 | layout->addWidget( OwnerField ); | 72 | layout->addWidget( OwnerField ); |
71 | 73 | ||
74 | |||
75 | m_informationLabel = new QLabel( tr("No plugins activated"), this ); | ||
76 | layout->addWidget( m_informationLabel ); | ||
77 | |||
72 | m_sv = new QScrollView( this ); | 78 | m_sv = new QScrollView( this ); |
73 | m_sv->setResizePolicy( QScrollView::AutoOneFit ); | 79 | m_sv->setResizePolicy( QScrollView::AutoOneFit ); |
74 | m_sv->setHScrollBarMode( QScrollView::AlwaysOff ); | 80 | m_sv->setHScrollBarMode( QScrollView::AlwaysOff ); |
75 | m_sv->setFrameShape( QFrame::NoFrame ); | 81 | m_sv->setFrameShape( QFrame::NoFrame ); |
76 | 82 | ||
77 | layout->addWidget( m_sv ); | 83 | layout->addWidget( m_sv ); |
78 | layout->setStretchFactor( m_sv,4 ); | 84 | layout->setStretchFactor( m_sv,4 ); |
79 | 85 | ||
80 | m_refreshTimer = new QTimer( this ); | 86 | m_refreshTimer = new QTimer( this ); |
81 | connect( m_refreshTimer, SIGNAL( timeout() ), this, SLOT( refresh() ) ); | 87 | connect( m_refreshTimer, SIGNAL( timeout() ), this, SLOT( refresh() ) ); |
82 | 88 | ||
83 | init(); | ||
84 | loadPlugins(); | 89 | loadPlugins(); |
85 | initialize(); | 90 | loadShellContent(); |
91 | loadPluginWidgets(); | ||
86 | } | 92 | } |
87 | 93 | ||
88 | /** | 94 | /** |
89 | * Qcop receive method. | 95 | * Qcop receive method. |
90 | */ | 96 | */ |
91 | void Today::channelReceived( const QCString &msg, const QByteArray & data ) { | 97 | void Today::channelReceived( const QCString &msg, const QByteArray & data ) { |
92 | QDataStream stream( data, IO_ReadOnly ); | 98 | QDataStream stream( data, IO_ReadOnly ); |
93 | if ( msg == "message(QString)" ) { | 99 | if ( msg == "message(QString)" ) { |
94 | QString message; | 100 | QString message; |
95 | stream >> message; | 101 | stream >> message; |
96 | setOwnerField( message ); | 102 | setOwnerField( message ); |
97 | } | 103 | } |
@@ -124,85 +130,87 @@ void Today::setOwnerField() { | |||
124 | 130 | ||
125 | /** | 131 | /** |
126 | * Set the owner field with a given QString, for example per qcop. | 132 | * Set the owner field with a given QString, for example per qcop. |
127 | */ | 133 | */ |
128 | void Today::setOwnerField( QString &message ) { | 134 | void Today::setOwnerField( QString &message ) { |
129 | if ( !message.isEmpty() ) { | 135 | if ( !message.isEmpty() ) { |
130 | OwnerField->setText( "<b>" + message + "</b>" ); | 136 | OwnerField->setText( "<b>" + message + "</b>" ); |
131 | } | 137 | } |
132 | } | 138 | } |
133 | 139 | ||
134 | 140 | ||
135 | /** | 141 | /** |
136 | * Init stuff needed for today. Reads the config file. | 142 | * Load the plugins |
137 | */ | 143 | */ |
138 | void Today::init() { | 144 | void Today::loadPlugins() { |
139 | // read config | 145 | m_pluginLoader = new OPluginLoader( "today", true ); |
140 | OConfig cfg( "today" ); | 146 | m_pluginLoader->setAutoDelete( true ); |
147 | |||
148 | m_manager = new OPluginManager( m_pluginLoader ); | ||
149 | m_manager->load(); | ||
150 | } | ||
151 | |||
152 | void Today::loadShellContent() { | ||
153 | Config cfg( "today" ); | ||
141 | cfg.setGroup( "Plugins" ); | 154 | cfg.setGroup( "Plugins" ); |
142 | // m_excludeApplets = cfg.readListEntry( "ExcludeApplets", ',' ); | 155 | |
143 | // m_allApplets = cfg.readListEntry( "AllApplets", ',' ); | ||
144 | 156 | ||
145 | cfg.setGroup( "General" ); | 157 | cfg.setGroup( "General" ); |
146 | m_iconSize = cfg.readNumEntry( "IconSize", 18 ); | 158 | m_iconSize = cfg.readNumEntry( "IconSize", 18 ); |
147 | m_hideBanner = cfg.readNumEntry( "HideBanner", 0 ); | 159 | m_hideBanner = cfg.readNumEntry( "HideBanner", 0 ); |
148 | setRefreshTimer( cfg.readNumEntry( "checkinterval", 15000 ) ); | 160 | setRefreshTimer( cfg.readNumEntry( "checkinterval", 15000 ) ); |
149 | 161 | ||
150 | // set the date in top label | 162 | // set the date in top label |
151 | QDate date = QDate::currentDate(); | 163 | QDate date = QDate::currentDate(); |
152 | DateLabel->setText( QString( "<font color=#FFFFFF>" + TimeString::longDateString( date ) + "</font>" ) ); | 164 | DateLabel->setText( QString( "<font color=#FFFFFF>" + TimeString::longDateString( date ) + "</font>" ) ); |
153 | 165 | ||
154 | if ( m_hideBanner ) { | 166 | if ( m_hideBanner ) { |
155 | Opiezilla->hide(); | 167 | Opiezilla->hide(); |
156 | TodayLabel->hide(); | 168 | TodayLabel->hide(); |
157 | } else { | 169 | } else { |
158 | Opiezilla->show(); | 170 | Opiezilla->show(); |
159 | TodayLabel->show(); | 171 | TodayLabel->show(); |
160 | } | 172 | } |
161 | |||
162 | if ( m_big_box ) { | ||
163 | delete m_big_box; | ||
164 | } | ||
165 | |||
166 | m_big_box = new QWidget( m_sv->viewport() ); | ||
167 | m_sv->addChild( m_big_box ); | ||
168 | m_bblayout = new QVBoxLayout ( m_big_box ); | ||
169 | } | 173 | } |
170 | 174 | ||
171 | 175 | void Today::loadPluginWidgets() { | |
172 | /** | ||
173 | * Load the plugins | ||
174 | */ | ||
175 | void Today::loadPlugins() { | ||
176 | |||
177 | m_pluginLoader = new OPluginLoader( "today", true ); | ||
178 | m_pluginLoader->setAutoDelete( true ); | ||
179 | |||
180 | m_manager = new OPluginManager( m_pluginLoader ); | ||
181 | m_manager->load(); | ||
182 | |||
183 | /* | 176 | /* |
184 | * check if loading of Plugins crashed | 177 | * check if loading of Plugins crashed |
185 | */ | 178 | */ |
186 | if( m_pluginLoader->isInSafeMode() ) { | 179 | if( m_pluginLoader->isInSafeMode() ) { |
187 | QMessageBox::information(this, tr("Today Error"), | 180 | QMessageBox::information(this, tr("Today Error"), |
188 | tr("<qt>The plugin '%1' caused Today to crash." | 181 | tr("<qt>The plugin '%1' caused Today to crash." |
189 | " It could be that the plugin is not properly" | 182 | " It could be that the plugin is not properly" |
190 | " installed.<br>Today tries to continue loading" | 183 | " installed.<br>Today tries to continue loading" |
191 | " plugins.</qt>") | 184 | " plugins.</qt>") |
192 | .arg( m_manager->crashedPlugin().name())); | 185 | .arg( m_manager->crashedPlugin().name())); |
193 | } | 186 | } |
194 | 187 | ||
195 | OPluginItem::List lst = m_pluginLoader->filtered( true ); | 188 | OPluginItem::List lst = m_pluginLoader->filtered( true ); |
196 | 189 | ||
190 | /* | ||
191 | * Show or Hide the information of no plugin installed | ||
192 | */ | ||
193 | if ( lst.isEmpty() ) | ||
194 | m_informationLabel->show(); | ||
195 | else | ||
196 | m_informationLabel->hide(); | ||
197 | |||
198 | |||
199 | /* | ||
200 | * Now let us add the plugins | ||
201 | */ | ||
202 | m_big_box = new QWidget( m_sv->viewport() ); | ||
203 | m_sv->addChild( m_big_box ); | ||
204 | m_bblayout = new QVBoxLayout( m_big_box ); | ||
197 | 205 | ||
198 | for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) { | 206 | for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) { |
199 | TodayPluginInterface* iface = m_pluginLoader->load<TodayPluginInterface>( *it, IID_TodayPluginInterface ); | 207 | TodayPluginInterface* iface = m_pluginLoader->load<TodayPluginInterface>( *it, IID_TodayPluginInterface ); |
200 | 208 | ||
201 | TodayPlugin plugin; | 209 | TodayPlugin plugin; |
202 | plugin.iface = iface; | 210 | plugin.iface = iface; |
203 | plugin.name = (*it).name(); | 211 | plugin.name = (*it).name(); |
204 | plugin.oplugin = (*it); | 212 | plugin.oplugin = (*it); |
205 | 213 | ||
206 | plugin.guiPart = plugin.iface->guiPart(); | 214 | plugin.guiPart = plugin.iface->guiPart(); |
207 | plugin.excludeRefresh = plugin.guiPart->excludeFromRefresh(); | 215 | plugin.excludeRefresh = plugin.guiPart->excludeFromRefresh(); |
208 | 216 | ||
@@ -220,145 +228,89 @@ void Today::loadPlugins() { | |||
220 | 228 | ||
221 | QWidget *plugWidget = plugin.guiPart->widget( plugin.guiBox ); | 229 | QWidget *plugWidget = plugin.guiPart->widget( plugin.guiBox ); |
222 | boxLayout->addWidget( plugIcon, 0, AlignTop ); | 230 | boxLayout->addWidget( plugIcon, 0, AlignTop ); |
223 | boxLayout->addWidget( plugWidget, 0, AlignTop ); | 231 | boxLayout->addWidget( plugWidget, 0, AlignTop ); |
224 | boxLayout->setStretchFactor( plugIcon, 1 ); | 232 | boxLayout->setStretchFactor( plugIcon, 1 ); |
225 | boxLayout->setStretchFactor( plugWidget, 9 ); | 233 | boxLayout->setStretchFactor( plugWidget, 9 ); |
226 | 234 | ||
227 | pluginList.insert( plugin.name, plugin ); | 235 | pluginList.insert( plugin.name, plugin ); |
228 | m_bblayout->addWidget(plugin.guiBox); | 236 | m_bblayout->addWidget(plugin.guiBox); |
229 | } | 237 | } |
230 | 238 | ||
231 | m_bblayout->addStretch( 1 ); | 239 | m_bblayout->addStretch( 1 ); |
240 | m_big_box->show(); | ||
232 | } | 241 | } |
233 | 242 | ||
234 | 243 | ||
235 | /** | 244 | /** |
236 | * The method for the configuration dialog. | 245 | * The method for the configuration dialog. |
237 | */ | 246 | */ |
238 | void Today::startConfig() { | 247 | void Today::startConfig() { |
239 | |||
240 | // disconnect timer to prevent problems while being on config dialog | 248 | // disconnect timer to prevent problems while being on config dialog |
241 | disconnect( m_refreshTimer, SIGNAL( timeout() ), this, SLOT( refresh() ) ); | 249 | disconnect( m_refreshTimer, SIGNAL( timeout() ), this, SLOT( refresh() ) ); |
242 | m_refreshTimer->stop( ); | 250 | m_refreshTimer->stop( ); |
243 | 251 | ||
244 | TodayConfig conf( this, "dialog", true ); | 252 | TodayConfig conf( this, "dialog", true ); |
245 | conf.setUpPlugins( m_manager, m_pluginLoader ); | 253 | conf.setUpPlugins( m_manager, m_pluginLoader ); |
246 | 254 | ||
247 | if ( QPEApplication::execDialog(&conf) == QDialog::Accepted ) { | 255 | if ( QPEApplication::execDialog(&conf) == QDialog::Accepted ) { |
248 | conf.writeConfig(); | 256 | conf.writeConfig(); |
249 | initialize(); | 257 | clearPluginWidgets(); |
258 | loadShellContent(); | ||
259 | loadPluginWidgets(); | ||
250 | } else { | 260 | } else { |
251 | // since reinitialize is not called in that case , reconnect the signal | 261 | // since reinitialize is not called in that case , reconnect the signal |
252 | m_refreshTimer->start( 15000 ); // get the config value in here later | 262 | m_refreshTimer->start( 15000 ); // get the config value in here later |
253 | connect( m_refreshTimer, SIGNAL( timeout() ), this, SLOT( refresh() ) ); | 263 | connect( m_refreshTimer, SIGNAL( timeout() ), this, SLOT( refresh() ) ); |
254 | } | 264 | } |
255 | } | 265 | } |
256 | 266 | ||
257 | |||
258 | void Today::initialize() { | ||
259 | |||
260 | Config cfg( "today" ); | ||
261 | cfg.setGroup( "Plugins" ); | ||
262 | |||
263 | |||
264 | cfg.setGroup( "General" ); | ||
265 | m_iconSize = cfg.readNumEntry( "IconSize", 18 ); | ||
266 | m_hideBanner = cfg.readNumEntry( "HideBanner", 0 ); | ||
267 | setRefreshTimer( cfg.readNumEntry( "checkinterval", 15000 ) ); | ||
268 | |||
269 | // set the date in top label | ||
270 | QDate date = QDate::currentDate(); | ||
271 | DateLabel->setText( QString( "<font color=#FFFFFF>" + TimeString::longDateString( date ) + "</font>" ) ); | ||
272 | |||
273 | if ( m_hideBanner ) { | ||
274 | Opiezilla->hide(); | ||
275 | TodayLabel->hide(); | ||
276 | } else { | ||
277 | Opiezilla->show(); | ||
278 | TodayLabel->show(); | ||
279 | } | ||
280 | |||
281 | if ( m_bblayout ) { | ||
282 | delete m_bblayout; | ||
283 | } | ||
284 | m_bblayout = new QVBoxLayout ( m_big_box ); | ||
285 | |||
286 | if ( pluginList.count() == 0 ) { | ||
287 | QLabel *noPlugins = new QLabel( this ); | ||
288 | noPlugins->setText( tr( "No plugins found" ) ); | ||
289 | layout->addWidget( noPlugins ); | ||
290 | } else { | ||
291 | |||
292 | uint count = 0; | ||
293 | TodayPlugin tempPlugin; | ||
294 | OPluginItem::List lst = m_pluginLoader->allAvailable( true ); | ||
295 | for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) { | ||
296 | |||
297 | TodayPluginInterface* iface = m_pluginLoader->load<TodayPluginInterface>( *it, IID_TodayPluginInterface ); | ||
298 | |||
299 | tempPlugin = ( pluginList.find( (*it).name() ).data() ); | ||
300 | if ( !( (tempPlugin.name).isEmpty() ) ) { | ||
301 | if ( (*it).isEnabled() ) { | ||
302 | iface->guiPart()->reinitialize(); | ||
303 | odebug << "reinit" << oendl; | ||
304 | tempPlugin.guiBox->show(); | ||
305 | m_bblayout->addWidget(tempPlugin.guiBox); | ||
306 | count++; | ||
307 | } else { | ||
308 | tempPlugin.guiBox->hide(); | ||
309 | } | ||
310 | } | ||
311 | } | ||
312 | if ( count == 0 ) { | ||
313 | QLabel *noPluginsActive = new QLabel( this ); | ||
314 | noPluginsActive->setText( tr( "No plugins activated" ) ); | ||
315 | layout->addWidget( noPluginsActive ); | ||
316 | } | ||
317 | } | ||
318 | m_bblayout->addStretch( 1 ); | ||
319 | repaint(); | ||
320 | } | ||
321 | |||
322 | /** | 267 | /** |
323 | * Refresh for the view. Reload all applets | 268 | * Refresh for the view. Reload all applets |
324 | * | 269 | * |
325 | */ | 270 | */ |
326 | void Today::refresh() { | 271 | void Today::refresh() { |
327 | 272 | for ( QMap<QString, TodayPlugin>::Iterator it = pluginList.begin(); | |
328 | OPluginItem::List lst = m_pluginLoader->filtered( true ); | 273 | it != pluginList.end(); ++it ) |
329 | 274 | it.data().guiPart->refresh(); | |
330 | for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) { | ||
331 | TodayPluginInterface* iface = m_pluginLoader->load<TodayPluginInterface>( *it, IID_TodayPluginInterface ); | ||
332 | iface->guiPart()->refresh(); | ||
333 | odebug << "refresh" << oendl; | ||
334 | } | ||
335 | 275 | ||
336 | DateLabel->setText( QString( "<font color=#FFFFFF>" + TimeString::longDateString( QDate::currentDate() ) + "</font>" ) ); | 276 | DateLabel->setText( QString( "<font color=#FFFFFF>" + TimeString::longDateString( QDate::currentDate() ) + "</font>" ) ); |
337 | 277 | ||
338 | updateGeometry(); | 278 | updateGeometry(); |
339 | repaint(); | 279 | repaint(); |
340 | } | 280 | } |
341 | 281 | ||
342 | 282 | ||
343 | void Today::startApplication() { | 283 | void Today::startApplication() { |
344 | QCopEnvelope e( "QPE/System", "execute(QString)" ); | 284 | QCopEnvelope e( "QPE/System", "execute(QString)" ); |
345 | e << QString( sender()->name() ); | 285 | e << QString( sender()->name() ); |
346 | } | 286 | } |
347 | 287 | ||
348 | 288 | ||
349 | /** | 289 | /** |
350 | * launch addressbook (personal card) | 290 | * launch addressbook (personal card) |
351 | */ | 291 | */ |
352 | void Today::editCard() { | 292 | void Today::editCard() { |
353 | QCopEnvelope env( "QPE/Application/addressbook", "editPersonalAndClose()" ); | 293 | QCopEnvelope env( "QPE/Application/addressbook", "editPersonalAndClose()" ); |
354 | } | 294 | } |
355 | 295 | ||
356 | 296 | ||
357 | Today::~Today() { | 297 | Today::~Today() { |
358 | for(QMap<QString, TodayPlugin>::Iterator it = pluginList.begin(); it != pluginList.end(); ++it ) | 298 | clearPluginWidgets(); |
359 | delete it.data().guiBox; | ||
360 | |||
361 | delete m_pluginLoader; | 299 | delete m_pluginLoader; |
362 | delete m_manager; | 300 | delete m_manager; |
363 | } | 301 | } |
364 | 302 | ||
303 | |||
304 | void Today::clearPluginWidgets() { | ||
305 | for(QMap<QString, TodayPlugin>::Iterator it = pluginList.begin(); it != pluginList.end(); ++it ) { | ||
306 | delete it.data().guiBox; | ||
307 | it.data().guiBox = 0; | ||
308 | } | ||
309 | |||
310 | pluginList.clear(); | ||
311 | |||
312 | delete m_bblayout; | ||
313 | delete m_big_box; | ||
314 | m_bblayout = 0; | ||
315 | m_big_box = 0; | ||
316 | } | ||
diff --git a/core/pim/today/today.h b/core/pim/today/today.h index dfc819d..8dbe9aa 100644 --- a/core/pim/today/today.h +++ b/core/pim/today/today.h | |||
@@ -47,43 +47,47 @@ public: | |||
47 | ~Today(); | 47 | ~Today(); |
48 | static QString appName() { | 48 | static QString appName() { |
49 | return QString::fromLatin1("today"); | 49 | return QString::fromLatin1("today"); |
50 | } | 50 | } |
51 | 51 | ||
52 | private slots: | 52 | private slots: |
53 | void startConfig(); | 53 | void startConfig(); |
54 | void startApplication(); | 54 | void startApplication(); |
55 | void editCard(); | 55 | void editCard(); |
56 | void refresh(); | 56 | void refresh(); |
57 | 57 | ||
58 | private: | 58 | private: |
59 | void init(); | ||
60 | void setOwnerField(); | 59 | void setOwnerField(); |
61 | void setOwnerField(QString &string); | 60 | void setOwnerField(QString &string); |
62 | void initialize(); | ||
63 | 61 | ||
64 | void setRefreshTimer( int ); | 62 | void setRefreshTimer( int ); |
65 | 63 | ||
64 | void clearPluginWidgets(); | ||
65 | void loadPluginWidgets(); | ||
66 | void loadShellContent(); | ||
67 | |||
68 | |||
66 | private slots: | 69 | private slots: |
67 | void channelReceived(const QCString &msg, const QByteArray & data); | 70 | void channelReceived(const QCString &msg, const QByteArray & data); |
68 | void loadPlugins(); | 71 | void loadPlugins(); |
69 | 72 | ||
70 | private: | 73 | private: |
71 | TodayConfig *conf; | 74 | TodayConfig *conf; |
72 | QStringList m_excludeApplets; | 75 | QStringList m_excludeApplets; |
73 | QStringList m_allApplets; | 76 | QStringList m_allApplets; |
74 | 77 | ||
75 | QScrollView *m_sv; | 78 | QScrollView *m_sv; |
76 | QWidget* m_big_box; | 79 | QWidget* m_big_box; |
77 | QVBoxLayout *m_bblayout; | 80 | QVBoxLayout *m_bblayout; |
81 | QLabel *m_informationLabel; | ||
78 | 82 | ||
79 | Opie::Core::OPluginLoader *m_pluginLoader; | 83 | Opie::Core::OPluginLoader *m_pluginLoader; |
80 | Opie::Core::OPluginManager *m_manager; | 84 | Opie::Core::OPluginManager *m_manager; |
81 | 85 | ||
82 | QTimer *m_refreshTimer; | 86 | QTimer *m_refreshTimer; |
83 | 87 | ||
84 | bool m_refreshTimerEnabled; | 88 | bool m_refreshTimerEnabled; |
85 | int m_newStart; | 89 | int m_newStart; |
86 | int m_iconSize; | 90 | int m_iconSize; |
87 | int m_maxCharClip; | 91 | int m_maxCharClip; |
88 | int m_hideBanner; | 92 | int m_hideBanner; |
89 | }; | 93 | }; |
diff --git a/core/pim/today/todayconfig.cpp b/core/pim/today/todayconfig.cpp index dacce8b..864c708 100644 --- a/core/pim/today/todayconfig.cpp +++ b/core/pim/today/todayconfig.cpp | |||
@@ -84,25 +84,24 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal ) | |||
84 | tab2Layout->addWidget( hbox1 ); | 84 | tab2Layout->addWidget( hbox1 ); |
85 | TabWidget3->addTab( tab_2, "pass", tr( "active/order" ) ); | 85 | TabWidget3->addTab( tab_2, "pass", tr( "active/order" ) ); |
86 | 86 | ||
87 | // Misc tab | 87 | // Misc tab |
88 | tab_3 = new QWidget( TabWidget3, "tab_3" ); | 88 | tab_3 = new QWidget( TabWidget3, "tab_3" ); |
89 | QVBoxLayout *tab3Layout = new QVBoxLayout( tab_3 ); | 89 | QVBoxLayout *tab3Layout = new QVBoxLayout( tab_3 ); |
90 | 90 | ||
91 | m_guiMisc = new TodayConfigMiscBase( tab_3 ); | 91 | m_guiMisc = new TodayConfigMiscBase( tab_3 ); |
92 | 92 | ||
93 | tab3Layout->addWidget( m_guiMisc ); | 93 | tab3Layout->addWidget( m_guiMisc ); |
94 | TabWidget3->addTab( tab_3, "SettingsIcon", tr( "Misc" ) ); | 94 | TabWidget3->addTab( tab_3, "SettingsIcon", tr( "Misc" ) ); |
95 | 95 | ||
96 | connect ( m_appletListView , SIGNAL( clicked(QListViewItem*) ), this, SLOT( appletChanged() ) ); | ||
97 | previousItem = 0l; | 96 | previousItem = 0l; |
98 | readConfig(); | 97 | readConfig(); |
99 | } | 98 | } |
100 | 99 | ||
101 | 100 | ||
102 | void TodayConfig::setUpPlugins( OPluginManager * plugManager, OPluginLoader *plugLoader ) { | 101 | void TodayConfig::setUpPlugins( OPluginManager * plugManager, OPluginLoader *plugLoader ) { |
103 | m_configMap.clear(); | 102 | m_configMap.clear(); |
104 | 103 | ||
105 | m_pluginManager = plugManager; | 104 | m_pluginManager = plugManager; |
106 | m_pluginLoader = plugLoader; | 105 | m_pluginLoader = plugLoader; |
107 | 106 | ||
108 | OPluginItem::List inLst = m_pluginLoader->allAvailable( true ); | 107 | OPluginItem::List inLst = m_pluginLoader->allAvailable( true ); |
@@ -172,52 +171,58 @@ void TodayConfig::readConfig() { | |||
172 | void TodayConfig::writeConfig() { | 171 | void TodayConfig::writeConfig() { |
173 | OConfig cfg( "today" ); | 172 | OConfig cfg( "today" ); |
174 | 173 | ||
175 | int position = m_appletListView->childCount(); | 174 | int position = m_appletListView->childCount(); |
176 | 175 | ||
177 | QListViewItemIterator list_it( m_appletListView ); | 176 | QListViewItemIterator list_it( m_appletListView ); |
178 | OPluginItem::List lst = m_pluginLoader->allAvailable( true ); | 177 | OPluginItem::List lst = m_pluginLoader->allAvailable( true ); |
179 | 178 | ||
180 | // this makes sure the names get saved in the order selected | 179 | // this makes sure the names get saved in the order selected |
181 | for ( ; list_it.current(); ++list_it ) { | 180 | for ( ; list_it.current(); ++list_it ) { |
182 | for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) { | 181 | for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) { |
183 | if ( QString::compare( (*it).name() , list_it.current()->text(0) ) == 0 ) { | 182 | if ( QString::compare( (*it).name() , list_it.current()->text(0) ) == 0 ) { |
183 | qWarning( "Enabling %d and make it %d", position-1, | ||
184 | ((QCheckListItem*)list_it.current())->isOn() ); | ||
184 | (*it).setPosition(position--); | 185 | (*it).setPosition(position--); |
185 | m_pluginManager->setEnabled( (*it),((QCheckListItem*)list_it.current())->isOn() ); | 186 | m_pluginManager->setEnabled( (*it),((QCheckListItem*)list_it.current())->isOn() ); |
186 | } | 187 | } |
187 | } | 188 | } |
188 | } | 189 | } |
189 | 190 | ||
191 | /* | ||
192 | * save and get the changes back | ||
193 | */ | ||
190 | m_pluginManager->save(); | 194 | m_pluginManager->save(); |
191 | 195 | ||
192 | cfg.setGroup( "Autostart" ); | 196 | cfg.setGroup( "Autostart" ); |
193 | m_autoStart = m_guiMisc->CheckBoxAuto->isChecked(); | 197 | m_autoStart = m_guiMisc->CheckBoxAuto->isChecked(); |
194 | cfg.writeEntry( "autostart", m_autoStart ); | 198 | cfg.writeEntry( "autostart", m_autoStart ); |
195 | m_autoStartTimer = m_guiMisc->SpinBoxTime->value(); | 199 | m_autoStartTimer = m_guiMisc->SpinBoxTime->value(); |
196 | cfg.writeEntry( "autostartdelay", m_autoStartTimer ); | 200 | cfg.writeEntry( "autostartdelay", m_autoStartTimer ); |
197 | m_iconSize = m_guiMisc->SpinBoxIconSize->value(); | 201 | m_iconSize = m_guiMisc->SpinBoxIconSize->value(); |
198 | 202 | ||
199 | cfg.setGroup( "General" ); | 203 | cfg.setGroup( "General" ); |
200 | cfg.writeEntry( "IconSize", m_iconSize ); | 204 | cfg.writeEntry( "IconSize", m_iconSize ); |
201 | cfg.writeEntry( "HideBanner", m_guiMisc->CheckBoxHide->isChecked() ); | 205 | cfg.writeEntry( "HideBanner", m_guiMisc->CheckBoxHide->isChecked() ); |
202 | cfg.writeEntry( "checkinterval", m_guiMisc->SpinRefresh->value()*1000 ); | 206 | cfg.writeEntry( "checkinterval", m_guiMisc->SpinRefresh->value()*1000 ); |
203 | 207 | ||
204 | // set autostart settings | 208 | // set autostart settings |
205 | setAutoStart(); | 209 | setAutoStart(); |
206 | 210 | ||
207 | OPluginItem::List managedLst = m_pluginManager->managedPlugins(); | 211 | OPluginItem::List managedLst = m_pluginManager->managedPlugins(); |
208 | for ( OPluginItem::List::Iterator it = managedLst.begin(); it != managedLst.end(); ++it ) { | 212 | for ( OPluginItem::List::Iterator it = managedLst.begin(); it != managedLst.end(); ++it ) { |
209 | TodayPluginInterface* iface = m_pluginLoader->load<TodayPluginInterface>( *it, IID_TodayPluginInterface ); | 213 | TodayPluginInterface* iface = m_pluginLoader->load<TodayPluginInterface>( *it, IID_TodayPluginInterface ); |
210 | if ( m_configMap.contains( iface ) ) | 214 | if ( m_configMap.contains( iface ) ) |
211 | m_configMap[iface]->writeConfig(); | 215 | m_configMap[iface]->writeConfig(); |
216 | |||
212 | } | 217 | } |
213 | } | 218 | } |
214 | 219 | ||
215 | 220 | ||
216 | void TodayConfig::moveSelectedUp() { | 221 | void TodayConfig::moveSelectedUp() { |
217 | QListViewItem *item = m_appletListView->selectedItem(); | 222 | QListViewItem *item = m_appletListView->selectedItem(); |
218 | if ( item && item->itemAbove() ) { | 223 | if ( item && item->itemAbove() ) { |
219 | item->itemAbove()->moveItem( item ); | 224 | item->itemAbove()->moveItem( item ); |
220 | } | 225 | } |
221 | } | 226 | } |
222 | 227 | ||
223 | 228 | ||