/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license BSD v3 (see license file) */ #ifndef __MAIN_WINDOWS_H__ #define __MAIN_WINDOWS_H__ #include #include #include #include #include #include #include namespace appl { class MainWindows : public ewol::widget::Windows { private: std::shared_ptr m_sizerVert; std::shared_ptr m_subWidget; std::shared_ptr m_testName; int32_t m_idWidget; public: // Constructeur MainWindows(); void init(); public: DECLARE_FACTORY(MainWindows); ~MainWindows() {}; public: // derived fuction virtual void onReceiveMessage(const ewol::object::Message& _msg); }; }; #endif