QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
REntityPickEvent.h
Go to the documentation of this file.
1 #ifndef RENTITYPICKEVENT_H
2 #define RENTITYPICKEVENT_H
3 
4 #include "RInputEvent.h"
5 #include "REntity.h"
6 #include "RVector.h"
7 
8 class RGraphicsView;
9 class RGraphicsScene;
10 
17 class REntityPickEvent : public RInputEvent {
18 public:
25 
30  return entityId;
31  }
32 
36  bool isValid() const {
37  return entityId!=REntity::INVALID_ID;
38  }
39 
40 private:
42 };
43 
46 
47 #endif