50 lines
1.0 KiB
C++
50 lines
1.0 KiB
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license GPL v3 (see license file)
|
|
*/
|
|
|
|
#ifndef __SEARCH_H__
|
|
#define __SEARCH_H__
|
|
|
|
#include <appl/debug.h>
|
|
#include <ewol/widget/Composer.h>
|
|
#include <ewol/widget/Entry.h>
|
|
#include <appl/Buffer.h>
|
|
#include <appl/Gui/ViewerManager.h>
|
|
|
|
class Search : public widget::Composer
|
|
{
|
|
private:
|
|
appl::ViewerManager* m_viewerManager; //!< handle on the buffer manager
|
|
bool m_forward;
|
|
bool m_caseSensitive;
|
|
bool m_wrap;
|
|
widget::Entry* m_searchEntry;
|
|
widget::Entry* m_replaceEntry;
|
|
std::u32string m_searchData;
|
|
std::u32string m_replaceData;
|
|
public:
|
|
// Constructeur
|
|
Search(void);
|
|
~Search(void);
|
|
private:
|
|
/**
|
|
* @brief Find the next element that corespond at the search
|
|
*/
|
|
void find(void);
|
|
/**
|
|
* @brief Replace the current selected text.
|
|
*/
|
|
void replace(void);
|
|
public: // derived function
|
|
virtual void onReceiveMessage(const ewol::EMessage& _msg);
|
|
virtual void onObjectRemove(ewol::EObject * _removeObject);
|
|
};
|
|
|
|
#endif
|
|
|
|
|