]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMathsDeco.C
Martin's patch to put \underleftarrow and \underrightarrow in the math panel
[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
26 static char const * decoration_names[] = {
27         "widehat", "widetilde", "overbrace", "overleftarrow", "overrightarrow", 
28         "overline", "underbrace", "underline", "underleftarrow", "underrightarrow",
29         "hat", "acute", "bar", "dot",
30         "check", "grave", "vec", "ddot", 
31         "breve", "tilde"
32 };
33
34
35 static int const nr_decoration_names = sizeof(decoration_names) / sizeof(char const *);
36  
37 FormMathsDeco::FormMathsDeco(LyXView * lv, Dialogs * d,
38                              FormMathsPanel const & p)
39         : FormMathsSub(lv, d, p, _("Maths Decorations & Accents"), false)
40 {}
41
42
43 FL_FORM * FormMathsDeco::form() const
44 {
45         if (dialog_.get())
46                 return dialog_->form;
47         return 0;
48 }
49
50
51 void FormMathsDeco::build()
52 {
53         dialog_.reset(build_maths_deco());
54
55         fl_set_bmtable_data(dialog_->bmtable_deco1, 3, 4,
56                             deco1_width, deco1_height, deco1_bits);
57         fl_set_bmtable_maxitems(dialog_->bmtable_deco1, 10);
58
59         fl_set_bmtable_data(dialog_->bmtable_deco2, 4, 3,
60                             deco2_width, deco2_height, deco2_bits);
61         fl_set_bmtable_maxitems(dialog_->bmtable_deco2, 10);
62
63         bc().setCancel(dialog_->button_cancel);
64         bc().addReadOnly(dialog_->bmtable_deco1);
65         bc().addReadOnly(dialog_->bmtable_deco2);
66 }
67
68
69 void FormMathsDeco::apply()
70 {
71         if (deco_ < nr_decoration_names)
72                 parent_.insertSymbol(decoration_names[deco_]);
73 }
74
75
76 bool FormMathsDeco::input(FL_OBJECT * ob, long)
77 {
78         deco_ = fl_get_bmtable(ob);
79         if (deco_ < 0)
80                 return false;
81         //if (ob == dialog_->bmtable_deco1)
82         //      deco_ += 0; 
83         if (ob == dialog_->bmtable_deco2)
84                 deco_ += 10;
85         apply();
86         return true;
87 }
88