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