]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormIndex.h
implement getLabelList
[lyx.git] / src / frontends / xforms / FormIndex.h
1 /* This file is part of
2  * ====================================================== 
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 2000-2001 The LyX Team.
7  *
8  * ======================================================
9  *
10  * \file FormIndex.h
11  * \author Angus Leeming, a.leeming@ic.ac.uk
12  */
13
14 #ifndef FORMINDEX_H
15 #define FORMINDEX_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "FormBase.h"
22
23 class ControlIndex;
24 struct FD_form_index;
25
26 /** This class provides an XForms implementation of the Index Dialog.
27  */
28 class FormIndex : public FormCB<ControlIndex, FormDB<FD_form_index> > {
29 public:
30         ///
31         FormIndex(ControlIndex &);
32
33 private:
34         /// Set the Params variable for the Controller.
35         virtual void apply();
36         /// Build the dialog.
37         virtual void build();
38         /// Update dialog before/whilst showing it.
39         virtual void update();
40
41         /// Fdesign generated method
42         FD_form_index * build_index();
43 };
44
45 #endif // FORMINDEX_H