]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMathsPanel.C
implement getLabelList
[lyx.git] / src / frontends / xforms / FormMathsPanel.C
1 /**
2  * \file FormMathsPanel.C
3  * Copyright 2001 The LyX Team.
4  * See the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author Pablo De Napoli, pdenapo@dm.uba.ar
8  * \author John Levon, moz@compsoc.man.ac.uk
9  * \author Angus Leeming, a.leeming@ic.ac.uk
10  */
11
12 #include <config.h>
13
14 #ifdef __GNUG_
15 #pragma implementation
16 #endif
17
18 #include "Dialogs.h"
19 #include "LyXView.h"
20 #include "lyxfunc.h"
21 #include "FormMathsPanel.h"
22 #include "form_maths_panel.h"
23 #include "MathsSymbols.h"
24 #include "debug.h"
25
26 #include "form_maths_deco.h"
27 #include "form_maths_delim.h"
28 #include "form_maths_matrix.h"
29 #include "form_maths_space.h"
30
31 #include "FormMathsBitmap.h"
32 #include "FormMathsDeco.h"
33 #include "FormMathsDelim.h"
34 #include "FormMathsMatrix.h"
35 #include "FormMathsSpace.h"
36
37 #include "deco.xpm"
38 #include "delim.xpm"
39 #include "equation.xpm"
40 #include "frac.xpm"
41 #include "matrix.xpm"
42 #include "space.xpm"
43 #include "sqrt.xpm"
44
45 #include "arrows.xbm"
46 #include "bop.xbm"
47 #include "brel.xbm"
48 #include "dots.xbm"
49 #include "greek.xbm"
50 #include "misc.xbm"
51 #include "varsz.xbm"
52
53 using std::vector;
54 using SigC::slot;
55
56 FormMathsPanel::FormMathsPanel(LyXView * lv, Dialogs * d)
57         : FormBaseBD(lv, d, _("Maths Panel")),
58           active_(0), bc_("Close")
59 {
60         deco_.reset(  new FormMathsDeco(  lv, d, *this));
61         delim_.reset( new FormMathsDelim( lv, d, *this));
62         matrix_.reset(new FormMathsMatrix(lv, d, *this));
63         space_.reset( new FormMathsSpace( lv, d, *this));
64
65         typedef vector<string> StringVec;
66         
67         StringVec latex(nr_latex_arrow);
68         for (StringVec::size_type i = 0; i < latex.size(); ++i) {
69                 latex[i] = latex_arrow[i];
70         }
71         arrow_.reset(new FormMathsBitmap(lv, d, *this, latex));
72
73         latex.resize(nr_latex_bop);
74         for (StringVec::size_type i = 0; i < latex.size(); ++i) {
75                 latex[i] = latex_bop[i];
76         }
77         boperator_.reset(new FormMathsBitmap(lv, d, *this, latex));
78
79         latex.resize(nr_latex_brel);
80         for (StringVec::size_type i = 0; i<latex.size(); ++i) {
81                 latex[i] = latex_brel[i];
82         }
83         brelats_.reset(new FormMathsBitmap(lv, d, *this, latex));
84
85         latex.resize(nr_latex_greek);
86         for (StringVec::size_type i = 0; i < latex.size(); ++i) {
87                 latex[i] = latex_greek[i];
88         }
89         greek_.reset(new FormMathsBitmap(lv, d, *this, latex));
90
91         latex.resize(nr_latex_misc);
92         for (StringVec::size_type i = 0; i<latex.size(); ++i) {
93                 latex[i] = latex_misc[i];
94         }
95         misc_.reset(new FormMathsBitmap(lv, d, *this, latex));
96
97         latex.resize(nr_latex_varsz);
98         for (StringVec::size_type i = 0; i<latex.size(); ++i) {
99                 latex[i] = latex_varsz[i];
100         }
101         varsize_.reset(new FormMathsBitmap(lv, d, *this, latex));
102
103         d->showMathPanel.connect(slot(this, &FormMathsPanel::show));
104 }
105
106
107 FL_FORM * FormMathsPanel::form() const
108 {
109         if (dialog_.get())
110                 return dialog_->form;
111         return 0;
112 }
113
114
115 void FormMathsPanel::setActive(FormMathsSub * a) const
116 {
117         active_ = a;
118 }
119
120
121 void FormMathsPanel::build()
122 {
123         dialog_.reset(build_maths_panel());
124         
125         for (int i = 0; i < nr_function_names; ++i)
126                 fl_add_browser_line(dialog_->browser_funcs,
127                                     function_names[i]);
128         
129         fl_set_pixmap_data(dialog_->button_sqrt,
130                            const_cast<char**>(sqrt_xpm));
131         fl_set_pixmap_data(dialog_->button_frac,
132                            const_cast<char**>(frac));
133         fl_set_pixmap_data(dialog_->button_delim,
134                            const_cast<char**>(delim));
135         fl_set_pixmap_data(dialog_->button_deco,
136                            const_cast<char**>(deco));
137         fl_set_pixmap_data(dialog_->button_space,
138                            const_cast<char**>(space_xpm));
139         fl_set_pixmap_data(dialog_->button_matrix,
140                            const_cast<char**>(matrix));
141         fl_set_pixmap_data(dialog_->button_equation,
142                            const_cast<char**>(equation));
143
144         arrow_->addBitmap(20, 5, 4, arrow_width,  arrow_height,  arrow_bits);
145         arrow_->addBitmap(7,  2, 4, larrow_width, larrow_height, larrow_bits,
146                           false);
147         arrow_->addBitmap(4,  2, 2, darrow_width,  darrow_height, darrow_bits);
148         
149         boperator_->addBitmap(31, 4, 8, bop_width, bop_height, bop_bits);
150
151         brelats_->addBitmap(35, 4, 9, brel_width, brel_height, brel_bits);
152
153         greek_->addBitmap(11, 6, 2, Greek_width, Greek_height, Greek_bits);
154         greek_->addBitmap(28, 7, 4, greek_width, greek_height, greek_bits);
155
156         misc_->addBitmap(29, 5, 6, misc_width, misc_height, misc_bits);
157
158         varsize_->addBitmap(14, 3, 5, varsz_width, varsz_height, varsz_bits);
159
160         bc().setCancel(dialog_->button_close);
161 }
162
163 bool FormMathsPanel::input(FL_OBJECT *, long data)
164 {
165         MathsCallbackValues val = static_cast<MathsCallbackValues>(data);
166
167         switch (val) {
168         case MM_GREEK:
169                 if (active_ && active_ != greek_.get())
170                         active_->hide();
171                 greek_->show();
172                 break;
173
174         case MM_ARROW:
175                 if (active_ && active_ != arrow_.get())
176                         active_->hide();
177                 arrow_->show();
178                 break;
179
180         case MM_BOP:
181                 if (active_ && active_ != boperator_.get())
182                         active_->hide();
183                 boperator_->show();
184                 break;
185
186         case MM_BRELATS:
187                 if (active_ && active_ != brelats_.get())
188                         active_->hide();
189                 brelats_->show();
190                 break;
191
192         case MM_MISC:
193                 if (active_ && active_ != misc_.get())
194                         active_->hide();
195                 misc_->show();
196                 break;
197
198         case MM_VARSIZE:
199                 if (active_ && active_ != varsize_.get())
200                         active_->hide();
201                 varsize_->show();
202                 break;
203
204         case MM_FRAC:
205                 insertSymbol("frac");
206                 break;
207
208         case MM_SQRT:
209                 insertSymbol("sqrt");
210                 break;
211
212         case MM_DELIM:
213                 if (active_ && active_ != delim_.get())
214                         active_->hide();
215                 delim_->show();
216                 break;
217
218         case MM_MATRIX:
219                 if (active_ && active_ != matrix_.get())
220                         active_->hide();
221                 matrix_->show();
222                 break;
223
224         case MM_DECO:
225                 if (active_ && active_ != deco_.get())
226                         active_->hide();
227                 deco_->show();
228                 break;
229
230         case MM_SPACE:
231                 if (active_ && active_ != space_.get())
232                         active_->hide();
233                 space_->show();
234                 break;
235
236         case MM_EQU:
237                 mathDisplay();
238                 break;
239
240         case MM_FUNC:
241                 int const i = fl_get_browser(dialog_->browser_funcs) - 1;
242                 insertSymbol(function_names[i]);
243                 break;
244         }
245
246         return true;
247 }
248
249
250 void FormMathsPanel::insertSymbol(string const & sym) const
251 {
252         lv_->getLyXFunc()->Dispatch(LFUN_INSERT_MATH, sym);
253 }
254
255
256 void FormMathsPanel::mathDisplay() const
257 {
258         lv_->getLyXFunc()->Dispatch(LFUN_MATH_DISPLAY);
259 }
260
261
262
263 FormMathsSub::FormMathsSub(LyXView * lv, Dialogs * d, FormMathsPanel const & p,
264                            string const & t)
265     : FormBaseBD(lv, d, t), parent_(p), bc_("Close")
266 {}
267
268
269 void FormMathsSub::connect()
270 {
271         parent_.setActive(this);
272         FormBaseBD::connect();
273 }
274
275
276 void FormMathsSub::disconnect()
277 {
278         parent_.setActive(0);
279         FormBaseBD::disconnect();
280 }
281
282