 |
wxMaxima
|
Go to the documentation of this file.
40 enum sumStyle : int8_t
50 std::unique_ptr<Cell> &&under, std::unique_ptr<Cell> &&over,
51 std::unique_ptr<Cell> &&base);
62 void Draw(wxPoint point)
override;
66 wxString
ToOMML()
const override;
68 wxString
ToTeX()
const override;
69 wxString
ToXML()
const override;
79 std::unique_ptr<
Cell> MakeStart(
Cell *under) const;
80 void MakeBreakUpCells();
86 Cell *DisplayedBase() const;
89 wxString m_altCopyText;
94 std::unique_ptr<
Cell> m_open;
95 std::unique_ptr<
Cell> m_paren;
96 std::unique_ptr<
Cell> m_comma1;
97 std::unique_ptr<
Cell> m_var;
98 std::unique_ptr<
Cell> m_comma2;
99 std::unique_ptr<
Cell> m_start;
100 std::unique_ptr<
Cell> m_comma3;
101 std::unique_ptr<
Cell> m_over;
102 std::unique_ptr<
Cell> m_close;
103 std::unique_ptr<
Cell> m_under;
106 float m_signWidth = 30.0f;
107 int m_signHeight = 50;
108 int m_signWCenter = 15;
109 sumStyle m_sumStyle = SM_SUM;
116 m_displayParen =
true;
120 bool m_displayParen : 1 ;
const CellTypeInfo & GetInfo() override
Returns the information about this cell's type.
Definition: TextCell.h:36
Cell * GetInnerCell(int index) const override
Definition: SumCell.h:58
int GetInnerCellCount() const override
The number of inner cells - for use by the iterators.
Definition: SumCell.h:56
void SetNextToDraw(Cell *next) override
Definition: SumCell.cpp:435
void Recalculate(AFontSize fontsize) override
Definition: SumCell.cpp:120
wxString ToOMML() const override
Definition: SumCell.cpp:312
wxString ToXML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: SumCell.cpp:337
void Unbreak() override final
Definition: SumCell.cpp:398
wxString ToString() const override
Returns the cell's representation as a string.
Definition: SumCell.cpp:223
std::unique_ptr< Cell > Copy(GroupCell *group) const override
void SetAltCopyText(const wxString &text) override
Definition: SumCell.h:71
wxString ToMatlab() const override
Convert this cell to its Matlab representation.
Definition: SumCell.cpp:263
Definition: FontAttribs.h:97
Definition: Configuration.h:83
Definition: ParenCell.h:49
wxString ToTeX() const override
Convert this cell to its LaTeX representation.
Definition: SumCell.cpp:291
wxString ToMathML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: SumCell.cpp:360
Definition: GroupCell.h:68
A class that carries information about the type of a cell.
Definition: Cell.h:90
bool BreakUp() override
Definition: SumCell.cpp:404
const wxString & GetAltCopyText() const override
Get the text set using SetAltCopyText - may be empty.
Definition: SumCell.h:72