]> Shamusworld >> Repos - architektonas/blobdiff - src/base/selection.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / base / selection.h
index 3a39ebed6ef9c73ec0f68118502ab5c1703d2d9e..cbc426fc1ebd9f14c0f0f5c6437052ea805daf94 100644 (file)
@@ -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;
 };