]> git.tdb.fi Git - r2c2.git/blobdiff - source/engineer/trainview.h
Add a common base class for dialogs that need to update dynamically
[r2c2.git] / source / engineer / trainview.h
index c7ba7b90c30da5b05e546aa384369f901b5eacd3..1e484cb3956e920be53c0baedfb1e8713857501d 100644 (file)
@@ -1,23 +1,14 @@
-/* $Id$
-
-This file is part of R²C²
-Copyright © 2010  Mikkosoft Productions, Mikko Rasa
-Distributed under the GPL
-*/
-
 #ifndef TRAINVIEW_H_
 #define TRAINVIEW_H_
 
 #include <msp/gl/renderbuffer.h>
 #include <msp/gl/framebuffer.h>
 #include <msp/gl/texture2d.h>
-#include <msp/gltk/panel.h>
 #include <msp/gltk/toggle.h>
 #include "libr2c2/train.h"
+#include "dynamicdialog.h"
 
-class Engineer;
-
-class TrainView: public Msp::GLtk::Panel
+class TrainView: public DynamicDialog
 {
 public:
        enum Mode
@@ -28,7 +19,6 @@ public:
        };
 
 private:
-       Engineer &engineer;
        const R2C2::Train &train;
        Msp::GLtk::Toggle *tgl_forward;
        Mode mode;
@@ -36,20 +26,17 @@ private:
        Msp::GL::Framebuffer fbo;
        Msp::GL::Texture2D tex;
        Msp::GL::Renderbuffer depth;
-       Msp::GL::Camera camera;
-       Msp::GL::Pipeline pipeline;
-       bool stale;
+       R2C2::View3D view;
 
 public:
        TrainView(Engineer &, const R2C2::Train &);
-       ~TrainView();
 
        void set_mode(Mode);
-       void set_forward(bool);
-       void prepare();
 private:
-       virtual void button_release(int, int, unsigned);
-       void close_clicked();
+       void ui_mode_toggled(bool, Mode);
+public:
+       void set_forward(bool);
+       virtual void update();
 };
 
 #endif