X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flayerwidget.h;h=5da5ee9f900c6acdd75f5c8c5320241d52c91c11;hb=790c1a6d97f73f7457c7fad7e82fa29e5b6accd5;hp=e515dcfd4a724f318f9cc326114f2f558324828e;hpb=ea7712f342020baf61cf33ba98b12140da6aecf7;p=architektonas diff --git a/src/layerwidget.h b/src/layerwidget.h index e515dcf..5da5ee9 100644 --- a/src/layerwidget.h +++ b/src/layerwidget.h @@ -11,8 +11,14 @@ class LayerWidget: public QWidget LayerWidget(void); ~LayerWidget(); + public slots: + void Reload(void); + private slots: void HandleLayerSelected(int); + void HandleHideToggle(QListWidgetItem *, bool); + void HandleLockToggle(QListWidgetItem *, bool); + void HandleDblClick(QListWidgetItem *); void AddLayer(void); void DeleteLayer(void); void EditLayer(void); @@ -24,6 +30,9 @@ class LayerWidget: public QWidget signals: void LayerSelected(int); + void LayerDeleted(int); + void LayerToggled(void); + void LayersSwapped(int, int); public: QToolButton * addLayer;