]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_modification.h
Refactoring: Moved RS_GraphicView to GraphicView.
[architektonas] / src / base / rs_modification.h
index ba7077507b64f02cfe9965c8b12f08860835887d..41fb0263bf1f1054e8bfcb7dfe3038f91054ff84 100644 (file)
@@ -1,34 +1,8 @@
-/****************************************************************************
-** $Id: rs_modification.h 1946 2004-12-24 19:27:43Z andrew $
-**
-** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
-**
-** This file is part of the qcadlib Library project.
-**
-** This file may be distributed and/or modified under the terms of the
-** GNU General Public License version 2 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file.
-**
-** Licensees holding valid qcadlib Professional Edition licenses may use
-** this file in accordance with the qcadlib Commercial License
-** Agreement provided with the Software.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-** See http://www.ribbonsoft.com for further details.
-**
-** Contact info@ribbonsoft.com if any conditions of this licensing are
-** not clear to you.
-**
-**********************************************************************/
-
 #ifndef RS_MODIFICATION_H
 #define RS_MODIFICATION_H
 
 #include "rs_entitycontainer.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_line.h"
 
 /**
@@ -189,7 +163,7 @@ class RS_PasteData
  * There's no interaction handled in this class.
  *
  * All modifications can be undone / redone if the container
- * is a RS_Graphic.
+ * is a Drawing.
  *
  * This class is connected to an entity container and
  * can be connected to a graphic view.
@@ -200,7 +174,7 @@ class RS_Modification
 {
        public:
                RS_Modification(RS_EntityContainer & entityContainer,
-                       RS_GraphicView * graphicView = NULL, bool handleUndo = true);
+                       GraphicView * graphicView = NULL, bool handleUndo = true);
 
                void remove();
                bool changeAttributes(RS_AttributesData& data);
@@ -211,7 +185,7 @@ class RS_Modification
        public:
                void copyLayers(RS_Entity * e);
                void copyBlocks(RS_Entity * e);
-               void paste(const RS_PasteData & data, RS_Graphic * source = NULL);
+               void paste(const RS_PasteData & data, Drawing * source = NULL);
 
                bool move(RS_MoveData & data);
                bool rotate(RS_RotateData & data);
@@ -259,9 +233,9 @@ class RS_Modification
 
        protected:
                RS_EntityContainer * container;
-               RS_Graphic * graphic;
+               Drawing * graphic;
                RS_Document * document;
-               RS_GraphicView * graphicView;
+               GraphicView * graphicView;
                bool handleUndo;
 };