summaryrefslogtreecommitdiff
path: root/core/pim/today/todayconfig.cpp
Unidiff
Diffstat (limited to 'core/pim/today/todayconfig.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/todayconfig.cpp137
1 files changed, 78 insertions, 59 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
@@ -16,7 +16,10 @@
16 16
17#include "todayconfig.h" 17#include "todayconfig.h"
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>
21#include <qpe/qcopenvelope_qws.h> 24#include <qpe/qcopenvelope_qws.h>
22#include <qpe/qpeapplication.h> 25#include <qpe/qpeapplication.h>
@@ -31,11 +34,16 @@
31#include <qwhatsthis.h> 34#include <qwhatsthis.h>
32 35
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 {
35 43
36public: 44public:
37 ToolButton( QWidget *parent, const char *name, const QString& icon, QObject *handler, const QString& slot, bool t = FALSE ) 45 ToolButton( QWidget *parent, const char *name, const QString& icon, QObject *handler, const QString& slot, bool t = FALSE )
38 : QToolButton( parent, name ) { 46: QToolButton( parent, name ) {
39 setPixmap( Resource::loadPixmap( icon ) ); 47 setPixmap( Resource::loadPixmap( icon ) );
40 setAutoRaise( TRUE ); 48 setAutoRaise( TRUE );
41 setFocusPolicy( QWidget::NoFocus ); 49 setFocusPolicy( QWidget::NoFocus );
@@ -51,7 +59,7 @@ public:
51 * 59 *
52 */ 60 */
53TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal ) 61TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal )
54 : QDialog( parent, name, modal, WStyle_ContextHelp ) { 62: QDialog( parent, name, modal, WStyle_ContextHelp ) {
55 63
56 setCaption( tr( "Today Config" ) ); 64 setCaption( tr( "Today Config" ) );
57 65
@@ -68,7 +76,8 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal )
68 m_appletListView->addColumn( "PluginList" ); 76 m_appletListView->addColumn( "PluginList" );
69 m_appletListView->header()->hide(); 77 m_appletListView->header()->hide();
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 );
73 new ToolButton( vbox1, tr( "Move Up" ), "up", this , SLOT( moveSelectedUp() ) ); 82 new ToolButton( vbox1, tr( "Move Up" ), "up", this , SLOT( moveSelectedUp() ) );
74 new ToolButton( vbox1, tr( "Move Down" ), "down", this , SLOT( moveSelectedDown() ) ); 83 new ToolButton( vbox1, tr( "Move Down" ), "down", this , SLOT( moveSelectedDown() ) );
@@ -84,21 +93,47 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal )
84 tab3Layout->addWidget( m_guiMisc ); 93 tab3Layout->addWidget( m_guiMisc );
85 TabWidget3->addTab( tab_3, "SettingsIcon", tr( "Misc" ) ); 94 TabWidget3->addTab( tab_3, "SettingsIcon", tr( "Misc" ) );
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();
92 QPEApplication::showDialog( this ); 99 QPEApplication::showDialog( this );
93} 100}
94 101
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/**
97 * Autostart, uses the new (opie only) autostart method in the launcher code. 132 * Autostart, uses the new (opie only) autostart method in the launcher code.
98 * If registered against that today ist started on each resume. 133 * If registered against that today ist started on each resume.
99 */ 134 */
100void TodayConfig::setAutoStart() { 135void TodayConfig::setAutoStart() {
101 Config cfg( "today" ); 136 OConfig cfg( "today" );
102 cfg.setGroup( "Autostart" ); 137 cfg.setGroup( "Autostart" );
103 if ( m_autoStart ) { 138 if ( m_autoStart ) {
104 QCopEnvelope e( "QPE/System", "autoStart(QString,QString,QString)" ); 139 QCopEnvelope e( "QPE/System", "autoStart(QString,QString,QString)" );
@@ -116,7 +151,7 @@ void TodayConfig::setAutoStart() {
116 * Read the config part 151 * Read the config part
117 */ 152 */
118void TodayConfig::readConfig() { 153void TodayConfig::readConfig() {
119 Config cfg( "today" ); 154 OConfig cfg( "today" );
120 cfg.setGroup( "Autostart" ); 155 cfg.setGroup( "Autostart" );
121 m_autoStart = cfg.readNumEntry( "autostart", 1 ); 156 m_autoStart = cfg.readNumEntry( "autostart", 1 );
122 m_guiMisc->CheckBoxAuto->setChecked( m_autoStart ); 157 m_guiMisc->CheckBoxAuto->setChecked( m_autoStart );
@@ -128,47 +163,34 @@ void TodayConfig::readConfig() {
128 m_guiMisc->SpinBoxIconSize->setValue( m_iconSize ); 163 m_guiMisc->SpinBoxIconSize->setValue( m_iconSize );
129 m_guiMisc->SpinRefresh->setValue( cfg.readNumEntry( "checkinterval", 15000 ) / 1000 ); 164 m_guiMisc->SpinRefresh->setValue( cfg.readNumEntry( "checkinterval", 15000 ) / 1000 );
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}
136 167
137/** 168/**
138 * Write the config part 169 * Write the config part
139 */ 170 */
140void TodayConfig::writeConfig() { 171void TodayConfig::writeConfig() {
141 Config cfg( "today" ); 172 OConfig cfg( "today" );
142 cfg.setGroup( "Plugins" ); 173
143 if ( m_applets_changed ) { 174 int position = m_appletListView->childCount();
144 QStringList exclude; 175
145 QStringList include; 176 QListViewItemIterator list_it( m_appletListView );
146 QStringList all_applets; 177 //
147 178 // this makes sure the names get saved in the order selected
148 QListViewItemIterator list_it( m_appletListView ); 179 for ( ; list_it.current(); ++list_it ) {
149 180 OPluginItem::List lst = m_pluginLoader->allAvailable( true );
150 // this makes sure the names get saved in the order selected 181 for ( OPluginItem::List::Iterator it = lst.begin(); it != lst.end(); ++it ) {
151 for ( ; list_it.current(); ++list_it ) { 182 if ( QString::compare( (*it).name() , list_it.current()->text(0) ) == 0 ) {
152 QMap <QString, QCheckListItem *>::Iterator it; 183 (*it).setPosition(position--);
153 for ( it = m_applets.begin(); it != m_applets. end (); ++it ) { 184 m_pluginManager->setEnabled( (*it),((QCheckListItem*)list_it.current())->isOn() );
154 if ( list_it.current() == (*it) && !(*it)-> isOn () ) {
155 exclude << it.key();
156 } else if ( list_it.current() == (*it) && (*it)-> isOn () ){
157 include << it.key();
158 }
159 if ( list_it.current() == (*it) ) {
160 all_applets << it.key();
161 }
162 } 185 }
163 } 186 }
164 cfg.writeEntry( "ExcludeApplets", exclude, ',' );
165 cfg.writeEntry( "IncludeApplets", include, ',' );
166 cfg.writeEntry( "AllApplets", all_applets, ',' );
167 } 187 }
168 188
189 m_pluginManager->save();
190
169 cfg.setGroup( "Autostart" ); 191 cfg.setGroup( "Autostart" );
170 m_autoStart = m_guiMisc->CheckBoxAuto->isChecked(); 192 m_autoStart = m_guiMisc->CheckBoxAuto->isChecked();
171 cfg.writeEntry( "autostart", m_autoStart ); 193 cfg.writeEntry( "autostart", m_autoStart );
172 m_autoStartTimer = m_guiMisc->SpinBoxTime->value(); 194 m_autoStartTimer = m_guiMisc->SpinBoxTime->value();
173 cfg.writeEntry( "autostartdelay", m_autoStartTimer ); 195 cfg.writeEntry( "autostartdelay", m_autoStartTimer );
174 m_iconSize = m_guiMisc->SpinBoxIconSize->value(); 196 m_iconSize = m_guiMisc->SpinBoxIconSize->value();
@@ -180,6 +202,14 @@ void TodayConfig::writeConfig() {
180 202
181 // set autostart settings 203 // set autostart settings
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}
184 214
185 215
@@ -202,30 +232,19 @@ void TodayConfig::moveSelectedDown() {
202/** 232/**
203 * Set up the icons in the order/active tab 233 * Set up the icons in the order/active tab
204 */ 234 */
205void TodayConfig::pluginManagement( QString libName, QString name, QPixmap icon ) { 235void TodayConfig::pluginManagement( OPluginItem plugItem ) {
206
207 QCheckListItem *item;
208 item = new QCheckListItem( m_appletListView, name, QCheckListItem::CheckBox );
209 236
210 if ( !icon.isNull() ) { 237 QCheckListItem *item = new QCheckListItem( m_appletListView, plugItem.name(), QCheckListItem::CheckBox );
211 item->setPixmap( 0, icon );
212 }
213
214 if ( m_excludeApplets.find( libName ) == m_excludeApplets.end() ) {
215 item->setOn( TRUE );
216 }
217
218 m_applets[libName] = item;
219 238
220 // kind of hack to get the first tab as default. 239 TodayPluginInterface* iface = m_pluginLoader->load<TodayPluginInterface>( plugItem, IID_TodayPluginInterface );
221 TabWidget3->setCurrentTab( tab_2 ); 240 QPixmap icon = Resource::loadPixmap( iface->guiPart()->pixmapNameWidget() );
222} 241 if ( !icon.isNull() ) {
223 242 item->setPixmap( 0, icon );
224void TodayConfig::appletChanged() { 243 }
225 m_applets_changed = true; 244 item->setOn( plugItem.isEnabled() );
245 previousItem = item;
226} 246}
227 247
228 248
229TodayConfig::~TodayConfig() {
230}
231 249
250TodayConfig::~TodayConfig() {}