]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_eventhandler.h
Refactoring: Moved RS_GraphicView to GraphicView.
[architektonas] / src / base / rs_eventhandler.h
index ff92d5d81577b6addcd69dc99f91a2f309774281..601bba7c17bfed218dc37f43483ca674470c1534 100644 (file)
@@ -6,6 +6,7 @@
 #define RS_MAXACTIONS 16
 
 class RS_ActionInterface;
+class GraphicView;
 
 /**
  * The event handler owns and manages all actions that are currently
@@ -15,7 +16,7 @@ class RS_ActionInterface;
 class RS_EventHandler
 {
        public:
-               RS_EventHandler(RS_GraphicView * graphicView);
+               RS_EventHandler(GraphicView * graphicView);
                ~RS_EventHandler();
 
                void back();
@@ -50,7 +51,7 @@ class RS_EventHandler
                void setSnapRestriction(RS2::SnapRestriction sr);
 
        protected:
-               RS_GraphicView * graphicView;
+               GraphicView * graphicView;
                RS_ActionInterface * defaultAction;
                RS_ActionInterface * currentActions[RS_MAXACTIONS];
                int actionIndex;