]> Shamusworld >> Repos - architektonas/blobdiff - src/widgets/layerwidget.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / widgets / layerwidget.h
index c9b595d1102fe75e52784d3fda9f59378b8cda80..d5e77c72a48b368d53af3f6c922d21238e83edee 100644 (file)
@@ -4,8 +4,8 @@
 #include <QtGui>
 
 class ActionHandler;
-class RS_Layer;
-class RS_LayerList;
+class Layer;
+class LayerList;
 
 /**
  * This is the Qt implementation of a widget which can view a
@@ -20,16 +20,16 @@ class LayerWidget: public QWidget
                        const char * name = 0, Qt::WindowFlags f = 0);
                ~LayerWidget();
 
-               void setLayerList(RS_LayerList *, bool showByBlock);
+               void setLayerList(LayerList *, bool showByBlock);
                void update();
-               void highlightLayer(RS_Layer *);
+               void highlightLayer(Layer *);
                void highlightLayer(const QString &);
 
-               void layerActivated(RS_Layer *);
-               void layerAdded(RS_Layer *);
-               void layerEdited(RS_Layer *);
-               void layerRemoved(RS_Layer *);
-               void layerToggled(RS_Layer *);
+               void layerActivated(Layer *);
+               void layerAdded(Layer *);
+               void layerEdited(Layer *);
+               void layerRemoved(Layer *);
+               void layerToggled(Layer *);
 
        signals:
                void escape();
@@ -44,11 +44,11 @@ class LayerWidget: public QWidget
                virtual void keyPressEvent(QKeyEvent *);
 
        private:
-               RS_LayerList * layerList;
+               LayerList * layerList;
                bool showByBlock;
 //             Q3ListBox * listBox;
                QListWidget * listBox;
-               RS_Layer * lastLayer;
+               Layer * lastLayer;
                QPixmap pxmLayerStatus00;
                QPixmap pxmLayerStatus01;
                QPixmap pxmLayerStatus10;