]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMathsMatrix.h
remove defaults stuff, let Qt handle no toolbar
[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
18 #include "FormBase.h"
19
20 class ControlMathSub;
21 struct FD_maths_matrix;
22
23 /**
24  * This class provides an XForms implementation of the maths matrix.
25  */
26 class FormMathsMatrix : public FormCB<ControlMathSub, FormDB<FD_maths_matrix> >
27 {
28 public:
29         ///
30         FormMathsMatrix();
31         ///
32         int AlignFilter(char const *, int);
33
34 private:
35         ///
36         virtual void apply();
37         ///
38         virtual void build();
39         ///
40         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
41         ///
42         virtual void update();
43 };
44
45 #endif //  FORM_MATHSMATRIX_H