X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Fselection.h;h=cbc426fc1ebd9f14c0f0f5c6437052ea805daf94;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=3a39ebed6ef9c73ec0f68118502ab5c1703d2d9e;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/base/selection.h b/src/base/selection.h index 3a39ebe..cbc426f 100644 --- a/src/base/selection.h +++ b/src/base/selection.h @@ -14,13 +14,13 @@ class GraphicView; * * @author Andrew Mustun */ -class RS_Selection +class Selection { public: - RS_Selection(RS_EntityContainer & entityContainer, + Selection(EntityContainer & entityContainer, GraphicView * graphicView = NULL); - void selectSingle(RS_Entity * e); + void selectSingle(Entity * e); void selectAll(bool select = true); void deselectAll(); void invertSelection(); @@ -30,13 +30,13 @@ class RS_Selection void selectIntersected(const Vector & v1, const Vector & v2, bool select = true); void deselectIntersected(const Vector & v1, const Vector & v2); - void selectContour(RS_Entity * e); - void selectLayer(RS_Entity * e); + void selectContour(Entity * e); + void selectLayer(Entity * e); void selectLayer(const QString & layerName, bool select = true); void deselectLayer(QString & layerName); protected: - RS_EntityContainer * container; + EntityContainer * container; Drawing * graphic; GraphicView * graphicView; };