]> git.tdb.fi Git - r2c2.git/blob - source/designer/toolbar.h
Convert designer to use mspgltk for UI
[r2c2.git] / source / designer / toolbar.h
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2009  Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #ifndef TOOLBAR_H_
9 #define TOOLBAR_H_
10
11 #include <msp/gltk/dropdown.h>
12 #include <msp/gltk/panel.h>
13
14 class Designer;
15
16 class Toolbar: public Msp::GLtk::Panel
17 {
18 private:
19         Designer &designer;
20         Msp::GLtk::Dropdown *drp_routes;
21
22 public:
23         Toolbar(Designer &);
24 private:
25         void route_selected(unsigned, const std::string &);
26         void update_routes();
27 };
28
29 #endif