mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
0c5c06c8c4
All still VERY primitive, in fact even more primitive since some stuff got re-horked after the meeting, and still needs working on. Won't actually compile out of the box, but the tweaks should be pretty obvious for any body sufficiently daring. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4427 a592a061-630c-0410-9148-cb99ea01b6c8
64 lines
1.3 KiB
C
64 lines
1.3 KiB
C
/**
|
|
* \file QSearch.C
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <fstream>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "LyXView.h"
|
|
#include "ControlSearch.h"
|
|
#include "gettext.h"
|
|
|
|
#include "QSearch.h"
|
|
#include "QSearchDialog.h"
|
|
#include "Qt2BC.h"
|
|
|
|
#include <qpushbutton.h>
|
|
#include <qcheckbox.h>
|
|
#include <qcombobox.h>
|
|
|
|
typedef Qt2CB<ControlSearch, Qt2DB<QSearchDialog> > base_class;
|
|
|
|
QSearch::QSearch(ControlSearch & c)
|
|
: base_class(c, _("Search"))
|
|
{
|
|
}
|
|
|
|
|
|
void QSearch::build_dialog()
|
|
{
|
|
dialog_.reset(new QSearchDialog(this));
|
|
|
|
bc().setCancel(dialog_->closePB);
|
|
bc().addReadOnly(dialog_->replaceCO);
|
|
bc().addReadOnly(dialog_->replacePB);
|
|
bc().addReadOnly(dialog_->replaceallPB);
|
|
bc().addReadOnly(dialog_->caseCB);
|
|
bc().addReadOnly(dialog_->wordsCB);
|
|
bc().addReadOnly(dialog_->backwardsCB);
|
|
|
|
dialog_->replacePB->setEnabled(false);
|
|
dialog_->replaceallPB->setEnabled(false);
|
|
}
|
|
|
|
|
|
void QSearch::find(string const & str, bool casesens, bool words, bool backwards)
|
|
{
|
|
controller().find(str, casesens, words, !backwards);
|
|
}
|
|
|
|
|
|
void QSearch::replace(string const & findstr, string const & replacestr,
|
|
bool casesens, bool words, bool all)
|
|
{
|
|
controller().replace(findstr, replacestr, casesens, words, all);
|
|
}
|