]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathSplit.C
Fix command-line export
[lyx.git] / src / mathed / InsetMathSplit.C
1 /**
2  * \file InsetMathSplit.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathSplit.h"
14 #include "MathData.h"
15 #include "MathMLStream.h"
16 #include "MathStream.h"
17
18 #include "funcrequest.h"
19 #include "FuncStatus.h"
20 #include "gettext.h"
21 #include "LaTeXFeatures.h"
22
23 #include "support/lstrings.h"
24 #include "support/std_ostream.h"
25
26
27 using lyx::docstring;
28 using lyx::support::bformat;
29 using std::string;
30 using std::auto_ptr;
31
32
33 InsetMathSplit::InsetMathSplit(string const & name, char valign)
34         : InsetMathGrid(1, 1, valign, string()), name_(name)
35 {
36 }
37
38
39 auto_ptr<InsetBase> InsetMathSplit::doClone() const
40 {
41         return auto_ptr<InsetBase>(new InsetMathSplit(*this));
42 }
43
44
45 char InsetMathSplit::defaultColAlign(col_type col)
46 {
47         if (name_ == "split")
48                 return 'l';
49         if (name_ == "gathered")
50                 return 'c';
51         if (name_ == "aligned")
52                 return (col & 1) ? 'l' : 'r';
53         if (name_ == "alignedat")
54                 return (col & 1) ? 'l' : 'r';
55         return 'l';
56 }
57
58
59 void InsetMathSplit::draw(PainterInfo & pi, int x, int y) const
60 {
61         InsetMathGrid::draw(pi, x, y);
62         setPosCache(pi, x, y);
63 }
64
65
66 bool InsetMathSplit::getStatus(LCursor & cur, FuncRequest const & cmd,
67                 FuncStatus & flag) const
68 {
69         switch (cmd.action) {
70         case LFUN_TABULAR_FEATURE: {
71                 docstring const & s = cmd.argument();
72                 if (s == "add-vline-left" || s == "add-vline-right") {
73                         flag.message(bformat(
74                         lyx::from_utf8(N_("Can't add vertical grid lines in '%1$s'")),
75                         lyx::from_utf8(name_)));
76                         flag.enabled(false);
77                         return true;
78                 }
79                 return InsetMathGrid::getStatus(cur, cmd, flag);
80         }
81         default:
82                 return InsetMathGrid::getStatus(cur, cmd, flag);
83         }
84 }
85
86
87 void InsetMathSplit::write(WriteStream & ws) const
88 {
89         if (ws.fragile())
90                 ws << "\\protect";
91         ws << "\\begin{" << name_ << '}';
92         if (name_ != "split" && valign() != 'c')
93                 ws << '[' << valign() << ']';
94         if (name_ == "alignedat")
95                 ws << '{' << static_cast<unsigned int>((ncols() + 1)/2) << '}';
96         InsetMathGrid::write(ws);
97         if (ws.fragile())
98                 ws << "\\protect";
99         ws << "\\end{" << name_ << "}\n";
100 }
101
102
103 void InsetMathSplit::infoize(std::ostream & os) const
104 {
105         string name = name_;
106         name[0] = lyx::support::uppercase(name[0]);
107         os << name << ' ';
108 }
109
110
111 void InsetMathSplit::validate(LaTeXFeatures & features) const
112 {
113         if (name_ == "split" || name_ == "gathered" || name_ == "aligned" ||
114             name_ == "alignedat")
115                 features.require("amsmath");
116         InsetMathGrid::validate(features);
117 }