]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormSearch.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormSearch.h
1 // -*- C++ -*-
2 /**
3  * \file FormSearch.h
4  * See the file COPYING.
5  *
6  * \author Edwin Leuven
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #ifndef FORMSEARCH_H
12 #define FORMSEARCH_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "FormBase.h"
19
20 class ControlSearch;
21 struct FD_search;
22
23 /** This class provides an XForms implementation of the FormSearch Dialog.
24  */
25 class FormSearch : public FormCB<ControlSearch, FormDB<FD_search> > {
26 public:
27         ///
28         FormSearch();
29 private:
30         /// not needed.
31         virtual void apply() {}
32         /// Build the dialog
33         virtual void build();
34         /// update the dialog
35         virtual void update();
36
37         /// Filter the inputs
38         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
39 };
40
41 #endif // FORMSEARCH_H