-rw-r--r-- | core/pim/today/TODO | 6 | ||||
-rw-r--r-- | core/pim/today/todayconfig.cpp | 14 | ||||
-rw-r--r-- | core/pim/today/todayconfig.h | 2 |
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,6 +1,12 @@ | |||
1 | TODO for today: | 1 | TODO 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 | ||
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 | |||
@@ -103,14 +103,13 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags | |||
103 | */ | 103 | */ |
104 | void TodayConfig::setAutoStart() { | 104 | void 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" ); |
@@ -124,10 +123,10 @@ void 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 | } |
@@ -167,9 +166,12 @@ void TodayConfig::writeConfig() { | |||
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 | ||
175 | void TodayConfig::moveSelectedUp() { | 177 | void TodayConfig::moveSelectedUp() { |
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 | |||
@@ -53,9 +53,9 @@ private: | |||
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; |