lyx_mirror/src/lyxfr1.h
Lars Gullik Bjønnes a040c0bc6f white-space changes, removed definitions.h several enum changes because of this, new file undo.C rewritten some in chset.C
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@314 a592a061-630c-0410-9148-cb99ea01b6c8
1999-11-15 12:01:38 +00:00

62 lines
1.2 KiB
C++

// -*- C++ -*-
#ifndef LYXFR1_H
#define LYXFR1_H
#ifdef __GNUG__
#pragma interface
#endif
#include FORMS_H_LOCATION
#include "lyxparagraph.h"
class LyXText;
/**
LyXFindReplace1"
This class implements Find & Replace in LyXText texts. It is based on
LyXFindReplace0, which implements the form related stuff. (see lyxfr0.h)
*/
class LyXFindReplace1 : public LyXFindReplace0 {
public:
///
LyXFindReplace1() : LyXFindReplace0() {};
///
~LyXFindReplace1() {};
/// Initialize internal variables and search form
virtual void StartSearch();
///
virtual bool SearchCB(bool fForward);
///
virtual void SearchReplaceCB();
///
virtual void SearchReplaceAllCB();
protected:
/// Set by IsSearchStringInText:
int iLenSelected;
/// Direction we are searching:
bool searchForward;
///
bool SearchForward(LyXText *lt);
///
bool SearchBackward(LyXText *lt);
/** Compares 2 char values.
return value is
\begin{itemize}
\item > 0 if ch1 > ch2
\item = 0 if ch1 == ch2
\item < 0 if ch1 < ch2
\end{itemize}
*/
int CompareChars(char chSearch, char chText);
/// returns true if the specified string is at the specified position
bool IsSearchStringInText(LyXParagraph * par,
LyXParagraph::size_type pos);
};
#endif