]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormIndex.h
doxygen fixes
[lyx.git] / src / frontends / xforms / FormIndex.h
1 // -*- C++ -*-
2 /**
3  * \file xforms/FormIndex.h
4  * Copyright 2000-2001 the LyX Team
5  * Read the file COPYING
6  *
7  * \author Angus Leeming, a.leeming@ic.ac.uk
8  */
9
10 #ifndef FORMINDEX_H
11 #define FORMINDEX_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "FormBase.h"
18
19 class ControlIndex;
20 struct FD_form_index;
21
22 /** This class provides an XForms implementation of the Index Dialog.
23  */
24 class FormIndex : public FormCB<ControlIndex, FormDB<FD_form_index> > {
25 public:
26         ///
27         FormIndex(ControlIndex &);
28
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         /// Fdesign generated method
38         FD_form_index * build_index();
39 };
40
41 #endif // FORMINDEX_H