]> git.tdb.fi Git - r2c2.git/blob - source/designer/zoneproperties.h
Add support for named zones
[r2c2.git] / source / designer / zoneproperties.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 ZONEPROPERTIES_H_
9 #define ZONEPROPERTIES_H_
10
11 #include <msp/gltk/dialog.h>
12 #include <msp/gltk/dropdown.h>
13 #include <msp/gltk/entry.h>
14 #include "libr2c2/zone.h"
15
16 class ZoneProperties: public Msp::GLtk::Dialog
17 {
18 private:
19         R2C2::Zone &zone;
20         Msp::GLtk::Entry *ent_group;
21         Msp::GLtk::Dropdown *drp_qualifier;
22         Msp::GLtk::Entry *ent_number;
23
24 public:
25         ZoneProperties(R2C2::Zone &);
26
27 private:
28         virtual void on_response(int);
29 };
30
31 #endif