1 #ifndef __STATICGRAPHICVIEW_H__
2 #define __STATICGRAPHICVIEW_H__
4 #include "graphicview.h"
9 * This is an implementation of a graphic viewer with a fixed size
10 * for drawing onto fixed devices (such as bitmaps).
12 class StaticGraphicView: public GraphicView
15 StaticGraphicView(int w, int h, PaintInterface * p);
16 virtual ~StaticGraphicView();
18 virtual int getWidth();
19 virtual int getHeight();
20 virtual void redraw();
21 virtual void adjustOffsetControls();
22 virtual void adjustZoomControls();
23 virtual void setMouseCursor(RS2::CursorType);
25 virtual void emulateMouseMoveEvent();
26 virtual void updateGridStatusWidget(const QString &);