2016-11-16 14:07:00 +00:00
|
|
|
/**
|
|
|
|
* \file MathRow.cpp
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "MathRow.h"
|
|
|
|
|
|
|
|
#include "InsetMath.h"
|
|
|
|
#include "MathClass.h"
|
|
|
|
#include "MathData.h"
|
|
|
|
#include "MathSupport.h"
|
|
|
|
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "CoordCache.h"
|
|
|
|
#include "MetricsInfo.h"
|
|
|
|
|
2016-10-04 22:25:38 +00:00
|
|
|
#include "frontends/FontMetrics.h"
|
2016-11-16 14:07:00 +00:00
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
|
|
|
#include "support/debug.h"
|
|
|
|
#include "support/docstring.h"
|
|
|
|
#include "support/lassert.h"
|
|
|
|
|
2017-02-07 10:42:36 +00:00
|
|
|
#include <algorithm>
|
2016-11-16 14:07:00 +00:00
|
|
|
#include <ostream>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2017-01-05 12:25:28 +00:00
|
|
|
MathRow::Element::Element(MetricsInfo const & mi, Type t, MathClass mc)
|
|
|
|
: type(t), mclass(mc), before(0), after(0), macro_nesting(mi.base.macro_nesting),
|
2017-02-01 16:46:53 +00:00
|
|
|
marker(InsetMath::NO_MARKER), inset(0), compl_unique_to(0), ar(0),
|
2017-02-01 14:20:06 +00:00
|
|
|
color(Color_red)
|
2016-11-16 14:07:00 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
2017-02-08 15:42:14 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Helper functions for markers
|
|
|
|
|
|
|
|
int markerMargin(MathRow::Element const & e)
|
|
|
|
{
|
2017-06-08 13:22:03 +00:00
|
|
|
switch(e.marker) {
|
|
|
|
case InsetMath::MARKER:
|
|
|
|
case InsetMath::MARKER2:
|
|
|
|
case InsetMath::BOX_MARKER:
|
|
|
|
return 2;
|
|
|
|
case InsetMath::NO_MARKER:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// should not happen
|
|
|
|
return 0;
|
2017-02-08 15:42:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void afterMetricsMarkers(MetricsInfo const & , MathRow::Element & e,
|
|
|
|
Dimension & dim)
|
|
|
|
{
|
|
|
|
// handle vertical space for markers
|
|
|
|
switch(e.marker) {
|
|
|
|
case InsetMath::NO_MARKER:
|
|
|
|
break;
|
|
|
|
case InsetMath::MARKER:
|
|
|
|
++dim.des;
|
|
|
|
break;
|
|
|
|
case InsetMath::MARKER2:
|
|
|
|
++dim.asc;
|
|
|
|
++dim.des;
|
|
|
|
break;
|
|
|
|
case InsetMath::BOX_MARKER:
|
|
|
|
FontInfo font;
|
|
|
|
font.setSize(FONT_SIZE_TINY);
|
|
|
|
Dimension namedim;
|
|
|
|
mathed_string_dim(font, e.inset->name(), namedim);
|
|
|
|
int const namewid = 1 + namedim.wid + 1;
|
|
|
|
|
|
|
|
if (namewid > dim.wid)
|
|
|
|
e.after += namewid - dim.wid;
|
2017-06-12 15:09:58 +00:00
|
|
|
++dim.asc;
|
2017-02-08 15:42:14 +00:00
|
|
|
dim.des += 3 + namedim.height();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void drawMarkers(PainterInfo const & pi, MathRow::Element const & e,
|
|
|
|
int const x, int const y)
|
|
|
|
{
|
|
|
|
if (e.marker == InsetMath::NO_MARKER)
|
|
|
|
return;
|
|
|
|
|
2017-06-12 15:09:58 +00:00
|
|
|
// The color
|
|
|
|
bool const highlight = e.inset->mouseHovered(pi.base.bv)
|
|
|
|
|| e.inset->editing(pi.base.bv);
|
|
|
|
ColorCode const pen_color = highlight ? Color_mathframe : Color_mathcorners;
|
|
|
|
|
2017-02-08 15:42:14 +00:00
|
|
|
CoordCache const & coords = pi.base.bv->coordCache();
|
|
|
|
Dimension const dim = coords.getInsets().dim(e.inset);
|
|
|
|
|
|
|
|
// the marker is before/after the inset. Necessary space has been reserved already.
|
2017-06-08 13:22:03 +00:00
|
|
|
int const l = x + e.before - (markerMargin(e) > 0 ? 1 : 0);
|
2017-02-08 15:42:14 +00:00
|
|
|
int const r = x + dim.width() - e.after;
|
|
|
|
|
2017-06-12 15:09:58 +00:00
|
|
|
// Grey lower box
|
2017-02-08 15:42:14 +00:00
|
|
|
if (e.marker == InsetMath::BOX_MARKER) {
|
|
|
|
// draw header and rectangle around
|
|
|
|
FontInfo font;
|
|
|
|
font.setSize(FONT_SIZE_TINY);
|
|
|
|
font.setColor(Color_mathmacrolabel);
|
|
|
|
Dimension namedim;
|
|
|
|
mathed_string_dim(font, e.inset->name(), namedim);
|
|
|
|
pi.pain.fillRectangle(l, y + dim.des - namedim.height() - 2,
|
|
|
|
dim.wid, namedim.height() + 2, Color_mathmacrobg);
|
|
|
|
pi.pain.text(l, y + dim.des - namedim.des - 1, e.inset->name(), font);
|
|
|
|
}
|
|
|
|
|
2017-06-13 10:17:21 +00:00
|
|
|
// Lower corners in all cases
|
|
|
|
int const d = y + dim.descent();
|
|
|
|
pi.pain.line(l, d - 3, l, d, pen_color);
|
|
|
|
pi.pain.line(r, d - 3, r, d, pen_color);
|
|
|
|
pi.pain.line(l, d, l + 3, d, pen_color);
|
|
|
|
pi.pain.line(r - 3, d, r, d, pen_color);
|
2017-02-08 15:42:14 +00:00
|
|
|
|
2017-06-12 15:09:58 +00:00
|
|
|
// Upper corners
|
|
|
|
if (e.marker == InsetMath::BOX_MARKER
|
|
|
|
|| e.marker == InsetMath::MARKER2) {
|
|
|
|
int const a = y - dim.ascent();
|
|
|
|
pi.pain.line(l, a + 3, l, a, pen_color);
|
|
|
|
pi.pain.line(r, a + 3, r, a, pen_color);
|
|
|
|
pi.pain.line(l, a, l + 3, a, pen_color);
|
|
|
|
pi.pain.line(r - 3, a, r, a, pen_color);
|
|
|
|
}
|
2017-02-08 15:42:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-04 22:25:38 +00:00
|
|
|
MathRow::MathRow(MetricsInfo & mi, MathData const * ar)
|
2016-11-16 14:07:00 +00:00
|
|
|
{
|
|
|
|
// First there is a dummy element of type "open"
|
2017-01-05 12:25:28 +00:00
|
|
|
push_back(Element(mi, DUMMY, MC_OPEN));
|
2016-11-16 14:07:00 +00:00
|
|
|
|
|
|
|
// Then insert the MathData argument
|
2016-10-04 22:25:38 +00:00
|
|
|
bool const has_contents = ar->addToMathRow(*this, mi);
|
|
|
|
|
2017-01-13 09:17:05 +00:00
|
|
|
// A MathRow should not be completely empty
|
2016-10-04 22:25:38 +00:00
|
|
|
if (!has_contents) {
|
2017-01-05 12:25:28 +00:00
|
|
|
Element e(mi, BOX, MC_ORD);
|
2017-01-13 09:17:05 +00:00
|
|
|
// empty arrays are visible when they are editable
|
2016-11-28 12:13:36 +00:00
|
|
|
e.color = mi.base.macro_nesting == 0 ? Color_mathline : Color_none;
|
2016-10-04 22:25:38 +00:00
|
|
|
push_back(e);
|
|
|
|
}
|
2016-11-16 14:07:00 +00:00
|
|
|
|
|
|
|
// Finally there is a dummy element of type "close"
|
2017-01-05 12:25:28 +00:00
|
|
|
push_back(Element(mi, DUMMY, MC_CLOSE));
|
2016-11-16 14:07:00 +00:00
|
|
|
|
|
|
|
/* Do spacing only in math mode. This test is a bit clumsy,
|
|
|
|
* but it is used in other places for guessing the current mode.
|
|
|
|
*/
|
2017-01-06 08:52:10 +00:00
|
|
|
bool const dospacing = isMathFont(mi.base.fontname);
|
2016-11-16 14:07:00 +00:00
|
|
|
|
|
|
|
// update classes
|
2017-01-06 08:52:10 +00:00
|
|
|
if (dospacing) {
|
|
|
|
for (int i = 1 ; i != static_cast<int>(elements_.size()) - 1 ; ++i) {
|
|
|
|
if (elements_[i].mclass != MC_UNKNOWN)
|
|
|
|
update_class(elements_[i].mclass, elements_[before(i)].mclass,
|
|
|
|
elements_[after(i)].mclass);
|
|
|
|
}
|
2016-11-16 14:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// set spacing
|
|
|
|
// We go to the end to handle spacing at the end of equation
|
|
|
|
for (int i = 1 ; i != static_cast<int>(elements_.size()) ; ++i) {
|
2017-01-06 08:52:10 +00:00
|
|
|
Element & e = elements_[i];
|
|
|
|
|
2016-11-16 14:07:00 +00:00
|
|
|
Element & bef = elements_[before(i)];
|
2017-02-06 13:11:07 +00:00
|
|
|
if (dospacing && e.mclass != MC_UNKNOWN) {
|
2017-01-06 08:52:10 +00:00
|
|
|
int spc = class_spacing(bef.mclass, e.mclass, mi.base);
|
|
|
|
bef.after += spc / 2;
|
|
|
|
// this is better than spc / 2 to avoid rounding problems
|
|
|
|
e.before += spc - spc / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// finally reserve space for markers
|
2017-02-08 15:42:14 +00:00
|
|
|
bef.after = max(bef.after, markerMargin(bef));
|
|
|
|
if (e.mclass != MC_UNKNOWN)
|
|
|
|
e.before = max(e.before, markerMargin(e));
|
2017-02-06 13:11:07 +00:00
|
|
|
// for linearized insets (macros...) too
|
2017-02-08 15:42:14 +00:00
|
|
|
if (e.type == BEGIN)
|
|
|
|
bef.after = max(bef.after, markerMargin(e));
|
|
|
|
if (e.type == END && e.marker != InsetMath::NO_MARKER) {
|
2017-02-06 13:11:07 +00:00
|
|
|
Element & aft = elements_[after(i)];
|
2017-02-08 15:42:14 +00:00
|
|
|
aft.before = max(aft.before, markerMargin(e));
|
2017-02-06 13:11:07 +00:00
|
|
|
}
|
2016-11-16 14:07:00 +00:00
|
|
|
}
|
2017-01-06 08:52:10 +00:00
|
|
|
|
2016-11-16 14:07:00 +00:00
|
|
|
// Do not lose spacing allocated to extremities
|
|
|
|
if (!elements_.empty()) {
|
|
|
|
elements_[after(0)].before += elements_.front().after;
|
|
|
|
elements_[before(elements_.size() - 1)].after += elements_.back().before;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathRow::before(int i) const
|
|
|
|
{
|
|
|
|
do
|
|
|
|
--i;
|
2016-12-02 14:58:39 +00:00
|
|
|
while (elements_[i].mclass == MC_UNKNOWN);
|
2016-11-16 14:07:00 +00:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathRow::after(int i) const
|
|
|
|
{
|
|
|
|
do
|
|
|
|
++i;
|
2016-12-02 14:58:39 +00:00
|
|
|
while (elements_[i].mclass == MC_UNKNOWN);
|
2016-11-16 14:07:00 +00:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-08 15:42:14 +00:00
|
|
|
void MathRow::metrics(MetricsInfo & mi, Dimension & dim)
|
2016-11-16 14:07:00 +00:00
|
|
|
{
|
|
|
|
dim.asc = 0;
|
|
|
|
dim.wid = 0;
|
|
|
|
// In order to compute the dimension of macros and their
|
|
|
|
// arguments, it is necessary to keep track of them.
|
2017-02-01 16:46:53 +00:00
|
|
|
vector<pair<InsetMath const *, Dimension>> dim_insets;
|
|
|
|
vector<pair<MathData const *, Dimension>> dim_arrays;
|
2016-11-16 14:07:00 +00:00
|
|
|
CoordCache & coords = mi.base.bv->coordCache();
|
2017-02-08 15:42:14 +00:00
|
|
|
for (Element & e : elements_) {
|
2017-01-05 12:25:28 +00:00
|
|
|
mi.base.macro_nesting = e.macro_nesting;
|
2016-11-16 14:07:00 +00:00
|
|
|
Dimension d;
|
|
|
|
switch (e.type) {
|
2016-12-02 14:58:39 +00:00
|
|
|
case DUMMY:
|
2016-11-16 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case INSET:
|
|
|
|
e.inset->metrics(mi, d);
|
|
|
|
d.wid += e.before + e.after;
|
|
|
|
coords.insets().add(e.inset, d);
|
|
|
|
break;
|
2017-02-01 16:46:53 +00:00
|
|
|
case BEGIN:
|
|
|
|
if (e.inset) {
|
|
|
|
dim_insets.push_back(make_pair(e.inset, Dimension()));
|
2017-02-06 13:11:07 +00:00
|
|
|
dim_insets.back().second.wid += e.before + e.after;
|
2017-02-08 15:42:14 +00:00
|
|
|
d.wid = e.before + e.after;
|
2017-02-01 16:46:53 +00:00
|
|
|
e.inset->beforeMetrics();
|
|
|
|
}
|
|
|
|
if (e.ar)
|
|
|
|
dim_arrays.push_back(make_pair(e.ar, Dimension()));
|
2016-11-16 14:07:00 +00:00
|
|
|
break;
|
2017-02-01 16:46:53 +00:00
|
|
|
case END:
|
|
|
|
if (e.inset) {
|
|
|
|
e.inset->afterMetrics();
|
|
|
|
LATTEST(dim_insets.back().first == e.inset);
|
2017-02-08 15:42:14 +00:00
|
|
|
d = dim_insets.back().second;
|
|
|
|
afterMetricsMarkers(mi, e, d);
|
|
|
|
d.wid += e.before + e.after;
|
|
|
|
coords.insets().add(e.inset, d);
|
2017-02-01 16:46:53 +00:00
|
|
|
dim_insets.pop_back();
|
2017-02-08 15:42:14 +00:00
|
|
|
// We do not want to count the width again, but the
|
|
|
|
// padding and the vertical dimension are meaningful.
|
|
|
|
d.wid = e.before + e.after;
|
2017-02-01 16:46:53 +00:00
|
|
|
}
|
|
|
|
if (e.ar) {
|
|
|
|
LATTEST(dim_arrays.back().first == e.ar);
|
|
|
|
coords.arrays().add(e.ar, dim_arrays.back().second);
|
|
|
|
dim_arrays.pop_back();
|
|
|
|
}
|
2016-11-16 14:07:00 +00:00
|
|
|
break;
|
2016-10-04 22:25:38 +00:00
|
|
|
case BOX:
|
|
|
|
d = theFontMetrics(mi.base.font).dimension('I');
|
2017-01-13 09:17:05 +00:00
|
|
|
if (e.color != Color_none) {
|
|
|
|
// allow for one pixel before/after the box.
|
|
|
|
d.wid += e.before + e.after + 2;
|
|
|
|
} else {
|
2017-02-08 15:42:14 +00:00
|
|
|
// hide the box, but keep its height
|
2017-01-13 09:17:05 +00:00
|
|
|
d.wid = 0;
|
|
|
|
}
|
2016-10-04 22:25:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!d.empty()) {
|
|
|
|
dim += d;
|
|
|
|
// Now add the dimension to current macros and arguments.
|
2017-02-01 14:20:06 +00:00
|
|
|
for (auto & dim_macro : dim_insets)
|
2016-10-04 22:25:38 +00:00
|
|
|
dim_macro.second += d;
|
|
|
|
for (auto & dim_array : dim_arrays)
|
|
|
|
dim_array.second += d;
|
2016-11-16 14:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (e.compl_text.empty())
|
|
|
|
continue;
|
|
|
|
FontInfo font = mi.base.font;
|
|
|
|
augmentFont(font, "mathnormal");
|
|
|
|
dim.wid += mathed_string_width(font, e.compl_text);
|
|
|
|
}
|
2017-02-01 14:20:06 +00:00
|
|
|
LATTEST(dim_insets.empty() && dim_arrays.empty());
|
2016-11-16 14:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathRow::draw(PainterInfo & pi, int x, int const y) const
|
|
|
|
{
|
|
|
|
CoordCache & coords = pi.base.bv->coordCache();
|
|
|
|
for (Element const & e : elements_) {
|
|
|
|
switch (e.type) {
|
|
|
|
case INSET: {
|
|
|
|
// This is hackish: the math inset does not know that space
|
|
|
|
// has been added before and after it; we alter its dimension
|
|
|
|
// while it is drawing, because it relies on this value.
|
|
|
|
Dimension const d = coords.insets().dim(e.inset);
|
|
|
|
Dimension d2 = d;
|
|
|
|
d2.wid -= e.before + e.after;
|
|
|
|
coords.insets().add(e.inset, d2);
|
|
|
|
e.inset->draw(pi, x + e.before, y);
|
|
|
|
coords.insets().add(e.inset, x, y);
|
|
|
|
coords.insets().add(e.inset, d);
|
2017-01-06 08:52:10 +00:00
|
|
|
drawMarkers(pi, e, x, y);
|
2016-11-16 14:07:00 +00:00
|
|
|
x += d.wid;
|
|
|
|
break;
|
|
|
|
}
|
2017-02-01 16:46:53 +00:00
|
|
|
case BEGIN:
|
2017-02-22 09:43:48 +00:00
|
|
|
if (e.ar) {
|
|
|
|
coords.arrays().add(e.ar, x, y);
|
|
|
|
e.ar->drawSelection(pi, x, y);
|
|
|
|
}
|
2017-02-01 16:46:53 +00:00
|
|
|
if (e.inset) {
|
|
|
|
coords.insets().add(e.inset, x, y);
|
|
|
|
drawMarkers(pi, e, x, y);
|
|
|
|
e.inset->beforeDraw(pi);
|
|
|
|
}
|
2017-02-06 13:11:07 +00:00
|
|
|
x += e.before + e.after;
|
2016-11-16 14:07:00 +00:00
|
|
|
break;
|
2017-02-01 16:46:53 +00:00
|
|
|
case END:
|
|
|
|
if (e.inset)
|
|
|
|
e.inset->afterDraw(pi);
|
2017-02-06 13:11:07 +00:00
|
|
|
x += e.before + e.after;
|
2016-11-16 14:07:00 +00:00
|
|
|
break;
|
2016-10-04 22:25:38 +00:00
|
|
|
case BOX: {
|
2017-01-13 09:17:05 +00:00
|
|
|
if (e.color == Color_none)
|
|
|
|
break;
|
2016-10-04 22:25:38 +00:00
|
|
|
Dimension const d = theFontMetrics(pi.base.font).dimension('I');
|
2017-01-13 09:17:05 +00:00
|
|
|
pi.pain.rectangle(x + e.before + 1, y - d.ascent(),
|
|
|
|
d.width() - 1, d.height() - 1, e.color);
|
|
|
|
x += d.wid + 2 + e.before + e.after;
|
2016-10-04 22:25:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-12-02 14:58:39 +00:00
|
|
|
case DUMMY:
|
2016-11-16 14:07:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e.compl_text.empty())
|
|
|
|
continue;
|
|
|
|
FontInfo f = pi.base.font;
|
|
|
|
augmentFont(f, "mathnormal");
|
|
|
|
|
|
|
|
// draw the unique and the non-unique completion part
|
|
|
|
// Note: this is not time-critical as it is
|
|
|
|
// only done once per screen.
|
|
|
|
docstring const s1 = e.compl_text.substr(0, e.compl_unique_to);
|
|
|
|
docstring const s2 = e.compl_text.substr(e.compl_unique_to);
|
|
|
|
|
|
|
|
if (!s1.empty()) {
|
|
|
|
f.setColor(Color_inlinecompletion);
|
|
|
|
pi.pain.text(x, y, s1, f);
|
|
|
|
x += mathed_string_width(f, s1);
|
|
|
|
}
|
|
|
|
if (!s2.empty()) {
|
|
|
|
f.setColor(Color_nonunique_inlinecompletion);
|
|
|
|
pi.pain.text(x, y, s2, f);
|
|
|
|
x += mathed_string_width(f, s2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathRow::kerning(BufferView const * bv) const
|
|
|
|
{
|
|
|
|
if (elements_.empty())
|
|
|
|
return 0;
|
|
|
|
InsetMath const * inset = elements_[before(elements_.size() - 1)].inset;
|
|
|
|
return inset ? inset->kerning(bv) : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ostream & operator<<(ostream & os, MathRow::Element const & e)
|
|
|
|
{
|
|
|
|
switch (e.type) {
|
2016-12-02 14:58:39 +00:00
|
|
|
case MathRow::DUMMY:
|
|
|
|
os << (e.mclass == MC_OPEN ? "{" : "}");
|
2016-11-16 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case MathRow::INSET:
|
|
|
|
os << "<" << e.before << "-"
|
|
|
|
<< to_utf8(class_to_string(e.mclass))
|
|
|
|
<< "-" << e.after << ">";
|
|
|
|
break;
|
2017-02-01 16:46:53 +00:00
|
|
|
case MathRow::BEGIN:
|
|
|
|
if (e.inset)
|
|
|
|
os << "\\" << to_utf8(e.inset->name())
|
|
|
|
<< "^" << e.macro_nesting << "[";
|
|
|
|
if (e.ar)
|
|
|
|
os << "(";
|
2016-11-16 14:07:00 +00:00
|
|
|
break;
|
2017-02-01 16:46:53 +00:00
|
|
|
case MathRow::END:
|
|
|
|
if (e.ar)
|
|
|
|
os << ")";
|
|
|
|
if (e.inset)
|
|
|
|
os << "]";
|
2016-11-16 14:07:00 +00:00
|
|
|
break;
|
2016-10-04 22:25:38 +00:00
|
|
|
case MathRow::BOX:
|
2016-12-02 14:58:39 +00:00
|
|
|
os << "<" << e.before << "-[]-" << e.after << ">";
|
2016-10-04 22:25:38 +00:00
|
|
|
break;
|
2016-11-16 14:07:00 +00:00
|
|
|
}
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ostream & operator<<(ostream & os, MathRow const & mrow)
|
|
|
|
{
|
|
|
|
for (MathRow::Element const & e : mrow)
|
|
|
|
os << e << " ";
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace lyx
|