]> Shamusworld >> Repos - architektonas/blobdiff - src/layerwidget.h
Fixed Rotate tool to work with Arcs.
[architektonas] / src / layerwidget.h
index 33000ea12a8594046fc5bd22dddc5f35ff2e7186..914c29ca32c24063dc66e6eddfcd3dfddf69feb2 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef __LAYERWIDGET_H__
 #define __LAYERWIDGET_H__
 
-#include <QtGui>
+#include <QtWidgets>
 
 class LayerWidget: public QWidget
 {
@@ -11,6 +11,20 @@ class LayerWidget: public QWidget
                LayerWidget(void);
                ~LayerWidget();
 
+       private slots:
+               void HandleLayerSelected(int);
+               void AddLayer(void);
+               void DeleteLayer(void);
+               void EditLayer(void);
+               void MoveLayerUp(void);
+               void MoveLayerDown(void);
+
+       signals:
+               void LayerSelected(int);
+
+       private:
+               QListWidget * list;
 };
 
 #endif // __LAYERWIDGET_H__
+