1 #ifndef __ACTIONSELECTLAYER_H__
2 #define __ACTIONSELECTLAYER_H__
4 #include "actioninterface.h"
9 * This action class can handle user events to select contours.
11 * @author James Hammons
12 * @author Andrew Mustun
14 class ActionSelectLayer: public ActionInterface
17 ActionSelectLayer(EntityContainer & container, GraphicView & graphicView);
20 virtual RS2::ActionType rtti();
21 virtual void trigger();
22 virtual void mouseReleaseEvent(QMouseEvent * e);
23 virtual void updateMouseCursor();
29 #endif // __ACTIONSELECTLAYER_H__