]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMathsPanel.h
Convert FormMathsBitmap to the new scheme.
[lyx.git] / src / frontends / xforms / FormMathsPanel.h
1 // -*- C++ -*-
2 /**
3  * \file FormMathsPanel.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Alejandro Aguilar Sierra
8  * \author John Levon
9  * \author Angus Leeming
10  *
11  * Full author contact details are available in file CREDITS
12  */
13
14 #ifndef FORM_MATHSPANEL_H
15 #define FORM_MATHSPANEL_H
16
17
18 #include "FormBase.h"
19
20 class ControlMath;
21 struct FD_maths_panel;
22
23 /**
24  * This class provides an XForms implementation of the maths panel.
25  */
26 class FormMathsPanel : public FormCB<ControlMath, FormDB<FD_maths_panel> > {
27 public:
28         ///
29         FormMathsPanel();
30
31 private:
32         /// Not needed.
33         virtual void apply() {}
34         ///
35         virtual void update() {}
36
37         ///
38         virtual void build();
39         ///
40         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
41 };
42
43 #endif //  FORM_MATHSPANEL_H