]> git.lyx.org Git - features.git/blob - src/frontends/kde/FormIndex.h
Update to MVC. Ref,Toc and citation don't work at all currently.
[features.git] / src / frontends / kde / FormIndex.h
1 /**
2  * \file FormIndex.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8  
9 #ifndef FORMINDEX_H
10 #define FORMINDEX_H
11
12 #include "KFormBase.h"
13
14 class ControlIndex;
15 class IndexDialog;
16
17 class FormIndex : public KFormBase<ControlIndex, IndexDialog> {
18 public: 
19         FormIndex(ControlIndex & c);
20
21 private: 
22         /// apply changes
23         virtual void apply();
24         /// build the dialog
25         virtual void build();
26         /// update the dialog
27         virtual void update();
28 };
29
30 #endif // FORMINDEX_H