wxMaxima
Loading...
Searching...
No Matches
SumCell.h
Go to the documentation of this file.
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-2018 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
31#ifndef SUMCELL_H
32#define SUMCELL_H
33
34#include "precomp.h"
35#include "Cell.h"
36#include "ParenCell.h"
37
38class TextCell;
39
40//cppcheck-suppress ctuOneDefinitionRuleViolation
41class SumCell : public Cell
42{
43public:
46 SumCell(GroupCell *group, Configuration *config,
47 std::unique_ptr<Cell> &&under, std::unique_ptr<Cell> &&over,
48 std::unique_ptr<Cell> &&base);
49 SumCell(GroupCell *group, const SumCell &cell);
50 std::unique_ptr<Cell> Copy(GroupCell *group) const override;
51 const CellTypeInfo &GetInfo() override;
52
53 size_t GetInnerCellCount() const override { return 10; }
54 Cell *GetInnerCell(size_t index) const override {
55 switch (index) {
56 case 0:
57 return m_open.get();
58 case 1:
59 return m_paren.get();
60 case 2:
61 return m_comma1.get();
62 case 3:
63 return m_var.get();
64 case 4:
65 return m_comma2.get();
66 case 5:
67 return m_start.get();
68 case 6:
69 return m_comma3.get();
70 case 7:
71 return m_close.get();
72 case 8:
73 return m_over.get();
74 case 9:
75 return m_under.get();
76 default:
77 return nullptr;
78 }
79 }
80
81 void Recalculate(const AFontSize fontsize) const override;
82
84 void SetCurrentPoint(wxPoint point) override;
85 void Draw(wxDC *dc, wxDC *antialiassingDC) override;
86
87 wxString ToMathML() const override;
88 wxString ToMatlab() const override;
89 wxString ToOMML() const override;
90 wxString ToString() const override;
91 wxString ToTeX() const override;
92 wxString ToXML() const override;
93
94 void SetAltCopyText(const wxString &text) override { m_altCopyText = text; }
95 const wxString &GetAltCopyText() const override { return m_altCopyText; }
96
97 bool BreakUp() const override;
98 void SetNextToDraw(Cell *next) const override;
99 void Unbreak() const override final;
100
101protected:
103 virtual const wxString GetMaximaCommandName() const;
105 virtual const wxString GetMatlabCommandName() const;
107 virtual const wxString GetLaTeXCommandName() const;
109 virtual const wxString GetUnicodeSymbol() const;
111 virtual const wxString GetSvgSymbolData() const;
113 virtual const wxString GetXMLType() const;
115 virtual const wxSize GetSymbolSize() const;
117 Cell *Base() const;
118 Cell *Over() const {return m_over.get();}
119 Cell *Under() const {return m_under.get();}
120
121private:
122 std::unique_ptr<Cell> MakeStart(Cell *under) const;
123 void MakeBreakUpCells();
124 const static wxString m_svgSumSign;
125
126 ParenCell *Paren() const;
128 Cell *DisplayedBase() const;
129
131 wxString m_altCopyText;
132 // The pointers below point to inner cells and must be kept contiguous.
133 // ** This is the partial draw list order. All pointers must be the same:
134 // ** either Cell * or std::unique_ptr<Cell>. NO OTHER TYPES are allowed.
135 std::unique_ptr<Cell> m_open;
136 std::unique_ptr<Cell> m_paren;
137 std::unique_ptr<Cell> m_comma1;
138 std::unique_ptr<Cell> m_var;
139 std::unique_ptr<Cell> m_comma2;
140 std::unique_ptr<Cell> m_start;
141 std::unique_ptr<Cell> m_comma3;
142 std::unique_ptr<Cell> m_close;
143 std::unique_ptr<Cell> m_over;
144 std::unique_ptr<Cell> m_under;
145 // The pointers above point to inner cells and must be kept contiguous.
146
147 mutable wxSize m_signSize;
148
149//** Bitfield objects (1 bytes)
150//**
151 void InitBitFields_SumCell()
152 { // Keep the initialization order below same as the order
153 // of bit fields in this class!
154 m_displayParen = true;
155 }
156
158 mutable bool m_displayParen : 1 /* InitBitFields_SumCell */;
159};
160
161#endif // SUMCELL_H
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:97
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
virtual void SetCurrentPoint(wxPoint point)
Pass 2: Arrangement.
Definition: Cell.cpp:466
The configuration storage for the current worksheet.
Definition: Configuration.h:86
A cell grouping input (and, if there is one, also the output) cell to a foldable item.
Definition: GroupCell.h:87
The class that represents parenthesis that are wrapped around text.
Definition: ParenCell.h:50
Definition: SumCell.h:42
size_t GetInnerCellCount() const override
The number of inner cells - for use by the iterators.
Definition: SumCell.h:53
wxString ToMathML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: SumCell.cpp:326
wxString ToMatlab() const override
Convert this cell to its Matlab representation.
Definition: SumCell.cpp:262
virtual const wxString GetMaximaCommandName() const
What maxima command name corresponds to this cell?
Definition: SumCell.cpp:118
void SetNextToDraw(Cell *next) const override
Tells this cell which one should be the next cell to be drawn.
Definition: SumCell.cpp:382
bool BreakUp() const override
Try to split this command into lines to make it fit on the screen.
Definition: SumCell.cpp:357
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:147
std::unique_ptr< Cell > Copy(GroupCell *group) const override
Create a copy of this cell.
virtual const wxString GetMatlabCommandName() const
What matlab command name corresponds to this cell?
Definition: SumCell.cpp:132
wxString ToString() const override
Returns the cell's representation as a string.
Definition: SumCell.cpp:236
virtual const wxSize GetSymbolSize() const
How big do we want our svg symbol to be?
Definition: SumCell.cpp:108
const wxString & GetAltCopyText() const override
Get the text set using SetAltCopyText - may be empty.
Definition: SumCell.h:95
void SetCurrentPoint(wxPoint point) override
Pass 2: Arrangement.
Definition: SumCell.cpp:192
virtual const wxString GetLaTeXCommandName() const
What LaTeX command name corresponds to this cell?
Definition: SumCell.cpp:137
wxString ToTeX() const override
Convert this cell to its LaTeX representation.
Definition: SumCell.cpp:284
void Recalculate(const AFontSize fontsize) const override
Recalculate the size of the cell and the difference between top and center.
Definition: SumCell.cpp:155
void SetAltCopyText(const wxString &text) override
What should end up if placing this cell on the clipboard?
Definition: SumCell.h:94
wxString ToXML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: SumCell.cpp:317
void Unbreak() const override final
Undo breaking this cell into multiple lines.
Definition: SumCell.cpp:352
void Draw(wxDC *dc, wxDC *antialiassingDC) override
Pass 3 (Paint): Renders the cell using pre-calculated coordinates.
Definition: SumCell.cpp:214
Cell * GetInnerCell(size_t index) const override
Retrieve an inner cell with given index which must be less than GetInnerCellCount.
Definition: SumCell.h:54
virtual const wxString GetUnicodeSymbol() const
What unicode symbol name corresponds to this cell?
Definition: SumCell.cpp:142
virtual const wxString GetSvgSymbolData() const
Returns the data that creates our SVG symbol.
Definition: SumCell.cpp:126
Cell * Base() const
The base cell owned by the paren (it's without the paren)
Definition: SumCell.cpp:81
wxString ToOMML() const override
Returns the cell's representation as OMML.
Definition: SumCell.cpp:297
A Text cell.
Definition: TextCell.h:38