mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
80dda8f6b2
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2381 a592a061-630c-0410-9148-cb99ea01b6c8
24 lines
486 B
C++
24 lines
486 B
C++
// -*- C++ -*-
|
|
#ifndef LYXFIND_H
|
|
#define LYXFIND_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "LString.h"
|
|
#include "paragraph.h"
|
|
|
|
class BufferView;
|
|
|
|
int LyXReplace(BufferView * bv, string const &, string const &,
|
|
bool, bool = true, bool = false,
|
|
bool = false, bool = false);
|
|
|
|
bool LyXFind(BufferView *,
|
|
string const & searchstr, bool forward,
|
|
bool frominset = false, bool casesens = true,
|
|
bool matchwrd = false);
|
|
|
|
#endif
|