/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license GPL v3 (see license file) */ #ifndef __SEARCH_H__ #define __SEARCH_H__ #include #include #include #include #include namespace appl { namespace widget { class Search : public ewol::widget::Composer { private: std::shared_ptr m_viewerManager; //!< handle on the buffer manager bool m_forward; bool m_caseSensitive; bool m_wrap; std::shared_ptr m_searchEntry; std::shared_ptr m_replaceEntry; std::u32string m_searchData; std::u32string m_replaceData; protected: // Constructeur Search(); void init(); public: DECLARE_FACTORY(Search); virtual ~Search(); private: /** * @brief Find the next element that corespond at the search */ void find(); /** * @brief Replace the current selected text. */ void replace(); public: // derived function virtual void onReceiveMessage(const ewol::object::Message& _msg); }; }; }; #endif