29 lines
635 B
C++
29 lines
635 B
C++
/**
|
|
* @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 <appl/debug.h>
|
|
#include <ewol/widget/CheckBox.h>
|
|
#include <ewol/widget/Composer.h>
|
|
|
|
namespace appl {
|
|
class TestCheckBox : public ewol::widget::Composer {
|
|
private:
|
|
ewol::widget::CheckBox* m_testWidget;
|
|
public:
|
|
// Constructeur
|
|
TestCheckBox(void);
|
|
public: // Derived function
|
|
virtual void onReceiveMessage(const ewol::object::Message& _msg);
|
|
virtual void onObjectRemove(ewol::Object* _removeObject);
|
|
};
|
|
};
|
|
#endif
|