]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMathsMatrix.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormMathsMatrix.h
1 // -*- C++ -*-
2 /**
3  * \file FormMathsMatrix.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_MATHSMATRIX_H
15 #define FORM_MATHSMATRIX_H
16
17 #include "FormDialogView.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class ControlMath;
23 struct FD_maths_matrix;
24
25 /**
26  * This class provides an XForms implementation of the maths matrix.
27  */
28 class FormMathsMatrix
29         : public FormController<ControlMath, FormView<FD_maths_matrix> > {
30 public:
31         ///
32         FormMathsMatrix(Dialog &);
33         ///
34         int AlignFilter(char const *, int);
35
36 private:
37         ///
38         virtual void apply();
39         ///
40         virtual void build();
41         ///
42         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
43         ///
44         virtual void update();
45 };
46
47 } // namespace frontend
48 } // namespace lyx
49
50 #endif //  FORM_MATHSMATRIX_H