]> Shamusworld >> Repos - architektonas/blobdiff - src/base/staticgraphicview.h
Major refactor of Architektonas: Jettisoning old cruft.
[architektonas] / src / base / staticgraphicview.h
diff --git a/src/base/staticgraphicview.h b/src/base/staticgraphicview.h
deleted file mode 100644 (file)
index ab99b65..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef __STATICGRAPHICVIEW_H__
-#define __STATICGRAPHICVIEW_H__
-
-#include "graphicview.h"
-
-class PaintInterface;
-
-/**
- * This is an implementation of a graphic viewer with a fixed size
- * for drawing onto fixed devices (such as bitmaps).
- */
-class StaticGraphicView: public GraphicView
-{
-       public:
-               StaticGraphicView(int w, int h, PaintInterface * p);
-               virtual ~StaticGraphicView();
-
-               virtual int getWidth();
-               virtual int getHeight();
-               virtual void redraw();
-               virtual void adjustOffsetControls();
-               virtual void adjustZoomControls();
-               virtual void setMouseCursor(RS2::CursorType);
-
-               virtual void emulateMouseMoveEvent();
-               virtual void updateGridStatusWidget(const QString &);
-
-               void paint();
-
-       private:
-               //! Width
-               int width;
-               //! Height
-               int height;
-};
-
-#endif