/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license GPL v3 (see license file) */ #ifndef __BUFFER_VIEW_H__ #define __BUFFER_VIEW_H__ #include #include #include #include #include #include namespace appl { class dataBufferStruct { public: etk::FSNode m_bufferName; uint32_t m_bufferID; bool m_isModify; dataBufferStruct(etk::FSNode& bufferName, int32_t bufferID, bool isModify) : m_bufferName(bufferName), m_bufferID(bufferID), m_isModify(isModify) { }; ~dataBufferStruct(void) { }; }; }; class BufferView : public widget::List { private: int32_t m_selectedIdRequested; int32_t m_selectedID; etk::Vector m_list; public: // Constructeur BufferView(void); ~BufferView(void); // Derived function const char * const GetObjectType(void) { return "ApplBufferView"; }; // Derived function virtual void OnReceiveMessage(const ewol::EMessage& _msg); protected: // function call to display the list : virtual etk::Color<> GetBasicBG(void); void RemoveAllElement(void); // Derived function virtual uint32_t GetNuberOfColomn(void); virtual bool GetTitle(int32_t colomn, etk::UString &myTitle, etk::Color<> &fg, etk::Color<> &bg); virtual uint32_t GetNuberOfRaw(void); virtual bool GetElement(int32_t colomn, int32_t raw, etk::UString &myTextToWrite, etk::Color<> &fg, etk::Color<> &bg); virtual bool OnItemEvent(int32_t IdInput, ewol::keyEvent::status_te typeEvent, int32_t colomn, int32_t raw, float x, float y); }; #endif