2012-07-04 11:15:12 +00:00
|
|
|
/*
|
|
|
|
* CanvasWidget.hxx
|
|
|
|
*
|
|
|
|
* Created on: 03.07.2012
|
|
|
|
* Author: tom
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CANVASWIDGET_HXX_
|
|
|
|
#define CANVASWIDGET_HXX_
|
|
|
|
|
|
|
|
#include <Main/fg_props.hxx>
|
|
|
|
#include <plib/pu.h>
|
|
|
|
|
2012-11-18 15:38:35 +00:00
|
|
|
#include <simgear/canvas/canvas_fwd.hxx>
|
|
|
|
|
2012-07-04 11:15:12 +00:00
|
|
|
class CanvasMgr;
|
|
|
|
|
|
|
|
class CanvasWidget:
|
|
|
|
public puObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CanvasWidget( int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
SGPropertyNode* props,
|
|
|
|
const std::string& module );
|
|
|
|
virtual ~CanvasWidget();
|
|
|
|
|
|
|
|
virtual void doHit (int button, int updown, int x, int y);
|
|
|
|
virtual int checkKey(int key , int updown);
|
|
|
|
|
|
|
|
virtual void setSize ( int w, int h );
|
|
|
|
virtual void draw(int dx, int dy);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
CanvasMgr *_canvas_mgr; // TODO maybe we should store this in some central
|
|
|
|
// location or make it static...
|
|
|
|
|
|
|
|
GLuint _tex_id; //<! OpenGL texture id if canvas
|
|
|
|
size_t _no_tex_cnt;//<! Count since how many frames we were not
|
|
|
|
// able to get the texture (for debugging)
|
2012-11-18 15:38:35 +00:00
|
|
|
simgear::canvas::CanvasPtr _canvas;
|
2012-07-04 11:15:12 +00:00
|
|
|
SGPropertyNode *_mouse_x,
|
|
|
|
*_mouse_y,
|
|
|
|
*_mouse_down,
|
|
|
|
*_mouse_drag;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* CANVASWIDGET_HXX_ */
|