]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_previewactioninterface.h
Last checkin before major refactor...
[architektonas] / src / base / rs_previewactioninterface.h
index f29c3a957a630b3c497a28b9852906deec6645a9..a8f678042f962b0d71ca7adc73a4318a5776fb4d 100644 (file)
@@ -16,7 +16,7 @@ class RS_PreviewActionInterface: public RS_ActionInterface
 {
        public:
                RS_PreviewActionInterface(const char * name,
-                       RS_EntityContainer & container, RS_GraphicView & graphicView);
+                       RS_EntityContainer & container, GraphicView & graphicView);
                virtual ~RS_PreviewActionInterface();
 
                virtual void init(int status = 0);
@@ -28,21 +28,22 @@ class RS_PreviewActionInterface: public RS_ActionInterface
                void drawPreview();
                void deletePreview();
 
-       private:
+//     private:
+       protected:
                void xorPreview();
 
        protected:
                /**
-               * Preview that holds the entities to be previewed.
-               */
+                * Preview that holds the entities to be previewed.
+                */
                RS_Preview * preview;
                /**
-               * Keeps track of the drawings in XOR mode.
-               */
+                * Keeps track of the drawings in XOR mode.
+                */
                bool visible;
                /**
-               * Current offset of the preview.
-               */
+                * Current offset of the preview.
+                */
                Vector offset;
 };