mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
d21894949b
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20161 a592a061-630c-0410-9148-cb99ea01b6c8
45 lines
1.0 KiB
C++
45 lines
1.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ControlSearch.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef CONTROLSEARCH_H
|
|
#define CONTROLSEARCH_H
|
|
|
|
#include "Dialog.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
/** A controller for Search dialogs.
|
|
*/
|
|
class ControlSearch : public Controller {
|
|
public:
|
|
ControlSearch(Dialog &);
|
|
|
|
virtual bool initialiseParams(std::string const &) { return true; }
|
|
virtual void clearParams() {}
|
|
virtual void dispatchParams() {}
|
|
virtual bool isBufferDependent() const { return true; }
|
|
|
|
/// Searches occurence of string
|
|
void find(docstring const & search,
|
|
bool casesensitive, bool matchword, bool forward);
|
|
|
|
/// Replaces occurence of string
|
|
void replace(docstring const & search, docstring const & replace,
|
|
bool casesensitive, bool matchword,
|
|
bool forward, bool all);
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // CONTROLSEARCH_H
|