NFC support
[badge] / desktop / dialogday.h
1 #ifndef DIALOGDAY_H
2 #define DIALOGDAY_H
3
4 #include <QtGui/QDialog>
5 #include "timetable.h"
6
7 namespace Ui {
8     class DialogDay;
9 }
10
11 class DialogDay : public QDialog {
12     Q_OBJECT
13
14 protected:
15     void changeEvent(QEvent *e);
16
17 private:
18     Ui::DialogDay *m_ui;
19     bool change;
20 public:
21     DialogDay(QWidget *parent = 0);
22     ~DialogDay();
23     TimeTable getTimes(TimeTable timetable);
24
25 public slots:
26     void enableFirst(bool);
27     void enableSecond(bool);
28     void task();
29 };
30
31 #endif // DIALOGDAY_H