-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtAddBackground.h
47 lines (39 loc) · 1019 Bytes
/
tAddBackground.h
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
#ifndef TADDEVENT_H
#define TADDEVENT_H
#include "tEvent.h"
#include <QDialog>
#include <QSpinBox>
#include <QTimeEdit>
#include <QCheckBox>
#include <QGroupBox>
#include <QComboBox>
class tAddBackground : public QDialog
{
Q_OBJECT
public:
tAddBackground(QString &_tvName);
tAddBackground(QString &_tvName, QString _mediaName);
virtual ~tAddBackground();
protected:
void init();
private slots:
void comboBoxTypeChanged(const QString &text);
void boutonOkClick();
void boutonCancelClick();
private:
QString tvName;
QString mediaName;
QComboBox *comboBoxType;
QComboBox *comboBoxMedia;
QCheckBox *checkBox_lundi;
QCheckBox *checkBox_mardi;
QCheckBox *checkBox_mercredi;
QCheckBox *checkBox_jeudi;
QCheckBox *checkBox_vendredi;
QCheckBox *checkBox_samedi;
QCheckBox *checkBox_dimanche;
QGroupBox *groupBoxRepeat;
QTimeEdit *timeEditDebut;
QTimeEdit *timeEditFin;
};
#endif // TADDEVENT_H