summaryrefslogtreecommitdiff
path: root/core/pim/datebook
authorzecke <zecke>2002-04-15 22:40:49 (UTC)
committer zecke <zecke>2002-04-15 22:40:49 (UTC)
commit38052b763f7d248023024487a7e645b46637c76b (patch) (unidiff)
treedc6131bc2f56ea2aaab7c75364a979d117a52915 /core/pim/datebook
parenta91544d04ed391bbdc0c6f95ff8a80d35190788c (diff)
downloadopie-38052b763f7d248023024487a7e645b46637c76b.zip
opie-38052b763f7d248023024487a7e645b46637c76b.tar.gz
opie-38052b763f7d248023024487a7e645b46637c76b.tar.bz2
-fix handling of the kewl timepicker
click in a lineedit and the focus will change ARDO FEEL FREE TO REVERT IT WANTED TO GET THIS INTO THE FEED
Diffstat (limited to 'core/pim/datebook') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/dateentryimpl.cpp24
-rw-r--r--core/pim/datebook/dateentryimpl.h7
2 files changed, 28 insertions, 3 deletions
diff --git a/core/pim/datebook/dateentryimpl.cpp b/core/pim/datebook/dateentryimpl.cpp
index 403378e..f2f17c6 100644
--- a/core/pim/datebook/dateentryimpl.cpp
+++ b/core/pim/datebook/dateentryimpl.cpp
@@ -31,2 +31,3 @@
31 31
32#include <qevent.h>
32#include <qcheckbox.h> 33#include <qcheckbox.h>
@@ -65,2 +66,16 @@ DateEntry::DateEntry( bool startOnMonday, const QDateTime &start,
65 66
67bool DateEntry::eventFilter(QObject *obj, QEvent *ev )
68{
69 if( ev->type() == QEvent::FocusIn ){
70 if( obj == comboStart ){
71 TextLabel3_2->setText( tr("Start Time" ) );
72 m_showStart= true;
73 }else if( obj == comboEnd ){
74 TextLabel3_2->setText( tr("End Time") );
75 m_showStart = false;
76 }
77 }
78 return false;
79}
80
66static void addOrPick( QComboBox* combo, const QString& t ) 81static void addOrPick( QComboBox* combo, const QString& t )
@@ -188,2 +203,5 @@ void DateEntry::init()
188 editNote->setFixedVisibleLines(3); 203 editNote->setFixedVisibleLines(3);
204 // install eventFilters
205 comboEnd->installEventFilter( this );
206 comboStart->installEventFilter( this );
189} 207}
@@ -306,4 +324,10 @@ void DateEntry::startTimeChanged( const QTime &t )
306void DateEntry::startTimePicked( const QTime &t ) { 324void DateEntry::startTimePicked( const QTime &t ) {
325 if(m_showStart ){
307 startTimeChanged(t); 326 startTimeChanged(t);
308 updateTimeEdit(true,true); 327 updateTimeEdit(true,true);
328 }else{
329 endTime = t;
330 updateTimeEdit(false, true );
331
332 }
309} 333}
diff --git a/core/pim/datebook/dateentryimpl.h b/core/pim/datebook/dateentryimpl.h
index bde3119..4eb24b4 100644
--- a/core/pim/datebook/dateentryimpl.h
+++ b/core/pim/datebook/dateentryimpl.h
@@ -44,3 +44,3 @@ public:
44 void setAlarmEnabled( bool alarmPreset, int presetTime, Event::SoundTypeChoice ); 44 void setAlarmEnabled( bool alarmPreset, int presetTime, Event::SoundTypeChoice );
45 45 virtual bool eventFilter( QObject *, QEvent * );
46public slots: 46public slots:
@@ -69,4 +69,5 @@ private:
69 Event::RepeatPattern rp; 69 Event::RepeatPattern rp;
70 bool ampm; 70 bool ampm:1;
71 bool startWeekOnMonday; 71 bool startWeekOnMonday:1;
72 bool m_showStart:1;
72}; 73};