34 lines
773 B
C++
34 lines
773 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license GPL v3 (see license file)
|
|
*/
|
|
|
|
#ifndef __APPL_TEXT_RM_LINE_H__
|
|
#define __APPL_TEXT_RM_LINE_H__
|
|
|
|
#include <etk/types.h>
|
|
#include <ewol/renderer/EObject.h>
|
|
#include <appl/Gui/TextViewer.h>
|
|
#include <ewol/compositing/Text.h>
|
|
#include <appl/TextPlugin.h>
|
|
|
|
namespace appl {
|
|
class TextPluginRmLine : public appl::TextViewerPlugin {
|
|
public:
|
|
TextPluginRmLine(void);
|
|
~TextPluginRmLine(void) {
|
|
// nothing to do ...
|
|
};
|
|
public:
|
|
virtual void onPluginEnable(appl::TextViewer& _textDrawer);
|
|
virtual void onPluginDisable(appl::TextViewer& _textDrawer);
|
|
virtual bool onReceiveMessage(appl::TextViewer& _textDrawer, const ewol::EMessage& _msg);
|
|
};
|
|
};
|
|
|
|
|
|
#endif
|