Home
last modified time | relevance | path

Searched refs:InsetMath (Results 1 – 25 of 50) sorted by relevance

12

/dports/print/lyx/lyx-2.3.4.2/src/mathed/
H A DInsetMath.cpp33 docstring InsetMath::name() const in name()
39 MathData & InsetMath::cell(idx_type) in cell()
47 MathData const & InsetMath::cell(idx_type) const in cell()
55 MathClass InsetMath::mathClass() const in mathClass()
61 InsetMath::marker_type InsetMath::marker(BufferView const *) const in marker()
77 void InsetMath::dump() const in dump()
101 void InsetMath::write(WriteStream & os) const in write()
113 int InsetMath::plaintext(odocstringstream &, in plaintext()
135 void InsetMath::maple(MapleStream & os) const in maple()
166 void InsetMath::htmlize(HtmlStream & os) const in htmlize()
[all …]
H A DMathAtom.h48 class InsetMath; variable
56 explicit MathAtom(InsetMath * p);
61 InsetMath * nucleus() { return nucleus_.get(); } in nucleus()
62 InsetMath const * nucleus() const { return nucleus_.get(); } in nucleus()
63 InsetMath * operator->() { return nucleus_.get(); }
64 InsetMath const * operator->() const { return nucleus_.get(); }
66 std::unique_ptr<InsetMath> nucleus_;
H A DMathParser.cpp92 InsetMath::mode_type asMode(InsetMath::mode_type oldmode, docstring const & str) in asMode()
96 return InsetMath::MATH_MODE; in asMode()
98 return InsetMath::TEXT_MODE; in asMode()
384 typedef InsetMath::mode_type mode_type;
867 if (mode != InsetMath::MATH_MODE) { in parse1()
2107 InsetMath::mode_type m = mode; in parse1()
2113 InsetMath::idx_type start = 0; in parse1()
2123 if (mode == InsetMath::MATH_MODE) in parse1()
2157 InsetMath::TEXT_MODE : InsetMath::MATH_MODE); in mathed_parse_cell()
2164 InsetMath::TEXT_MODE : InsetMath::MATH_MODE); in mathed_parse_cell()
[all …]
H A DMathRow.cpp54 case InsetMath::MARKER: in markerMargin()
55 case InsetMath::MARKER2: in markerMargin()
56 case InsetMath::BOX_MARKER: in markerMargin()
58 case InsetMath::NO_MARKER: in markerMargin()
71 case InsetMath::NO_MARKER: in afterMetricsMarkers()
73 case InsetMath::MARKER: in afterMetricsMarkers()
76 case InsetMath::MARKER2: in afterMetricsMarkers()
80 case InsetMath::BOX_MARKER: in afterMetricsMarkers()
98 if (e.marker == InsetMath::NO_MARKER) in drawMarkers()
109 if (e.marker == InsetMath::BOX_MARKER) { in drawMarkers()
[all …]
H A DMathRow.h31 class InsetMath; variable
71 InsetMath::marker_type marker;
75 InsetMath const * inset;
H A DMathAtom.cpp21 MathAtom::MathAtom(InsetMath * p) in MathAtom()
27 : nucleus_(at.nucleus_ ? static_cast<InsetMath*>(at->clone()) : nullptr) in MathAtom()
H A DInsetMath.h101 class InsetMath : public Inset {
104 InsetMath(Buffer * buf = 0) : Inset(buf) {} in Inset()
106 InsetMath * asInsetMath() { return this; } in asInsetMath()
108 InsetMath const * asInsetMath() const { return this; } in asInsetMath()
H A DMathSupport.h28 class InsetMath; variable
82 docstring asString(InsetMath const &);
H A DInsetMathNest.cpp87 : InsetMath(buf), cells_(nargs), lock_(false) in InsetMathNest()
94 : InsetMath(inset), cells_(inset.cells_), lock_(inset.lock_) in InsetMathNest()
113 InsetMath::operator=(inset); in operator =()
120 InsetMath::setBuffer(buffer); in setBuffer()
126 InsetMath::idx_type InsetMathNest::nargs() const in nargs()
1030 InsetMath * im = cur.inset().asInsetMath(); in doDispatch()
1281 InsetMath::doDispatch(cur, cmd); in doDispatch()
1647 if (currentMode() != InsetMath::MATH_MODE) in interpretChar()
1763 if (currentMode() != InsetMath::MATH_MODE) in interpretChar()
1769 if (currentMode() != InsetMath::MATH_MODE) { in interpretChar()
[all …]
H A DMathStream.h28 class InsetMath; variable
167 int ensureMode(WriteStream & os, InsetMath::mode_type mode, bool locked, bool ascii);
273 explicit ModeSpecifier(WriteStream & os, InsetMath::mode_type mode,
H A DInsetMathDots.h23 class InsetMathDots : public InsetMath {
H A DInsetMathKern.h25 class InsetMathKern : public InsetMath {
H A DInsetMathNumber.h24 class InsetMathNumber : public InsetMath {
H A DInsetMathString.h26 class InsetMathString : public InsetMath {
H A DInsetMathMacroArgument.h25 class InsetMathHash : public InsetMath {
H A DInsetMathBig.h21 class InsetMathBig : public InsetMath {
H A DInsetMathSpecialChar.h22 class InsetMathSpecialChar : public InsetMath
H A DInsetMathChar.h22 class InsetMathChar : public InsetMath {
H A DInsetMathUnknown.h21 class InsetMathUnknown : public InsetMath {
H A DInsetMathSymbol.h25 class InsetMathSymbol : public InsetMath {
H A DInsetMathSpace.h24 class InsetMathSpace : public InsetMath {
H A DInsetMathFrac.cpp53 InsetMath::idx_type target = nargs() > 1 ? !up : 0; in idxUpDown()
70 InsetMathFrac::InsetMathFrac(Buffer * buf, Kind kind, InsetMath::idx_type ncells) in InsetMathFrac()
95 InsetMath::idx_type target = 0; in idxForward()
113 InsetMath::idx_type target = 0; in idxBackward()
H A DInsetMathSpace.cpp311 bool retval = InsetMath::getStatus(cur, cmd, status); in getStatus()
343 InsetMath::doDispatch(cur, cmd); in doDispatch()
/dports/print/lyx/lyx-2.3.4.2/src/insets/
H A DInset.h51 class InsetMath; variable
139 virtual InsetMath * asInsetMath() { return 0; } in asInsetMath()
141 virtual InsetMath const * asInsetMath() const { return 0; } in asInsetMath()
/dports/print/lyx/lyx-2.3.4.2/src/
H A DCursor.h487 InsetMath & nextMath();
489 InsetMath & prevMath();

12