X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Frs_modification.h;h=41fb0263bf1f1054e8bfcb7dfe3038f91054ff84;hb=27d4a138d23453e93a833e9347444b828a971cb4;hp=ba7077507b64f02cfe9965c8b12f08860835887d;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/base/rs_modification.h b/src/base/rs_modification.h index ba70775..41fb026 100644 --- a/src/base/rs_modification.h +++ b/src/base/rs_modification.h @@ -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; };