-rw-r--r-- | noncore/tools/clock/clock.cpp | 13 | ||||
-rw-r--r-- | noncore/tools/clock/setAlarm.cpp | 35 | ||||
-rw-r--r-- | noncore/tools/clock/setAlarm.h | 4 |
3 files changed, 46 insertions, 6 deletions
diff --git a/noncore/tools/clock/clock.cpp b/noncore/tools/clock/clock.cpp index a47793b..69d8214 100644 --- a/noncore/tools/clock/clock.cpp +++ b/noncore/tools/clock/clock.cpp | |||
@@ -304,10 +304,10 @@ void Clock::slotSetAlarm() | |||
304 | hour = setAlarmDlg->Hour_Slider->value(); | 304 | hour = setAlarmDlg->Hour_Slider->value(); |
305 | minute = setAlarmDlg->Minute_Slider->value(); | 305 | minute = setAlarmDlg->Minute_Slider->value(); |
306 | snoozeTime=setAlarmDlg->SnoozeSlider->value(); | 306 | snoozeTime=setAlarmDlg->SnoozeSlider->value(); |
307 | if(ampm) { | 307 | if(ampm) { |
308 | if ( hour == 12 ) | 308 | if ( hour == 12 ) |
309 | hour = 0; | 309 | hour = 0; |
310 | 310 | ||
311 | if(setAlarmDlg->Pm_RadioButton->isChecked() && hour < 12 ) | 311 | if(setAlarmDlg->Pm_RadioButton->isChecked() && hour < 12 ) |
312 | hour+=12; | 312 | hour+=12; |
313 | } | 313 | } |
@@ -386,10 +386,19 @@ void Clock::appMessage(const QCString& msg, const QByteArray& data) | |||
386 | int timerStay = 5000; | 386 | int timerStay = 5000; |
387 | bSound=TRUE; | 387 | bSound=TRUE; |
388 | qDebug("Message received in clock"); | 388 | qDebug("Message received in clock"); |
389 | if ( msg == "alarm(QDateTime,int)" ) { | 389 | if ( msg == "alarm(QDateTime,int)" ) { |
390 | Config config( "qpe" ); | ||
391 | config.setGroup("Time"); | ||
392 | if(config.readBoolEntry("mp3Alarm",0)){ | ||
393 | |||
394 | QCopEnvelope e("QPE/Application/opieplayer","setDocument(QString)"); | ||
395 | e<<config.readEntry("mp3File",""); | ||
396 | } else { | ||
397 | |||
390 | Sound::soundAlarm(); | 398 | Sound::soundAlarm(); |
391 | stopTimer = startTimer( timerStay); | 399 | stopTimer = startTimer( timerStay); |
400 | } | ||
392 | } | 401 | } |
393 | show(); | 402 | show(); |
394 | raise(); | 403 | raise(); |
395 | QPEApplication::setKeepRunning(); | 404 | QPEApplication::setKeepRunning(); |
diff --git a/noncore/tools/clock/setAlarm.cpp b/noncore/tools/clock/setAlarm.cpp index 990ff81..38de396 100644 --- a/noncore/tools/clock/setAlarm.cpp +++ b/noncore/tools/clock/setAlarm.cpp | |||
@@ -13,10 +13,12 @@ | |||
13 | ***************************************************************************/ | 13 | ***************************************************************************/ |
14 | 14 | ||
15 | #include "setAlarm.h" | 15 | #include "setAlarm.h" |
16 | 16 | ||
17 | #include <qpe/config.h> | 17 | #include <opie/ofileselector.h> |
18 | #include <opie/ofiledialog.h> | ||
18 | 19 | ||
20 | #include <qpe/config.h> | ||
19 | #include <qpe/qpeapplication.h> | 21 | #include <qpe/qpeapplication.h> |
20 | #include <qstring.h> | 22 | #include <qstring.h> |
21 | #include <qlabel.h> | 23 | #include <qlabel.h> |
22 | #include <qlcdnumber.h> | 24 | #include <qlcdnumber.h> |
@@ -27,17 +29,18 @@ | |||
27 | #include <qvariant.h> | 29 | #include <qvariant.h> |
28 | #include <qtooltip.h> | 30 | #include <qtooltip.h> |
29 | #include <qwhatsthis.h> | 31 | #include <qwhatsthis.h> |
30 | #include <qbuttongroup.h> | 32 | #include <qbuttongroup.h> |
33 | #include <qcheckbox.h> | ||
31 | 34 | ||
32 | Set_Alarm::Set_Alarm( QWidget* parent, const char* name, bool modal, WFlags fl ) | 35 | Set_Alarm::Set_Alarm( QWidget* parent, const char* name, bool modal, WFlags fl ) |
33 | : QDialog( parent, name, modal, fl ) | 36 | : QDialog( parent, name, modal, fl ) |
34 | { | 37 | { |
35 | if ( !name ) | 38 | if ( !name ) |
36 | setName( "Set_Alarm" ); | 39 | setName( "Set_Alarm" ); |
37 | resize( 240, 101 ); | 40 | resize( 240, 101 ); |
38 | setMaximumSize( QSize( 240, 320 ) ); | 41 | setMaximumSize( QSize( 240, 320 ) ); |
39 | move(0,48); | 42 | move(0,45); |
40 | setCaption( tr( "Set Alarm" ) ); | 43 | setCaption( tr( "Set Alarm" ) ); |
41 | connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); | 44 | connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); |
42 | 45 | ||
43 | Set_AlarmLayout = new QGridLayout( this ); | 46 | Set_AlarmLayout = new QGridLayout( this ); |
@@ -96,8 +99,14 @@ Set_Alarm::Set_Alarm( QWidget* parent, const char* name, bool modal, WFlags fl | |||
96 | connect( Pm_RadioButton, SIGNAL(toggled(bool)),this,SLOT( pmButtonToggled(bool))); | 99 | connect( Pm_RadioButton, SIGNAL(toggled(bool)),this,SLOT( pmButtonToggled(bool))); |
97 | 100 | ||
98 | Set_AlarmLayout->addMultiCellWidget(Pm_RadioButton, 1, 2, 3, 4 ); | 101 | Set_AlarmLayout->addMultiCellWidget(Pm_RadioButton, 1, 2, 3, 4 ); |
99 | 102 | ||
103 | useMp3Check = new QCheckBox ( tr( "mp3 alarm" ), this ); | ||
104 | useMp3Check-> setFocusPolicy ( QWidget::NoFocus ); | ||
105 | Set_AlarmLayout->addMultiCellWidget( useMp3Check, 2, 3, 3, 4 ); | ||
106 | |||
107 | |||
108 | |||
100 | TextLabel3 = new QLabel( this, "TextLabel3" ); | 109 | TextLabel3 = new QLabel( this, "TextLabel3" ); |
101 | TextLabel3->setText( tr( "Snooze Delay\n(minutes)" ) ); | 110 | TextLabel3->setText( tr( "Snooze Delay\n(minutes)" ) ); |
102 | 111 | ||
103 | Set_AlarmLayout->addMultiCellWidget( TextLabel3, 3, 3, 0, 1 ); | 112 | Set_AlarmLayout->addMultiCellWidget( TextLabel3, 3, 3, 0, 1 ); |
@@ -113,9 +122,9 @@ Set_Alarm::Set_Alarm( QWidget* parent, const char* name, bool modal, WFlags fl | |||
113 | SnoozeSlider->setMaxValue( 60 ); | 122 | SnoozeSlider->setMaxValue( 60 ); |
114 | SnoozeSlider->setOrientation( QSlider::Horizontal ); | 123 | SnoozeSlider->setOrientation( QSlider::Horizontal ); |
115 | connect(SnoozeSlider, SIGNAL( valueChanged(int)),this,SLOT(slotChangeSnooze(int))); | 124 | connect(SnoozeSlider, SIGNAL( valueChanged(int)),this,SLOT(slotChangeSnooze(int))); |
116 | 125 | ||
117 | Set_AlarmLayout->addMultiCellWidget( SnoozeSlider, 3, 3, 3, 4 ); | 126 | Set_AlarmLayout->addMultiCellWidget( SnoozeSlider, 4, 4, 1, 2 ); |
118 | 127 | ||
119 | Config config( "qpe" ); | 128 | Config config( "qpe" ); |
120 | config.setGroup("Time"); | 129 | config.setGroup("Time"); |
121 | 130 | ||
@@ -147,9 +156,13 @@ Set_Alarm::Set_Alarm( QWidget* parent, const char* name, bool modal, WFlags fl | |||
147 | SnoozeSlider->setValue( snoozeTime.toInt(&ok,10) ); | 156 | SnoozeSlider->setValue( snoozeTime.toInt(&ok,10) ); |
148 | Am_RadioButton->hide(); | 157 | Am_RadioButton->hide(); |
149 | Pm_RadioButton->hide(); | 158 | Pm_RadioButton->hide(); |
150 | } | 159 | } |
160 | if( config.readBoolEntry("mp3Alarm") ) | ||
161 | useMp3Check->setChecked(true); | ||
162 | |||
151 | // signals and slots connections | 163 | // signals and slots connections |
164 | connect(useMp3Check,SIGNAL(toggled(bool)),this,SLOT(slotChangemp3CkeckBox(bool))); | ||
152 | } | 165 | } |
153 | 166 | ||
154 | Set_Alarm::~Set_Alarm() | 167 | Set_Alarm::~Set_Alarm() |
155 | { | 168 | { |
@@ -185,4 +198,20 @@ void Set_Alarm::pmButtonToggled(bool b) | |||
185 | 198 | ||
186 | void Set_Alarm::cleanUp() | 199 | void Set_Alarm::cleanUp() |
187 | { | 200 | { |
188 | } | 201 | } |
202 | |||
203 | void Set_Alarm::slotChangemp3CkeckBox(bool b) { | ||
204 | Config config( "qpe" ); | ||
205 | config.setGroup("Time"); | ||
206 | if(b) { | ||
207 | QString str = OFileDialog::getOpenFileName( 2,"/");//,"", "*", this ); | ||
208 | if(!str.isEmpty() ) { | ||
209 | qDebug(str); | ||
210 | config.writeEntry("mp3Alarm",1); | ||
211 | config.writeEntry("mp3File",str); | ||
212 | } | ||
213 | } else { | ||
214 | config.writeEntry("mp3Alarm",0); | ||
215 | config.writeEntry("mp3File",""); | ||
216 | } | ||
217 | } | ||
diff --git a/noncore/tools/clock/setAlarm.h b/noncore/tools/clock/setAlarm.h index 7d63237..a21af05 100644 --- a/noncore/tools/clock/setAlarm.h +++ b/noncore/tools/clock/setAlarm.h | |||
@@ -25,9 +25,9 @@ class QLCDNumber; | |||
25 | class QLabel; | 25 | class QLabel; |
26 | class QRadioButton; | 26 | class QRadioButton; |
27 | class QSlider; | 27 | class QSlider; |
28 | class QButtonGroup; | 28 | class QButtonGroup; |
29 | 29 | class QCheckBox; | |
30 | class Set_Alarm : public QDialog | 30 | class Set_Alarm : public QDialog |
31 | { | 31 | { |
32 | Q_OBJECT | 32 | Q_OBJECT |
33 | 33 | ||
@@ -42,9 +42,11 @@ public: | |||
42 | QRadioButton* Am_RadioButton; | 42 | QRadioButton* Am_RadioButton; |
43 | 43 | ||
44 | QRadioButton* Pm_RadioButton; | 44 | QRadioButton* Pm_RadioButton; |
45 | QButtonGroup *ButtonGroup1; | 45 | QButtonGroup *ButtonGroup1; |
46 | QCheckBox *useMp3Check; | ||
46 | protected slots: | 47 | protected slots: |
48 | void slotChangemp3CkeckBox(bool); | ||
47 | void slotChangeHour(int); | 49 | void slotChangeHour(int); |
48 | void slotChangeMinute(int); | 50 | void slotChangeMinute(int); |
49 | void slotChangeSnooze(int); | 51 | void slotChangeSnooze(int); |
50 | void amButtonToggled(bool); | 52 | void amButtonToggled(bool); |