45 std::unique_ptr<Cell> &&under, std::unique_ptr<Cell> &&over,
46 std::unique_ptr<Cell> &&base);
57 void Draw(wxPoint point, wxDC *dc, wxDC *antialiassingDC)
override;
61 wxString
ToOMML()
const override;
63 wxString
ToTeX()
const override;
64 wxString
ToXML()
const override;
90 Cell *Over()
const {
return m_over.get();}
91 Cell *Under()
const {
return m_under.get();}
94 std::unique_ptr<Cell> MakeStart(
Cell *under)
const;
95 void MakeBreakUpCells();
96 const static wxString m_svgSumSign;
100 Cell *DisplayedBase()
const;
103 wxString m_altCopyText;
107 std::unique_ptr<Cell> m_open;
108 std::unique_ptr<Cell> m_paren;
109 std::unique_ptr<Cell> m_comma1;
110 std::unique_ptr<Cell> m_var;
111 std::unique_ptr<Cell> m_comma2;
112 std::unique_ptr<Cell> m_start;
113 std::unique_ptr<Cell> m_comma3;
114 std::unique_ptr<Cell> m_close;
115 std::unique_ptr<Cell> m_over;
116 std::unique_ptr<Cell> m_under;
123 void InitBitFields_SumCell()
126 m_displayParen =
true;
130 bool m_displayParen : 1 ;
The definition of the base class of all cells the worksheet consists of.
This file declares the class ParenCell.
A Type-Safe Fixed-Point Font Size.
Definition: FontAttribs.h:98
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:142
The configuration storage for the current worksheet.
Definition: Configuration.h:85
A cell grouping input (and, if there is one, also the output) cell to a foldable item.
Definition: GroupCell.h:74
The class that represents parenthesis that are wrapped around text.
Definition: ParenCell.h:50
size_t GetInnerCellCount() const override
The number of inner cells - for use by the iterators.
Definition: SumCell.h:51
wxString ToMathML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: SumCell.cpp:309
wxString ToMatlab() const override
Convert this cell to its Matlab representation.
Definition: SumCell.cpp:243
bool BreakUp() override
Try to split this command into lines to make it fit on the screen.
Definition: SumCell.cpp:340
virtual const wxString GetMaximaCommandName() const
What maxima command name corresponds to this cell?
Definition: SumCell.cpp:116
const CellTypeInfo & GetInfo() override
Returns the information about this cell's type.
virtual const wxString GetXMLType() const
Returns the type our cell has when saving it to .wxmx.
Definition: SumCell.cpp:145
std::unique_ptr< Cell > Copy(GroupCell *group) const override
Create a copy of this cell.
void Recalculate(AFontSize fontsize) override
Recalculate the size of the cell and the difference between top and center.
Definition: SumCell.cpp:153
void Draw(wxPoint point, wxDC *dc, wxDC *antialiassingDC) override
Draw this cell.
Definition: SumCell.cpp:188
void SetNextToDraw(Cell *next) override
Tells this cell which one should be the next cell to be drawn.
Definition: SumCell.cpp:366
void Unbreak() override final
Undo breaking this cell into multiple lines.
Definition: SumCell.cpp:335
virtual const wxString GetMatlabCommandName() const
What matlab command name corresponds to this cell?
Definition: SumCell.cpp:130
wxString ToString() const override
Returns the cell's representation as a string.
Definition: SumCell.cpp:217
virtual const wxSize GetSymbolSize() const
How big do we want our svg symbol to be?
Definition: SumCell.cpp:106
const wxString & GetAltCopyText() const override
Get the text set using SetAltCopyText - may be empty.
Definition: SumCell.h:67
virtual const wxString GetLaTeXCommandName() const
What LaTeX command name corresponds to this cell?
Definition: SumCell.cpp:135
wxString ToTeX() const override
Convert this cell to its LaTeX representation.
Definition: SumCell.cpp:265
void SetAltCopyText(const wxString &text) override
What should end up if placing this cell on the clipboard?
Definition: SumCell.h:66
wxString ToXML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: SumCell.cpp:298
Cell * GetInnerCell(size_t index) const override
Retrieve an inner cell with given index which must be less than GetInnerCellCount.
Definition: SumCell.h:53
virtual const wxString GetUnicodeSymbol() const
What unicode symbol name corresponds to this cell?
Definition: SumCell.cpp:140
virtual const wxString GetSvgSymbolData() const
Returns the data that creates our SVG symbol.
Definition: SumCell.cpp:124
Cell * Base() const
The base cell owned by the paren (it's without the paren)
Definition: SumCell.cpp:76
wxString ToOMML() const override
Returns the cell's representation as OMML.
Definition: SumCell.cpp:278
A Text cell.
Definition: TextCell.h:38