change type
[badge] / 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 public:
14     DialogDay(QWidget *parent = 0);
15     ~DialogDay();
16     static TimeTable getTimes(TimeTable timetable);
17
18 protected:
19     void changeEvent(QEvent *e);
20
21 private:
22     Ui::DialogDay *m_ui;
23     bool change;
24 public slots:
25     void enableFirst(bool);
26     void enableSecond(bool);
27
28 };
29
30 #endif // DIALOGDAY_H