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-29 10:42:11 +00:00
|
|
|
bool, bool = true, bool = false,
|
|
|
|
bool = false, bool = false);
|
2001-03-06 10:20:33 +00:00
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
bool LyXFind(BufferView *,
|
2001-07-29 10:42:11 +00:00
|
|
|
string const & searchstr, bool forward,
|
|
|
|
bool frominset = false, bool casesens = true,
|
|
|
|
bool matchwrd = false);
|
2001-03-06 10:20:33 +00:00
|
|
|
|
|
|
|
#endif
|