edn/sources/appl/Gui/Search.h

35 lines
697 B
C
Raw Normal View History

/**
* @author Edouard DUPIN
2012-11-25 11:55:06 +01:00
*
* @copyright 2010, Edouard DUPIN, all right reserved
*
* @license GPL v3 (see license file)
*/
2012-11-25 11:55:06 +01:00
#ifndef __SEARCH_H__
#define __SEARCH_H__
2012-04-23 10:15:43 +02:00
#include <appl/Debug.h>
#include <ewol/widget/Sizer.h>
#include <ewol/widget/Entry.h>
class Search : public widget::Sizer
{
private:
2013-10-09 22:00:24 +02:00
bool m_forward;
2012-11-25 11:55:06 +01:00
widget::Entry * m_searchEntry;
widget::Entry * m_replaceEntry;
2013-05-12 21:08:31 +02:00
public:
// Constructeur
Search(void);
~Search(void);
public: // derived function
2013-10-07 22:04:21 +02:00
virtual const char * const getObjectType(void) { return "ApplSearch"; };
virtual void onReceiveMessage(const ewol::EMessage& _msg);
virtual void onObjectRemove(ewol::EObject * _removeObject);
};
#endif