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