NimbRo ROS Soccer Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mouseevent.hpp
1 // Enumeration which is used to define particular mouse events
2 // Author: Dmytro Pavlichenko <dm.mark999@gmail.com>
3 
4 #pragma once
5 
6 namespace rqt_vision_module
7 {
8 
9 enum MouseEvent
10 {
11  Move,
12 
13  LeftClick,
14  LeftRelease,
15 
16  RightClick,
17  RightRelease,
18 
19  MiddleClick,
20  MiddleRelease,
21 
22  MiddleRotatedForward, // Away from the user
23  MiddleRotatedBackwards, // To the user
24 };
25 
26 }