summaryrefslogtreecommitdiff
path: root/core/pim/today/todayconfig.cpp
Unidiff
Diffstat (limited to 'core/pim/today/todayconfig.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/todayconfig.cpp117
1 files changed, 68 insertions, 49 deletions
diff --git a/core/pim/today/todayconfig.cpp b/core/pim/today/todayconfig.cpp
index 4f0877c..c9823d4 100644
--- a/core/pim/today/todayconfig.cpp
+++ b/core/pim/today/todayconfig.cpp
@@ -18,3 +18,6 @@
18 18
19#include <qpe/config.h> 19#include <opie2/oconfig.h>
20#include <opie2/opluginloader.h>
21#include <opie2/todayplugininterface.h>
22
20#include <qpe/resource.h> 23#include <qpe/resource.h>
@@ -33,2 +36,7 @@
33using namespace Opie::Ui; 36using namespace Opie::Ui;
37using Opie::Core::OConfig;
38using Opie::Core::OPluginManager;
39using Opie::Core::OPluginLoader;
40using Opie::Core::OPluginItem;
41
34class ToolButton : public QToolButton { 42class ToolButton : public QToolButton {
@@ -70,3 +78,4 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal )
70 m_appletListView->setSorting( -1 ); 78 m_appletListView->setSorting( -1 );
71 QWhatsThis::add( m_appletListView, tr( "Check a checkbox to activate/deactivate a plugin or use the arrow buttons on the right to change the appearance order" ) ); 79 QWhatsThis::add
80 ( m_appletListView, tr( "Check a checkbox to activate/deactivate a plugin or use the arrow buttons on the right to change the appearance order" ) );
72 QVBox *vbox1 = new QVBox( hbox1 ); 81 QVBox *vbox1 = new QVBox( hbox1 );
@@ -86,6 +95,4 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal )
86 95
87 m_applets_changed = false;
88
89 connect ( m_appletListView , SIGNAL( clicked(QListViewItem*) ), this, SLOT( appletChanged() ) ); 96 connect ( m_appletListView , SIGNAL( clicked(QListViewItem*) ), this, SLOT( appletChanged() ) );
90 97 previousItem = 0l;
91 readConfig(); 98 readConfig();
@@ -95,2 +102,30 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal )
95 102
103void TodayConfig::setUpPlugins( OPluginManager * plugManager, OPluginLoader *plugLoader ) {
104
105
106 m_pluginManager = plugManager;
107 m_pluginLoader = plugLoader;
108
109 OPluginItem::List inLst = m_pluginLoader->allAvailable( true );
110
111 OPluginItem::List lst;
112 for ( OPluginItem::List::Iterator it = inLst.begin(); it != inLst.end(); ++it ) {
113 lst.prepend((*it));
114
115 TodayPluginInterface* iface = m_pluginLoader->load<TodayPluginInterface>( *it, IID_TodayPluginInterface );
116
117 if ( iface->guiPart()->configWidget(this) != 0l ) {
118 TodayConfigWidget* widget = iface->guiPart()->configWidget( TabWidget3 );
119 TabWidget3->addTab( widget, iface->guiPart()->pixmapNameConfig()
120 , iface->guiPart()->appName() );
121 }
122 }
123
124 for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) {
125 pluginManagement( (*it) );
126 }
127
128 TabWidget3->setCurrentTab( tab_2 );
129}
130
96/** 131/**
@@ -100,3 +135,3 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal )
100void TodayConfig::setAutoStart() { 135void TodayConfig::setAutoStart() {
101 Config cfg( "today" ); 136 OConfig cfg( "today" );
102 cfg.setGroup( "Autostart" ); 137 cfg.setGroup( "Autostart" );
@@ -118,3 +153,3 @@ void TodayConfig::setAutoStart() {
118void TodayConfig::readConfig() { 153void TodayConfig::readConfig() {
119 Config cfg( "today" ); 154 OConfig cfg( "today" );
120 cfg.setGroup( "Autostart" ); 155 cfg.setGroup( "Autostart" );
@@ -130,6 +165,2 @@ void TodayConfig::readConfig() {
130 m_guiMisc->CheckBoxHide->setChecked( cfg.readNumEntry( "HideBanner", 0 ) ); 165 m_guiMisc->CheckBoxHide->setChecked( cfg.readNumEntry( "HideBanner", 0 ) );
131
132
133 cfg.setGroup( "Plugins" );
134 m_excludeApplets = cfg.readListEntry( "ExcludeApplets", ',' );
135} 166}
@@ -140,22 +171,15 @@ void TodayConfig::readConfig() {
140void TodayConfig::writeConfig() { 171void TodayConfig::writeConfig() {
141 Config cfg( "today" ); 172 OConfig cfg( "today" );
142 cfg.setGroup( "Plugins" );
143 if ( m_applets_changed ) {
144 QStringList exclude;
145 QStringList include;
146 QStringList all_applets;
147 173
148 QListViewItemIterator list_it( m_appletListView ); 174 int position = m_appletListView->childCount();
149 175
176 QListViewItemIterator list_it( m_appletListView );
177 //
150 // this makes sure the names get saved in the order selected 178 // this makes sure the names get saved in the order selected
151 for ( ; list_it.current(); ++list_it ) { 179 for ( ; list_it.current(); ++list_it ) {
152 QMap <QString, QCheckListItem *>::Iterator it; 180 OPluginItem::List lst = m_pluginLoader->allAvailable( true );
153 for ( it = m_applets.begin(); it != m_applets. end (); ++it ) { 181 for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) {
154 if ( list_it.current() == (*it) && !(*it)-> isOn () ) { 182 if ( QString::compare( (*it).name() , list_it.current()->text(0) ) == 0 ) {
155 exclude << it.key(); 183 (*it).setPosition(position--);
156 } else if ( list_it.current() == (*it) && (*it)-> isOn () ){ 184 m_pluginManager->setEnabled( (*it),((QCheckListItem*)list_it.current())->isOn() );
157 include << it.key();
158 }
159 if ( list_it.current() == (*it) ) {
160 all_applets << it.key();
161 } 185 }
@@ -163,6 +187,4 @@ void TodayConfig::writeConfig() {
163 } 187 }
164 cfg.writeEntry( "ExcludeApplets", exclude, ',' ); 188
165 cfg.writeEntry( "IncludeApplets", include, ',' ); 189 m_pluginManager->save();
166 cfg.writeEntry( "AllApplets", all_applets, ',' );
167 }
168 190
@@ -182,2 +204,10 @@ void TodayConfig::writeConfig() {
182 setAutoStart(); 204 setAutoStart();
205
206 OPluginItem::List lst = m_pluginManager->managedPlugins();
207 for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) {
208 TodayPluginInterface* iface = m_pluginLoader->load<TodayPluginInterface>( *it, IID_TodayPluginInterface );
209 if ( iface->guiPart()->configWidget(this) != 0l ) {
210 iface->guiPart()->configWidget(this)->writeConfig();
211 }
212 }
183} 213}
@@ -204,7 +234,8 @@ void TodayConfig::moveSelectedDown() {
204 */ 234 */
205void TodayConfig::pluginManagement( QString libName, QString name, QPixmap icon ) { 235void TodayConfig::pluginManagement( OPluginItem plugItem ) {
206 236
207 QCheckListItem *item; 237 QCheckListItem *item = new QCheckListItem( m_appletListView, plugItem.name(), QCheckListItem::CheckBox );
208 item = new QCheckListItem( m_appletListView, name, QCheckListItem::CheckBox );
209 238
239 TodayPluginInterface* iface = m_pluginLoader->load<TodayPluginInterface>( plugItem, IID_TodayPluginInterface );
240 QPixmap icon = Resource::loadPixmap( iface->guiPart()->pixmapNameWidget() );
210 if ( !icon.isNull() ) { 241 if ( !icon.isNull() ) {
@@ -212,20 +243,8 @@ void TodayConfig::pluginManagement( QString libName, QString name, QPixmap icon
212 } 243 }
213 244 item->setOn( plugItem.isEnabled() );
214 if ( m_excludeApplets.find( libName ) == m_excludeApplets.end() ) { 245 previousItem = item;
215 item->setOn( TRUE );
216 } 246 }
217 247
218 m_applets[libName] = item;
219
220 // kind of hack to get the first tab as default.
221 TabWidget3->setCurrentTab( tab_2 );
222}
223 248
224void TodayConfig::appletChanged() {
225 m_applets_changed = true;
226}
227
228
229TodayConfig::~TodayConfig() {
230}
231 249
250TodayConfig::~TodayConfig() {}