blob: 96628dcb7ce3aaccbe78bec19bb7536fa036cbd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/***************************************************************************
wakeup.h - alarm plugin for noatun
-------------------
begin : Wed Apr 11 CEST 2000
copyright: (C) 2001 by Mickael Marchand <mikmak@freenux.org>
***************************************************************************/
/***************************************************************************
* *
* 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 WAKEUP_H
#define WAKEUP_H
#include <noatun/pref.h>
#include <noatun/plugin.h>
#include <tqradiobutton.h>
#include <tqbuttongroup.h>
#include <tqpushbutton.h>
class TQSpinBox;
class TQCheckBox;
class KMinuteSpinBox;
class KPercentSpinBox;
class Wakeup : public TQObject, public Plugin
{
Q_OBJECT
TQ_OBJECT
NOATUNPLUGIND
public:
Wakeup();
~Wakeup();
static Wakeup *wakeme;
void PlayerAct();
void update();
public slots:
void slotVolumeChange();
void slotCheckTime();
private:
TQStringList *day_list;
// TQString songlist;
int hour[7];
int minute[7];
bool days[7];
TQTimer *volTimer;
int volEndVal;
int modeAlarm;
};
class WakeupPrefs : public CModule
{
Q_OBJECT
TQ_OBJECT
public:
WakeupPrefs( TQObject *tqparent );
virtual void save();
virtual void load();
public slots:
void slotViewFrame(int);
void slotApplyAll();
private:
TQCheckBox *monday;
TQCheckBox *tuesday;
TQCheckBox *wednesday;
TQCheckBox *thursday;
TQCheckBox *friday;
TQCheckBox *saturday;
TQCheckBox *sunday;
KMinuteSpinBox *minute1;
KMinuteSpinBox *minute2;
KMinuteSpinBox *minute3;
KMinuteSpinBox *minute4;
KMinuteSpinBox *minute5;
KMinuteSpinBox *minute6;
KMinuteSpinBox *minute7;
TQSpinBox *hour1;
TQSpinBox *hour2;
TQSpinBox *hour3;
TQSpinBox *hour4;
TQSpinBox *hour5;
TQSpinBox *hour6;
TQSpinBox *hour7;
KPercentSpinBox *volEndValue;
TQRadioButton *alarmmode;
TQRadioButton *morningmode;
TQRadioButton *nightmode;
TQFrame *volFrame;
TQPushButton *applyall;
};
#endif // WAKEUP_H
|