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) (side-by-side diff)
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 @@
-#ifndef OPIE_TASK_EDITOR_VIEW_IMPL_H
-#define OPIE_TASK_EDITOR_VIEW_IMPL_H
-
-#include <qsize.h>
-
-#include <opie/otodo.h>
-
-#include "taskeditoroverview.h"
-
-class DateBookMonth;
-class QPushButton;
-class QPopupMenu;
-class TaskEditorOverViewImpl : public TaskEditorOverView {
- Q_OBJECT
-public:
- TaskEditorOverViewImpl(QWidget* parent, const char* name = 0);
- ~TaskEditorOverViewImpl();
-
- void load( const OTodo& );
- void save( OTodo& );
-signals:
- void recurranceEnabled( bool );
- void dueDateChanged( const QDate& date );
-
-private:
- void init();
- void popup(QPushButton*, QPopupMenu*);
- DateBookMonth* m_dueBook;
- DateBookMonth* m_startBook;
- DateBookMonth* m_compBook;
- QDate m_start;
- QDate m_comp;
- QDate m_due;
- QPopupMenu* m_startPop;
- QPopupMenu* m_compPop;
- QPopupMenu* m_duePop;
- bool m_bDue : 1;
-
-private slots:
- void slotStartChecked();
- void slotStartChanged(int, int, int );
- void slotDueChecked();
- void slotDueChanged(int, int, int );
- void slotCompletedChecked();
- void slotCompletedChanged(int, int, int );
-
- void hackySlotHack1();
- void hackySlotHack2();
- void hackySlotHack3();
-
- void slotRecClicked();
-};
-
-
-#endif