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) (side-by-side diff)
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) (ignore 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
@@ -31,15 +31,13 @@
#include <opie/otodo.h>
-#include <qdatetime.h>
#include <qpixmap.h>
#include <qwidget.h>
class CategorySelect;
-class DateBookMonth;
class QCheckBox;
class QComboBox;
-class QPushButton;
+class QMultiLineEdit;
class TaskEditorOverView : public QWidget
{
@@ -49,44 +47,23 @@ public:
TaskEditorOverView( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
~TaskEditorOverView();
- QComboBox *cmbSum;
- QComboBox *cmbPrio;
- QComboBox *cmbProgress;
- QCheckBox *ckbDue;
- QPushButton *btnDue;
- QCheckBox *ckbStart;
- QPushButton *btnStart;
- QCheckBox *ckbComp;
- QPushButton *btnComp;
- CategorySelect *comboCategory;
- QCheckBox *CheckBox7;
+ QComboBox *cmbDesc;
+ QComboBox *cmbPriority;
+ CategorySelect *cmbCategory;
+ QCheckBox *ckbRecurrence;
+ QMultiLineEdit *mleNotes;
void load( const OTodo & );
void save( OTodo & );
signals:
void recurranceEnabled( bool );
- void dueDateChanged( const QDate& date );
protected:
QPixmap m_pic_priority[ 5 ];
-private:
- QDate m_start;
- QDate m_comp;
- QDate m_due;
- DateBookMonth *m_startBook;
- DateBookMonth *m_compBook;
- DateBookMonth *m_dueBook;
-
protected slots:
void slotRecClicked();
- void slotStartChecked();
- void slotCompChecked();
- void slotDueChecked();
- void slotStartChanged( int, int, int );
- void slotCompChanged( int, int, int );
- void slotDueChanged( int, int, int );
};
#endif // TASKEDITOROVERVIEW_H