/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license BSD v3 (see license file) */ #ifndef __TEST_CHECK_BOX_H__ #define __TEST_CHECK_BOX_H__ #include #include #include namespace appl { class TestCheckBox : public ewol::widget::Composer { private: std::shared_ptr m_testWidget; public: // Constructeur TestCheckBox(); void init(); public: DECLARE_FACTORY(TestCheckBox); protected: void onCallbackExpendX(const bool& _value); void onCallbackExpendY(const bool& _value); void onCallbackFillX(const bool& _value); void onCallbackFillY(const bool& _value); void onCallbackTextToggle(const bool& _value); void onCallbackChangeText(); }; }; #endif