wxMaxima
Loading...
Searching...
No Matches
DiffCell.h
1// -*- mode: c++; c-file-style: "linux"; c-basic-offset: 2; indent-tabs-mode: nil -*-
2//
3// Copyright (C) 2004-2015 Andrej Vodopivec <andrej.vodopivec@gmail.com>
4// (C) 2014-2016 Gunter Königsmann <wxMaxima@physikbuch.de>
5//
6// This program is free software; you can redistribute it and/or modify
7// it under the terms of the GNU General Public License as published by
8// the Free Software Foundation; either version 2 of the License, or
9// (at your option) any later version.
10//
11// This program is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15//
16//
17// You should have received a copy of the GNU General Public License
18// along with this program; if not, write to the Free Software
19// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20//
21// SPDX-License-Identifier: GPL-2.0+
22
23#ifndef DIFFCELL_H
24#define DIFFCELL_H
25
26#include "Cell.h"
27#include <memory>
28
29class DiffCell final : public Cell
30{
31public:
32 DiffCell(GroupCell *group, Configuration *config, std::unique_ptr<Cell> &&base,
33 std::unique_ptr<Cell> &&diff);
34 DiffCell(GroupCell *group, const DiffCell &cell);
35 std::unique_ptr<Cell> Copy(GroupCell *group) const override;
36 const CellTypeInfo &GetInfo() override;
37
38 size_t GetInnerCellCount() const override { return 5; }
39 Cell *GetInnerCell(size_t index) const override {
40 switch (index) {
41 case 0:
42 return m_open.get();
43 case 1:
44 return m_baseCell.get();
45 case 2:
46 return m_comma.get();
47 case 3:
48 return m_diffCell.get();
49 case 4:
50 return m_close.get();
51 default:
52 return nullptr;
53 }
54 }
55
56 void Recalculate(const AFontSize fontsize) const override;
57
58 void Draw(wxPoint point, wxDC *dc, wxDC *antialiassingDC) override;
59
60 wxString ToMathML() const override;
61 wxString ToMatlab() const override;
62 wxString ToOMML() const override;
63 wxString ToString() const override;
64 wxString ToTeX() const override;
65 wxString ToXML() const override;
66
67 void SetNextToDraw(Cell *next) const override;
68
69 bool BreakUp() const override;
70
71private:
72 void MakeBreakupCells();
73
74 // The pointers below point to inner cells and must be kept contiguous.
75 // ** This is the draw list order. All pointers must be the same:
76 // ** either Cell * or std::unique_ptr<Cell>. NO OTHER TYPES are allowed.
77 std::unique_ptr<Cell> m_open;
78 std::unique_ptr<Cell> m_baseCell;
79 std::unique_ptr<Cell> m_comma;
80 std::unique_ptr<Cell> m_diffCell;
81 std::unique_ptr<Cell> m_close;
82 // The pointers above point to inner cells and must be kept contiguous.
83
84//** Bitfield objects (0 bytes)
85//**
86 static void InitBitFields_DiffCell()
87 { // Keep the initialization order below same as the order
88 // of bit fields in this class!
89 }
90};
91
92#endif // DIFFCELL_H
The definition of the base class of all cells the worksheet consists of.
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
Definition: DiffCell.h:30
const CellTypeInfo & GetInfo() override
Returns the information about this cell's type.
wxString ToMatlab() const override
Convert this cell to its Matlab representation.
Definition: DiffCell.cpp:124
wxString ToXML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: DiffCell.cpp:173
wxString ToOMML() const override
Returns the cell's representation as OMML.
Definition: DiffCell.cpp:163
std::unique_ptr< Cell > Copy(GroupCell *group) const override
Create a copy of this cell.
size_t GetInnerCellCount() const override
The number of inner cells - for use by the iterators.
Definition: DiffCell.h:38
void SetNextToDraw(Cell *next) const override
Tells this cell which one should be the next cell to be drawn.
Definition: DiffCell.cpp:196
wxString ToMathML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: DiffCell.cpp:149
void Draw(wxPoint point, wxDC *dc, wxDC *antialiassingDC) override
Draw this cell.
Definition: DiffCell.cpp:94
wxString ToString() const override
Returns the cell's representation as a string.
Definition: DiffCell.cpp:108
wxString ToTeX() const override
Convert this cell to its LaTeX representation.
Definition: DiffCell.cpp:136
bool BreakUp() const override
Try to split this command into lines to make it fit on the screen.
Definition: DiffCell.cpp:182
void Recalculate(const AFontSize fontsize) const override
Recalculate the size of the cell and the difference between top and center.
Definition: DiffCell.cpp:75
Cell * GetInnerCell(size_t index) const override
Retrieve an inner cell with given index which must be less than GetInnerCellCount.
Definition: DiffCell.h:39
A cell grouping input (and, if there is one, also the output) cell to a foldable item.
Definition: GroupCell.h:74