]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMathsDelim.h
d877f5902d526e43b0645762453b009885733d1f
[lyx.git] / src / frontends / xforms / FormMathsDelim.h
1 // -*- C++ -*-
2 /**
3  * \file FormMathsDelim.h
4  * Copyright 2001 The LyX Team.
5  * See the file COPYING.
6  *
7  * \author Alejandro Aguilar Sierra
8  * \author John Levon, moz@compsoc.man.ac.uk
9  * \author Angus Leeming, a.leeming@ic.ac.uk
10  */
11
12 #ifndef FORM_MATHSDELIM_H
13 #define FORM_MATHSDELIM_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "FormMathsPanel.h"
20
21 #include <boost/scoped_ptr.hpp>
22
23 struct FD_form_maths_delim;
24
25 /**
26  * This class provides an XForms implementation of the maths delim.
27  */
28 class FormMathsDelim : public FormMathsSub {
29 public:
30         ///
31         FormMathsDelim(LyXView *, Dialogs *, FormMathsPanel const &);
32
33 private:
34         /// Build the dialog
35         virtual void build();
36         /// input handler
37         virtual bool input(FL_OBJECT *, long);
38         /// Apply from dialog (modify or create inset)
39         virtual void apply();
40
41         /// Pointer to the actual instantiation of the xforms form
42         virtual FL_FORM * form() const;
43
44         // build the form
45         FD_form_maths_delim * build_maths_delim();
46
47         // Real GUI implementation
48         boost::scoped_ptr<FD_form_maths_delim> dialog_;
49 };
50
51 #endif //  FORM_MATHSDELIM_H