mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
f7ba7c8e9f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
63 lines
1.5 KiB
C
63 lines
1.5 KiB
C
/**
|
|
* \file FormSearch.C
|
|
* Copyright 2001 The LyX Team.
|
|
* See the file COPYING.
|
|
*
|
|
* \author Edwin Leuven, leuven@fee.uva.nl
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "xformsBC.h"
|
|
#include "ControlSearch.h"
|
|
#include "FormSearch.h"
|
|
#include "form_search.h"
|
|
|
|
typedef FormCB<ControlSearch, FormDB<FD_form_search> > base_class;
|
|
|
|
FormSearch::FormSearch(ControlSearch & c)
|
|
: base_class(c, _("LyX: Find and Replace"))
|
|
{}
|
|
|
|
|
|
void FormSearch::build()
|
|
{
|
|
dialog_.reset(build_search());
|
|
|
|
// Manage the ok, apply and cancel/close buttons
|
|
bc().setCancel(dialog_->button_close);
|
|
bc().addReadOnly(dialog_->input_replace);
|
|
bc().addReadOnly(dialog_->button_replace);
|
|
bc().addReadOnly(dialog_->button_replaceall);
|
|
}
|
|
|
|
|
|
ButtonPolicy::SMInput FormSearch::input(FL_OBJECT * obj, long)
|
|
{
|
|
if (obj == dialog_->button_findnext ||
|
|
obj == dialog_->button_findprev) {
|
|
bool const forward = (obj == dialog_->button_findnext);
|
|
|
|
controller().find(fl_get_input(dialog_->input_search),
|
|
fl_get_button(dialog_->check_casesensitive),
|
|
fl_get_button(dialog_->check_matchword),
|
|
forward);
|
|
|
|
} else if (obj == dialog_->button_replace ||
|
|
obj == dialog_->button_replaceall) {
|
|
bool const all = (obj == dialog_->button_replaceall);
|
|
|
|
controller().replace(fl_get_input(dialog_->input_search),
|
|
fl_get_input(dialog_->input_replace),
|
|
fl_get_button(dialog_->check_casesensitive),
|
|
fl_get_button(dialog_->check_matchword),
|
|
all);
|
|
}
|
|
|
|
return ButtonPolicy::SMI_VALID;
|
|
}
|