17 #ifndef _VIEWCONTROLLER_HH_
18 #define _VIEWCONTROLLER_HH_
44 public:
virtual void Init() = 0;
52 public:
virtual void Update() = 0;
56 public:
void SetEnabled(
bool _value);
60 public:
virtual void HandleMouseEvent(
65 public:
virtual void HandleKeyReleaseEvent(
const std::string &_key) = 0;
69 public:
virtual void HandleKeyPressEvent(
const std::string &_key) = 0;
73 public: std::string GetTypeString()
const;
Generic description of a mouse event.
Definition: MouseEvent.hh:32
The Vector3 class represents the generic vector containing 3 elements.
Definition: Vector3.hh:43
std::string typeString
Type of view controller.
Definition: ViewController.hh:82
UserCameraPtr camera
Pointer to the camera to control.
Definition: ViewController.hh:76
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
bool enabled
True if enabled.
Definition: ViewController.hh:79
boost::shared_ptr< UserCamera > UserCameraPtr
Definition: RenderTypes.hh:84
#define GAZEBO_VISIBLE
Use to represent "symbol visible" if supported.
Definition: system.hh:48
Base class for view controllers.
Definition: ViewController.hh:34