/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license MPL v2.0 (see license file) */ #pragma once #include #include #include #include namespace appl { class Windows : public ewol::widget::Windows { private: ememory::SharedPtr m_env; ememory::SharedPtr m_camera; protected: Windows(); void init(); public: DECLARE_FACTORY(Windows); virtual ~Windows() { }; private: bool onEventInput(const ewol::event::Input& _event); void onCallbackDisplayDebug(const ememory::SharedPtr& _obj); ege::Ray m_ray; float m_angleTetha; float m_anglePsy; vec2 m_oldScreenPos; std::pair m_destination; }; }