  | 
  
    wxMaxima
    
   | 
 
 
 
 
   32            std::unique_ptr<Cell> &&diff);
 
   43   void Draw(wxPoint point) 
override;
 
   47   wxString 
ToOMML() 
const override;
 
   49   wxString 
ToTeX() 
const override;
 
   50   wxString 
ToXML() 
const override;
 
   57   void MakeBreakupCells();
 
   62   std::unique_ptr<Cell> m_open;
 
   63   std::unique_ptr<Cell> m_baseCell;
 
   64   std::unique_ptr<Cell> m_comma;
 
   65   std::unique_ptr<Cell> m_diffCell;
 
   66   std::unique_ptr<Cell> m_close;
 
  
const CellTypeInfo & GetInfo() override
Returns the information about this cell's type.
 
bool BreakUp() override
Definition: DiffCell.cpp:175
 
Cell * GetInnerCell(int index) const override
Definition: DiffCell.h:39
 
int GetInnerCellCount() const override
The number of inner cells - for use by the iterators.
Definition: DiffCell.h:37
 
void Recalculate(AFontSize fontsize) override
Definition: DiffCell.cpp:64
 
void SetNextToDraw(Cell *next) override
Definition: DiffCell.cpp:195
 
Definition: DiffCell.h:28
 
Definition: FontAttribs.h:97
 
std::unique_ptr< Cell > Copy(GroupCell *group) const override
 
wxString ToOMML() const override
Definition: DiffCell.cpp:155
 
wxString ToMathML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: DiffCell.cpp:140
 
Definition: Configuration.h:83
 
wxString ToXML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: DiffCell.cpp:166
 
wxString ToString() const override
Returns the cell's representation as a string.
Definition: DiffCell.cpp:100
 
wxString ToTeX() const override
Convert this cell to its LaTeX representation.
Definition: DiffCell.cpp:126
 
wxString ToMatlab() const override
Convert this cell to its Matlab representation.
Definition: DiffCell.cpp:113
 
Definition: GroupCell.h:68
 
A class that carries information about the type of a cell.
Definition: Cell.h:90