1 #ifndef __ACTIONZOOMIN_H__
2 #define __ACTIONZOOMIN_H__
5 #include "actioninterface.h"
9 * This action triggers zoom increase.
11 * @author James Hammons
12 * @author Andrew Mustun
14 class ActionZoomIn: public ActionInterface
17 ActionZoomIn(EntityContainer & container, GraphicView & graphicView, RS2::ZoomDirection direction = RS2::In, RS2::Axis axis = RS2::Both, const Vector & center = Vector(false));
20 virtual void init(int status = 0);
21 virtual void trigger();
24 RS2::ZoomDirection direction;
29 #endif // __ACTIONZOOMIN_H__