2014-10-31 22:22:57 +01:00
|
|
|
/**
|
|
|
|
* @author Edouard DUPIN
|
|
|
|
*
|
|
|
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
|
|
|
*
|
|
|
|
* @license APACHE-2 (see license file)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __APPL_WINDOWS_H__
|
|
|
|
#define __APPL_WINDOWS_H__
|
|
|
|
|
|
|
|
#include <ewol/widget/Windows.h>
|
|
|
|
#include <ege/Environement.h>
|
2014-11-09 22:55:08 +01:00
|
|
|
#include <ege/camera/View.h>
|
2014-10-31 22:22:57 +01:00
|
|
|
|
|
|
|
namespace appl {
|
|
|
|
class Windows : public ewol::widget::Windows {
|
|
|
|
private:
|
|
|
|
std::shared_ptr<ege::Environement> m_env;
|
2014-11-09 22:55:08 +01:00
|
|
|
std::shared_ptr<ege::camera::View> m_camera;
|
2014-10-31 22:22:57 +01:00
|
|
|
protected:
|
|
|
|
Windows();
|
|
|
|
void init();
|
|
|
|
public:
|
|
|
|
DECLARE_FACTORY(Windows);
|
|
|
|
virtual ~Windows() { };
|
2014-11-09 22:55:08 +01:00
|
|
|
private:
|
|
|
|
void onCallbackPeriodicUpdateCamera(const ewol::event::Time& _event);
|
2014-10-31 22:22:57 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|