appkit  1.5.1
RoadNarrows Robotics Application Kit
User Interface Reserved Events

Enumerations

enum  rnr::UIEvent {
  rnr::UIEventNone,
  rnr::UIEventClick,
  rnr::UIEventDragStart,
  rnr::UIEventDragging,
  rnr::UIEventDragEnd,
  rnr::UIEventNumOf
}
 

Detailed Description

Reserved events. User defined events must be after these values.

Enumeration Type Documentation

Enumerator
UIEventNone 

no action

UIEventClick 

mouse click

UIEventDragStart 

start of mouse drag

UIEventDragging 

dragging mouse

UIEventDragEnd 

end of mouse drag

UIEventNumOf 

number of reserved actions

Definition at line 113 of file Win.h.

114  {
115  UIEventNone, ///< no action
116  UIEventClick, ///< mouse click
117  UIEventDragStart, ///< start of mouse drag
118  UIEventDragging, ///< dragging mouse
119  UIEventDragEnd, ///< end of mouse drag
120  UIEventNumOf ///< number of reserved actions
121  };
number of reserved actions
Definition: Win.h:120
dragging mouse
Definition: Win.h:118
start of mouse drag
Definition: Win.h:117
no action
Definition: Win.h:115
mouse click
Definition: Win.h:116
end of mouse drag
Definition: Win.h:119