]> Shamusworld >> Repos - architektonas/blobdiff - src/widgets/layerwidget.h
First steps in fixing/cleaning up preview/snapper rendering.
[architektonas] / src / widgets / layerwidget.h
index b9e4e5ac9f8b187db104f0b2692c32162f6cd5a5..78e7d1f477fd4585a24bf0d9d60a2f1b7b93812f 100644 (file)
@@ -3,7 +3,7 @@
 
 #include <QtGui>
 
-class QG_ActionHandler;
+class ActionHandler;
 class RS_Layer;
 class RS_LayerList;
 
@@ -11,14 +11,14 @@ class RS_LayerList;
  * This is the Qt implementation of a widget which can view a
  * layer list and provides a user interface for basic layer actions.
  */
-class QG_LayerWidget: public QWidget
+class LayerWidget: public QWidget
 {
     Q_OBJECT
 
        public:
-               QG_LayerWidget(QG_ActionHandler * ah, QWidget * parent,
+               LayerWidget(ActionHandler * ah, QWidget * parent,
                        const char * name = 0, Qt::WindowFlags f = 0);
-               ~QG_LayerWidget();
+               ~LayerWidget();
 
                void setLayerList(RS_LayerList *, bool showByBlock);
                void update();
@@ -60,7 +60,7 @@ class QG_LayerWidget: public QWidget
                QPixmap pxmEdit;
                QPixmap pxmDefreezeAll;
                QPixmap pxmFreezeAll;
-               QG_ActionHandler * actionHandler;
+               ActionHandler * actionHandler;
 };
 
 #endif // __LAYERWIDGET_H__