/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license GPL v3 (see license file) */ #ifndef __APPL_TEXT_PLUGIN_AUTO_INDENT_H__ #define __APPL_TEXT_PLUGIN_AUTO_INDENT_H__ #include #include #include #include #include namespace appl { class TextPluginAutoIndent : public appl::TextViewerPlugin { public: TextPluginAutoIndent(void); ~TextPluginAutoIndent(void) { // nothing to do ... }; public: virtual bool onEventEntry(appl::TextViewer& _textDrawer, const ewol::EventEntry& _event); }; }; #endif