summaryrefslogtreecommitdiff
path: root/core/pim/todo/taskeditoroverview.h
authordrw <drw>2002-12-29 21:11:47 (UTC)
committer drw <drw>2002-12-29 21:11:47 (UTC)
commit786612c0c5a0e4876364b027655017362afd8c67 (patch) (unidiff)
treeee9e6896804f043c1326de74b7f9584ea78ebb2c /core/pim/todo/taskeditoroverview.h
parent82ce361b2b9279d09a3398a3db7c9ba0d1601cb7 (diff)
downloadopie-786612c0c5a0e4876364b027655017362afd8c67.zip
opie-786612c0c5a0e4876364b027655017362afd8c67.tar.gz
opie-786612c0c5a0e4876364b027655017362afd8c67.tar.bz2
More updates to edit task dialog. Rearranged info on 1st 2 tabs so it is grouped a little more logically, and also renamed these tabs.
Diffstat (limited to 'core/pim/todo/taskeditoroverview.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/todo/taskeditoroverview.h35
1 files changed, 6 insertions, 29 deletions
diff --git a/core/pim/todo/taskeditoroverview.h b/core/pim/todo/taskeditoroverview.h
index 223b72c..d5f5125 100644
--- a/core/pim/todo/taskeditoroverview.h
+++ b/core/pim/todo/taskeditoroverview.h
@@ -28,65 +28,42 @@
28 28
29#ifndef TASKEDITOROVERVIEW_H 29#ifndef TASKEDITOROVERVIEW_H
30#define TASKEDITOROVERVIEW_H 30#define TASKEDITOROVERVIEW_H
31 31
32#include <opie/otodo.h> 32#include <opie/otodo.h>
33 33
34#include <qdatetime.h>
35#include <qpixmap.h> 34#include <qpixmap.h>
36#include <qwidget.h> 35#include <qwidget.h>
37 36
38class CategorySelect; 37class CategorySelect;
39class DateBookMonth;
40class QCheckBox; 38class QCheckBox;
41class QComboBox; 39class QComboBox;
42class QPushButton; 40class QMultiLineEdit;
43 41
44class TaskEditorOverView : public QWidget 42class TaskEditorOverView : public QWidget
45{ 43{
46 Q_OBJECT 44 Q_OBJECT
47 45
48public: 46public:
49 TaskEditorOverView( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 47 TaskEditorOverView( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
50 ~TaskEditorOverView(); 48 ~TaskEditorOverView();
51 49
52 QComboBox *cmbSum; 50 QComboBox *cmbDesc;
53 QComboBox *cmbPrio; 51 QComboBox *cmbPriority;
54 QComboBox *cmbProgress; 52 CategorySelect *cmbCategory;
55 QCheckBox *ckbDue; 53 QCheckBox *ckbRecurrence;
56 QPushButton *btnDue; 54 QMultiLineEdit *mleNotes;
57 QCheckBox *ckbStart;
58 QPushButton *btnStart;
59 QCheckBox *ckbComp;
60 QPushButton *btnComp;
61 CategorySelect *comboCategory;
62 QCheckBox *CheckBox7;
63 55
64 void load( const OTodo & ); 56 void load( const OTodo & );
65 void save( OTodo & ); 57 void save( OTodo & );
66 58
67signals: 59signals:
68 void recurranceEnabled( bool ); 60 void recurranceEnabled( bool );
69 void dueDateChanged( const QDate& date );
70 61
71protected: 62protected:
72 QPixmap m_pic_priority[ 5 ]; 63 QPixmap m_pic_priority[ 5 ];
73 64
74private:
75 QDate m_start;
76 QDate m_comp;
77 QDate m_due;
78 DateBookMonth *m_startBook;
79 DateBookMonth *m_compBook;
80 DateBookMonth *m_dueBook;
81
82protected slots: 65protected slots:
83 void slotRecClicked(); 66 void slotRecClicked();
84 void slotStartChecked();
85 void slotCompChecked();
86 void slotDueChecked();
87 void slotStartChanged( int, int, int );
88 void slotCompChanged( int, int, int );
89 void slotDueChanged( int, int, int );
90}; 67};
91 68
92#endif // TASKEDITOROVERVIEW_H 69#endif // TASKEDITOROVERVIEW_H