]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMathsDeco.C
implement getLabelList
[lyx.git] / src / frontends / xforms / FormMathsDeco.C
1 /**
2  * \file FormMathsDeco.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 "FormMathsDeco.h"
19 #include "form_maths_deco.h"
20 #include "Dialogs.h"
21 #include "bmtable.h"
22
23 #include "deco.xbm"
24
25 static char const * decoration_names[] = {
26         "widehat", "widetilde", "overbrace", "overleftarrow", "overrightarrow", 
27         "overline", "underbrace", "underline"
28 };
29
30 static int const nr_decoration_names = sizeof(decoration_names) / sizeof(char const *);
31  
32 FormMathsDeco::FormMathsDeco(LyXView * lv, Dialogs * d,
33                              FormMathsPanel const & p)
34         : FormMathsSub(lv, d, p, _("Maths Decorations"))
35 {}
36
37
38 FL_FORM * FormMathsDeco::form() const
39 {
40         if (dialog_.get())
41                 return dialog_->form;
42         return 0;
43 }
44
45
46 void FormMathsDeco::build()
47 {
48         dialog_.reset(build_maths_deco());
49
50         fl_set_bmtable_data(dialog_->bmtable, 3, 3,
51                             deco_width, deco_height, deco_bits);
52         fl_set_bmtable_maxitems(dialog_->bmtable, 8);
53
54         bc().setCancel(dialog_->button_cancel);
55         bc().addReadOnly(dialog_->bmtable);
56 }
57
58
59 void FormMathsDeco::apply()
60 {
61         int const i = fl_get_bmtable(dialog_->bmtable);
62  
63         if (i >= nr_decoration_names)
64                 return;
65  
66         parent_.insertSymbol(decoration_names[i]);
67 }