summaryrefslogtreecommitdiff
authorharlekin <harlekin>2002-03-13 00:03:08 (UTC)
committer harlekin <harlekin>2002-03-13 00:03:08 (UTC)
commit8e9330a8626076a3dd289a1abbe218eccd3a1784 (patch) (unidiff)
tree458506d9a708cf47c49268f8336b9ce7a7fafedd
parentffa1d178f1daedafe801183c8a41a06023423713 (diff)
downloadopie-8e9330a8626076a3dd289a1abbe218eccd3a1784.zip
opie-8e9330a8626076a3dd289a1abbe218eccd3a1784.tar.gz
opie-8e9330a8626076a3dd289a1abbe218eccd3a1784.tar.bz2
many bugfixes, should work right now again, also now the dates are allways in the right order, at least i hope so
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/changelog6
-rw-r--r--core/pim/today/opie-today.control2
-rw-r--r--core/pim/today/today.cpp45
-rw-r--r--core/pim/today/today.h2
4 files changed, 41 insertions, 14 deletions
diff --git a/core/pim/today/changelog b/core/pim/today/changelog
index ded4458..d0dd966 100644
--- a/core/pim/today/changelog
+++ b/core/pim/today/changelog
@@ -1,16 +1,22 @@
10.2.9
2
3* Many bugfixes.
4* Today now apparently sorts the dates _allways_ right, i would assume it
5to be a qt bug
6
10.2.8 70.2.8
2 8
3* Appointments are now clickable (connection to datebook still missing) 9* Appointments are now clickable (connection to datebook still missing)
4* autostart support (opie only) 10* autostart support (opie only)
5 11
60.2.7 120.2.7
7 13
8* check if todolist.xml was changed before parsing it 14* check if todolist.xml was changed before parsing it
9* check only every 30 sec for changes. 15* check only every 30 sec for changes.
10* some visual stuff 16* some visual stuff
11* as usual many little improvements .-) 17* as usual many little improvements .-)
12 18
130.2.6 190.2.6
14 20
15* added scrollbars to dates and todo 21* added scrollbars to dates and todo
16* all day detection 22* all day detection
diff --git a/core/pim/today/opie-today.control b/core/pim/today/opie-today.control
index 5ad8f01..f875624 100644
--- a/core/pim/today/opie-today.control
+++ b/core/pim/today/opie-today.control
@@ -1,10 +1,10 @@
1Files: bin/today apps/Applications/today.desktop pics/today_icon.png pics/today/today_logo.png pics/today/config.png pics/today/mail.png 1Files: bin/today apps/Applications/today.desktop pics/today_icon.png pics/today/today_logo.png pics/today/config.png pics/today/mail.png
2Priority: optional 2Priority: optional
3Section: opie/applications 3Section: opie/applications
4Maintainer: Maximilian Reiß <max.reiss@gmx.de> 4Maintainer: Maximilian Reiß <max.reiss@gmx.de>
5Architecture: arm 5Architecture: arm
6Version: 0.2.8-$SUB_VERSION 6Version: 0.2.9-$SUB_VERSION
7Depends: opie-base ($QPE_VERSION) 7Depends: opie-base ($QPE_VERSION)
8License: GPL 8License: GPL
9Description: today screen 9Description: today screen
10 A short overview over current appointments and tasks. 10 A short overview over current appointments and tasks.
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index 1cdc6b4..81d4d36 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -27,55 +27,54 @@
27#include <qpe/qcopenvelope_qws.h> 27#include <qpe/qcopenvelope_qws.h>
28#include <qpe/qprocess.h> 28#include <qpe/qprocess.h>
29#include <qpe/resource.h> 29#include <qpe/resource.h>
30 30
31#include <qdir.h> 31#include <qdir.h>
32#include <qfile.h> 32#include <qfile.h>
33#include <qdatetime.h> 33#include <qdatetime.h>
34#include <qtextstream.h> 34#include <qtextstream.h>
35#include <qcheckbox.h> 35#include <qcheckbox.h>
36#include <qspinbox.h> 36#include <qspinbox.h>
37#include <qpushbutton.h> 37#include <qpushbutton.h>
38#include <qlabel.h> 38#include <qlabel.h>
39#include <qtimer.h> 39#include <qtimer.h>
40#include <qpixmap.h> 40#include <qpixmap.h>
41#include <qfileinfo.h> 41#include <qfileinfo.h>
42#include <qlayout.h> 42#include <qlayout.h>
43#include <qtl.h>
43 44
44//#include <iostream.h> 45//#include <iostream.h>
45//#include <unistd.h> 46#include <unistd.h>
46#include <stdlib.h> 47#include <stdlib.h>
47 48
48
49
50int MAX_LINES_TASK; 49int MAX_LINES_TASK;
51int MAX_CHAR_CLIP; 50int MAX_CHAR_CLIP;
52int MAX_LINES_MEET; 51int MAX_LINES_MEET;
53int SHOW_LOCATION; 52int SHOW_LOCATION;
54int SHOW_NOTES; 53int SHOW_NOTES;
55// show only later dates 54// show only later dates
56int ONLY_LATER; 55int ONLY_LATER;
57int AUTOSTART; 56int AUTOSTART;
58 57
59int NEW_START=1; 58int NEW_START=1;
60/* 59/*
61 * Constructs a Example which is a child of 'parent', with the 60 * Constructs a Example which is a child of 'parent', with the
62 * name 'name' and widget flags set to 'f' 61 * name 'name' and widget flags set to 'f'
63 */ 62 */
64Today::Today( QWidget* parent, const char* name, WFlags fl ) 63Today::Today( QWidget* parent, const char* name, WFlags fl )
65 : TodayBase( parent, name, fl ) { 64 : TodayBase( parent, name, fl ), AllDateBookEvents(NULL) {
66 QObject::connect( (QObject*)PushButton1, SIGNAL( clicked() ), this, SLOT(startConfig() ) ); 65 QObject::connect( (QObject*)PushButton1, SIGNAL( clicked() ), this, SLOT(startConfig() ) );
67 QObject::connect( (QObject*)TodoButton, SIGNAL( clicked() ), this, SLOT(startTodo() ) ); 66 QObject::connect( (QObject*)TodoButton, SIGNAL( clicked() ), this, SLOT(startTodo() ) );
68 QObject::connect( (QObject*)DatesButton, SIGNAL( clicked() ), this, SLOT(startDatebook() ) ); 67 QObject::connect( (QObject*)DatesButton, SIGNAL( clicked() ), this, SLOT(startDatebook() ) );
69 QObject::connect( (QObject*)MailButton, SIGNAL( clicked() ), this, SLOT(startMail() ) ); 68 QObject::connect( (QObject*)MailButton, SIGNAL( clicked() ), this, SLOT(startMail() ) );
70 69
71 draw(); 70 draw();
72 autoStart(); 71 autoStart();
73} 72}
74 73
75void Today::autoStart() { 74void Today::autoStart() {
76 Config cfg("today"); 75 Config cfg("today");
77 cfg.setGroup("Autostart"); 76 cfg.setGroup("Autostart");
78 AUTOSTART = cfg.readNumEntry("autostart",1); 77 AUTOSTART = cfg.readNumEntry("autostart",1);
79 if (AUTOSTART) { 78 if (AUTOSTART) {
80 QCopEnvelope e("QPE/System", "autoStart(QString,QString)"); 79 QCopEnvelope e("QPE/System", "autoStart(QString,QString)");
81 e << QString("add"); 80 e << QString("add");
@@ -182,90 +181,100 @@ void Today::startConfig() {
182 int location = conf->CheckBox1->isChecked(); 181 int location = conf->CheckBox1->isChecked();
183 int notes = conf->CheckBox2->isChecked(); 182 int notes = conf->CheckBox2->isChecked();
184 int maxcharclip = conf->SpinBox7->value(); 183 int maxcharclip = conf->SpinBox7->value();
185 int onlylater = conf->CheckBox3->isChecked(); 184 int onlylater = conf->CheckBox3->isChecked();
186 int autostart =conf->CheckBoxAuto->isChecked(); 185 int autostart =conf->CheckBoxAuto->isChecked();
187 186
188 cfg.writeEntry("maxlinestask",maxlinestask); 187 cfg.writeEntry("maxlinestask",maxlinestask);
189 cfg.writeEntry("maxcharclip", maxcharclip); 188 cfg.writeEntry("maxcharclip", maxcharclip);
190 cfg.writeEntry("maxlinesmeet",maxmeet); 189 cfg.writeEntry("maxlinesmeet",maxmeet);
191 cfg.writeEntry("showlocation",location); 190 cfg.writeEntry("showlocation",location);
192 cfg.writeEntry("shownotes", notes); 191 cfg.writeEntry("shownotes", notes);
193 cfg.writeEntry("onlylater", onlylater); 192 cfg.writeEntry("onlylater", onlylater);
194 cfg.setGroup("Autostart"); 193 cfg.setGroup("Autostart");
195 cfg.writeEntry("autostart", autostart); 194 cfg.writeEntry("autostart", autostart);
196 // sync it to "disk" 195 // sync it to "disk"
197 cfg.write(); 196 cfg.write();
197 NEW_START=1;
198 draw(); 198 draw();
199 autoStart(); 199 autoStart();
200} 200}
201 201
202 202
203/* 203/*
204 * Get all events that are in the datebook xml file for today 204 * Get all events that are in the datebook xml file for today
205 */ 205 */
206void Today::getDates() { 206void Today::getDates() {
207 QDate date = QDate::currentDate(); 207 QDate date = QDate::currentDate();
208 QWidget* AllDateBookEvents = new QWidget( ); 208
209 if (AllDateBookEvents) delete AllDateBookEvents;
210 AllDateBookEvents = new QWidget( );
209 QVBoxLayout* layoutDates = new QVBoxLayout(AllDateBookEvents); 211 QVBoxLayout* layoutDates = new QVBoxLayout(AllDateBookEvents);
210 212
211 QValueList<EffectiveEvent> list = db->getEffectiveEvents(date, date); 213 QValueList<EffectiveEvent> list = db->getEffectiveEvents(date, date);
212 214
215 qBubbleSort(list);
216 // printf("Get dates\n");
217
213 Config config( "qpe" ); 218 Config config( "qpe" );
214 // if 24 h format 219 // if 24 h format
215 //bool ampm = config.readBoolEntry( "AMPM", TRUE ); 220 //bool ampm = config.readBoolEntry( "AMPM", TRUE );
216 221
217 int count=0; 222 int count=0;
218 223
219 if ( list.count() > 0 ) { 224 if ( list.count() > 0 ) {
220 225
221 for ( QValueList<EffectiveEvent>::ConstIterator it=list.begin(); 226 for ( QValueList<EffectiveEvent>::ConstIterator it=list.begin();
222 it!=list.end(); ++it ) { 227 it!=list.end(); ++it ) {
223 228
224 count++;
225 229
226 if ( count <= MAX_LINES_MEET ) { 230 if ( count <= MAX_LINES_MEET ) {
227 231
228 QTime time = QTime::currentTime(); 232 QTime time = QTime::currentTime();
229 233
230 if (!ONLY_LATER) { 234 if (!ONLY_LATER) {
235 count++;
231 DateBookEvent *l=new DateBookEvent(*it, AllDateBookEvents); 236 DateBookEvent *l=new DateBookEvent(*it, AllDateBookEvents);
232 layoutDates->addWidget(l); 237 layoutDates->addWidget(l);
233 connect (l, SIGNAL(editEvent(const Event &)), 238 connect (l, SIGNAL(editEvent(const Event &)),
234 this, SIGNAL(editEvent(const Event &))); 239 this, SLOT(editEvent(const Event &)));
235 } else if ((time.toString() <= TimeString::dateString((*it).event().end())) ) { 240 } else if ((time.toString() <= TimeString::dateString((*it).event().end())) ) {
241 count++;
242
236 // show only later appointments 243 // show only later appointments
237 DateBookEventLater *l=new DateBookEventLater(*it, AllDateBookEvents); 244 DateBookEventLater *l=new DateBookEventLater(*it, AllDateBookEvents);
238 layoutDates->addWidget(l); 245 layoutDates->addWidget(l);
239 connect (l, SIGNAL(editEvent(const Event &)), 246 connect (l, SIGNAL(editEvent(const Event &)),
240 this, SIGNAL(editEvent(const Event &))); 247 this, SLOT(editEvent(const Event &)));
241 } else { 248 }
242 QLabel* noMoreEvents = new QLabel(AllDateBookEvents);
243 noMoreEvents->setText("No more appointments today");
244 layoutDates->addWidget(noMoreEvents);
245 }
246 } 249 }
250 }
251 if (ONLY_LATER && count==0) {
252 QLabel* noMoreEvents = new QLabel(AllDateBookEvents);
253 noMoreEvents->setText("No more appointments today");
254 layoutDates->addWidget(noMoreEvents);
247 } 255 }
248 } else { 256 } else {
249 QLabel* noEvents = new QLabel(AllDateBookEvents); 257 QLabel* noEvents = new QLabel(AllDateBookEvents);
250 noEvents->setText("No appointments today"); 258 noEvents->setText("No appointments today");
251 layoutDates->addWidget(noEvents); 259 layoutDates->addWidget(noEvents);
252 } 260 }
253 261
254 layoutDates->addItem(new QSpacerItem(1,1, QSizePolicy::Minimum, QSizePolicy::Expanding)); 262 layoutDates->addItem(new QSpacerItem(1,1, QSizePolicy::Minimum, QSizePolicy::Expanding));
255 sv1->addChild(AllDateBookEvents); 263 sv1->addChild(AllDateBookEvents);
264 AllDateBookEvents->show();
256 265
257 266
258} 267}
259 268
260/* 269/*
261 * Parse in the todolist.xml 270 * Parse in the todolist.xml
262 */ 271 */
263QList<TodoItem> Today::loadTodo(const char *filename) { 272QList<TodoItem> Today::loadTodo(const char *filename) {
264 DOM *todo; 273 DOM *todo;
265 ELE *tasks; 274 ELE *tasks;
266 ELE **tasklist; 275 ELE **tasklist;
267 ATT **attlist; 276 ATT **attlist;
268 int i, j; 277 int i, j;
269 char *description; 278 char *description;
270 int completed; 279 int completed;
271 int priority; 280 int priority;
@@ -380,32 +389,42 @@ void Today::getTodo() {
380 } 389 }
381 output += tmpout; 390 output += tmpout;
382 } else { 391 } else {
383 output = tr("No active tasks"); 392 output = tr("No active tasks");
384 } 393 }
385 394
386 TodoField->setText(tr(output)); 395 TodoField->setText(tr(output));
387} 396}
388 397
389/* 398/*
390 * launches datebook 399 * launches datebook
391 */ 400 */
392void Today::startDatebook() { 401void Today::startDatebook() {
393 QCopEnvelope e("QPE/System", "execute(QString)"); 402 QCopEnvelope e("QPE/System", "execute(QString)");
394 e << QString("datebook"); 403 e << QString("datebook");
395} 404}
405void Today::editEvent(const Event &e) {
406 startDatebook();
407
408 //Dissabled for now as uid's not working properly
409 /*
410 while(!QCopChannel::isRegistered("QPE/Datebook")) sleep(1);
411 QCopEnvelope env("QPE/Datebook", "editEvent(int)");
412 env << e.uid();
413 */
414}
396 415
397/* 416/*
398 * launches todolist 417 * launches todolist
399 */ 418 */
400void Today::startTodo() { 419void Today::startTodo() {
401 QCopEnvelope e("QPE/System", "execute(QString)"); 420 QCopEnvelope e("QPE/System", "execute(QString)");
402 e << QString("todolist"); 421 e << QString("todolist");
403} 422}
404 423
405/* 424/*
406 * launch opiemail 425 * launch opiemail
407 */ 426 */
408void Today::startMail() { 427void Today::startMail() {
409 QCopEnvelope e("QPE/System", "execute(QString)"); 428 QCopEnvelope e("QPE/System", "execute(QString)");
410 e << QString("opiemail"); 429 e << QString("opiemail");
411} 430}
diff --git a/core/pim/today/today.h b/core/pim/today/today.h
index b3f0654..0b4356c 100644
--- a/core/pim/today/today.h
+++ b/core/pim/today/today.h
@@ -34,43 +34,45 @@
34 34
35class QVBoxLayout; 35class QVBoxLayout;
36 36
37class Today : public TodayBase { 37class Today : public TodayBase {
38 Q_OBJECT 38 Q_OBJECT
39 39
40 public: 40 public:
41 Today( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 41 Today( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
42 ~Today(); 42 ~Today();
43 43
44 private slots: 44 private slots:
45 void startConfig(); 45 void startConfig();
46 void startTodo(); 46 void startTodo();
47 void startDatebook(); 47 void startDatebook();
48 void startMail(); 48 void startMail();
49 void draw(); 49 void draw();
50 void editEvent(const Event &e);
50 private: 51 private:
51 void init(); 52 void init();
52 void getDates(); 53 void getDates();
53 void getTodo(); 54 void getTodo();
54 void getMail(); 55 void getMail();
55 void autoStart(); 56 void autoStart();
56 bool checkIfModified(); 57 bool checkIfModified();
57 QList<TodoItem> loadTodo(const char *filename); 58 QList<TodoItem> loadTodo(const char *filename);
58 private: 59 private:
59 DateBookDB *db; 60 DateBookDB *db;
60 todayconfig *conf; 61 todayconfig *conf;
62 QWidget* AllDateBookEvents;
61 //Config cfg; 63 //Config cfg;
62 int MAX_LINES_TASK; 64 int MAX_LINES_TASK;
63 int MAX_CHAR_CLIP; 65 int MAX_CHAR_CLIP;
64 int MAX_LINES_MEET; 66 int MAX_LINES_MEET;
65 int SHOW_LOCATION; 67 int SHOW_LOCATION;
66 int SHOW_NOTES; 68 int SHOW_NOTES;
67}; 69};
68 70
69class DateBookEvent: public ClickableLabel { 71class DateBookEvent: public ClickableLabel {
70 Q_OBJECT 72 Q_OBJECT
71public: 73public:
72 DateBookEvent(const EffectiveEvent &ev, 74 DateBookEvent(const EffectiveEvent &ev,
73 QWidget* parent = 0, const char* name = 0, 75 QWidget* parent = 0, const char* name = 0,
74 WFlags fl = 0); 76 WFlags fl = 0);
75signals: 77signals:
76 void editEvent(const Event &e); 78 void editEvent(const Event &e);