mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
8e92d36142
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2711 a592a061-630c-0410-9148-cb99ea01b6c8
81 lines
2.1 KiB
C
81 lines
2.1 KiB
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2001 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*
|
|
* \file ControlSearch.C
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "ViewBase.h"
|
|
#include "ButtonControllerBase.h"
|
|
#include "ControlSearch.h"
|
|
#include "Dialogs.h"
|
|
#include "Liason.h"
|
|
#include "LyXView.h"
|
|
#include "buffer.h"
|
|
#include "lyxfind.h"
|
|
#include "debug.h"
|
|
#include "gettext.h"
|
|
#include "BufferView.h"
|
|
#include "support/lstrings.h"
|
|
|
|
using Liason::setMinibuffer;
|
|
using SigC::slot;
|
|
|
|
ControlSearch::ControlSearch(LyXView & lv, Dialogs & d)
|
|
: ControlDialog<ControlConnectBD>(lv, d)
|
|
{
|
|
d_.showSearch.connect(SigC::slot(this, &ControlSearch::show));
|
|
|
|
// perhaps in the future we'd like a
|
|
// "search again" button/keybinding
|
|
// d_.searchAgain.connect(SigC::slot(this, &ControlSearch::FindNext));
|
|
}
|
|
|
|
|
|
void ControlSearch::find(string const & search,
|
|
bool casesensitive, bool matchword, bool forward) const
|
|
{
|
|
bool const found = LyXFind(lv_.view(), search,
|
|
forward, false, casesensitive, matchword);
|
|
|
|
if (!found)
|
|
setMinibuffer(&lv_, _("String not found!"));
|
|
}
|
|
|
|
|
|
void ControlSearch::replace(string const & search, string const & replace,
|
|
bool casesensitive, bool matchword, bool all) const
|
|
{
|
|
// If not replacing all instances of the word, then do not
|
|
// move on to the next instance once the present instance has been
|
|
// changed
|
|
bool const once = !all;
|
|
int const replace_count = LyXReplace(lv_.view(),
|
|
search, replace, true, casesensitive,
|
|
matchword, all, once);
|
|
|
|
if (replace_count == 0) {
|
|
setMinibuffer(&lv_, _("String not found!"));
|
|
} else {
|
|
if (replace_count == 1) {
|
|
setMinibuffer(&lv_, _("String has been replaced."));
|
|
} else {
|
|
string str = tostr(replace_count);
|
|
str += _(" strings have been replaced.");
|
|
setMinibuffer(&lv_, str.c_str());
|
|
}
|
|
}
|
|
}
|