summaryrefslogtreecommitdiff
path: root/noncore/tools/clock/setAlarm.h
Unidiff
Diffstat (limited to 'noncore/tools/clock/setAlarm.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/clock/setAlarm.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/noncore/tools/clock/setAlarm.h b/noncore/tools/clock/setAlarm.h
deleted file mode 100644
index a21af05..0000000
--- a/noncore/tools/clock/setAlarm.h
+++ b/dev/null
@@ -1,59 +0,0 @@
1 /***************************************************************************
2// setAlarm.h - description
3// -------------------
4// Created: Wed Mar 13 19:47:24 2002
5// copyright : (C) 2002 by ljp
6// email : ljp@llornkcor.com
7//
8***************************************************************************
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 ***************************************************************************/
14
15#ifndef SET_ALARM_H
16#define SET_ALARM_H
17
18#include <qvariant.h>
19#include <qdialog.h>
20
21class QVBoxLayout;
22class QHBoxLayout;
23class QGridLayout;
24class QLCDNumber;
25class QLabel;
26class QRadioButton;
27class QSlider;
28class QButtonGroup;
29class QCheckBox;
30class Set_Alarm : public QDialog
31{
32 Q_OBJECT
33
34public:
35 Set_Alarm( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
36 ~Set_Alarm();
37
38 QLabel *TextLabel1, *TextLabel2, *TextLabel3;
39 QSlider *Hour_Slider, *Minute_Slider, *SnoozeSlider;
40 QLCDNumber *Hour_LCDNumber, *Minute_LCDNumber, *Snooze_LCDNumber;
41
42 QRadioButton* Am_RadioButton;
43
44 QRadioButton* Pm_RadioButton;
45 QButtonGroup *ButtonGroup1;
46 QCheckBox *useMp3Check;
47protected slots:
48 void slotChangemp3CkeckBox(bool);
49 void slotChangeHour(int);
50 void slotChangeMinute(int);
51 void slotChangeSnooze(int);
52 void amButtonToggled(bool);
53 void pmButtonToggled(bool);
54 void cleanUp();
55protected:
56 QGridLayout* Set_AlarmLayout;
57};
58
59#endif // SET_ALARM_H