From 1cb75c721b69459494cb599730a96bbc1ddc0f65 Mon Sep 17 00:00:00 2001 From: drw Date: Mon, 23 Dec 2002 17:13:12 +0000 Subject: 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. --- (limited to 'core/pim/todo/taskeditoroverview.h') diff --git a/core/pim/todo/taskeditoroverview.h b/core/pim/todo/taskeditoroverview.h new file mode 100644 index 0000000..223b72c --- a/dev/null +++ b/core/pim/todo/taskeditoroverview.h @@ -0,0 +1,92 @@ +/* +               =. This file is part of the OPIE Project +             .=l. Copyright (c) 2002 <> +           .>+-= + _;:,     .>    :=|. This program is free software; you can +.> <`_,   >  .   <= redistribute it and/or modify it under +:`=1 )Y*s>-.--   : the terms of the GNU General Public +.="- .-=="i,     .._ License as published by the Free Software + - .   .-<_>     .<> Foundation; either version 2 of the License, +     ._= =}       : or (at your option) any later version. +    .%`+i>       _;_. +    .i_,=:_.      -`: PARTICULAR PURPOSE. See the GNU +..}^=.=       =       ; Library General Public License for more +++=   -.     .`     .: details. + :     =  ...= . :.=- + -.   .:....=;==+<; You should have received a copy of the GNU +  -_. . .   )=.  = General Public License along with +    --        :-=` this library; see the file COPYING.LIB. + If not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + +*/ + +#ifndef TASKEDITOROVERVIEW_H +#define TASKEDITOROVERVIEW_H + +#include + +#include +#include +#include + +class CategorySelect; +class DateBookMonth; +class QCheckBox; +class QComboBox; +class QPushButton; + +class TaskEditorOverView : public QWidget +{ + Q_OBJECT + +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; + + 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 -- cgit v0.9.0.2