X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fwidgets%2Flayerwidget.h;h=78e7d1f477fd4585a24bf0d9d60a2f1b7b93812f;hb=1f0d096a7fc370ff02477f3860beae2669bf8903;hp=b9e4e5ac9f8b187db104f0b2692c32162f6cd5a5;hpb=e5a77a32dbe17d9534d3099f1fd3fdacba199516;p=architektonas diff --git a/src/widgets/layerwidget.h b/src/widgets/layerwidget.h index b9e4e5a..78e7d1f 100644 --- a/src/widgets/layerwidget.h +++ b/src/widgets/layerwidget.h @@ -3,7 +3,7 @@ #include -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__