]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMathsPanel.h
Change glob() API to accept a dir parameter.
[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 #include "FormDialogView.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class ControlMath;
23 struct FD_maths_panel;
24
25 /**
26  * This class provides an XForms implementation of the maths panel.
27  */
28 class FormMathsPanel
29         : public FormController<ControlMath, FormView<FD_maths_panel> > {
30 public:
31         ///
32         FormMathsPanel(Dialog &);
33
34 private:
35         /// Not needed.
36         virtual void apply() {}
37         ///
38         virtual void update() {}
39
40         ///
41         virtual void build();
42         ///
43         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
44 };
45
46 } // namespace frontend
47 } // namespace lyx
48
49 #endif //  FORM_MATHSPANEL_H