/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license BSD v3 (see license file) */ #pragma once #include #include #include #include #include #include #include #include namespace appl { class MainWindows : public ewol::widget::Windows { private: std::shared_ptr m_composer; std::shared_ptr m_sizerVert; std::shared_ptr m_sizerDynamic; std::shared_ptr m_subWidget; std::shared_ptr m_testName; int32_t m_idWidget; public: // Constructeur MainWindows(); void init(); public: DECLARE_FACTORY(MainWindows); ~MainWindows() {}; protected: void onCallbackThemeChange(const bool& _value); void onCallbackWidgetChange(int32_t _increment); void updateProperty(); }; };