]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMathsPanel.h
Martin's math dialog patch.
[lyx.git] / src / frontends / xforms / FormMathsPanel.h
1 // -*- C++ -*-
2 /** 
3  * \file FormMathsPanel.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_MATHSPANEL_H
13 #define FORM_MATHSPANEL_H
14
15 #include <boost/smart_ptr.hpp>
16
17 #ifdef __GNUG_
18 #pragma interface
19 #endif
20
21 #include "FormBaseDeprecated.h"
22
23 class FormMathsBitmap;
24 class FormMathsDeco;
25 class FormMathsDelim;
26 class FormMathsMatrix;
27 class FormMathsSpace;
28 class FormMathsStyle;
29 class FormMathsSub;
30 struct FD_form_maths_panel;
31
32 /// values used by the xforms callbacks 
33 enum MathsCallbackValues {
34         MM_GREEK,
35         MM_ARROW,
36         MM_BOP,
37         MM_BRELATS,
38         MM_VARSIZE,
39         MM_MISC,
40         MM_FRAC,
41         MM_SQRT,
42         MM_DELIM,
43         MM_SUPER,
44         MM_SUB,
45         MM_SUBSUPER,
46         MM_MATRIX,
47         MM_EQU,
48         MM_DECO,
49         MM_SPACE,
50         MM_STYLE,
51         MM_DOTS,
52         MM_FUNC
53 };
54  
55 /** 
56  * This class provides an XForms implementation of the maths panel.
57  */
58 class FormMathsPanel : public FormBaseBD {
59 public:
60         ///
61         FormMathsPanel(LyXView *, Dialogs *);
62         ///
63         void setActive(FormMathsSub *) const;
64         /// dispatch a symbol insert 
65         void insertSymbol(string const & sym) const;
66
67 private:
68         /// Pointer to the actual instantiation of the ButtonController.
69         virtual xformsBC & bc();
70         
71         /// Build the dialog
72         virtual void build();
73         /// input handler
74         virtual bool input(FL_OBJECT *, long);
75    
76         /// Pointer to the actual instantiation of the xforms form
77         virtual FL_FORM * form() const;
78
79         // build the panels
80         FD_form_maths_panel * build_maths_panel();
81         
82         /// send LFUN_MATH_DISPLAY
83         void mathDisplay() const;
84
85         // Real GUI implementation
86         boost::scoped_ptr<FD_form_maths_panel> dialog_;
87
88         /// Subdialogs
89         boost::scoped_ptr<FormMathsDeco>   deco_;
90         boost::scoped_ptr<FormMathsDelim>  delim_;
91         boost::scoped_ptr<FormMathsMatrix> matrix_;
92         boost::scoped_ptr<FormMathsSpace>  space_;
93         boost::scoped_ptr<FormMathsStyle>  style_;
94         boost::scoped_ptr<FormMathsBitmap> arrow_;
95         boost::scoped_ptr<FormMathsBitmap> boperator_;
96         boost::scoped_ptr<FormMathsBitmap> brelats_;
97         boost::scoped_ptr<FormMathsBitmap> greek_;
98         boost::scoped_ptr<FormMathsBitmap> misc_;
99         boost::scoped_ptr<FormMathsBitmap> dots_;
100         boost::scoped_ptr<FormMathsBitmap> varsize_;
101
102         /// A pointer to the currently active subdialog
103         mutable FormMathsSub * active_;
104
105         /// The ButtonController
106         ButtonController<OkCancelReadOnlyPolicy, xformsBC> bc_;
107 };
108
109
110 class FormMathsSub : public FormBaseBD {
111         friend class FormMathsPanel; // has subdialogs to manipulate
112
113 public:
114         ///
115         FormMathsSub(LyXView *, Dialogs *, FormMathsPanel const &,
116                      string const &, bool allowResize=true);
117
118 protected:
119         /// Pointer to the actual instantiation of the ButtonController.
120         virtual xformsBC & bc();
121         /// The parent Maths Panel
122         FormMathsPanel const & parent_;
123 private:
124         ///
125         virtual void connect();
126         ///
127         virtual void disconnect();
128         /// The ButtonController
129         ButtonController<IgnorantPolicy, xformsBC> bc_;
130 };
131
132
133 inline
134 xformsBC & FormMathsSub::bc()
135 {
136         return bc_;
137 }
138
139 inline
140 xformsBC & FormMathsPanel::bc()
141 {
142         return bc_;
143 }
144 #endif //  FORM_MATHSPANEL_H