summaryrefslogtreecommitdiff
path: root/noncore/tools/clock/setAlarm.h
authorzecke <zecke>2005-01-13 21:37:53 (UTC)
committer zecke <zecke>2005-01-13 21:37:53 (UTC)
commite1a1079f4b12d70a946761443492592236012f79 (patch) (side-by-side diff)
treea73487bb4bea6a70aa945787734a6cbf83694a39 /noncore/tools/clock/setAlarm.h
parentaf6d4d25fbec88903531e20d2a78ddb5f8105dbd (diff)
downloadopie-e1a1079f4b12d70a946761443492592236012f79.zip
opie-e1a1079f4b12d70a946761443492592236012f79.tar.gz
opie-e1a1079f4b12d70a946761443492592236012f79.tar.bz2
The AlarmDlg and its functionality was migrated to clock.cpp
this file is obsolete and unused since then, let us remove it
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 @@
- /***************************************************************************
-// setAlarm.h - description
-// -------------------
-// Created: Wed Mar 13 19:47:24 2002
-// copyright : (C) 2002 by ljp
-// email : ljp@llornkcor.com
-//
-***************************************************************************
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- ***************************************************************************/
-
-#ifndef SET_ALARM_H
-#define SET_ALARM_H
-
-#include <qvariant.h>
-#include <qdialog.h>
-
-class QVBoxLayout;
-class QHBoxLayout;
-class QGridLayout;
-class QLCDNumber;
-class QLabel;
-class QRadioButton;
-class QSlider;
-class QButtonGroup;
-class QCheckBox;
-class Set_Alarm : public QDialog
-{
- Q_OBJECT
-
-public:
- Set_Alarm( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
- ~Set_Alarm();
-
- QLabel *TextLabel1, *TextLabel2, *TextLabel3;
- QSlider *Hour_Slider, *Minute_Slider, *SnoozeSlider;
- QLCDNumber *Hour_LCDNumber, *Minute_LCDNumber, *Snooze_LCDNumber;
-
- QRadioButton* Am_RadioButton;
-
- QRadioButton* Pm_RadioButton;
- QButtonGroup *ButtonGroup1;
- QCheckBox *useMp3Check;
-protected slots:
- void slotChangemp3CkeckBox(bool);
- void slotChangeHour(int);
- void slotChangeMinute(int);
- void slotChangeSnooze(int);
- void amButtonToggled(bool);
- void pmButtonToggled(bool);
- void cleanUp();
-protected:
- QGridLayout* Set_AlarmLayout;
-};
-
-#endif // SET_ALARM_H