 |
wxMaxima
|
Go to the documentation of this file.
43 std::unique_ptr<Cell> &&base, std::unique_ptr<Cell> &&under,
44 std::unique_ptr<Cell> &&over, std::unique_ptr<Cell> &&var);
46 std::unique_ptr<Cell> &&base, std::unique_ptr<Cell> &&var);
57 void Draw(wxPoint point)
override;
70 wxString
ToOMML()
const override;
72 wxString
ToTeX()
const override;
73 wxString
ToXML()
const override;
79 void MakeBreakUpCells();
85 std::unique_ptr<Cell> m_open;
87 std::unique_ptr<Cell> m_base;
88 std::unique_ptr<Cell> m_comma1;
90 std::unique_ptr<Cell> m_var;
91 std::unique_ptr<Cell> m_comma2;
93 std::unique_ptr<Cell> m_under;
94 std::unique_ptr<Cell> m_comma3;
96 std::unique_ptr<Cell> m_over;
98 std::unique_ptr<Cell> m_close;
102 int m_signHeight = 35;
104 int m_signWidth = 18;
106 int m_signTop = m_signHeight / 2;
107 #if defined __WXMSW__
108 int m_charHeight = 12;
109 int m_charWidth = 12;
wxString ToOMML() const override
Definition: IntCell.cpp:393
int GetInnerCellCount() const override
The number of inner cells - for use by the iterators.
Definition: IntCell.h:51
@ INT_DEF
A definite integral, meaning an integral with limits.
Definition: IntCell.h:61
@ INT_IDEF
An indefinite integral, meaning an integral without limits
Definition: IntCell.h:62
wxString ToMathML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: IntCell.cpp:365
std::unique_ptr< Cell > Copy(GroupCell *group) const override
IntegralType
Definition: IntCell.h:59
wxString ToString() const override
Returns the cell's representation as a string.
Definition: IntCell.cpp:297
bool BreakUp() override
Definition: IntCell.cpp:453
wxString ToXML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: IntCell.cpp:418
Definition: FontAttribs.h:97
wxString ToTeX() const override
Convert this cell to its LaTeX representation.
Definition: IntCell.cpp:345
wxString ToMatlab() const override
Convert this cell to its Matlab representation.
Definition: IntCell.cpp:322
void Recalculate(AFontSize fontsize) override
Definition: IntCell.cpp:89
const CellTypeInfo & GetInfo() override
Returns the information about this cell's type.
Definition: Configuration.h:83
Cell * GetInnerCell(int index) const override
Definition: IntCell.h:53
Definition: GroupCell.h:68
A class that carries information about the type of a cell.
Definition: Cell.h:90
void SetNextToDraw(Cell *next) override
Definition: IntCell.cpp:484
void SetIntStyle(IntegralType style)
Choose between definite and indefinite integrals.
Definition: IntCell.h:66