]> git.tdb.fi Git - r2c2.git/blob - source/designer/trackproperties.h
a1fe45069f75dad91bb3f2d445bd3872c123e9ba
[r2c2.git] / source / designer / trackproperties.h
1 /* $Id$
2
3 This file is part of R²C²
4 Copyright © 2010 Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #ifndef TRACKPROPERTIES_H_
9 #define TRACKPROPERTIES_H_
10
11 #include <msp/gltk/dialog.h>
12 #include <msp/gltk/entry.h>
13
14 class Selection;
15
16 class TrackProperties: public Msp::GLtk::Dialog
17 {
18 private:
19         const Selection &selection;
20         Msp::GLtk::Entry *ent_turnout_id;
21         Msp::GLtk::Entry *ent_sensor_id;
22
23 public:
24         TrackProperties(const Selection &);
25
26 private:
27         virtual void on_response(int);
28 };
29
30 #endif