1 #ifndef RS_STATICGRAPHICVIEW_H
2 #define RS_STATICGRAPHICVIEW_H
4 #include "rs_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 RS_StaticGraphicView: public RS_GraphicView
15 RS_StaticGraphicView(int w, int h, PaintInterface * p);
16 virtual ~RS_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 &);