]> git.tdb.fi Git - r2c2.git/blob - source/designer/trackproperties.h
7c2946483df2590861ea4d4b665cf4e3e1d3b6c4
[r2c2.git] / source / designer / trackproperties.h
1 #ifndef TRACKPROPERTIES_H_
2 #define TRACKPROPERTIES_H_
3
4 #include <msp/gltk/dialog.h>
5 #include <msp/gltk/entry.h>
6
7 class Selection;
8
9 class TrackProperties: public Msp::GLtk::Dialog
10 {
11 private:
12         const Selection &selection;
13         Msp::GLtk::Entry *ent_turnout_addr;
14         Msp::GLtk::Entry *ent_sensor_addr;
15
16 public:
17         TrackProperties(const Selection &);
18
19 private:
20         virtual void on_response(int);
21 };
22
23 #endif