summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/TODO6
-rw-r--r--core/pim/today/todayconfig.cpp14
-rw-r--r--core/pim/today/todayconfig.h2
3 files changed, 15 insertions, 7 deletions
diff --git a/core/pim/today/TODO b/core/pim/today/TODO
index 6634cad..49503bd 100644
--- a/core/pim/today/TODO
+++ b/core/pim/today/TODO
@@ -1,8 +1,14 @@
1TODO for today: 1TODO for today:
2 2
3- all icons clickable
4
5- retail rom mail plugin (z)
6
7- autostart on retail rom (Z)
8
3* show "upcoming appointents the next days 9* show "upcoming appointents the next days
4 10
5* show alarm icons on alarm events (partly done) 11* show alarm icons on alarm events (partly done)
6 12
7* qcop integration for updating events? 13* qcop integration for updating events?
8 14
diff --git a/core/pim/today/todayconfig.cpp b/core/pim/today/todayconfig.cpp
index 9ff9ba6..3fc5830 100644
--- a/core/pim/today/todayconfig.cpp
+++ b/core/pim/today/todayconfig.cpp
@@ -101,18 +101,17 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags
101 * Autostart, uses the new (opie only) autostart method in the launcher code. 101 * Autostart, uses the new (opie only) autostart method in the launcher code.
102 * If registered against that today ist started on each resume. 102 * If registered against that today ist started on each resume.
103 */ 103 */
104void TodayConfig::setAutoStart() { 104void TodayConfig::setAutoStart() {
105 Config cfg( "today" ); 105 Config cfg( "today" );
106 cfg.setGroup( "Autostart" ); 106 cfg.setGroup( "Autostart" );
107 int autostart = cfg.readNumEntry( "autostart", 1 ); 107 if ( m_autoStart ) {
108 if ( autostart ) {
109 QCopEnvelope e( "QPE/System", "autoStart(QString,QString,QString)" ); 108 QCopEnvelope e( "QPE/System", "autoStart(QString,QString,QString)" );
110 e << QString( "add" ); 109 e << QString( "add" );
111 e << QString( "today" ); 110 e << QString( "today" );
112 e << m_autoStartTimer; 111 e << QString("%1").arg( m_autoStartTimer );
113 } else { 112 } else {
114 QCopEnvelope e( "QPE/System", "autoStart(QString,QString)" ); 113 QCopEnvelope e( "QPE/System", "autoStart(QString,QString)" );
115 e << QString( "remove" ); 114 e << QString( "remove" );
116 e << QString( "today" ); 115 e << QString( "today" );
117 } 116 }
118} 117}
@@ -122,14 +121,14 @@ void TodayConfig::setAutoStart() {
122 */ 121 */
123void TodayConfig::readConfig() { 122void TodayConfig::readConfig() {
124 Config cfg( "today" ); 123 Config cfg( "today" );
125 cfg.setGroup( "Autostart" ); 124 cfg.setGroup( "Autostart" );
126 m_autoStart = cfg.readNumEntry( "autostart", 1 ); 125 m_autoStart = cfg.readNumEntry( "autostart", 1 );
127 CheckBoxAuto->setChecked( m_autoStart ); 126 CheckBoxAuto->setChecked( m_autoStart );
128 m_autoStartTimer = cfg.readEntry( "autostartdelay", "0" ); 127 m_autoStartTimer = cfg.readNumEntry( "autostartdelay", 0 );
129 SpinBoxTime->setValue( m_autoStartTimer.toInt() ); 128 SpinBoxTime->setValue( m_autoStartTimer );
130 129
131 cfg.setGroup( "Plugins" ); 130 cfg.setGroup( "Plugins" );
132 m_excludeApplets = cfg.readListEntry( "ExcludeApplets", ',' ); 131 m_excludeApplets = cfg.readListEntry( "ExcludeApplets", ',' );
133} 132}
134 133
135/** 134/**
@@ -165,13 +164,16 @@ void TodayConfig::writeConfig() {
165 } 164 }
166 165
167 cfg.setGroup( "Autostart" ); 166 cfg.setGroup( "Autostart" );
168 m_autoStart = CheckBoxAuto->isChecked(); 167 m_autoStart = CheckBoxAuto->isChecked();
169 cfg.writeEntry( "autostart", m_autoStart ); 168 cfg.writeEntry( "autostart", m_autoStart );
170 m_autoStartTimer = SpinBoxTime->value(); 169 m_autoStartTimer = SpinBoxTime->value();
171 cfg.readEntry( "autostartdelay", m_autoStartTimer ); 170 cfg.writeEntry( "autostartdelay", m_autoStartTimer );
171
172 // set autostart settings
173 setAutoStart();
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() ) {
diff --git a/core/pim/today/todayconfig.h b/core/pim/today/todayconfig.h
index 7c261bd..f23b850 100644
--- a/core/pim/today/todayconfig.h
+++ b/core/pim/today/todayconfig.h
@@ -51,13 +51,13 @@ private:
51 void readConfig(); 51 void readConfig();
52 52
53 QListView* m_appletListView; 53 QListView* m_appletListView;
54 QMap<QString,QCheckListItem*> m_applets; 54 QMap<QString,QCheckListItem*> m_applets;
55 55
56 int m_autoStart; 56 int m_autoStart;
57 QString m_autoStartTimer; 57 int m_autoStartTimer;
58 QStringList m_excludeApplets; 58 QStringList m_excludeApplets;
59 bool m_applets_changed; 59 bool m_applets_changed;
60 60
61 QLabel* TextLabel2; 61 QLabel* TextLabel2;
62 QCheckBox* CheckBoxAuto; 62 QCheckBox* CheckBoxAuto;
63 QWidget* tab_2; 63 QWidget* tab_2;