summaryrefslogtreecommitdiff
path: root/core/pim/todo/taskeditoroverviewimpl.h
authordrw <drw>2002-12-23 17:13:12 (UTC)
committer drw <drw>2002-12-23 17:13:12 (UTC)
commit1cb75c721b69459494cb599730a96bbc1ddc0f65 (patch) (unidiff)
tree9a45955d74016b639593c4a888acb4e96e17e9fb /core/pim/todo/taskeditoroverviewimpl.h
parentdeb4685b99d6c5917f92ce188ead09fdd9c37859 (diff)
downloadopie-1cb75c721b69459494cb599730a96bbc1ddc0f65.zip
opie-1cb75c721b69459494cb599730a96bbc1ddc0f65.tar.gz
opie-1cb75c721b69459494cb599730a96bbc1ddc0f65.tar.bz2
Task Editor dialog: 1. added tab icons 2. rearranged the overview tab 3. alarm/reminder tab updates 4. code clean-up. Still need to work on advanced tab and add qwhatsthis.
Diffstat (limited to 'core/pim/todo/taskeditoroverviewimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/taskeditoroverviewimpl.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/core/pim/todo/taskeditoroverviewimpl.h b/core/pim/todo/taskeditoroverviewimpl.h
deleted file mode 100644
index 5ee985e..0000000
--- a/core/pim/todo/taskeditoroverviewimpl.h
+++ b/dev/null
@@ -1,55 +0,0 @@
1#ifndef OPIE_TASK_EDITOR_VIEW_IMPL_H
2#define OPIE_TASK_EDITOR_VIEW_IMPL_H
3
4#include <qsize.h>
5
6#include <opie/otodo.h>
7
8#include "taskeditoroverview.h"
9
10class DateBookMonth;
11class QPushButton;
12class QPopupMenu;
13class TaskEditorOverViewImpl : public TaskEditorOverView {
14 Q_OBJECT
15public:
16 TaskEditorOverViewImpl(QWidget* parent, const char* name = 0);
17 ~TaskEditorOverViewImpl();
18
19 void load( const OTodo& );
20 void save( OTodo& );
21signals:
22 void recurranceEnabled( bool );
23 void dueDateChanged( const QDate& date );
24
25private:
26 void init();
27 void popup(QPushButton*, QPopupMenu*);
28 DateBookMonth* m_dueBook;
29 DateBookMonth* m_startBook;
30 DateBookMonth* m_compBook;
31 QDate m_start;
32 QDate m_comp;
33 QDate m_due;
34 QPopupMenu* m_startPop;
35 QPopupMenu* m_compPop;
36 QPopupMenu* m_duePop;
37 bool m_bDue : 1;
38
39private slots:
40 void slotStartChecked();
41 void slotStartChanged(int, int, int );
42 void slotDueChecked();
43 void slotDueChanged(int, int, int );
44 void slotCompletedChecked();
45 void slotCompletedChanged(int, int, int );
46
47 void hackySlotHack1();
48 void hackySlotHack2();
49 void hackySlotHack3();
50
51 void slotRecClicked();
52};
53
54
55#endif