/** * @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 class Search : public ewol::widget::Composer { private: appl::ViewerManager* m_viewerManager; //!< handle on the buffer manager bool m_forward; bool m_caseSensitive; bool m_wrap; ewol::widget::Entry* m_searchEntry; ewol::widget::Entry* m_replaceEntry; std::u32string m_searchData; std::u32string m_replaceData; public: // Constructeur Search(); ~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); virtual void onObjectRemove(ewol::Object * _removeObject); }; #endif