/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license APACHE-2 (see license file) */ #pragma once #include #include #include #include namespace appl { class Windows : public ewol::widget::Windows { private: std::shared_ptr m_env; std::shared_ptr m_camera; protected: Windows(); void init(); public: DECLARE_FACTORY(Windows); virtual ~Windows() { }; private: bool onEventInput(const ewol::event::Input& _event); float m_angleTetha; float m_anglePsy; vec2 m_oldScreenPos; void onCallbackPeriodicCheckCollision(const ewol::event::Time& _event); }; }