]> git.tdb.fi Git - r2c2.git/blob - source/designer/designer.h
Use the Root widget for tooltips
[r2c2.git] / source / designer / designer.h
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2006-2010 Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #ifndef DESIGNER_H_
9 #define DESIGNER_H_
10
11 #include <string>
12 #include <msp/core/application.h>
13 #include <msp/gbase/simplewindow.h>
14 #include <msp/gl/camera.h>
15 #include <msp/gl/font.h>
16 #include <msp/gl/light.h>
17 #include <msp/gl/lighting.h>
18 #include <msp/gl/object.h>
19 #include <msp/gl/pipeline.h>
20 #include <msp/gltk/label.h>
21 #include <msp/gltk/resources.h>
22 #include <msp/gltk/root.h>
23 #include <msp/time/timestamp.h>
24 #include "libmarklin/catalogue.h"
25 #include "libmarklin/layout.h"
26 #include "3d/layout.h"
27 #include "3d/overlay.h"
28 #include "3d/track.h"
29 #include "cameracontroller.h"
30 #include "manipulator.h"
31 #include "measure.h"
32 #include "selection.h"
33
34 class Input;
35 class Toolbar;
36
37 class Designer: public Msp::Application
38 {
39 private:
40         enum Mode
41         {
42                 SELECT,
43                 CATALOGUE,
44                 MANIPULATE,
45                 MEASURE,
46                 INPUT
47         };
48
49         Msp::Graphics::SimpleGLWindow window;
50         Msp::GLtk::Resources ui_res;
51         Msp::GLtk::Root *root;
52
53         Toolbar *toolbar;
54         Msp::GLtk::Label *lbl_status;
55
56         Marklin::Catalogue catalogue;
57         Marklin::Layout3D *cat_layout_3d;
58         std::string filename;
59         Marklin::Layout *layout;
60         Marklin::Layout3D *layout_3d;
61         Marklin::Overlay3D *overlay;
62         Msp::GL::Object *base_object;
63         Marklin::Route *cur_route;
64         Msp::GL::Pipeline *pipeline;
65         Msp::GL::Camera camera;
66         Msp::GL::Lighting lighting;
67         Msp::GL::Light light;
68
69         Mode mode;
70         Selection selection;
71         Manipulator manipulator;
72         Measure measure;
73         Input *input;
74         CameraController camera_ctl;
75
76         bool shift;
77
78         Msp::Time::TimeStamp last_tick;
79
80         static Msp::Application::RegApp<Designer> reg;
81
82 public:
83         Designer(int, char **);
84         ~Designer();
85
86         int main();
87         void save();
88         void quit();
89
90         Marklin::Layout *get_layout() { return layout; }
91         Marklin::Layout3D *get_layout_3d() { return layout_3d; }
92         const Msp::GL::Camera &get_camera() const { return camera; }
93         const Msp::GLtk::Resources &get_ui_resources() const { return ui_res; }
94         Msp::GLtk::Root &get_root() const { return *root; }
95         void edit_route(Marklin::Route &);
96         Marklin::Route *get_current_route() const { return cur_route; }
97         void add_selection_to_route();
98
99         Marklin::Point map_pointer_coords(int, int);
100 private:
101         void tick();
102         void key_press(unsigned, unsigned, wchar_t);
103         void key_release(unsigned, unsigned);
104         void button_press(int, int, unsigned, unsigned);
105         void pointer_motion(int, int);
106         void apply_camera();
107         void render();
108         Marklin::Track3D *pick_track(int, int);
109         void update_track_icon(Marklin::Track3D &);
110         void manipulation_status(const std::string &);
111         void manipulation_done(bool);
112         void measure_changed();
113         void measure_done();
114         void set_tooltip(int, int, const std::string &);
115         void clear_tooltip();
116         void save_accept();
117         void turnout_id_accept();
118         void sensor_id_accept();
119         void input_dismiss();
120         void view_all();
121         std::string tooltip(int, int);
122 };
123
124 #endif