2014-03-07 21:15:21 +01:00
|
|
|
/**
|
|
|
|
* @author Edouard DUPIN
|
|
|
|
*
|
|
|
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
|
|
|
*
|
|
|
|
* @license BSD 3 clauses (see license file)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __APPL_WINDOWS_H__
|
|
|
|
#define __APPL_WINDOWS_H__
|
|
|
|
|
|
|
|
#include <ewol/widget/Windows.h>
|
|
|
|
#include <ewol/widget/Composer.h>
|
|
|
|
|
|
|
|
namespace appl {
|
|
|
|
class Windows : public ewol::widget::Windows {
|
|
|
|
private:
|
2014-08-19 21:06:17 +02:00
|
|
|
std::shared_ptr<ewol::widget::Composer> m_composer;
|
|
|
|
protected:
|
2014-05-15 21:37:39 +02:00
|
|
|
Windows();
|
2014-08-19 21:06:17 +02:00
|
|
|
void init();
|
|
|
|
public:
|
|
|
|
DECLARE_FACTORY(Windows);
|
2014-08-22 23:30:19 +02:00
|
|
|
public: // callback functions
|
|
|
|
void onCallbackPlay();
|
|
|
|
void onCallbackStop();
|
|
|
|
|
2014-03-07 21:15:21 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|