-rw-r--r-- | core/pim/todo/mainwindow.cpp | 27 | ||||
-rw-r--r-- | core/pim/todo/todo.pro | 2 | ||||
-rw-r--r-- | core/pim/todo/todoentryimpl.cpp | 53 | ||||
-rw-r--r-- | core/pim/todo/todoentryimpl.h | 8 | ||||
-rw-r--r-- | core/pim/todo/todotable.cpp | 274 | ||||
-rw-r--r-- | core/pim/todo/todotable.h | 21 | ||||
-rw-r--r-- | libopie/todoevent.cpp | 22 | ||||
-rw-r--r-- | libopie/todoevent.h | 3 |
8 files changed, 134 insertions, 276 deletions
diff --git a/core/pim/todo/mainwindow.cpp b/core/pim/todo/mainwindow.cpp index 6709811..f3afa5f 100644 --- a/core/pim/todo/mainwindow.cpp +++ b/core/pim/todo/mainwindow.cpp | |||
@@ -23,17 +23,20 @@ | |||
23 | #include "mainwindow.h" | 23 | #include "mainwindow.h" |
24 | #include "todoentryimpl.h" | 24 | #include "todoentryimpl.h" |
25 | #include "todotable.h" | 25 | #include "todotable.h" |
26 | 26 | ||
27 | #include <opie/tododb.h> | ||
28 | #include <opie/todovcalresource.h> | ||
29 | |||
27 | #include <qpe/qpeapplication.h> | 30 | #include <qpe/qpeapplication.h> |
28 | #include <qpe/config.h> | 31 | #include <qpe/config.h> |
29 | #include <qpe/finddialog.h> | 32 | #include <qpe/finddialog.h> |
30 | #include <qpe/global.h> | 33 | #include <qpe/global.h> |
31 | #include <qpe/ir.h> | 34 | #include <qpe/ir.h> |
32 | #include <qpe/qpemenubar.h> | 35 | #include <qpe/qpemenubar.h> |
33 | #include <qpe/qpemessagebox.h> | 36 | #include <qpe/qpemessagebox.h> |
34 | #include <qpe/resource.h> | 37 | #include <qpe/resource.h> |
35 | #include <qpe/task.h> | 38 | //#include <qpe/task.h> |
36 | #include <qpe/qpetoolbar.h> | 39 | #include <qpe/qpetoolbar.h> |
37 | 40 | ||
38 | #include <qaction.h> | 41 | #include <qaction.h> |
39 | #include <qarray.h> | 42 | #include <qarray.h> |
@@ -214,19 +217,19 @@ void TodoWindow::slotNew() | |||
214 | if ( ids.count() ) | 217 | if ( ids.count() ) |
215 | id = ids[0]; | 218 | id = ids[0]; |
216 | NewTaskDialog e( id, this, 0, TRUE ); | 219 | NewTaskDialog e( id, this, 0, TRUE ); |
217 | 220 | ||
218 | Task todo; | 221 | ToDoEvent todo; |
219 | 222 | ||
220 | #if defined(Q_WS_QWS) || defined(_WS_QWS_) | 223 | #if defined(Q_WS_QWS) || defined(_WS_QWS_) |
221 | e.showMaximized(); | 224 | e.showMaximized(); |
222 | #endif | 225 | #endif |
223 | int ret = e.exec(); | 226 | int ret = e.exec(); |
224 | 227 | qWarning("finished" ); | |
225 | if ( ret == QDialog::Accepted ) { | 228 | if ( ret == QDialog::Accepted ) { |
226 | table->setPaintingEnabled( false ); | 229 | table->setPaintingEnabled( false ); |
227 | todo = e.todoEntry(); | 230 | todo = e.todoEntry(); |
228 | todo.assignUid(); | 231 | //todo.assignUid(); |
229 | table->addEntry( todo ); | 232 | table->addEntry( todo ); |
230 | table->setPaintingEnabled( true ); | 233 | table->setPaintingEnabled( true ); |
231 | findAction->setEnabled( TRUE ); | 234 | findAction->setEnabled( TRUE ); |
232 | } | 235 | } |
@@ -274,9 +277,9 @@ void TodoWindow::slotEdit() | |||
274 | tr("Can not edit data, currently syncing")); | 277 | tr("Can not edit data, currently syncing")); |
275 | return; | 278 | return; |
276 | } | 279 | } |
277 | 280 | ||
278 | Task todo = table->currentEntry(); | 281 | ToDoEvent todo = table->currentEntry(); |
279 | 282 | ||
280 | NewTaskDialog e( todo, this, 0, TRUE ); | 283 | NewTaskDialog e( todo, this, 0, TRUE ); |
281 | e.setCaption( tr( "Edit Task" ) ); | 284 | e.setCaption( tr( "Edit Task" ) ); |
282 | 285 | ||
@@ -348,10 +351,9 @@ void TodoWindow::populateCategories() | |||
348 | 351 | ||
349 | completedAction->addTo( catMenu ); | 352 | completedAction->addTo( catMenu ); |
350 | completedAction->setOn( table->showCompleted() ); | 353 | completedAction->setOn( table->showCompleted() ); |
351 | 354 | ||
352 | int id, | 355 | int id, rememberId; |
353 | rememberId; | ||
354 | id = 1; | 356 | id = 1; |
355 | catMenu->insertItem( tr( "All Categories" ), id++ ); | 357 | catMenu->insertItem( tr( "All Categories" ), id++ ); |
356 | // catMenu->insertSeparator(); | 358 | // catMenu->insertSeparator(); |
357 | QStringList categories = table->categories(); | 359 | QStringList categories = table->categories(); |
@@ -442,10 +444,11 @@ void TodoWindow::slotFind() | |||
442 | void TodoWindow::setDocument( const QString &filename ) | 444 | void TodoWindow::setDocument( const QString &filename ) |
443 | { | 445 | { |
444 | if ( filename.find(".vcs") != int(filename.length()) - 4 ) return; | 446 | if ( filename.find(".vcs") != int(filename.length()) - 4 ) return; |
445 | 447 | ||
446 | QValueList<Task> tl = Task::readVCalendar( filename ); | 448 | ToDoDB todoDB(filename, new ToDoVCalResource() ); |
447 | for( QValueList<Task>::Iterator it = tl.begin(); it != tl.end(); ++it ) { | 449 | QValueList<ToDoEvent> tl = todoDB.rawToDos(); |
450 | for( QValueList<ToDoEvent>::Iterator it = tl.begin(); it != tl.end(); ++it ) { | ||
448 | table->addEntry( *it ); | 451 | table->addEntry( *it ); |
449 | } | 452 | } |
450 | } | 453 | } |
451 | 454 | ||
@@ -453,11 +456,13 @@ static const char * beamfile = "/tmp/obex/todo.vcs"; | |||
453 | 456 | ||
454 | void TodoWindow::slotBeam() | 457 | void TodoWindow::slotBeam() |
455 | { | 458 | { |
456 | unlink( beamfile ); // delete if exists | 459 | unlink( beamfile ); // delete if exists |
457 | Task c = table->currentEntry(); | 460 | ToDoEvent c = table->currentEntry(); |
458 | mkdir("/tmp/obex/", 0755); | 461 | mkdir("/tmp/obex/", 0755); |
459 | Task::writeVCalendar( beamfile, c ); | 462 | ToDoDB todoDB( beamfile, new ToDoVCalResource() ); |
463 | todoDB.addEvent( c ); | ||
464 | todoDB.save(); | ||
460 | Ir *ir = new Ir( this ); | 465 | Ir *ir = new Ir( this ); |
461 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); | 466 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); |
462 | QString description = c.description(); | 467 | QString description = c.description(); |
463 | ir->send( beamfile, description, "text/x-vCalendar" ); | 468 | ir->send( beamfile, description, "text/x-vCalendar" ); |
diff --git a/core/pim/todo/todo.pro b/core/pim/todo/todo.pro index 18f70fe..7f9ddd5 100644 --- a/core/pim/todo/todo.pro +++ b/core/pim/todo/todo.pro | |||
@@ -13,8 +13,8 @@ INTERFACES = todoentry.ui | |||
13 | 13 | ||
14 | TARGET = todolist | 14 | TARGET = todolist |
15 | INCLUDEPATH += $(OPIEDIR)/include | 15 | INCLUDEPATH += $(OPIEDIR)/include |
16 | DEPENDPATH+= $(OPIEDIR)/include | 16 | DEPENDPATH+= $(OPIEDIR)/include |
17 | LIBS += -lqpe | 17 | LIBS += -lqpe -lopie |
18 | 18 | ||
19 | TRANSLATIONS = ../i18n/de/todolist.ts | 19 | TRANSLATIONS = ../i18n/de/todolist.ts |
20 | TRANSLATIONS += ../i18n/pt_BR/todolist.ts | 20 | TRANSLATIONS += ../i18n/pt_BR/todolist.ts |
diff --git a/core/pim/todo/todoentryimpl.cpp b/core/pim/todo/todoentryimpl.cpp index c957715..1dc1d44 100644 --- a/core/pim/todo/todoentryimpl.cpp +++ b/core/pim/todo/todoentryimpl.cpp | |||
@@ -19,14 +19,17 @@ | |||
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "todoentryimpl.h" | 21 | #include "todoentryimpl.h" |
22 | 22 | ||
23 | #include <opie/todoevent.h> | ||
24 | #include <opie/tododb.h> | ||
25 | |||
23 | #include <qpe/categoryselect.h> | 26 | #include <qpe/categoryselect.h> |
24 | #include <qpe/datebookmonth.h> | 27 | #include <qpe/datebookmonth.h> |
25 | #include <qpe/global.h> | 28 | #include <qpe/global.h> |
26 | #include <qpe/imageedit.h> | 29 | #include <qpe/imageedit.h> |
27 | #include <qpe/task.h> | ||
28 | #include <qpe/timestring.h> | 30 | #include <qpe/timestring.h> |
31 | #include <qpe/palmtoprecord.h> | ||
29 | 32 | ||
30 | #include <qmessagebox.h> | 33 | #include <qmessagebox.h> |
31 | #include <qpopupmenu.h> | 34 | #include <qpopupmenu.h> |
32 | #include <qtoolbutton.h> | 35 | #include <qtoolbutton.h> |
@@ -38,24 +41,25 @@ | |||
38 | #include <qtimer.h> | 41 | #include <qtimer.h> |
39 | #include <qapplication.h> | 42 | #include <qapplication.h> |
40 | 43 | ||
41 | 44 | ||
42 | NewTaskDialog::NewTaskDialog( const Task& task, QWidget *parent, | 45 | NewTaskDialog::NewTaskDialog( const ToDoEvent& task, QWidget *parent, |
43 | const char *name, bool modal, WFlags fl ) | 46 | const char *name, bool modal, WFlags fl ) |
44 | : NewTaskDialogBase( parent, name, modal, fl ), | 47 | : NewTaskDialogBase( parent, name, modal, fl ), |
45 | todo( task ) | 48 | todo( task ) |
46 | { | 49 | { |
47 | todo.setCategories( task.categories() ); | 50 | qWarning("setting category" ); |
48 | if ( todo.hasDueDate() ) | 51 | todo.setCategory( task.category() ); |
49 | date = todo.dueDate(); | 52 | if ( todo.hasDate() ) |
53 | date = todo.date(); | ||
50 | else | 54 | else |
51 | date = QDate::currentDate(); | 55 | date = QDate::currentDate(); |
52 | 56 | ||
53 | init(); | 57 | init(); |
54 | comboPriority->setCurrentItem( task.priority() - 1 ); | 58 | comboPriority->setCurrentItem( task.priority() - 1 ); |
55 | 59 | ||
56 | checkCompleted->setChecked( task.isCompleted() ); | 60 | checkCompleted->setChecked( task.isCompleted() ); |
57 | checkDate->setChecked( task.hasDueDate() ); | 61 | checkDate->setChecked( task.hasDate() ); |
58 | buttonDate->setText( TimeString::longDateString( date ) ); | 62 | buttonDate->setText( TimeString::longDateString( date ) ); |
59 | 63 | ||
60 | txtTodo->setText( task.description() ); | 64 | txtTodo->setText( task.description() ); |
61 | } | 65 | } |
@@ -74,9 +78,9 @@ NewTaskDialog::NewTaskDialog( int id, QWidget* parent, const char* name, bool m | |||
74 | { | 78 | { |
75 | if ( id != -1 ) { | 79 | if ( id != -1 ) { |
76 | QArray<int> ids( 1 ); | 80 | QArray<int> ids( 1 ); |
77 | ids[0] = id; | 81 | ids[0] = id; |
78 | todo.setCategories( ids ); | 82 | todo.setCategory( Qtopia::Record::idsToString( ids ) ); |
79 | } | 83 | } |
80 | init(); | 84 | init(); |
81 | } | 85 | } |
82 | 86 | ||
@@ -99,8 +103,9 @@ void NewTaskDialog::init() | |||
99 | * Destroys the object and frees any allocated resources | 103 | * Destroys the object and frees any allocated resources |
100 | */ | 104 | */ |
101 | NewTaskDialog::~NewTaskDialog() | 105 | NewTaskDialog::~NewTaskDialog() |
102 | { | 106 | { |
107 | qWarning("d'tor" ); | ||
103 | // no need to delete child widgets, Qt does it all for us | 108 | // no need to delete child widgets, Qt does it all for us |
104 | } | 109 | } |
105 | void NewTaskDialog::dateChanged( int y, int m, int d ) | 110 | void NewTaskDialog::dateChanged( int y, int m, int d ) |
106 | { | 111 | { |
@@ -110,20 +115,31 @@ void NewTaskDialog::dateChanged( int y, int m, int d ) | |||
110 | 115 | ||
111 | /*! | 116 | /*! |
112 | */ | 117 | */ |
113 | 118 | ||
114 | Task NewTaskDialog::todoEntry() | 119 | ToDoEvent NewTaskDialog::todoEntry() |
115 | { | 120 | { |
116 | todo.setDueDate( date, checkDate->isChecked() ); | 121 | qWarning("todoEntry()" ); |
117 | if ( comboCategory->currentCategory() != -1 ) { | 122 | if( checkDate->isChecked() ){ |
118 | todo.setCategories( comboCategory->currentCategories() ); | 123 | todo.setDate( date ); |
119 | } | 124 | todo.setHasDate( true ); |
120 | todo.setPriority( comboPriority->currentItem() + 1 ); | 125 | }else{ |
121 | todo.setCompleted( checkCompleted->isChecked() ); | 126 | todo.setHasDate( false ); |
122 | 127 | } | |
123 | todo.setDescription( txtTodo->text() ); | 128 | qWarning("todoEntry::category()" ); |
124 | 129 | if ( comboCategory->currentCategory() != -1 ) { | |
125 | return todo; | 130 | QArray<int> arr = comboCategory->currentCategories(); |
131 | int id = arr[0]; | ||
132 | qWarning("id 0: %d",id ); | ||
133 | todo.setCategory( Qtopia::Record::idsToString( arr ) ); | ||
134 | qWarning("saving category"); | ||
135 | } | ||
136 | todo.setPriority( comboPriority->currentItem() + 1 ); | ||
137 | todo.setCompleted( checkCompleted->isChecked() ); | ||
138 | |||
139 | todo.setDescription( txtTodo->text() ); | ||
140 | |||
141 | return todo; | ||
126 | } | 142 | } |
127 | 143 | ||
128 | 144 | ||
129 | /*! | 145 | /*! |
@@ -131,8 +147,9 @@ Task NewTaskDialog::todoEntry() | |||
131 | */ | 147 | */ |
132 | 148 | ||
133 | void NewTaskDialog::accept() | 149 | void NewTaskDialog::accept() |
134 | { | 150 | { |
151 | qWarning("accept" ); | ||
135 | QString strText = txtTodo->text(); | 152 | QString strText = txtTodo->text(); |
136 | if ( strText.isEmpty() ) { | 153 | if ( strText.isEmpty() ) { |
137 | // hmm... just decline it then, the user obviously didn't care about it | 154 | // hmm... just decline it then, the user obviously didn't care about it |
138 | QDialog::reject(); | 155 | QDialog::reject(); |
diff --git a/core/pim/todo/todoentryimpl.h b/core/pim/todo/todoentryimpl.h index 932d66e..6407eb4 100644 --- a/core/pim/todo/todoentryimpl.h +++ b/core/pim/todo/todoentryimpl.h | |||
@@ -22,9 +22,9 @@ | |||
22 | #define NEWTASKDIALOG_H | 22 | #define NEWTASKDIALOG_H |
23 | 23 | ||
24 | #include "todoentry.h" | 24 | #include "todoentry.h" |
25 | 25 | ||
26 | #include <qpe/task.h> | 26 | #include <opie/todoevent.h> |
27 | 27 | ||
28 | #include <qdatetime.h> | 28 | #include <qdatetime.h> |
29 | #include <qpalette.h> | 29 | #include <qpalette.h> |
30 | 30 | ||
@@ -36,15 +36,15 @@ class NewTaskDialog : public NewTaskDialogBase | |||
36 | { | 36 | { |
37 | Q_OBJECT | 37 | Q_OBJECT |
38 | 38 | ||
39 | public: | 39 | public: |
40 | NewTaskDialog( const Task &task, QWidget *parent = 0, const char* name = 0, | 40 | NewTaskDialog( const ToDoEvent &task, QWidget *parent = 0, const char* name = 0, |
41 | bool modal = FALSE, WFlags fl = 0 ); | 41 | bool modal = FALSE, WFlags fl = 0 ); |
42 | NewTaskDialog( int id, QWidget* parent = 0, const char* name = 0, | 42 | NewTaskDialog( int id, QWidget* parent = 0, const char* name = 0, |
43 | bool modal = FALSE, WFlags fl = 0 ); | 43 | bool modal = FALSE, WFlags fl = 0 ); |
44 | ~NewTaskDialog(); | 44 | ~NewTaskDialog(); |
45 | 45 | ||
46 | Task todoEntry(); | 46 | ToDoEvent todoEntry(); |
47 | 47 | ||
48 | protected slots: | 48 | protected slots: |
49 | void dateChanged( int y, int m, int d ); | 49 | void dateChanged( int y, int m, int d ); |
50 | 50 | ||
@@ -52,9 +52,9 @@ protected: | |||
52 | virtual void accept(); | 52 | virtual void accept(); |
53 | 53 | ||
54 | private: | 54 | private: |
55 | void init(); | 55 | void init(); |
56 | Task todo; | 56 | ToDoEvent todo; |
57 | QDate date; | 57 | QDate date; |
58 | DateBookMonth *picker; | 58 | DateBookMonth *picker; |
59 | }; | 59 | }; |
60 | 60 | ||
diff --git a/core/pim/todo/todotable.cpp b/core/pim/todo/todotable.cpp index 77d3389..2bb95a2 100644 --- a/core/pim/todo/todotable.cpp +++ b/core/pim/todo/todotable.cpp | |||
@@ -19,8 +19,9 @@ | |||
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "todotable.h" | 21 | #include "todotable.h" |
22 | 22 | ||
23 | #include <opie/tododb.h> | ||
23 | #include <qpe/categoryselect.h> | 24 | #include <qpe/categoryselect.h> |
24 | #include <qpe/xmlreader.h> | 25 | #include <qpe/xmlreader.h> |
25 | 26 | ||
26 | #include <qasciidict.h> | 27 | #include <qasciidict.h> |
@@ -38,9 +39,9 @@ | |||
38 | #include <stdlib.h> | 39 | #include <stdlib.h> |
39 | 40 | ||
40 | 41 | ||
41 | 42 | ||
42 | static bool taskCompare( const Task &task, const QRegExp &r, int category ); | 43 | static bool taskCompare( const ToDoEvent &task, const QRegExp &r, int category ); |
43 | 44 | ||
44 | static QString journalFileName(); | 45 | static QString journalFileName(); |
45 | 46 | ||
46 | CheckItem::CheckItem( QTable *t, const QString &key ) | 47 | CheckItem::CheckItem( QTable *t, const QString &key ) |
@@ -61,9 +62,9 @@ void CheckItem::setChecked( bool b ) | |||
61 | 62 | ||
62 | void CheckItem::toggle() | 63 | void CheckItem::toggle() |
63 | { | 64 | { |
64 | TodoTable *parent = static_cast<TodoTable*>(table()); | 65 | TodoTable *parent = static_cast<TodoTable*>(table()); |
65 | Task newTodo = parent->currentEntry(); | 66 | ToDoEvent newTodo = parent->currentEntry(); |
66 | checked = !checked; | 67 | checked = !checked; |
67 | newTodo.setCompleted( checked ); | 68 | newTodo.setCompleted( checked ); |
68 | table()->updateCell( row(), col() ); | 69 | table()->updateCell( row(), col() ); |
69 | parent->replaceCurrentEntry( newTodo, true ); | 70 | parent->replaceCurrentEntry( newTodo, true ); |
@@ -132,9 +133,9 @@ QWidget *ComboItem::createEditor() const | |||
132 | 133 | ||
133 | void ComboItem::setContentFromEditor( QWidget *w ) | 134 | void ComboItem::setContentFromEditor( QWidget *w ) |
134 | { | 135 | { |
135 | TodoTable *parent = static_cast<TodoTable*>(table()); | 136 | TodoTable *parent = static_cast<TodoTable*>(table()); |
136 | Task newTodo = parent->currentEntry(); | 137 | ToDoEvent newTodo = parent->currentEntry(); |
137 | 138 | ||
138 | if ( w->inherits( "QComboBox" ) ) | 139 | if ( w->inherits( "QComboBox" ) ) |
139 | setText( ( (QComboBox*)w )->currentText() ); | 140 | setText( ( (QComboBox*)w )->currentText() ); |
140 | else | 141 | else |
@@ -193,14 +194,14 @@ TodoTable::TodoTable( QWidget *parent, const char *name ) | |||
193 | menuTimer = new QTimer( this ); | 194 | menuTimer = new QTimer( this ); |
194 | connect( menuTimer, SIGNAL(timeout()), this, SLOT(slotShowMenu()) ); | 195 | connect( menuTimer, SIGNAL(timeout()), this, SLOT(slotShowMenu()) ); |
195 | } | 196 | } |
196 | 197 | ||
197 | void TodoTable::addEntry( const Task &todo ) | 198 | void TodoTable::addEntry( const ToDoEvent &todo ) |
198 | { | 199 | { |
199 | int row = numRows(); | 200 | int row = numRows(); |
200 | setNumRows( row + 1 ); | 201 | setNumRows( row + 1 ); |
201 | updateJournal( todo, ACTION_ADD ); | 202 | updateJournal( todo, ACTION_ADD ); |
202 | insertIntoTable( new Task(todo), row ); | 203 | insertIntoTable( new ToDoEvent(todo), row ); |
203 | setCurrentCell(row, currentColumn()); | 204 | setCurrentCell(row, currentColumn()); |
204 | updateVisible(); | 205 | updateVisible(); |
205 | } | 206 | } |
206 | 207 | ||
@@ -251,30 +252,30 @@ void TodoTable::slotCurrentChanged( int, int ) | |||
251 | { | 252 | { |
252 | menuTimer->stop(); | 253 | menuTimer->stop(); |
253 | } | 254 | } |
254 | 255 | ||
255 | void TodoTable::internalAddEntries( QList<Task> &list ) | 256 | void TodoTable::internalAddEntries( QList<ToDoEvent> &list ) |
256 | { | 257 | { |
257 | setNumRows( list.count() ); | 258 | setNumRows( list.count() ); |
258 | int row = 0; | 259 | int row = 0; |
259 | Task *it; | 260 | ToDoEvent *it; |
260 | for ( it = list.first(); it; it = list.next() ) | 261 | for ( it = list.first(); it; it = list.next() ) |
261 | insertIntoTable( it, row++ ); | 262 | insertIntoTable( it, row++ ); |
262 | } | 263 | } |
263 | 264 | ||
264 | 265 | ||
265 | Task TodoTable::currentEntry() const | 266 | ToDoEvent TodoTable::currentEntry() const |
266 | { | 267 | { |
267 | QTableItem *i = item( currentRow(), 0 ); | 268 | QTableItem *i = item( currentRow(), 0 ); |
268 | if ( !i || rowHeight( currentRow() ) <= 0 ) | 269 | if ( !i || rowHeight( currentRow() ) <= 0 ) |
269 | return Task(); | 270 | return ToDoEvent(); |
270 | Task *todo = todoList[(CheckItem*)i]; | 271 | ToDoEvent *todo = todoList[(CheckItem*)i]; |
271 | todo->setCompleted( ( (CheckItem*)item( currentRow(), 0 ) )->isChecked() ); | 272 | todo->setCompleted( ( (CheckItem*)item( currentRow(), 0 ) )->isChecked() ); |
272 | todo->setPriority( ( (ComboItem*)item( currentRow(), 1 ) )->text().toInt() ); | 273 | todo->setPriority( ( (ComboItem*)item( currentRow(), 1 ) )->text().toInt() ); |
273 | return *todo; | 274 | return *todo; |
274 | } | 275 | } |
275 | 276 | ||
276 | void TodoTable::replaceCurrentEntry( const Task &todo, bool fromTableItem ) | 277 | void TodoTable::replaceCurrentEntry( const ToDoEvent &todo, bool fromTableItem ) |
277 | { | 278 | { |
278 | int row = currentRow(); | 279 | int row = currentRow(); |
279 | updateJournal( todo, ACTION_REPLACE, row ); | 280 | updateJournal( todo, ACTION_REPLACE, row ); |
280 | 281 | ||
@@ -285,9 +286,9 @@ void TodoTable::replaceCurrentEntry( const Task &todo, bool fromTableItem ) | |||
285 | } | 286 | } |
286 | 287 | ||
287 | void TodoTable::removeCurrentEntry() | 288 | void TodoTable::removeCurrentEntry() |
288 | { | 289 | { |
289 | Task *oldTodo; | 290 | ToDoEvent *oldTodo; |
290 | int row = currentRow(); | 291 | int row = currentRow(); |
291 | CheckItem *chk; | 292 | CheckItem *chk; |
292 | 293 | ||
293 | chk = static_cast<CheckItem*>(item(row, 0 )); | 294 | chk = static_cast<CheckItem*>(item(row, 0 )); |
@@ -306,47 +307,24 @@ void TodoTable::removeCurrentEntry() | |||
306 | 307 | ||
307 | bool TodoTable::save( const QString &fn ) | 308 | bool TodoTable::save( const QString &fn ) |
308 | { | 309 | { |
309 | QString strNewFile = fn + ".new"; | 310 | QString strNewFile = fn + ".new"; |
310 | QFile f( strNewFile ); | 311 | QFile::remove( strNewFile ); // just to be sure |
311 | if ( !f.open( IO_WriteOnly|IO_Raw ) ) | 312 | ToDoDB todoDB( strNewFile ); |
312 | return false; | 313 | for ( QMap<CheckItem*, ToDoEvent *>::Iterator it = todoList.begin(); |
313 | |||
314 | QString buf("<!DOCTYPE Tasks>\n<Tasks>\n"); | ||
315 | QCString str; | ||
316 | int total_written; | ||
317 | |||
318 | for ( QMap<CheckItem*, Task *>::Iterator it = todoList.begin(); | ||
319 | it != todoList.end(); ++it ) { | 314 | it != todoList.end(); ++it ) { |
320 | if ( !item( it.key()->row(), 0 ) ) | 315 | if ( !item( it.key()->row(), 0 ) ) |
321 | continue; | 316 | continue; |
322 | Task *todo = *it; | 317 | ToDoEvent *todo = *it; |
323 | // sync item with table | 318 | // sync item with table |
324 | todo->setCompleted( ((CheckItem*)item(it.key()->row(), 0))->isChecked() ); | 319 | todo->setCompleted( ((CheckItem*)item(it.key()->row(), 0))->isChecked() ); |
325 | todo->setPriority( ((ComboItem*)item( it.key()->row(), 1))->text().toInt() ); | 320 | todo->setPriority( ((ComboItem*)item( it.key()->row(), 1))->text().toInt() ); |
326 | buf += "<Task"; | 321 | todoDB.addEvent( *todo ); |
327 | todo->save( buf ); | ||
328 | buf += " />\n"; | ||
329 | str = buf.utf8(); | ||
330 | total_written = f.writeBlock( str.data(), str.length() ); | ||
331 | if ( total_written != int(str.length()) ) { | ||
332 | f.close(); | ||
333 | QFile::remove( strNewFile ); | ||
334 | return false; | ||
335 | } | ||
336 | buf = ""; | ||
337 | } | ||
338 | |||
339 | buf += "</Tasks>\n"; | ||
340 | str = buf.utf8(); | ||
341 | total_written = f.writeBlock( str.data(), str.length() ); | ||
342 | if ( total_written != int(str.length()) ) { | ||
343 | f.close(); | ||
344 | QFile::remove( strNewFile ); | ||
345 | return false; | ||
346 | } | 322 | } |
347 | f.close(); | 323 | if(!todoDB.save() ){ |
348 | 324 | QFile::remove( strNewFile ); | |
325 | return false; | ||
326 | }; | ||
349 | // now do the rename | 327 | // now do the rename |
350 | if ( ::rename( strNewFile, fn ) < 0 ) | 328 | if ( ::rename( strNewFile, fn ) < 0 ) |
351 | qWarning( "problem renaming file %s to %s errno %d", | 329 | qWarning( "problem renaming file %s to %s errno %d", |
352 | strNewFile.latin1(), fn.latin1(), errno ); | 330 | strNewFile.latin1(), fn.latin1(), errno ); |
@@ -379,9 +357,9 @@ void TodoTable::updateVisible() | |||
379 | int visible = 0; | 357 | int visible = 0; |
380 | int id = mCat.id( "Todo List", showCat ); | 358 | int id = mCat.id( "Todo List", showCat ); |
381 | for ( int row = 0; row < numRows(); row++ ) { | 359 | for ( int row = 0; row < numRows(); row++ ) { |
382 | CheckItem *ci = (CheckItem *)item( row, 0 ); | 360 | CheckItem *ci = (CheckItem *)item( row, 0 ); |
383 | Task *t = todoList[ci]; | 361 | ToDoEvent *t = todoList[ci]; |
384 | QArray<int> vlCats = t->categories(); | 362 | QArray<int> vlCats = t->categories(); |
385 | bool hide = false; | 363 | bool hide = false; |
386 | if ( !showComp && ci->isChecked() ) | 364 | if ( !showComp && ci->isChecked() ) |
387 | hide = true; | 365 | hide = true; |
@@ -439,11 +417,11 @@ void TodoTable::setPaintingEnabled( bool e ) | |||
439 | } | 417 | } |
440 | 418 | ||
441 | void TodoTable::clear() | 419 | void TodoTable::clear() |
442 | { | 420 | { |
443 | for ( QMap<CheckItem*, Task *>::Iterator it = todoList.begin(); | 421 | for ( QMap<CheckItem*, ToDoEvent *>::Iterator it = todoList.begin(); |
444 | it != todoList.end(); ++it ) { | 422 | it != todoList.end(); ++it ) { |
445 | Task *todo = *it; | 423 | ToDoEvent *todo = *it; |
446 | delete todo; | 424 | delete todo; |
447 | } | 425 | } |
448 | todoList.clear(); | 426 | todoList.clear(); |
449 | for ( int r = 0; r < numRows(); ++r ) { | 427 | for ( int r = 0; r < numRows(); ++r ) { |
@@ -476,17 +454,17 @@ void TodoTable::slotCheckPriority(int row, int col ) | |||
476 | } | 454 | } |
477 | } | 455 | } |
478 | 456 | ||
479 | 457 | ||
480 | void TodoTable::updateJournal( const Task &todo, journal_action action, int row ) | 458 | void TodoTable::updateJournal( const ToDoEvent &todo, journal_action action, int row ) |
481 | { | 459 | { |
482 | QFile f( journalFileName() ); | 460 | QFile f( journalFileName() ); |
483 | if ( !f.open(IO_WriteOnly|IO_Append) ) | 461 | if ( !f.open(IO_WriteOnly|IO_Append) ) |
484 | return; | 462 | return; |
485 | QString buf; | 463 | QString buf; |
486 | QCString str; | 464 | QCString str; |
487 | buf = "<Task"; | 465 | buf = "<Task"; |
488 | todo.save( buf ); | 466 | // todo.save( buf ); |
489 | buf += " Action=\"" + QString::number( int(action) ) + "\""; | 467 | buf += " Action=\"" + QString::number( int(action) ) + "\""; |
490 | buf += " Row=\"" + QString::number( row ) + "\""; | 468 | buf += " Row=\"" + QString::number( row ) + "\""; |
491 | buf += "/>\n"; | 469 | buf += "/>\n"; |
492 | str = buf.utf8(); | 470 | str = buf.utf8(); |
@@ -501,194 +479,30 @@ void TodoTable::rowHeightChanged( int row ) | |||
501 | } | 479 | } |
502 | 480 | ||
503 | void TodoTable::loadFile( const QString &strFile, bool fromJournal ) | 481 | void TodoTable::loadFile( const QString &strFile, bool fromJournal ) |
504 | { | 482 | { |
505 | QFile f( strFile ); | ||
506 | if ( !f.open(IO_ReadOnly) ) | ||
507 | return; | ||
508 | |||
509 | int action, row; | ||
510 | action = 0; row = 0; | ||
511 | |||
512 | enum Attribute { | ||
513 | FCompleted = 0, | ||
514 | FHasDate, | ||
515 | FPriority, | ||
516 | FCategories, | ||
517 | FDescription, | ||
518 | FDateYear, | ||
519 | FDateMonth, | ||
520 | FDateDay, | ||
521 | FUid, | ||
522 | FAction, | ||
523 | FRow | ||
524 | }; | ||
525 | |||
526 | QAsciiDict<int> dict( 31 ); | ||
527 | QList<Task> list; | ||
528 | dict.setAutoDelete( TRUE ); | ||
529 | dict.insert( "Completed", new int(FCompleted) ); | ||
530 | dict.insert( "HasDate", new int(FHasDate) ); | ||
531 | dict.insert( "Priority", new int(FPriority) ); | ||
532 | dict.insert( "Categories", new int(FCategories) ); | ||
533 | dict.insert( "Description", new int(FDescription) ); | ||
534 | dict.insert( "DateYear", new int(FDateYear) ); | ||
535 | dict.insert( "DateMonth", new int(FDateMonth) ); | ||
536 | dict.insert( "DateDay", new int(FDateDay) ); | ||
537 | dict.insert( "Uid", new int(FUid) ); | ||
538 | dict.insert( "Action", new int(FAction) ); | ||
539 | dict.insert( "Row", new int(FRow) ); | ||
540 | |||
541 | QByteArray ba = f.readAll(); | ||
542 | f.close(); | ||
543 | char* dt = ba.data(); | ||
544 | int len = ba.size(); | ||
545 | bool hasDueDate = FALSE; | ||
546 | |||
547 | action = ACTION_ADD; | ||
548 | int i = 0; | ||
549 | char *point; | ||
550 | while ( ( point = strstr( dt+i, "<Task " ) ) != NULL ) { | ||
551 | // new Task | ||
552 | i = point - dt; | ||
553 | Task *todo = new Task; | ||
554 | int dtY = 0, dtM = 0, dtD = 0; | ||
555 | |||
556 | i += 5; | ||
557 | |||
558 | while( 1 ) { | ||
559 | while ( i < len && (dt[i] == ' ' || dt[i] == '\n' || dt[i] == '\r') ) | ||
560 | ++i; | ||
561 | if ( i >= len-2 || (dt[i] == '/' && dt[i+1] == '>') ) | ||
562 | break; | ||
563 | // we have another attribute, read it. | ||
564 | int j = i; | ||
565 | while ( j < len && dt[j] != '=' ) | ||
566 | ++j; | ||
567 | char *attr = dt+i; | ||
568 | dt[j] = '\0'; | ||
569 | i = ++j; // skip = | ||
570 | while ( i < len && dt[i] != '"' ) | ||
571 | ++i; | ||
572 | j = ++i; | ||
573 | bool haveUtf = FALSE; | ||
574 | bool haveEnt = FALSE; | ||
575 | while ( j < len && dt[j] != '"' ) { | ||
576 | if ( ((unsigned char)dt[j]) > 0x7f ) | ||
577 | haveUtf = TRUE; | ||
578 | if ( dt[j] == '&' ) | ||
579 | haveEnt = TRUE; | ||
580 | ++j; | ||
581 | } | ||
582 | if ( i == j ) { | ||
583 | // empty value | ||
584 | i = j + 1; | ||
585 | continue; | ||
586 | } | ||
587 | QCString value( dt+i, j-i+1 ); | ||
588 | i = j + 1; | ||
589 | int *lookup = dict[ attr ]; | ||
590 | if ( !lookup ) { | ||
591 | todo->setCustomField(attr, value); | ||
592 | continue; | ||
593 | } | ||
594 | switch( *lookup ) { | ||
595 | case FCompleted: | ||
596 | todo->setCompleted( value.toInt() ); | ||
597 | break; | ||
598 | case FHasDate: | ||
599 | // leave... | ||
600 | hasDueDate = value.toInt(); | ||
601 | break; | ||
602 | case FPriority: | ||
603 | todo->setPriority( value.toInt() ); | ||
604 | break; | ||
605 | case FCategories: { | ||
606 | //QString str = Qtopia::plainString( value ); | ||
607 | todo->setCategories( Qtopia::Record::idsFromString( value ) ); | ||
608 | break; | ||
609 | } | ||
610 | case FDescription: | ||
611 | { | ||
612 | QString str = (haveUtf ? QString::fromUtf8( value ) | ||
613 | : QString::fromLatin1( value ) ); | ||
614 | if ( haveEnt ) | ||
615 | str = Qtopia::plainString( str ); | ||
616 | todo->setDescription( str ); | ||
617 | break; | ||
618 | } | ||
619 | case FDateYear: | ||
620 | dtY = value.toInt(); | ||
621 | break; | ||
622 | case FDateMonth: | ||
623 | dtM = value.toInt(); | ||
624 | break; | ||
625 | case FDateDay: | ||
626 | dtD = value.toInt(); | ||
627 | break; | ||
628 | case FUid: | ||
629 | todo->setUid( value.toInt() ); | ||
630 | break; | ||
631 | case FAction: | ||
632 | action = value.toInt(); | ||
633 | break; | ||
634 | case FRow: | ||
635 | row = value.toInt(); | ||
636 | break; | ||
637 | default: | ||
638 | qDebug( "huh??? missing enum? -- attr.: %s", attr ); | ||
639 | break; | ||
640 | } | ||
641 | } | ||
642 | |||
643 | if ( dtY != 0 && dtM != 0 && dtD != 0 ) | ||
644 | todo->setDueDate( QDate( dtY, dtM, dtD), hasDueDate ); | ||
645 | else | ||
646 | todo->setHasDueDate( hasDueDate ); | ||
647 | |||
648 | // if ( categoryList.find( todo.category() ) == categoryList.end() ) | ||
649 | // categoryList.append( todo.category() ); | ||
650 | |||
651 | 483 | ||
652 | // sadly we can't delay adding of items from the journal to get | 484 | QList<ToDoEvent> list; |
653 | // the proper effect, but then, the journal should _never_ be | 485 | ToDoDB todoDB; |
654 | // that huge | 486 | QValueList<ToDoEvent> vaList = todoDB.rawToDos(); |
655 | 487 | for(QValueList<ToDoEvent>::ConstIterator it = vaList.begin(); it != vaList.end(); ++it ){ | |
656 | switch( action ) { | 488 | list.append( new ToDoEvent( (*it) ) ); |
657 | case ACTION_ADD: | 489 | } |
658 | if ( fromJournal ) { | 490 | vaList.clear(); |
659 | int myrows = numRows(); | 491 | // qDebug("parsing done=%d", t.elapsed() ); |
660 | setNumRows( myrows + 1 ); | 492 | if ( list.count() > 0 ) { |
661 | insertIntoTable( todo, myrows ); | 493 | internalAddEntries( list ); |
662 | delete todo; | 494 | list.clear(); |
663 | } else | 495 | } |
664 | list.append( todo ); | ||
665 | break; | ||
666 | case ACTION_REMOVE: | ||
667 | journalFreeRemoveEntry( row ); | ||
668 | break; | ||
669 | case ACTION_REPLACE: | ||
670 | journalFreeReplaceEntry( *todo, row ); | ||
671 | delete todo; | ||
672 | break; | ||
673 | default: | ||
674 | break; | ||
675 | } | ||
676 | } | ||
677 | // qDebug("parsing done=%d", t.elapsed() ); | ||
678 | if ( list.count() > 0 ) { | ||
679 | internalAddEntries( list ); | ||
680 | list.clear(); | ||
681 | } | ||
682 | // qDebug("loading done: t=%d", t.elapsed() ); | 496 | // qDebug("loading done: t=%d", t.elapsed() ); |
683 | } | 497 | } |
684 | 498 | ||
685 | void TodoTable::journalFreeReplaceEntry( const Task &todo, int row ) | 499 | void TodoTable::journalFreeReplaceEntry( const ToDoEvent &todo, int row ) |
686 | { | 500 | { |
687 | QString strTodo; | 501 | QString strTodo; |
688 | strTodo = todo.description().left(40).simplifyWhiteSpace(); | 502 | strTodo = todo.description().left(40).simplifyWhiteSpace(); |
689 | if ( row == -1 ) { | 503 | if ( row == -1 ) { |
690 | QMapIterator<CheckItem*, Task *> it; | 504 | QMapIterator<CheckItem*, ToDoEvent *> it; |
691 | for ( it = todoList.begin(); it != todoList.end(); ++it ) { | 505 | for ( it = todoList.begin(); it != todoList.end(); ++it ) { |
692 | if ( *(*it) == todo ) { | 506 | if ( *(*it) == todo ) { |
693 | row = it.key()->row(); | 507 | row = it.key()->row(); |
694 | it.key()->setChecked( todo.isCompleted() ); | 508 | it.key()->setChecked( todo.isCompleted() ); |
@@ -697,15 +511,15 @@ void TodoTable::journalFreeReplaceEntry( const Task &todo, int row ) | |||
697 | *(*it) = todo; | 511 | *(*it) = todo; |
698 | } | 512 | } |
699 | } | 513 | } |
700 | } else { | 514 | } else { |
701 | Task *t = todoList[static_cast<CheckItem*>(item(row, 0))]; | 515 | ToDoEvent *t = todoList[static_cast<CheckItem*>(item(row, 0))]; |
702 | todoList.remove( static_cast<CheckItem*>(item(row, 0)) ); | 516 | todoList.remove( static_cast<CheckItem*>(item(row, 0)) ); |
703 | delete t; | 517 | delete t; |
704 | static_cast<CheckItem*>(item(row, 0))->setChecked( todo.isCompleted() ); | 518 | static_cast<CheckItem*>(item(row, 0))->setChecked( todo.isCompleted() ); |
705 | static_cast<ComboItem*>(item(row, 1))->setText( QString::number(todo.priority()) ); | 519 | static_cast<ComboItem*>(item(row, 1))->setText( QString::number(todo.priority()) ); |
706 | item( row, 2 )->setText( strTodo ); | 520 | item( row, 2 )->setText( strTodo ); |
707 | todoList.insert( static_cast<CheckItem*>(item(row,0)), new Task(todo) ); | 521 | todoList.insert( static_cast<CheckItem*>(item(row,0)), new ToDoEvent(todo) ); |
708 | } | 522 | } |
709 | } | 523 | } |
710 | 524 | ||
711 | void TodoTable::journalFreeRemoveEntry( int row ) | 525 | void TodoTable::journalFreeRemoveEntry( int row ) |
@@ -813,9 +627,9 @@ int TodoTable::showCategoryId() const | |||
813 | id = mCat.id( "Todo List", showCat ); | 627 | id = mCat.id( "Todo List", showCat ); |
814 | return id; | 628 | return id; |
815 | } | 629 | } |
816 | 630 | ||
817 | static bool taskCompare( const Task &task, const QRegExp &r, int category ) | 631 | static bool taskCompare( const ToDoEvent &task, const QRegExp &r, int category ) |
818 | { | 632 | { |
819 | bool returnMe; | 633 | bool returnMe; |
820 | QArray<int> cats; | 634 | QArray<int> cats; |
821 | cats = task.categories(); | 635 | cats = task.categories(); |
diff --git a/core/pim/todo/todotable.h b/core/pim/todo/todotable.h index 4f3a064..2746ce7 100644 --- a/core/pim/todo/todotable.h +++ b/core/pim/todo/todotable.h | |||
@@ -22,9 +22,10 @@ | |||
22 | #define TODOTABLE_H | 22 | #define TODOTABLE_H |
23 | 23 | ||
24 | #include <qpe/categories.h> | 24 | #include <qpe/categories.h> |
25 | #include <qpe/stringutil.h> | 25 | #include <qpe/stringutil.h> |
26 | #include <qpe/task.h> | 26 | //#include <qpe/task.h> |
27 | #include <opie/todoevent.h> | ||
27 | 28 | ||
28 | #include <qtable.h> | 29 | #include <qtable.h> |
29 | #include <qmap.h> | 30 | #include <qmap.h> |
30 | #include <qguardedptr.h> | 31 | #include <qguardedptr.h> |
@@ -85,13 +86,13 @@ class TodoTable : public QTable | |||
85 | Q_OBJECT | 86 | Q_OBJECT |
86 | 87 | ||
87 | public: | 88 | public: |
88 | TodoTable( QWidget *parent = 0, const char * name = 0 ); | 89 | TodoTable( QWidget *parent = 0, const char * name = 0 ); |
89 | void addEntry( const Task &todo ); | 90 | void addEntry( const ToDoEvent &todo ); |
90 | void clearFindRow() { currFindRow = -2; } | 91 | void clearFindRow() { currFindRow = -2; } |
91 | 92 | ||
92 | Task currentEntry() const; | 93 | ToDoEvent currentEntry() const; |
93 | void replaceCurrentEntry( const Task &todo, bool fromTableItem = false ); | 94 | void replaceCurrentEntry( const ToDoEvent &todo, bool fromTableItem = false ); |
94 | 95 | ||
95 | QStringList categories(); | 96 | QStringList categories(); |
96 | 97 | ||
97 | void setShowCompleted( bool sc ) { showComp = sc; updateVisible(); } | 98 | void setShowCompleted( bool sc ) { showComp = sc; updateVisible(); } |
@@ -127,13 +128,13 @@ protected: | |||
127 | 128 | ||
128 | private: | 129 | private: |
129 | void updateVisible(); | 130 | void updateVisible(); |
130 | void viewportPaintEvent( QPaintEvent * ); | 131 | void viewportPaintEvent( QPaintEvent * ); |
131 | void internalAddEntries( QList<Task> &list); | 132 | void internalAddEntries( QList<ToDoEvent> &list); |
132 | inline void insertIntoTable( Task *todo, int row ); | 133 | inline void insertIntoTable( ToDoEvent *todo, int row ); |
133 | void updateJournal( const Task &todo, journal_action action, int row = -1); | 134 | void updateJournal( const ToDoEvent &todo, journal_action action, int row = -1); |
134 | void mergeJournal(); | 135 | void mergeJournal(); |
135 | void journalFreeReplaceEntry( const Task &todo, int row ); | 136 | void journalFreeReplaceEntry( const ToDoEvent &todo, int row ); |
136 | void journalFreeRemoveEntry( int row ); | 137 | void journalFreeRemoveEntry( int row ); |
137 | inline void realignTable( int row ); | 138 | inline void realignTable( int row ); |
138 | void loadFile( const QString &strFile, bool fromJournal = false ); | 139 | void loadFile( const QString &strFile, bool fromJournal = false ); |
139 | 140 | ||
@@ -149,9 +150,9 @@ private slots: | |||
149 | 150 | ||
150 | private: | 151 | private: |
151 | friend class TodoWindow; | 152 | friend class TodoWindow; |
152 | 153 | ||
153 | QMap<CheckItem*, Task *> todoList; | 154 | QMap<CheckItem*, ToDoEvent *> todoList; |
154 | QStringList categoryList; | 155 | QStringList categoryList; |
155 | bool showComp; | 156 | bool showComp; |
156 | QString showCat; | 157 | QString showCat; |
157 | QTimer *menuTimer; | 158 | QTimer *menuTimer; |
@@ -160,9 +161,9 @@ private: | |||
160 | int currFindRow; | 161 | int currFindRow; |
161 | }; | 162 | }; |
162 | 163 | ||
163 | 164 | ||
164 | inline void TodoTable::insertIntoTable( Task *todo, int row ) | 165 | inline void TodoTable::insertIntoTable( ToDoEvent *todo, int row ) |
165 | { | 166 | { |
166 | QString sortKey = (char) ((todo->isCompleted() ? 'a' : 'A') | 167 | QString sortKey = (char) ((todo->isCompleted() ? 'a' : 'A') |
167 | + todo->priority() ) | 168 | + todo->priority() ) |
168 | + Qtopia::buildSortKey( todo->description() ); | 169 | + Qtopia::buildSortKey( todo->description() ); |
diff --git a/libopie/todoevent.cpp b/libopie/todoevent.cpp index daa25f4..7dbf907 100644 --- a/libopie/todoevent.cpp +++ b/libopie/todoevent.cpp | |||
@@ -1,9 +1,9 @@ | |||
1 | 1 | ||
2 | #include <opie/todoevent.h> | 2 | #include <opie/todoevent.h> |
3 | #include <qpe/palmtopuidgen.h> | 3 | #include <qpe/palmtopuidgen.h> |
4 | #include <qpe/stringutil.h> | 4 | #include <qpe/stringutil.h> |
5 | //#include <qpe/palmtoprecord.h> | 5 | #include <qpe/palmtoprecord.h> |
6 | 6 | ||
7 | ToDoEvent::ToDoEvent(const ToDoEvent &event ) | 7 | ToDoEvent::ToDoEvent(const ToDoEvent &event ) |
8 | { | 8 | { |
9 | *this = event; | 9 | *this = event; |
@@ -25,8 +25,25 @@ ToDoEvent::ToDoEvent(bool completed, int priority, const QString &category, | |||
25 | delete uidgen; | 25 | delete uidgen; |
26 | }// generate the ids | 26 | }// generate the ids |
27 | m_uid = uid; | 27 | m_uid = uid; |
28 | } | 28 | } |
29 | QArray<int> ToDoEvent::categories()const | ||
30 | { | ||
31 | QArray<int> array(1); // currently the datebook can be only in one category | ||
32 | array = Qtopia::Record::idsFromString( category() ); | ||
33 | return array; | ||
34 | } | ||
35 | bool ToDoEvent::match( const QRegExp ®Exp )const | ||
36 | { | ||
37 | if( QString::number( m_priority ).find( regExp ) != -1 ){ | ||
38 | return true; | ||
39 | }else if( m_hasDate && m_date.toString().find( regExp) != -1 ){ | ||
40 | return true; | ||
41 | }else if(m_desc.find( regExp ) != -1 ){ | ||
42 | return true; | ||
43 | } | ||
44 | return false; | ||
45 | } | ||
29 | bool ToDoEvent::isCompleted() const | 46 | bool ToDoEvent::isCompleted() const |
30 | { | 47 | { |
31 | return m_isCompleted; | 48 | return m_isCompleted; |
32 | } | 49 | } |
@@ -63,9 +80,10 @@ void ToDoEvent::setDescription(const QString &desc ) | |||
63 | m_desc = Qtopia::simplifyMultiLineSpace(desc ); | 80 | m_desc = Qtopia::simplifyMultiLineSpace(desc ); |
64 | } | 81 | } |
65 | void ToDoEvent::setCategory( const QString &cat ) | 82 | void ToDoEvent::setCategory( const QString &cat ) |
66 | { | 83 | { |
67 | m_category = cat; | 84 | qWarning("setCategory %s", cat.latin1() ); |
85 | m_category = cat; | ||
68 | } | 86 | } |
69 | void ToDoEvent::setPriority(int prio ) | 87 | void ToDoEvent::setPriority(int prio ) |
70 | { | 88 | { |
71 | m_priority = prio; | 89 | m_priority = prio; |
diff --git a/libopie/todoevent.h b/libopie/todoevent.h index bca7f6e..ac996a1 100644 --- a/libopie/todoevent.h +++ b/libopie/todoevent.h | |||
@@ -16,8 +16,9 @@ class ToDoEvent { | |||
16 | bool isCompleted() const; | 16 | bool isCompleted() const; |
17 | bool hasDate() const; | 17 | bool hasDate() const; |
18 | int priority()const ; | 18 | int priority()const ; |
19 | QString category()const; | 19 | QString category()const; |
20 | QArray<int> categories() const; | ||
20 | QDate date()const; | 21 | QDate date()const; |
21 | QString description()const; | 22 | QString description()const; |
22 | 23 | ||
23 | int uid()const { return m_uid;}; | 24 | int uid()const { return m_uid;}; |
@@ -29,8 +30,10 @@ class ToDoEvent { | |||
29 | void setDate( QDate date ); | 30 | void setDate( QDate date ); |
30 | void setDescription(const QString& ); | 31 | void setDescription(const QString& ); |
31 | bool isOverdue(); | 32 | bool isOverdue(); |
32 | 33 | ||
34 | bool match( const QRegExp &r )const; | ||
35 | |||
33 | void setUid(int id) {m_uid = id; }; | 36 | void setUid(int id) {m_uid = id; }; |
34 | bool operator<(const ToDoEvent &toDoEvent )const; | 37 | bool operator<(const ToDoEvent &toDoEvent )const; |
35 | bool operator<=(const ToDoEvent &toDoEvent )const; | 38 | bool operator<=(const ToDoEvent &toDoEvent )const; |
36 | bool operator!=(const ToDoEvent &toDoEvent )const { return !(*this == toDoEvent); }; | 39 | bool operator!=(const ToDoEvent &toDoEvent )const { return !(*this == toDoEvent); }; |