[DEV] debug history manager

This commit is contained in:
2013-11-26 21:06:01 +01:00
parent 4d999bbb67
commit cc5afe2d55
2 changed files with 11 additions and 27 deletions

View File

@@ -37,8 +37,16 @@ namespace appl {
public:
TextViewer(const std::string& _fontName="", int32_t _fontSize=-1);
virtual ~TextViewer(void);
public:
private:
appl::Buffer* m_buffer; //!< pointer on the current buffer to display (can be null if the buffer is remover or in state of changing buffer)
public:
/**
* @brief Get the buffer property (only for the class : template <typename TYPE> class TextViewerPluginData)
* @return pointer on buffer
*/
appl::Buffer* internalGetBuffer(void) {
return m_buffer;
}
private:
ewol::Text m_displayText; //!< Text display properties.
ewol::Drawing m_displayDrawing; //!< Other diaplay requested.