]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormIndex.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormIndex.h
1 // -*- C++ -*-
2 /**
3  * \file xforms/FormIndex.h
4  * Read the file COPYING
5  *
6  * \author Angus Leeming 
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #ifndef FORMINDEX_H
12 #define FORMINDEX_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "FormBase.h"
19
20 class ControlIndex;
21 struct FD_index;
22
23 /** This class provides an XForms implementation of the Index Dialog.
24  */
25 class FormIndex : public FormCB<ControlIndex, FormDB<FD_index> > {
26 public:
27         ///
28         FormIndex();
29 private:
30         /// Set the Params variable for the Controller.
31         virtual void apply();
32         /// Build the dialog.
33         virtual void build();
34         /// Update dialog before/whilst showing it.
35         virtual void update();
36 };
37
38 #endif // FORMINDEX_H