QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RWheelEvent.h
Go to the documentation of this file.
1 #ifndef RWHEELEVENT_H
2 #define RWHEELEVENT_H
3 
4 #include <QWheelEvent>
5 
6 #include "RInputEvent.h"
7 
8 class RGraphicsView;
9 class RGraphicsScene;
10 
20 class RWheelEvent: public QWheelEvent, public RInputEvent {
21 public:
22  RWheelEvent(const RVector& position, int delta, Qt::MouseButtons buttons,
23  Qt::KeyboardModifiers modifiers, Qt::Orientation orient,
25 
26  RWheelEvent(const QWheelEvent& wheelEvent, RGraphicsScene& s,
27  RGraphicsView& v);
28 
29  virtual ~RWheelEvent();
30 
31 };
32 
34 
35 #endif