/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license GPL v3 (see license file) */ #ifndef __MAIN_WINDOWS_H__ #define __MAIN_WINDOWS_H__ #include #include #include #include #include class MainWindows : public ewol::Windows { private: int32_t m_currentSavingAsIdBuffer; widget::Label* m_widgetLabelFileName; public: // Constructeur MainWindows(void); ~MainWindows(void); public: // Derived function virtual const char * const getObjectType(void) { return "MainWindows"; }; virtual void onReceiveMessage(const ewol::EMessage& _msg); virtual void onObjectRemove(ewol::EObject * _removeObject); }; #define EDN_CAST_MAIN_WINDOWS(curentPointer) EWOL_CAST(TYPE_EOBJECT_EDN_MAIN_WINDOWS,MainWindows,curentPointer) #endif