summaryrefslogtreecommitdiff
path: root/core/pim/todo/taskeditoroverviewimpl.h
Unidiff
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