1 #ifndef __ACTIONZOOMSCROLL_H__
2 #define __ACTIONZOOMSCROLL_H__
4 #include "actioninterface.h"
7 * This action triggers a scrolling.
9 * @author James Hammons
10 * @author Andrew Mustun
12 class ActionZoomScroll: public ActionInterface
15 ActionZoomScroll(RS2::Direction direction, EntityContainer & container, GraphicView & graphicView);
18 virtual void init(int status = 0);
19 virtual void trigger();
22 RS2::Direction direction;
25 #endif // __ACTIONZOOMSCROLL_H__