author | zecke <zecke> | 2002-11-15 10:01:40 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-11-15 10:01:40 (UTC) |
commit | 39f256de174af80fd8ba2560e8586dda99d06b7d (patch) (unidiff) | |
tree | d03da9996c67044b5593bae5726231214535dafc | |
parent | ec92de66e81b145119ff15bea0ad88436eb7bd4b (diff) | |
download | opie-39f256de174af80fd8ba2560e8586dda99d06b7d.zip opie-39f256de174af80fd8ba2560e8586dda99d06b7d.tar.gz opie-39f256de174af80fd8ba2560e8586dda99d06b7d.tar.bz2 |
Fix the DueDate button not beeing enabled when it should
-rw-r--r-- | core/pim/todo/taskeditoroverviewimpl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/pim/todo/taskeditoroverviewimpl.cpp b/core/pim/todo/taskeditoroverviewimpl.cpp index c10ad40..24b3386 100644 --- a/core/pim/todo/taskeditoroverviewimpl.cpp +++ b/core/pim/todo/taskeditoroverviewimpl.cpp | |||
@@ -1,144 +1,145 @@ | |||
1 | #include <qapplication.h> | 1 | #include <qapplication.h> |
2 | #include <qcheckbox.h> | 2 | #include <qcheckbox.h> |
3 | #include <qcombobox.h> | 3 | #include <qcombobox.h> |
4 | #include <qpopupmenu.h> | 4 | #include <qpopupmenu.h> |
5 | 5 | ||
6 | #include <qpe/datebookmonth.h> | 6 | #include <qpe/datebookmonth.h> |
7 | #include <qpe/categoryselect.h> | 7 | #include <qpe/categoryselect.h> |
8 | #include <qpe/timestring.h> | 8 | #include <qpe/timestring.h> |
9 | 9 | ||
10 | #include "taskeditoroverviewimpl.h" | 10 | #include "taskeditoroverviewimpl.h" |
11 | 11 | ||
12 | /* | 12 | /* |
13 | * we need to hack | 13 | * we need to hack |
14 | */ | 14 | */ |
15 | 15 | ||
16 | TaskEditorOverViewImpl::TaskEditorOverViewImpl( QWidget* parent, const char* name ) | 16 | TaskEditorOverViewImpl::TaskEditorOverViewImpl( QWidget* parent, const char* name ) |
17 | : TaskEditorOverView( parent, name ) { | 17 | : TaskEditorOverView( parent, name ) { |
18 | init(); | 18 | init(); |
19 | } | 19 | } |
20 | TaskEditorOverViewImpl::~TaskEditorOverViewImpl() { | 20 | TaskEditorOverViewImpl::~TaskEditorOverViewImpl() { |
21 | } | 21 | } |
22 | void TaskEditorOverViewImpl::load( const OTodo& todo) { | 22 | void TaskEditorOverViewImpl::load( const OTodo& todo) { |
23 | /* | 23 | /* |
24 | * now that we're 'preloaded' we | 24 | * now that we're 'preloaded' we |
25 | * need to disable the buttons | 25 | * need to disable the buttons |
26 | * holding the dat | 26 | * holding the dat |
27 | */ | 27 | */ |
28 | btnDue-> setEnabled( FALSE ); | 28 | btnDue-> setEnabled( FALSE ); |
29 | btnComp-> setEnabled( FALSE ); | 29 | btnComp-> setEnabled( FALSE ); |
30 | btnStart->setEnabled( FALSE ); | 30 | btnStart->setEnabled( FALSE ); |
31 | 31 | ||
32 | 32 | ||
33 | QDate date = QDate::currentDate(); | 33 | QDate date = QDate::currentDate(); |
34 | QString str = TimeString::longDateString( date ); | 34 | QString str = TimeString::longDateString( date ); |
35 | 35 | ||
36 | emit recurranceEnabled( FALSE ); | 36 | emit recurranceEnabled( FALSE ); |
37 | ckbStart->setChecked( FALSE ); | 37 | ckbStart->setChecked( FALSE ); |
38 | btnStart->setText( str ); | 38 | btnStart->setText( str ); |
39 | 39 | ||
40 | ckbComp->setChecked( FALSE ); | 40 | ckbComp->setChecked( FALSE ); |
41 | btnComp->setText( str ); | 41 | btnComp->setText( str ); |
42 | 42 | ||
43 | cmbProgress->setCurrentItem( todo.progress()/20 ); | 43 | cmbProgress->setCurrentItem( todo.progress()/20 ); |
44 | cmbSum->insertItem( todo.summary(), 0 ); | 44 | cmbSum->insertItem( todo.summary(), 0 ); |
45 | cmbSum->setCurrentItem( 0 ); | 45 | cmbSum->setCurrentItem( 0 ); |
46 | 46 | ||
47 | ckbDue->setChecked( todo.hasDueDate() ); | 47 | ckbDue->setChecked( todo.hasDueDate() ); |
48 | btnDue->setText( TimeString::longDateString( todo.dueDate() ) ); | 48 | btnDue->setText( TimeString::longDateString( todo.dueDate() ) ); |
49 | btnDue->setEnabled( todo.hasDueDate() ); | ||
49 | 50 | ||
50 | cmbPrio->setCurrentItem( todo.priority() -1 ); | 51 | cmbPrio->setCurrentItem( todo.priority() -1 ); |
51 | ckbCompleted->setChecked( todo.isCompleted() ); | 52 | ckbCompleted->setChecked( todo.isCompleted() ); |
52 | 53 | ||
53 | comboCategory->setCategories( todo.categories(), "Todo List", tr("Todo List") ); | 54 | comboCategory->setCategories( todo.categories(), "Todo List", tr("Todo List") ); |
54 | 55 | ||
55 | } | 56 | } |
56 | void TaskEditorOverViewImpl::save( OTodo& to) { | 57 | void TaskEditorOverViewImpl::save( OTodo& to) { |
57 | qWarning("save it now"); | 58 | qWarning("save it now"); |
58 | if ( ckbDue->isChecked() ) { | 59 | if ( ckbDue->isChecked() ) { |
59 | to.setDueDate( m_due ); | 60 | to.setDueDate( m_due ); |
60 | to.setHasDueDate( true ); | 61 | to.setHasDueDate( true ); |
61 | }else | 62 | }else |
62 | to.setHasDueDate( false ); | 63 | to.setHasDueDate( false ); |
63 | if ( comboCategory->currentCategory() != -1 ) { | 64 | if ( comboCategory->currentCategory() != -1 ) { |
64 | QArray<int> arr = comboCategory->currentCategories(); | 65 | QArray<int> arr = comboCategory->currentCategories(); |
65 | to.setCategories( arr ); | 66 | to.setCategories( arr ); |
66 | } | 67 | } |
67 | to.setPriority( cmbPrio->currentItem() + 1 ); | 68 | to.setPriority( cmbPrio->currentItem() + 1 ); |
68 | to.setCompleted( ckbCompleted->isChecked() ); | 69 | to.setCompleted( ckbCompleted->isChecked() ); |
69 | to.setSummary( cmbSum->currentText() ); | 70 | to.setSummary( cmbSum->currentText() ); |
70 | to.setProgress( cmbProgress->currentItem() * 20 ); | 71 | to.setProgress( cmbProgress->currentItem() * 20 ); |
71 | } | 72 | } |
72 | /* | 73 | /* |
73 | * here we will init the basic view | 74 | * here we will init the basic view |
74 | * one Popup for each Date Button | 75 | * one Popup for each Date Button |
75 | * and some other signal and slots connection | 76 | * and some other signal and slots connection |
76 | */ | 77 | */ |
77 | void TaskEditorOverViewImpl::init() { | 78 | void TaskEditorOverViewImpl::init() { |
78 | QDate curDate = QDate::currentDate(); | 79 | QDate curDate = QDate::currentDate(); |
79 | m_start = m_comp = m_due = curDate; | 80 | m_start = m_comp = m_due = curDate; |
80 | QString str = TimeString::longDateString( curDate ); | 81 | QString str = TimeString::longDateString( curDate ); |
81 | 82 | ||
82 | 83 | ||
83 | 84 | ||
84 | /* Start Date Picker */ | 85 | /* Start Date Picker */ |
85 | m_startPop = new QPopupMenu(this); | 86 | m_startPop = new QPopupMenu(this); |
86 | m_startBook = new DateBookMonth(m_startPop, 0, TRUE ); | 87 | m_startBook = new DateBookMonth(m_startPop, 0, TRUE ); |
87 | m_startPop->insertItem( m_startBook ); | 88 | m_startPop->insertItem( m_startBook ); |
88 | connect( m_startBook, SIGNAL( dateClicked(int, int, int) ), | 89 | connect( m_startBook, SIGNAL( dateClicked(int, int, int) ), |
89 | this, SLOT(slotStartChanged(int, int, int) ) ); | 90 | this, SLOT(slotStartChanged(int, int, int) ) ); |
90 | 91 | ||
91 | 92 | ||
92 | /* Due Date Picker */ | 93 | /* Due Date Picker */ |
93 | m_duePop = new QPopupMenu(this); | 94 | m_duePop = new QPopupMenu(this); |
94 | m_dueBook = new DateBookMonth(m_duePop, 0, TRUE ); | 95 | m_dueBook = new DateBookMonth(m_duePop, 0, TRUE ); |
95 | m_duePop->insertItem( m_dueBook ); | 96 | m_duePop->insertItem( m_dueBook ); |
96 | connect( m_dueBook, SIGNAL( dateClicked(int, int, int) ), | 97 | connect( m_dueBook, SIGNAL( dateClicked(int, int, int) ), |
97 | this, SLOT(slotDueChanged(int, int, int) ) ); | 98 | this, SLOT(slotDueChanged(int, int, int) ) ); |
98 | 99 | ||
99 | m_compPop = new QPopupMenu(this); | 100 | m_compPop = new QPopupMenu(this); |
100 | m_compBook = new DateBookMonth(m_compPop, 0, TRUE ); | 101 | m_compBook = new DateBookMonth(m_compPop, 0, TRUE ); |
101 | m_compPop->insertItem(m_compBook ); | 102 | m_compPop->insertItem(m_compBook ); |
102 | connect( m_compBook, SIGNAL(dateClicked(int, int, int) ), | 103 | connect( m_compBook, SIGNAL(dateClicked(int, int, int) ), |
103 | this, SLOT(slotCompletedChanged(int, int, int) ) ); | 104 | this, SLOT(slotCompletedChanged(int, int, int) ) ); |
104 | 105 | ||
105 | 106 | ||
106 | /* | 107 | /* |
107 | * another part of the hack | 108 | * another part of the hack |
108 | * it's deprecated in Qt2 but | 109 | * it's deprecated in Qt2 but |
109 | * still available in my qt-copy of Qt3.1beta2 | 110 | * still available in my qt-copy of Qt3.1beta2 |
110 | */ | 111 | */ |
111 | btnDue->setIsMenuButton( TRUE ); | 112 | btnDue->setIsMenuButton( TRUE ); |
112 | btnStart->setIsMenuButton( TRUE ); | 113 | btnStart->setIsMenuButton( TRUE ); |
113 | btnComp->setIsMenuButton( TRUE ); | 114 | btnComp->setIsMenuButton( TRUE ); |
114 | 115 | ||
115 | /* now connect the hack */ | 116 | /* now connect the hack */ |
116 | connect(btnDue, SIGNAL(clicked() ), | 117 | connect(btnDue, SIGNAL(clicked() ), |
117 | this, SLOT(hackySlotHack2() ) ); | 118 | this, SLOT(hackySlotHack2() ) ); |
118 | connect(btnStart, SIGNAL(clicked() ), | 119 | connect(btnStart, SIGNAL(clicked() ), |
119 | this, SLOT(hackySlotHack1() ) ); | 120 | this, SLOT(hackySlotHack1() ) ); |
120 | connect(btnComp, SIGNAL(clicked() ), | 121 | connect(btnComp, SIGNAL(clicked() ), |
121 | this, SLOT(hackySlotHack3() ) ); | 122 | this, SLOT(hackySlotHack3() ) ); |
122 | 123 | ||
123 | /* recurrance */ | 124 | /* recurrance */ |
124 | connect(CheckBox7, SIGNAL(clicked() ), | 125 | connect(CheckBox7, SIGNAL(clicked() ), |
125 | this, SLOT(slotRecClicked() ) ); | 126 | this, SLOT(slotRecClicked() ) ); |
126 | } | 127 | } |
127 | 128 | ||
128 | void TaskEditorOverViewImpl::slotStartChecked() { | 129 | void TaskEditorOverViewImpl::slotStartChecked() { |
129 | qWarning("slotStartChecked"); | 130 | qWarning("slotStartChecked"); |
130 | btnStart->setEnabled( ckbStart->isChecked() ); | 131 | btnStart->setEnabled( ckbStart->isChecked() ); |
131 | } | 132 | } |
132 | void TaskEditorOverViewImpl::slotStartChanged(int y, int m, int d) { | 133 | void TaskEditorOverViewImpl::slotStartChanged(int y, int m, int d) { |
133 | m_start.setYMD( y, m, d ); | 134 | m_start.setYMD( y, m, d ); |
134 | btnStart->setText( TimeString::longDateString( m_start ) ); | 135 | btnStart->setText( TimeString::longDateString( m_start ) ); |
135 | } | 136 | } |
136 | void TaskEditorOverViewImpl::slotDueChecked() { | 137 | void TaskEditorOverViewImpl::slotDueChecked() { |
137 | btnDue->setEnabled( ckbDue->isChecked() ); | 138 | btnDue->setEnabled( ckbDue->isChecked() ); |
138 | qWarning("slotDueChecked"); | 139 | qWarning("slotDueChecked"); |
139 | } | 140 | } |
140 | void TaskEditorOverViewImpl::slotDueChanged(int y, int m, int d ) { | 141 | void TaskEditorOverViewImpl::slotDueChanged(int y, int m, int d ) { |
141 | m_due.setYMD(y, m, d ); | 142 | m_due.setYMD(y, m, d ); |
142 | btnDue->setText( TimeString::longDateString( m_due ) ); | 143 | btnDue->setText( TimeString::longDateString( m_due ) ); |
143 | } | 144 | } |
144 | void TaskEditorOverViewImpl::slotCompletedChecked() { | 145 | void TaskEditorOverViewImpl::slotCompletedChecked() { |