45 std::unique_ptr<Cell> &&base, std::unique_ptr<Cell> &&under,
46 std::unique_ptr<Cell> &&name);
99 void Draw(wxDC *dc, wxDC *antialiassingDC)
override;
103 wxString
ToOMML()
const override;
105 wxString
ToTeX()
const override;
106 wxString
ToXML()
const override;
111 void MakeBreakUpCells();
116 std::unique_ptr<Cell> m_name;
117 std::unique_ptr<Cell> m_open;
118 std::unique_ptr<Cell> m_base;
119 std::unique_ptr<Cell> m_comma;
120 std::unique_ptr<Cell> m_under;
121 std::unique_ptr<Cell> m_close;
The definition of the base class of all cells the worksheet consists of.
A Type-Safe Fixed-Point Font Size.
Definition: FontAttribs.h:99
A class that carries information about the type of a cell.
Definition: Cell.h:93
The base class all cell types the worksheet can consist of are derived from.
Definition: Cell.h:148
virtual void SetCurrentPoint(wxPoint point) const
Pass 2: Arrangement.
Definition: Cell.cpp:514
The configuration storage for the current worksheet.
Definition: Configuration.h:98
A cell grouping input (and, if there is one, also the output) cell to a foldable item.
Definition: GroupCell.h:88
Definition: LimitCell.h:41
void SetCurrentPoint(wxPoint point) const override
Pass 2: Arrangement.
Definition: LimitCell.cpp:50
const CellTypeInfo & GetInfo() override
Returns the information about this cell's type.
wxString ToTeX() const override
Convert this cell to its LaTeX representation.
Definition: LimitCell.cpp:143
void Draw(wxDC *dc, wxDC *antialiassingDC) override
Pass 3 (Paint): Renders the cell using pre-calculated coordinates.
Definition: LimitCell.cpp:93
wxString ToOMML() const override
Returns the cell's representation as OMML.
Definition: LimitCell.cpp:156
Cell * GetInnerCell(size_t index) const override
Retrieve an inner cell with given index which must be less than GetInnerCellCount.
Definition: LimitCell.h:52
bool BreakUp() const override
Try to split this command into lines to make it fit on the screen.
Definition: LimitCell.cpp:172
wxString ToString() const override
Returns the cell's representation as a string.
Definition: LimitCell.cpp:116
size_t GetBrokenCellCount() const override
ORDER MATTERS, and this is NOT the same set as GetInnerCellCount()/ GetInnerCell() above: m_name (the...
Definition: LimitCell.h:77
wxString ToMatlab() const override
Convert this cell to its Matlab representation.
Definition: LimitCell.cpp:137
size_t GetInnerCellCount() const override
The number of inner cells - for use by the iterators.
Definition: LimitCell.h:51
wxString ToMathML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: LimitCell.cpp:149
void Recalculate(const AFontSize fontsize) const override
Recalculate the size of the cell and the difference between top and center.
Definition: LimitCell.cpp:63
std::unique_ptr< Cell > Copy(GroupCell *group) const override
Create a copy of this cell.
wxString ToXML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: LimitCell.cpp:163
Cell * GetBrokenCell(size_t index) const override
Retrieve a piece of this cell's broken (linear/1D) display; see GetBrokenCellCount().
Definition: LimitCell.h:78