]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMathsDelim.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / frontends / xforms / FormMathsDelim.h
1 // -*- C++ -*-
2 /**
3  * \file FormMathsDelim.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_MATHSDELIM_H
15 #define FORM_MATHSDELIM_H
16
17 #include "FormDialogView.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class ControlMath;
23 struct FD_maths_delim;
24
25 /**
26  * This class provides an XForms implementation of the maths delim.
27  */
28 class FormMathsDelim
29         : public FormController<ControlMath, FormView<FD_maths_delim> > {
30 public:
31         ///
32         FormMathsDelim(Dialog &);
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 } // namespace frontend
46 } // namespace lyx
47
48 #endif //  FORM_MATHSDELIM_H