2001-06-14 08:20:41 +00:00
|
|
|
// -*- C++ -*-
|
2001-03-06 10:20:33 +00:00
|
|
|
#ifndef LYXFIND_H
|
|
|
|
#define LYXFIND_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "LString.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "paragraph.h"
|
2001-03-06 10:20:33 +00:00
|
|
|
|
|
|
|
class BufferView;
|
|
|
|
|
|
|
|
int LyXReplace(BufferView * bv, string const &, string const &,
|
2001-07-20 14:18:48 +00:00
|
|
|
bool const &, bool const & = true, bool const & = false,
|
|
|
|
bool const & = false);
|
2001-03-06 10:20:33 +00:00
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
bool LyXFind(BufferView *,
|
|
|
|
string const & searchstr, bool const & forward,
|
|
|
|
bool const & frominset = false,
|
|
|
|
bool const & casesens = true, bool const & matchwrd = false);
|
2001-03-06 10:20:33 +00:00
|
|
|
|
|
|
|
#endif
|