37 lines
794 B
C++
37 lines
794 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license GPL v3 (see license file)
|
|
*/
|
|
|
|
#ifndef __APPL_TEXT_PLUGIN_MULTI_LINE_TAB_H__
|
|
#define __APPL_TEXT_PLUGIN_MULTI_LINE_TAB_H__
|
|
|
|
#include <etk/types.h>
|
|
#include <ewol/object/Object.h>
|
|
#include <appl/Gui/TextViewer.h>
|
|
#include <ewol/compositing/Text.h>
|
|
#include <appl/TextPlugin.h>
|
|
|
|
namespace appl {
|
|
class TextPluginMultiLineTab : public appl::TextViewerPlugin {
|
|
protected:
|
|
TextPluginMultiLineTab();
|
|
void init();
|
|
public:
|
|
DECLARE_FACTORY(TextPluginMultiLineTab);
|
|
virtual ~TextPluginMultiLineTab() {
|
|
// nothing to do ...
|
|
};
|
|
public:
|
|
virtual bool onEventEntry(appl::TextViewer& _textDrawer,
|
|
const ewol::event::Entry& _event);
|
|
};
|
|
};
|
|
|
|
|
|
#endif
|
|
|