]> git.tdb.fi Git - r2c2.git/blob - source/engineer/timetabledialog.h
Strip Id tags and copyright notices from files
[r2c2.git] / source / engineer / timetabledialog.h
1 #ifndef TIMETABLEDIALOG_H_
2 #define TIMETABLEDIALOG_H_
3
4 #include <msp/gltk/dialog.h>
5 #include <msp/gltk/entry.h>
6 #include <msp/gltk/toggle.h>
7 #include "libr2c2/timetable.h"
8
9 class TimetableDialog: public Msp::GLtk::Dialog
10 {
11 private:
12         R2C2::Timetable &timetable;
13         Msp::GLtk::Entry *ent_timetable;
14         Msp::GLtk::Toggle *tgl_enabled;
15
16 public:
17         TimetableDialog(R2C2::Timetable &);
18
19 private:
20         void enabled_toggled(bool);
21
22         virtual void on_response(int);
23 };
24
25 #endif