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