]> git.tdb.fi Git - r2c2.git/blob - source/designer/toolbar.h
Bugfixes
[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 <sigc++/trackable.h>
12 #include <msp/gltk/dropdown.h>
13 #include <msp/gltk/panel.h>
14
15 class Designer;
16
17 class Toolbar: public Msp::GLtk::Panel, public sigc::trackable
18 {
19 private:
20         Designer &designer;
21         Msp::GLtk::Dropdown *drp_routes;
22
23 public:
24         Toolbar(Designer &);
25 private:
26         void route_selected(unsigned, const std::string &);
27         void update_routes();
28 };
29
30 #endif