summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/todayconfig.cpp6
-rw-r--r--core/pim/today/todayconfig.h1
2 files changed, 6 insertions, 1 deletions
diff --git a/core/pim/today/todayconfig.cpp b/core/pim/today/todayconfig.cpp
index 04f595b..472da50 100644
--- a/core/pim/today/todayconfig.cpp
+++ b/core/pim/today/todayconfig.cpp
@@ -1,218 +1,222 @@
1/* 1/*
2 * todayconfig.cpp 2 * todayconfig.cpp
3 * 3 *
4 * copyright : (c) 2002 by Maximilian Reiß 4 * copyright : (c) 2002 by Maximilian Reiß
5 * email : harlekin@handhelds.org 5 * email : harlekin@handhelds.org
6 * 6 *
7 */ 7 */
8/*************************************************************************** 8/***************************************************************************
9 * * 9 * *
10 * This program is free software; you can redistribute it and/or modify * 10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by * 11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or * 12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. * 13 * (at your option) any later version. *
14 * * 14 * *
15 ***************************************************************************/ 15 ***************************************************************************/
16 16
17#include "todayconfig.h" 17#include "todayconfig.h"
18 18
19#include <qpe/config.h> 19#include <qpe/config.h>
20#include <qpe/resource.h> 20#include <qpe/resource.h>
21#include <qpe/qcopenvelope_qws.h> 21#include <qpe/qcopenvelope_qws.h>
22 22
23#include <qcheckbox.h> 23#include <qcheckbox.h>
24#include <qlabel.h> 24#include <qlabel.h>
25#include <qspinbox.h> 25#include <qspinbox.h>
26#include <qtabwidget.h> 26#include <qtabwidget.h>
27#include <qlayout.h> 27#include <qlayout.h>
28#include <qheader.h> 28#include <qheader.h>
29#include <qhbox.h> 29#include <qhbox.h>
30#include <qvbox.h> 30#include <qvbox.h>
31#include <qtoolbutton.h> 31#include <qtoolbutton.h>
32 32
33class ToolButton : public QToolButton { 33class ToolButton : public QToolButton {
34 34
35public: 35public:
36 ToolButton( QWidget *parent, const char *name, const QString& icon, QObject *handler, const QString& slot, bool t = FALSE ) 36 ToolButton( QWidget *parent, const char *name, const QString& icon, QObject *handler, const QString& slot, bool t = FALSE )
37 : QToolButton( parent, name ) { 37 : QToolButton( parent, name ) {
38 setPixmap( Resource::loadPixmap( icon ) ); 38 setPixmap( Resource::loadPixmap( icon ) );
39 setAutoRaise( TRUE ); 39 setAutoRaise( TRUE );
40 setFocusPolicy( QWidget::NoFocus ); 40 setFocusPolicy( QWidget::NoFocus );
41 setToggleButton( t ); 41 setToggleButton( t );
42 connect( this, t ? SIGNAL( toggled(bool) ) : SIGNAL( clicked() ), handler, slot ); 42 connect( this, t ? SIGNAL( toggled(bool) ) : SIGNAL( clicked() ), handler, slot );
43 } 43 }
44}; 44};
45 45
46 46
47/** 47/**
48 * The class has currently quite some duplicate code. 48 * The class has currently quite some duplicate code.
49 * By that way it would be real easy to have it as seperate app in settings tab 49 * By that way it would be real easy to have it as seperate app in settings tab
50 * 50 *
51 */ 51 */
52TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags fl ) 52TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags fl )
53 : QDialog( parent, name, modal, fl ) { 53 : QDialog( parent, name, modal, fl ) {
54 54
55 setCaption( tr( "Today config" ) ); 55 setCaption( tr( "Today config" ) );
56 56
57 QVBoxLayout *layout = new QVBoxLayout( this ); 57 QVBoxLayout *layout = new QVBoxLayout( this );
58 TabWidget3 = new OTabWidget ( this, "tabwidget", OTabWidget::Global, OTabWidget::Bottom ); 58 TabWidget3 = new OTabWidget ( this, "tabwidget", OTabWidget::Global, OTabWidget::Bottom );
59 layout->addWidget( TabWidget3 ); 59 layout->addWidget( TabWidget3 );
60 60
61 tab_2 = new QWidget( TabWidget3, "tab_2" ); 61 tab_2 = new QWidget( TabWidget3, "tab_2" );
62 QVBoxLayout *tab2Layout = new QVBoxLayout( tab_2, 4 ,4 ); 62 QVBoxLayout *tab2Layout = new QVBoxLayout( tab_2, 4 ,4 );
63 QLabel *l = new QLabel( tr( "Load which plugins in what order:" ), tab_2 ); 63 QLabel *l = new QLabel( tr( "Load which plugins in what order:" ), tab_2 );
64 tab2Layout->addWidget( l ); 64 tab2Layout->addWidget( l );
65 QHBox *hbox1 = new QHBox( tab_2 ); 65 QHBox *hbox1 = new QHBox( tab_2 );
66 m_appletListView = new QListView( hbox1 ); 66 m_appletListView = new QListView( hbox1 );
67 m_appletListView->addColumn( "PluginList" ); 67 m_appletListView->addColumn( "PluginList" );
68 m_appletListView->header()->hide(); 68 m_appletListView->header()->hide();
69 m_appletListView->setSorting( -1 ); 69 m_appletListView->setSorting( -1 );
70 QVBox *vbox1 = new QVBox( hbox1 ); 70 QVBox *vbox1 = new QVBox( hbox1 );
71 new ToolButton( vbox1, tr( "Move Up" ), "opieplayer/up", this , SLOT( moveSelectedUp() ) ); 71 new ToolButton( vbox1, tr( "Move Up" ), "opieplayer/up", this , SLOT( moveSelectedUp() ) );
72 new ToolButton( vbox1, tr( "Move Down" ),"opieplayer/down", this , SLOT( moveSelectedDown() ) ); 72 new ToolButton( vbox1, tr( "Move Down" ),"opieplayer/down", this , SLOT( moveSelectedDown() ) );
73 tab2Layout->addWidget( hbox1 ); 73 tab2Layout->addWidget( hbox1 );
74 TabWidget3->addTab( tab_2, "pass", tr( "active/order" ) ); 74 TabWidget3->addTab( tab_2, "pass", tr( "active/order" ) );
75 75
76 tab_3 = new QWidget( TabWidget3, "tab_3" ); 76 tab_3 = new QWidget( TabWidget3, "tab_3" );
77 QVBoxLayout *tab3Layout = new QVBoxLayout( tab_3 ); 77 QVBoxLayout *tab3Layout = new QVBoxLayout( tab_3 );
78 tab3Layout->setMargin( 20 ); 78 tab3Layout->setMargin( 20 );
79 QHBox *hbox_auto = new QHBox( tab_3 ); 79 QHBox *hbox_auto = new QHBox( tab_3 );
80 TextLabel2 = new QLabel( hbox_auto, "AutoStart" ); 80 TextLabel2 = new QLabel( hbox_auto, "AutoStart" );
81 TextLabel2->setText( tr( "autostart on \nresume?\n (Opie only)" ) ); 81 TextLabel2->setText( tr( "autostart on \nresume?\n (Opie only)" ) );
82 CheckBoxAuto = new QCheckBox( hbox_auto, "CheckBoxAuto" ); 82 CheckBoxAuto = new QCheckBox( hbox_auto, "CheckBoxAuto" );
83 QHBox *hbox_inactive = new QHBox( tab_3 ); 83 QHBox *hbox_inactive = new QHBox( tab_3 );
84 TimeLabel = new QLabel( hbox_inactive , "TimeLabel" ); 84 TimeLabel = new QLabel( hbox_inactive , "TimeLabel" );
85 TimeLabel->setText( tr( "minutes inactive" ) ); 85 TimeLabel->setText( tr( "minutes inactive" ) );
86 SpinBoxTime = new QSpinBox( hbox_inactive, "TimeSpinner" ); 86 SpinBoxTime = new QSpinBox( hbox_inactive, "TimeSpinner" );
87 tab3Layout->addWidget( hbox_auto ); 87 tab3Layout->addWidget( hbox_auto );
88 tab3Layout->addWidget( hbox_inactive ); 88 tab3Layout->addWidget( hbox_inactive );
89 TabWidget3->addTab( tab_3, "SettingsIcon", tr( "Misc" ) ); 89 TabWidget3->addTab( tab_3, "SettingsIcon", tr( "Misc" ) );
90 90
91 m_applets_changed = false; 91 m_applets_changed = false;
92 92
93 // TabWidget3->setCurrentTab( tab_2 );
94
93 connect ( m_appletListView , SIGNAL( clicked ( QListViewItem * ) ), this, SLOT( appletChanged ( ) ) ); 95 connect ( m_appletListView , SIGNAL( clicked ( QListViewItem * ) ), this, SLOT( appletChanged ( ) ) );
94 96
95 readConfig(); 97 readConfig();
96 showMaximized(); 98 showMaximized();
97} 99}
98 100
99 101
100/** 102/**
101 * Autostart, uses the new (opie only) autostart method in the launcher code. 103 * Autostart, uses the new (opie only) autostart method in the launcher code.
102 * If registered against that today ist started on each resume. 104 * If registered against that today ist started on each resume.
103 */ 105 */
104void TodayConfig::setAutoStart() { 106void TodayConfig::setAutoStart() {
105 Config cfg( "today" ); 107 Config cfg( "today" );
106 cfg.setGroup( "Autostart" ); 108 cfg.setGroup( "Autostart" );
107 int autostart = cfg.readNumEntry( "autostart", 1 ); 109 int autostart = cfg.readNumEntry( "autostart", 1 );
108 if ( autostart ) { 110 if ( autostart ) {
109 QCopEnvelope e( "QPE/System", "autoStart(QString,QString,QString)" ); 111 QCopEnvelope e( "QPE/System", "autoStart(QString,QString,QString)" );
110 e << QString( "add" ); 112 e << QString( "add" );
111 e << QString( "today" ); 113 e << QString( "today" );
112 e << m_autoStartTimer; 114 e << m_autoStartTimer;
113 } else { 115 } else {
114 QCopEnvelope e( "QPE/System", "autoStart(QString,QString)" ); 116 QCopEnvelope e( "QPE/System", "autoStart(QString,QString)" );
115 e << QString( "remove" ); 117 e << QString( "remove" );
116 e << QString( "today" ); 118 e << QString( "today" );
117 } 119 }
118} 120}
119 121
120/** 122/**
121 * Read the config part 123 * Read the config part
122 */ 124 */
123void TodayConfig::readConfig() { 125void TodayConfig::readConfig() {
124 Config cfg( "today" ); 126 Config cfg( "today" );
125 cfg.setGroup( "Autostart" ); 127 cfg.setGroup( "Autostart" );
126 m_autoStart = cfg.readNumEntry( "autostart", 1 ); 128 m_autoStart = cfg.readNumEntry( "autostart", 1 );
127 CheckBoxAuto->setChecked( m_autoStart ); 129 CheckBoxAuto->setChecked( m_autoStart );
128 m_autoStartTimer = cfg.readEntry( "autostartdelay", "0" ); 130 m_autoStartTimer = cfg.readEntry( "autostartdelay", "0" );
129 SpinBoxTime->setValue( m_autoStartTimer.toInt() ); 131 SpinBoxTime->setValue( m_autoStartTimer.toInt() );
130 132
131 cfg.setGroup( "Plugins" ); 133 cfg.setGroup( "Plugins" );
132 m_excludeApplets = cfg.readListEntry( "ExcludeApplets", ',' ); 134 m_excludeApplets = cfg.readListEntry( "ExcludeApplets", ',' );
133} 135}
134 136
135/** 137/**
136 * Write the config part 138 * Write the config part
137 */ 139 */
138void TodayConfig::writeConfig() { 140void TodayConfig::writeConfig() {
139 Config cfg( "today" ); 141 Config cfg( "today" );
140 cfg.setGroup( "Plugins" ); 142 cfg.setGroup( "Plugins" );
141 if ( m_applets_changed ) { 143 if ( m_applets_changed ) {
142 QStringList exclude; 144 QStringList exclude;
143 QStringList include; 145 QStringList include;
144 QStringList all_applets; 146 QStringList all_applets;
145 147
146 QListViewItemIterator list_it( m_appletListView ); 148 QListViewItemIterator list_it( m_appletListView );
147 149
148 // this makes sure the names get saved in the order selected 150 // this makes sure the names get saved in the order selected
149 for ( ; list_it.current(); ++list_it ) { 151 for ( ; list_it.current(); ++list_it ) {
150 QMap <QString, QCheckListItem *>::Iterator it; 152 QMap <QString, QCheckListItem *>::Iterator it;
151 for ( it = m_applets.begin(); it != m_applets. end (); ++it ) { 153 for ( it = m_applets.begin(); it != m_applets. end (); ++it ) {
152 if ( list_it.current() == (*it) && !(*it)-> isOn () ) { 154 if ( list_it.current() == (*it) && !(*it)-> isOn () ) {
153 exclude << it.key(); 155 exclude << it.key();
154 } else if ( list_it.current() == (*it) && (*it)-> isOn () ){ 156 } else if ( list_it.current() == (*it) && (*it)-> isOn () ){
155 include << it.key(); 157 include << it.key();
156 } 158 }
157 if ( list_it.current() == (*it) ) { 159 if ( list_it.current() == (*it) ) {
158 all_applets << it.key(); 160 all_applets << it.key();
159 } 161 }
160 } 162 }
161 } 163 }
162 cfg.writeEntry( "ExcludeApplets", exclude, ',' ); 164 cfg.writeEntry( "ExcludeApplets", exclude, ',' );
163 cfg.writeEntry( "IncludeApplets", include, ',' ); 165 cfg.writeEntry( "IncludeApplets", include, ',' );
164 cfg.writeEntry( "AllApplets", all_applets, ',' ); 166 cfg.writeEntry( "AllApplets", all_applets, ',' );
165 } 167 }
166 168
167 cfg.setGroup( "Autostart" ); 169 cfg.setGroup( "Autostart" );
168 m_autoStart = CheckBoxAuto->isChecked(); 170 m_autoStart = CheckBoxAuto->isChecked();
169 cfg.writeEntry( "autostart", m_autoStart ); 171 cfg.writeEntry( "autostart", m_autoStart );
170 m_autoStartTimer = SpinBoxTime->value(); 172 m_autoStartTimer = SpinBoxTime->value();
171 cfg.readEntry( "autostartdelay", m_autoStartTimer ); 173 cfg.readEntry( "autostartdelay", m_autoStartTimer );
172} 174}
173 175
174 176
175void TodayConfig::moveSelectedUp() { 177void TodayConfig::moveSelectedUp() {
176 QListViewItem *item = m_appletListView->selectedItem(); 178 QListViewItem *item = m_appletListView->selectedItem();
177 if ( item && item->itemAbove() ) { 179 if ( item && item->itemAbove() ) {
178 item->itemAbove()->moveItem( item ); 180 item->itemAbove()->moveItem( item );
179 } 181 }
180} 182}
181 183
182 184
183void TodayConfig::moveSelectedDown() { 185void TodayConfig::moveSelectedDown() {
184 QListViewItem *item = m_appletListView->selectedItem(); 186 QListViewItem *item = m_appletListView->selectedItem();
185 if ( item && item->itemBelow() ) { 187 if ( item && item->itemBelow() ) {
186 item->moveItem( item->itemBelow() ); 188 item->moveItem( item->itemBelow() );
187 } 189 }
188} 190}
189 191
190 192
191/** 193/**
192 * Set up the 194 * Set up the
193 */ 195 */
194void TodayConfig::pluginManagement( QString libName, QString name, QPixmap icon ) { 196void TodayConfig::pluginManagement( QString libName, QString name, QPixmap icon ) {
195 197
196 QCheckListItem *item; 198 QCheckListItem *item;
197 item = new QCheckListItem( m_appletListView, name, QCheckListItem::CheckBox ); 199 item = new QCheckListItem( m_appletListView, name, QCheckListItem::CheckBox );
198 200
199 if ( !icon.isNull() ) { 201 if ( !icon.isNull() ) {
200 item->setPixmap( 0, icon ); 202 item->setPixmap( 0, icon );
201 } 203 }
202 204
203 if ( m_excludeApplets.find( libName ) == m_excludeApplets.end() ) { 205 if ( m_excludeApplets.find( libName ) == m_excludeApplets.end() ) {
204 item->setOn( TRUE ); 206 item->setOn( TRUE );
205 } 207 }
206 208
207 m_applets[libName] = item; 209 m_applets[libName] = item;
208}
209 210
211 // kind of hack to get the first tab as default.
212 TabWidget3->setCurrentTab( tab_2 );
213}
210 214
211void TodayConfig::appletChanged() { 215void TodayConfig::appletChanged() {
212 m_applets_changed = true; 216 m_applets_changed = true;
213} 217}
214 218
215 219
216TodayConfig::~TodayConfig() { 220TodayConfig::~TodayConfig() {
217} 221}
218 222
diff --git a/core/pim/today/todayconfig.h b/core/pim/today/todayconfig.h
index 49cd10f..7c261bd 100644
--- a/core/pim/today/todayconfig.h
+++ b/core/pim/today/todayconfig.h
@@ -1,70 +1,71 @@
1/* 1/*
2 * todayconfig.h 2 * todayconfig.h
3 * 3 *
4 * copyright : (c) 2002 by Maximilian Reiß 4 * copyright : (c) 2002 by Maximilian Reiß
5 * email : harlekin@handhelds.org 5 * email : harlekin@handhelds.org
6 * 6 *
7 */ 7 */
8/*************************************************************************** 8/***************************************************************************
9 * * 9 * *
10 * This program is free software; you can redistribute it and/or modify * 10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by * 11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or * 12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. * 13 * (at your option) any later version. *
14 * * 14 * *
15 ***************************************************************************/ 15 ***************************************************************************/
16 16
17#ifndef TODAYCONFIG_H 17#ifndef TODAYCONFIG_H
18#define TODAYCONFIG_H 18#define TODAYCONFIG_H
19 19
20#include <qvariant.h> 20#include <qvariant.h>
21#include <qdialog.h> 21#include <qdialog.h>
22#include <qlistview.h> 22#include <qlistview.h>
23#include <opie/otabwidget.h> 23#include <opie/otabwidget.h>
24 24
25class QCheckBox; 25class QCheckBox;
26class QLabel; 26class QLabel;
27class QSpinBox; 27class QSpinBox;
28class QTabWidget; 28class QTabWidget;
29 29
30class TodayConfig : public QDialog { 30class TodayConfig : public QDialog {
31 31
32 Q_OBJECT 32 Q_OBJECT
33 33
34public: 34public:
35 TodayConfig( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); 35 TodayConfig( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
36 ~TodayConfig(); 36 ~TodayConfig();
37 37
38 OTabWidget* TabWidget3; 38 OTabWidget* TabWidget3;
39 39
40 void writeConfig(); 40 void writeConfig();
41 void pluginManagement( QString libName, QString name, QPixmap icon ); 41 void pluginManagement( QString libName, QString name, QPixmap icon );
42 42
43
43protected slots: 44protected slots:
44 void appletChanged(); 45 void appletChanged();
45 void moveSelectedUp(); 46 void moveSelectedUp();
46 void moveSelectedDown(); 47 void moveSelectedDown();
47 48
48private: 49private:
49 void setAutoStart(); 50 void setAutoStart();
50 void readConfig(); 51 void readConfig();
51 52
52 QListView* m_appletListView; 53 QListView* m_appletListView;
53 QMap<QString,QCheckListItem*> m_applets; 54 QMap<QString,QCheckListItem*> m_applets;
54 55
55 int m_autoStart; 56 int m_autoStart;
56 QString m_autoStartTimer; 57 QString m_autoStartTimer;
57 QStringList m_excludeApplets; 58 QStringList m_excludeApplets;
58 bool m_applets_changed; 59 bool m_applets_changed;
59 60
60 QLabel* TextLabel2; 61 QLabel* TextLabel2;
61 QCheckBox* CheckBoxAuto; 62 QCheckBox* CheckBoxAuto;
62 QWidget* tab_2; 63 QWidget* tab_2;
63 QWidget* tab_3; 64 QWidget* tab_3;
64 QLabel* TextLabel1; 65 QLabel* TextLabel1;
65 QSpinBox* SpinBox7; 66 QSpinBox* SpinBox7;
66 QLabel* TimeLabel; 67 QLabel* TimeLabel;
67 QSpinBox* SpinBoxTime; 68 QSpinBox* SpinBoxTime;
68}; 69};
69 70
70#endif 71#endif