summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/taskeditorstatus.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/pim/todo/taskeditorstatus.cpp b/core/pim/todo/taskeditorstatus.cpp
index 9a5fe7a..b11fdab 100644
--- a/core/pim/todo/taskeditorstatus.cpp
+++ b/core/pim/todo/taskeditorstatus.cpp
@@ -1,94 +1,97 @@
1/* 1/*
2               =. This file is part of the OPIE Project 2               =. This file is part of the OPIE Project
3             .=l. Copyright (c) 2002 <> 3             .=l. Copyright (c) 2002 <>
4           .>+-= 4           .>+-=
5 _;:,     .>    :=|. This program is free software; you can 5 _;:,     .>    :=|. This program is free software; you can
6.> <`_,   >  .   <= redistribute it and/or modify it under 6.> <`_,   >  .   <= redistribute it and/or modify it under
7:`=1 )Y*s>-.--   : the terms of the GNU General Public 7:`=1 )Y*s>-.--   : the terms of the GNU General Public
8.="- .-=="i,     .._ License as published by the Free Software 8.="- .-=="i,     .._ License as published by the Free Software
9 - .   .-<_>     .<> Foundation; either version 2 of the License, 9 - .   .-<_>     .<> Foundation; either version 2 of the License,
10     ._= =}       : or (at your option) any later version. 10     ._= =}       : or (at your option) any later version.
11    .%`+i>       _;_. 11    .%`+i>       _;_.
12    .i_,=:_.      -<s. This program is distributed in the hope that 12    .i_,=:_.      -<s. This program is distributed in the hope that
13     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 13     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
14    : ..    .:,     . . . without even the implied warranty of 14    : ..    .:,     . . . without even the implied warranty of
15    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 15    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
16  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 16  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
17..}^=.=       =       ; Library General Public License for more 17..}^=.=       =       ; Library General Public License for more
18++=   -.     .`     .: details. 18++=   -.     .`     .: details.
19 :     =  ...= . :.=- 19 :     =  ...= . :.=-
20 -.   .:....=;==+<; You should have received a copy of the GNU 20 -.   .:....=;==+<; You should have received a copy of the GNU
21  -_. . .   )=.  = General Public License along with 21  -_. . .   )=.  = General Public License along with
22    --        :-=` this library; see the file COPYING.LIB. 22    --        :-=` this library; see the file COPYING.LIB.
23 If not, write to the Free Software Foundation, 23 If not, write to the Free Software Foundation,
24 Inc., 59 Temple Place - Suite 330, 24 Inc., 59 Temple Place - Suite 330,
25 Boston, MA 02111-1307, USA. 25 Boston, MA 02111-1307, USA.
26 26
27*/ 27*/
28 28
29#include "taskeditorstatus.h" 29#include "taskeditorstatus.h"
30 30
31#include <opie/otodo.h> 31#include <opie/otodo.h>
32#include <opie/opimmaintainer.h> 32#include <opie/opimmaintainer.h>
33#include <opie/opimstate.h> 33#include <opie/opimstate.h>
34 34
35#include <qpe/datebookmonth.h> 35#include <qpe/datebookmonth.h>
36#include <qpe/resource.h> 36#include <qpe/resource.h>
37#include <qpe/timestring.h> 37#include <qpe/timestring.h>
38 38
39#include <qcheckbox.h> 39#include <qcheckbox.h>
40#include <qcombobox.h> 40#include <qcombobox.h>
41#include <qlabel.h> 41#include <qlabel.h>
42#include <qlayout.h> 42#include <qlayout.h>
43#include <qscrollview.h> 43#include <qscrollview.h>
44#include <qtoolbutton.h> 44#include <qtoolbutton.h>
45#include <qwhatsthis.h> 45#include <qwhatsthis.h>
46 46
47// FIXME add the hack slots instead of setPopup!!!!
48// drw you shouldn't have removed them
49
47TaskEditorStatus::TaskEditorStatus( QWidget* parent, const char* name, WFlags fl ) 50TaskEditorStatus::TaskEditorStatus( QWidget* parent, const char* name, WFlags fl )
48 : QWidget( parent, name, fl ) 51 : QWidget( parent, name, fl )
49{ 52{
50 QDate curDate = QDate::currentDate(); 53 QDate curDate = QDate::currentDate();
51 m_start = m_comp = m_due = curDate; 54 m_start = m_comp = m_due = curDate;
52 QString curDateStr = TimeString::longDateString( curDate ); 55 QString curDateStr = TimeString::longDateString( curDate );
53 56
54 QVBoxLayout *vb = new QVBoxLayout( this ); 57 QVBoxLayout *vb = new QVBoxLayout( this );
55 58
56 QScrollView *sv = new QScrollView( this ); 59 QScrollView *sv = new QScrollView( this );
57 vb->addWidget( sv ); 60 vb->addWidget( sv );
58 sv->setResizePolicy( QScrollView::AutoOneFit ); 61 sv->setResizePolicy( QScrollView::AutoOneFit );
59 sv->setFrameStyle( QFrame::NoFrame ); 62 sv->setFrameStyle( QFrame::NoFrame );
60 63
61 QWidget *container = new QWidget( sv->viewport() ); 64 QWidget *container = new QWidget( sv->viewport() );
62 sv->addChild( container ); 65 sv->addChild( container );
63 66
64 QGridLayout *layout = new QGridLayout( container, 7, 3, 4, 4 ); 67 QGridLayout *layout = new QGridLayout( container, 7, 3, 4, 4 );
65 68
66 // Status 69 // Status
67 QLabel *label = new QLabel( tr( "Status:" ), container ); 70 QLabel *label = new QLabel( tr( "Status:" ), container );
68 layout->addWidget( label, 0, 0 ); 71 layout->addWidget( label, 0, 0 );
69 QWhatsThis::add( label, tr( "Click here to set the current status of this task." ) ); 72 QWhatsThis::add( label, tr( "Click here to set the current status of this task." ) );
70 cmbStatus = new QComboBox( FALSE, container ); 73 cmbStatus = new QComboBox( FALSE, container );
71 cmbStatus->insertItem( tr( "Started" ) ); 74 cmbStatus->insertItem( tr( "Started" ) );
72 cmbStatus->insertItem( tr( "Postponed" ) ); 75 cmbStatus->insertItem( tr( "Postponed" ) );
73 cmbStatus->insertItem( tr( "Finished" ) ); 76 cmbStatus->insertItem( tr( "Finished" ) );
74 cmbStatus->insertItem( tr( "Not started" ) ); 77 cmbStatus->insertItem( tr( "Not started" ) );
75 layout->addMultiCellWidget( cmbStatus, 0, 0, 1, 2 ); 78 layout->addMultiCellWidget( cmbStatus, 0, 0, 1, 2 );
76 QWhatsThis::add( cmbStatus, tr( "Click here to set the current status of this task." ) ); 79 QWhatsThis::add( cmbStatus, tr( "Click here to set the current status of this task." ) );
77 80
78 // Progress 81 // Progress
79 label = new QLabel( tr( "Progress:" ), container ); 82 label = new QLabel( tr( "Progress:" ), container );
80 layout->addWidget( label, 1, 0 ); 83 layout->addWidget( label, 1, 0 );
81 QWhatsThis::add( label, tr( "Select progress made on this task here." ) ); 84 QWhatsThis::add( label, tr( "Select progress made on this task here." ) );
82 cmbProgress = new QComboBox( FALSE, container ); 85 cmbProgress = new QComboBox( FALSE, container );
83 cmbProgress->insertItem( tr( "0 %" ) ); 86 cmbProgress->insertItem( tr( "0 %" ) );
84 cmbProgress->insertItem( tr( "20 %" ) ); 87 cmbProgress->insertItem( tr( "20 %" ) );
85 cmbProgress->insertItem( tr( "40 %" ) ); 88 cmbProgress->insertItem( tr( "40 %" ) );
86 cmbProgress->insertItem( tr( "60 %" ) ); 89 cmbProgress->insertItem( tr( "60 %" ) );
87 cmbProgress->insertItem( tr( "80 %" ) ); 90 cmbProgress->insertItem( tr( "80 %" ) );
88 cmbProgress->insertItem( tr( "100 %" ) ); 91 cmbProgress->insertItem( tr( "100 %" ) );
89 layout->addMultiCellWidget( cmbProgress, 1, 1, 1, 2 ); 92 layout->addMultiCellWidget( cmbProgress, 1, 1, 1, 2 );
90 QWhatsThis::add( cmbProgress, tr( "Select progress made on this task here." ) ); 93 QWhatsThis::add( cmbProgress, tr( "Select progress made on this task here." ) );
91 94
92 // Start date 95 // Start date
93 ckbStart = new QCheckBox( tr( "Start Date:" ), container ); 96 ckbStart = new QCheckBox( tr( "Start Date:" ), container );
94 layout->addWidget( ckbStart, 2, 0 ); 97 layout->addWidget( ckbStart, 2, 0 );