17 #ifndef _VIEWCONTROLLER_HH_ 18 #define _VIEWCONTROLLER_HH_ 44 public:
virtual void Init() = 0;
51 const double _yaw = 0,
const double _pitch = 0);
55 public:
virtual void Update() = 0;
60 public:
virtual void Resize(
const unsigned int _width,
61 const unsigned int _height);
65 public:
void SetEnabled(
bool _value);
69 public:
virtual void HandleMouseEvent(
74 public:
virtual void HandleKeyReleaseEvent(
const std::string &_key) = 0;
78 public:
virtual void HandleKeyPressEvent(
const std::string &_key) = 0;
82 public: std::string GetTypeString()
const;
std::string typeString
Type of view controller.
Definition: ViewController.hh:91
Generic description of a mouse event.
Definition: MouseEvent.hh:35
boost::shared_ptr< UserCamera > UserCameraPtr
Definition: RenderTypes.hh:92
Forward declarations for the common classes.
Definition: Animation.hh:33
The Vector3 class represents the generic vector containing 3 elements.
Definition: Vector3.hh:39
bool enabled
True if enabled.
Definition: ViewController.hh:88
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
Base class for view controllers.
Definition: ViewController.hh:34
UserCameraPtr camera
Pointer to the camera to control.
Definition: ViewController.hh:85