Files
SingularityViewer/indra/newview/llfloatersearchreplace.h
Siana Gearz 9ac2c07f52 Merge https://github.com/PlayerDagostino/SingularityViewer into future
Conflicts:
	indra/llplugin/llplugininstance.cpp
	indra/llwindow/llwindowsdl.cpp
	indra/llwindow/llwindowsdl.h
	indra/newview/llpreviewnotecard.cpp
	indra/newview/llviewerwindow.h
2011-10-03 16:10:35 +02:00

33 lines
674 B
C++

#ifndef LL_LLFLOATERSEARCHREPLACE_H
#define LL_LLFLOATERSEARCHREPLACE_H
#include "llfloater.h"
#include "lltexteditor.h"
class LLFloaterSearchReplace : public LLFloater
{
private:
LLFloaterSearchReplace();
virtual ~LLFloaterSearchReplace();
public:
virtual void open();
virtual BOOL postBuild();
public:
static void show(LLTextEditor* editor);
static void onBtnSearch(void* userdata);
static void onBtnReplace(void* userdata);
static void onBtnReplaceAll(void* userdata);
static LLFloaterSearchReplace* getInstance() { return sInstance; }
private:
LLTextEditor* mEditor;
static LLFloaterSearchReplace* sInstance;
};
#endif // LL_LLFLOATERSEARCHREPLACE_H