mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
236ea81bc5
Lsstream.h with support/std_sstream.h, support/LIstream.h with support/std_istream.h, support/LOstream.h with support/std_ostream.h. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7685 a592a061-630c-0410-9148-cb99ea01b6c8
73 lines
1.7 KiB
C++
73 lines
1.7 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file lyxfind.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
* \author John Levon
|
|
* \author Jürgen Vigna
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef LYXFIND_H
|
|
#define LYXFIND_H
|
|
|
|
#include "support/std_string.h"
|
|
#include "support/types.h"
|
|
|
|
class BufferView;
|
|
class LyXText;
|
|
|
|
namespace lyx {
|
|
namespace find {
|
|
|
|
enum SearchResult {
|
|
//
|
|
SR_NOT_FOUND = 0,
|
|
//
|
|
SR_FOUND,
|
|
//
|
|
SR_FOUND_NOUPDATE
|
|
};
|
|
|
|
|
|
int replace(BufferView * bv,
|
|
string const &, string const &,
|
|
bool, bool = true, bool = false,
|
|
bool = false, bool = false);
|
|
|
|
/**
|
|
* This function is called as a general interface to find some
|
|
* text from the actual cursor position in whatever direction
|
|
* we want to go. This does also update the screen.
|
|
*/
|
|
bool find(BufferView *,
|
|
string const & searchstr, bool forward,
|
|
bool casesens = true, bool matchwrd = false);
|
|
|
|
/**
|
|
* This function does search from the cursor position inside the
|
|
* passed LyXText parameter and regards this LyXText as the root
|
|
* LyXText. It will NOT update any screen stuff. It will however
|
|
* set the cursor to the new position inside LyXText, before
|
|
* returning to the calling function.
|
|
*/
|
|
|
|
SearchResult find(BufferView *, LyXText * text,
|
|
string const & searchstr, bool forward,
|
|
bool casesens = true, bool matchwrd = false);
|
|
|
|
/// find the next change in the buffer
|
|
bool findNextChange(BufferView * bv);
|
|
|
|
SearchResult findNextChange(BufferView * bv, LyXText * text, lyx::pos_type & length);
|
|
|
|
SearchResult nextChange(BufferView * bv, LyXText * text, lyx::pos_type & length);
|
|
|
|
} // namespace find
|
|
} // namespace lyx
|
|
|
|
#endif // LYXFIND_H
|