]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormSearch.C
Implemented controller-view split for Search popup.
[lyx.git] / src / frontends / xforms / FormSearch.C
1 /**
2  * \file FormSearch.C
3  * Copyright 2001 The LyX Team.
4  * See the file COPYING.
5  *
6  * \author Edwin Leuven
7  */
8
9 #include <config.h>
10
11 #ifdef __GNUG__
12 #pragma implementation
13 #endif
14
15 #include "xformsBC.h"
16 #include "ControlSearch.h"
17 #include "FormSearch.h"
18 #include "form_search.h"
19
20 typedef FormCB<ControlSearch, FormDB<FD_form_search> > base_class;
21
22 FormSearch::FormSearch(ControlSearch & c)
23         : base_class(c, _("LyX: Find and Replace"))
24 {}
25
26
27 void FormSearch::build()
28 {
29         dialog_.reset(build_search());
30         
31         // Manage the ok, apply and cancel/close buttons
32         bc().setCancel(dialog_->button_cancel);
33         bc().addReadOnly(dialog_->input_replace);
34         bc().addReadOnly(dialog_->replace);
35         bc().addReadOnly(dialog_->replaceall);
36         bc().refresh();
37 }
38
39
40 ButtonPolicy::SMInput FormSearch::input(FL_OBJECT * obj, long)
41 {
42         if (obj == dialog_->findnext || obj == dialog_->findprev) {
43                 bool const forward = (obj == dialog_->findnext);
44         
45                 controller().find(fl_get_input(dialog_->input_search),
46                                   fl_get_button(dialog_->casesensitive),
47                                   fl_get_button(dialog_->matchword),
48                                   forward);
49
50         } else if (obj == dialog_->replace || obj == dialog_->replaceall) {
51                 bool const all = (obj == dialog_->replaceall);
52         
53                 controller().replace(fl_get_input(dialog_->input_search),
54                                      fl_get_input(dialog_->input_replace),
55                                      fl_get_button(dialog_->casesensitive),
56                                      fl_get_button(dialog_->matchword),
57                                      all);
58         }
59    
60         return ButtonPolicy::SMI_VALID;
61 }