wxMaxima
Loading...
Searching...
No Matches
GroupCell.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) 2008-2015 Andrej Vodopivec <andrej.vodopivec@gmail.com>
4// (C) 2012 Doug Ilijev <doug.ilijev@gmail.com>
5// (C) 2014-2015 Gunter Königsmann <wxMaxima@physikbuch.de>
6//
7// This program is free software; you can redistribute it and/or modify
8// it under the terms of the GNU General Public License as published by
9// the Free Software Foundation; either version 2 of the License, or
10// (at your option) any later version.
11//
12// This program is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16//
17//
18// You should have received a copy of the GNU General Public License
19// along with this program; if not, write to the Free Software
20// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21//
22// SPDX-License-Identifier: GPL-2.0+
23
30#ifndef GROUPCELL_H
31#define GROUPCELL_H
32
33#include <utility>
34#include <memory>
35#include "Cell.h"
36#include "EditorCell.h"
37#include <unordered_map>
38
40// This enum's elements must be synchronized with (WXMFormat.h) WXMHeaderId.
41enum GroupType : int8_t
42{
43 GC_TYPE_INVALID = -1,
44 GC_TYPE_CODE = 0,
45 GC_TYPE_TITLE,
46 GC_TYPE_SECTION,
47 GC_TYPE_SUBSECTION,
48 GC_TYPE_SUBSUBSECTION,
49 GC_TYPE_HEADING5,
50 GC_TYPE_HEADING6,
51 GC_TYPE_TEXT,
52 GC_TYPE_IMAGE,
53 GC_TYPE_PAGEBREAK
54};
56std::ostream& operator<<(std::ostream& out, const GroupType grouptype);
57
86class GroupCell : public Cell
87{
88public:
91 GroupCell(Configuration *config, GroupType groupType,
92 const wxString &initString = {});
93 GroupCell(GroupCell const &cell);
94 GroupCell(GroupCell *group, const GroupCell &cell);
95 std::unique_ptr<Cell> Copy() const;
96 std::unique_ptr<Cell> Copy(GroupCell *group) const override;
97 const CellTypeInfo &GetInfo() override;
98 std::unique_ptr<GroupCell> CopyList() const;
99 virtual ~GroupCell();
100
101 wxCoord GetMaxDrop() const override;
102 wxCoord GetCenterList() const override;
103
104 // cppcheck-suppress duplInheritedMember
105 GroupCell *first() const { return dynamic_cast<GroupCell*>(Cell::first()); }
106 // cppcheck-suppress duplInheritedMember
107 GroupCell *last() const { return dynamic_cast<GroupCell*>(Cell::last()); }
108
109 const wxString &GetAnswer(size_t answer) const;
110 const wxString &GetAnswer(const wxString &question) const;
112 bool ContainsSavedAnswers() const { return !m_knownAnswers.empty(); }
114 bool AutoAnswer() const { return m_autoAnswer; }
115 void SetAutoAnswer(bool autoAnswer);
128 void SetAnswer(const wxString &question, const wxString &answer);
129
130 size_t GetInnerCellCount() const override { return (m_groupType == GC_TYPE_PAGEBREAK) ? 0 : 2; }
131 Cell *GetInnerCell(size_t index) const override {
132 switch (index) {
133 case 0:
134 return m_inputLabel.get();
135 case 1:
136 return m_output.get();
137 default:
138 return nullptr;
139 }
140 }
141
148
154 void CellUnderPointer(GroupCell *cell);
155
160 const wxString GetToolTip(wxPoint point) const override;
161
162 // general methods
163 GroupType GetGroupType() const { return m_groupType; }
164
165 void SetGroupType(GroupType groupType);
166
167 // selection methods
168 Range GetInnerCellsInRect(const wxRect &rect) const override;
169
170 Range GetCellsInOutput() const;
171
172 Range GetCellsInOutputRect(const wxRect &rect, wxPoint one, wxPoint two) const;
173
174 // methods for manipulating GroupCell
175 // cppcheck-suppress functionConst
176 bool SetEditableContent(const wxString &text);
177
178 void AppendOutput(std::unique_ptr<Cell> &&cell);
179
186 void RemoveOutput();
187
188 AFontSize EditorFontSize() const;
189
192
202 wxString ToTeX(const wxString &imgDir, const wxString &filename, std::size_t *imgCounter) const;
203
204 wxString ToRTF() const override;
205
206 wxString ToTeXCodeCell(const wxString &imgDir, const wxString &filename, std::size_t *imgCounter) const;
207
208 static wxString ToTeXImage(const Cell *tmp, const wxString &imgDir, const wxString &filename, std::size_t *imgCounter);
209
210 wxString ToTeX() const override;
211
212 wxString ToXML() const override;
213
214 void Hide(bool hide) override;
215 virtual bool FirstLineOnlyEditor() const override;
216 void SwitchHide();
217
218 wxRect HideRect() const;
219
220 // raw manipulation of GC (should be protected)
221 void SetInput(std::unique_ptr<Cell> &&input);
222
223 void SetOutput(std::unique_ptr<Cell> &&output);
224
225 void AppendInput(std::unique_ptr<Cell> &&cell);
226
228 // cppcheck-suppress duplInheritedMember
229 GroupCell *GetPrevious() const { return dynamic_cast<GroupCell *>(Cell::GetPrevious()); }
230
232 // cppcheck-suppress duplInheritedMember
233 GroupCell *GetNext() const { return dynamic_cast<GroupCell *>(Cell::GetNext()); }
234
235 static wxString TexEscapeOutputCell(wxString Input);
236
237 Cell *GetPrompt() const { return m_inputLabel.get(); }
238
239 EditorCell *GetEditable() const
240 { return m_inputLabel ? dynamic_cast<EditorCell *>(m_inputLabel->GetNext()) : nullptr; }
241
246 Cell *GetLabel() const { return m_output.get(); }
247
253 { return m_output ? m_output->GetNext() : nullptr; }
254
256 wxRect GetOutputRect() const { return m_outputRect; }
257
264 wxRect GetBracketRect() const;
265
272 void Recalculate(const AFontSize fontsize) const override {
273 if (fontsize.IsValid())
274 m_mathFontSize = fontsize;
275 else
276 m_mathFontSize = m_configuration->GetMathFontSize();
277 m_fontSize = m_mathFontSize;
278 Recalculate();
279 }
280 bool Recalculate() const;
281 bool Reposition() const;
283 bool NeedsRecalculation(AFontSize fontSize) const override;
285 void SetCurrentPoint(wxPoint point) const override;
286 wxPoint CalculateInputPosition() const;
287
289 void RecalculateInput() const;
290 wxRect GetRect(bool all = false) const override;
296 void RecalculateOutput() const;
297
305 Cell *DisplayedOutput() const;
306
308 void BreakLines() const;
309
315 void ResetInputLabel();
316
318 void ResetInputLabelList();
320
322 bool IsFoldable() const;
323
325 GroupCell *GetHiddenTree() const { return m_hiddenTree.get(); }
326
333 bool HideTree(std::unique_ptr<GroupCell> &&tree);
334
336 std::unique_ptr<GroupCell> UnhideTree();
337
344 bool RevealHidden();
345
347 void SetHiddenTreeParent(GroupCell *parent, GroupCell *last = nullptr);
348
354
359 GroupCell *Fold(); // returns pointer to this or NULL if not successful
364 GroupCell *Unfold();
365
371
377
383 bool IsLesserGCType(GroupType comparedTo) const;
384
386 bool IsMainInput(const Cell *active) const;
387
388 bool IsHeading() const;
390 bool SectioningCanMoveIn() const {return IsHeading() && (GetGroupType() != GC_TYPE_HEADING6);};
392 bool SectioningCanMoveOut() const {return IsHeading() && (GetGroupType() != GC_TYPE_TITLE);}
395
397 void Number(int &section, int &subsection, int &subsubsection, int &heading5, int &heading6, int &image) const;
398
410 void Draw(wxDC *dc, wxDC *antialiassingDC) override;
411
412 bool AddEnding() override;
413
415 void DrawBracket(wxDC *dc, wxDC *antialiassingDC);
416
418 bool Empty() const;
419
421 bool Contains(GroupCell *cell) const;
422
424 wxString ToString() const override;
425
427 void InEvaluationQueue(bool inQueue) { m_inEvaluationQueue = inQueue; }
428
430 void LastInEvaluationQueue(bool last) { m_lastInEvaluationQueue = last; }
431
433 void OnSize();
434
436 void InputHeightChanged();
437
439 void OutputHeightChanged();
440
441 typedef std::unordered_map <wxString, int, wxStringHash> CmdsAndVariables;
442
444 std::vector<std::pair<wxString, wxString>> m_knownAnswers;
445
446#if wxUSE_ACCESSIBILITY
447 wxAccStatus GetName (int childId, wxString *name) const override;
448 wxAccStatus GetDescription(int childId, wxString *description) const override;
449 wxAccStatus GetLocation (wxRect &rect, int elementId) override;
450 wxAccStatus GetRole (int childId, wxAccRole *role) const override;
451#endif
452
454 void UpdateYPosition() const;
455
456 void UpdateOutputPositions() const;
457
458 void UpdateYPositionList() const;
459
460 bool GetSuppressTooltipMarker() const { return m_suppressTooltipMarker; }
461 void SetSuppressTooltipMarker(bool suppress) { m_suppressTooltipMarker = suppress; }
462
463protected:
464 wxCoord GetInputIndent() const;
465 void UpdateCellsInGroup();
466
467//** 16-byte objects (16 bytes)
468//**
475 mutable wxRect m_outputRect{-1, -1, 0, 0};
476
477//** 8/4 byte objects (40 bytes)
478//**
479 DocumentCellPointers *const m_documentCellPointers = GetDocumentCellPointers();
480 ViewCellPointers *const m_viewCellPointers = GetViewCellPointers();
481
482 std::unique_ptr<GroupCell> m_hiddenTree;
484
485 // The pointers below point to inner cells and must be kept contiguous.
486 // ** All pointers must be the same: either Cell * or std::unique_ptr<Cell>.
487 // ** NO OTHER TYPES are allowed.
489 std::unique_ptr<Cell> m_inputLabel;
491 std::unique_ptr<Cell> m_output;
492 // The pointers above point to inner cells and must be kept contiguous.
493
503 mutable std::unique_ptr<Cell> m_layoutSuppressedNotice;
504
505//** 4-byte objects (16 bytes)
506//**
509 mutable int m_labelWidth_cached = 0;
512 mutable int m_inputWidth, m_inputHeight;
513protected:
514//** 2-byte objects (6 bytes)
515//**
517 int16_t m_cellsInGroup = 1;
518 mutable int16_t m_numberedAnswersCount = 0;
519
520 mutable AFontSize m_mathFontSize;
521
522//** 1-byte objects (1 byte)
523//**
526
527//** Bitfield objects (1 bytes)
528//**
529 void InitBitFields_GroupCell()
530 { // Keep the initialization order below same as the order
531 // of bit fields in this class!
532 m_autoAnswer = false;
533 m_inEvaluationQueue = false;
534 m_lastInEvaluationQueue = false;
535 m_updateConfusableCharWarnings = true;
537 m_cellsAppended = false;
538 m_layoutSuppressed = false;
539 }
540
542 bool m_autoAnswer : 1 /* InitBitFields_GroupCell */;
543 bool m_inEvaluationQueue : 1 /* InitBitFields_GroupCell */;
544 bool m_lastInEvaluationQueue : 1 /* InitBitFields_GroupCell */;
545 bool m_updateConfusableCharWarnings : 1 /* InitBitFields_GroupCell */;
547 bool m_suppressTooltipMarker : 1 /* InitBitFields_GroupCell */;
550 mutable bool m_cellsAppended : 1 /* InitBitFields_GroupCell */;
557 mutable bool m_layoutSuppressed : 1 /* InitBitFields_GroupCell */;
558
559 static wxString m_lookalikeChars;
560};
561
562#endif /* GROUPCELL_H */
The definition of the base class of all cells the worksheet consists of.
This file contains the definition of the class EditorCell.
std::ostream & operator<<(std::ostream &out, const GroupType grouptype)
Allow Standard c++ streams to print out our enum values as text.
Definition: GroupCell.cpp:2086
GroupType
All types a GroupCell can be of.
Definition: GroupCell.h:42
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
Cell * GetNext() const
Get the next cell in the list.
Definition: Cell.h:738
Cell * GetPrevious() const
Returns a pointer to the previous cell in the current cell list.
Definition: Cell.h:735
Cell * last() const
Get the last cell in this list of cells.
Definition: Cell.cpp:1310
AFontSize m_fontSize
The unscaled font size.
Definition: Cell.h:1121
Configuration * m_configuration
A pointer to the configuration responsible for this worksheet.
Definition: Cell.h:1076
DocumentCellPointers * GetDocumentCellPointers() const
The document-model half of the cell-pointer registry this cell uses.
Definition: Cell.cpp:71
virtual void SetCurrentPoint(wxPoint point) const
Pass 2: Arrangement.
Definition: Cell.cpp:503
ViewCellPointers * GetViewCellPointers() const
The transient view-state half of the cell-pointer registry this cell uses.
Definition: Cell.cpp:75
bool NeedsRecalculation() const
True, if something that affects the cell size has changed.
Definition: Cell.h:513
Cell * first() const
Get the first cell in this list of cells.
Definition: Cell.cpp:1301
The configuration storage for the current worksheet.
Definition: Configuration.h:98
The document-model half of the cell-pointer registry.
Definition: CellPointers.h:50
This class defines what the user sees as input cell.
Definition: EditorCell.h:60
A cell grouping input (and, if there is one, also the output) cell to a foldable item.
Definition: GroupCell.h:87
wxCoord GetMaxDrop() const override
Returns the maximum distance between center and bottom of this line.
Definition: GroupCell.cpp:869
bool ContainsSavedAnswers() const
Does this GroupCell know the answer to any of maxima's questions?
Definition: GroupCell.h:112
void Draw(wxDC *dc, wxDC *antialiassingDC) override
Draw this GroupCell.
Definition: GroupCell.cpp:790
bool Contains(GroupCell *cell) const
Does this tree contain the cell "cell"?
Definition: GroupCell.cpp:1886
void Hide(bool hide) override
Hide this cell. See IsHidden() for details.
Definition: GroupCell.cpp:1598
GroupCell * m_hiddenTreeParent
store linkage to the parent of the fold
Definition: GroupCell.h:483
std::vector< std::pair< wxString, wxString > > m_knownAnswers
A list of answers provided by the user.
Definition: GroupCell.h:444
bool IsFoldable() const
folding and unfolding
Definition: GroupCell.cpp:205
void BreakLines() const
Break this cell into lines.
Definition: GroupCell.cpp:1562
Cell * DisplayedOutput() const
The cell list to lay out and draw as this group's output.
Definition: GroupCell.cpp:647
virtual bool FirstLineOnlyEditor() const override
True, if this GroupCell is folded and its editor shows only its first line.
Definition: GroupCell.cpp:1592
bool RevealHidden()
Unfold all that is needed to make the current cell seen.
Definition: GroupCell.cpp:1662
void CellUnderPointer(GroupCell *cell)
Marks the cell that is under the mouse pointer.
Definition: GroupCell.cpp:865
void Number(int &section, int &subsection, int &subsubsection, int &heading5, int &heading6, int &image) const
Return this cell's section- or image number.
Definition: GroupCell.cpp:1806
GroupType m_groupType
Which type this cell is of?
Definition: GroupCell.h:525
void UpdateOutputPositions() const
Pass 2 (Arrange): Calculates positions for all cells in the output.
Definition: GroupCell.cpp:731
void OutputHeightChanged()
Reset the data when the output size changes.
Definition: GroupCell.cpp:469
bool NeedsRecalculation(AFontSize fontSize) const override
True, if something that affects the cell size has changed.
Definition: GroupCell.cpp:666
wxRect GetBracketRect() const
The on-screen rectangle occupied by this cell's bracket.
Definition: GroupCell.cpp:877
wxRect m_outputRect
Bounding rectangle of this group's output (results) area, in worksheet coordinates.
Definition: GroupCell.h:475
GroupCell * GetHiddenTree() const
Get the tree of cells that got hidden by folding this cell.
Definition: GroupCell.h:325
std::unique_ptr< GroupCell > UnhideTree()
Unfold the current cell.
Definition: GroupCell.cpp:1648
wxString ToTeX() const override
Convert this cell to its LaTeX representation.
Definition: GroupCell.cpp:1086
bool m_autoAnswer
Does this GroupCell automatically fill in the answer to questions?
Definition: GroupCell.h:542
size_t GetInnerCellCount() const override
The number of inner cells - for use by the iterators.
Definition: GroupCell.h:130
wxString ToRTF() const override
Returns the cell's representation as RTF.
Definition: GroupCell.cpp:1090
void DrawBracket(wxDC *dc, wxDC *antialiassingDC)
Draw the bracket of this cell.
Definition: GroupCell.cpp:886
void RemoveOutput()
Remove all output cells attached to this one.
Definition: GroupCell.cpp:307
Cell * GetLabel() const
Returns the list of cells the output consists of, starting with the label.
Definition: GroupCell.h:246
void MarkNeedsRecalculate()
Mark this group as needing a recalculation.
Definition: GroupCell.cpp:242
const wxString GetToolTip(wxPoint point) const override
Returns the tooltip for the element at the position point.
Definition: GroupCell.cpp:1514
Range GetInnerCellsInRect(const wxRect &rect) const override
Select the cells inside this cell described by the rectangle rect.
Definition: GroupCell.cpp:1456
std::unique_ptr< Cell > m_inputLabel
The input label of this cell. Is followed by the input of the cell.
Definition: GroupCell.h:489
std::unique_ptr< Cell > Copy(GroupCell *group) const override
Create a copy of this cell.
int m_inputWidth
Width and height of this group's input area (input label plus editor), computed by RecalculateInput()...
Definition: GroupCell.h:512
wxRect GetRect(bool all=false) const override
Get the smallest rectangle this cell fits in.
Definition: GroupCell.cpp:853
GroupCell * SectioningUnitGetEndOf() const
Get the end of this section/subsection/...
void UpdateConfusableCharWarnings()
GroupCells warn if they contain both greek and latin lookalike chars.
Definition: GroupCell.cpp:366
const CellTypeInfo & GetInfo() override
Returns the information about this cell's type.
void RecalculateInput() const
Recalculate the height of the input part of the cell.
Definition: GroupCell.cpp:496
void SetHiddenTreeParent(GroupCell *parent, GroupCell *last=nullptr)
Set the parent cell of hidden cells.
Definition: GroupCell.cpp:1675
void InputHeightChanged()
Reset the data when the input size changes.
Definition: GroupCell.cpp:448
bool m_cellsAppended
Output cells were appended since the last layout, so a recalculation is needed (see NeedsRecalculatio...
Definition: GroupCell.h:550
void ResetInputLabel()
Reset the input label of the current cell.
Definition: GroupCell.cpp:189
void Recalculate(const AFontSize fontsize) const override
Recalculates the size of this GroupCell and all cells inside it if needed.
Definition: GroupCell.h:272
bool Empty() const
Is this list of cells empty?
Definition: GroupCell.cpp:181
wxRect GetOutputRect() const
Determine which rectangle is occupied by this GroupCell.
Definition: GroupCell.h:256
bool SectioningCanMoveIn() const
Can this chapter/section/... converted to a 'smaller' cell, e.g. section->subsection,...
Definition: GroupCell.h:390
wxCoord GetCenterList() const override
Returns the maximum distance between top and center of this line.
Definition: GroupCell.cpp:873
void OnSize()
Called on MathCtrl resize.
Definition: GroupCell.cpp:484
GroupCell * Fold()
Fold this cell.
Definition: GroupCell.cpp:1683
void SetAnswer(const wxString &question, const wxString &answer)
Add a new answer to the cell.
Definition: GroupCell.cpp:249
void InEvaluationQueue(bool inQueue)
Is this cell part of the evaluation Queue?
Definition: GroupCell.h:427
int16_t m_cellsInGroup
The number of cells the current group contains (-1, if no GroupCell)
Definition: GroupCell.h:517
bool SectioningCanMoveOut() const
Can this chapter/section/... converted to a 'larger' cell, e.g. subsection->section,...
Definition: GroupCell.h:392
void UpdateYPosition() const
Recalculate the cell's y position using the position and height of the last one.
GroupCell * UnfoldAll()
Unfold all cells.
Definition: GroupCell.cpp:1746
GroupCell * GetHiddenTreeParent() const
The cell this cell is hidden inside, if it is part of a folded subtree.
Definition: GroupCell.h:353
Cell * GetOutput() const
Returns the list of cells the output consists of, starting after the label.
Definition: GroupCell.h:252
bool HideTree(std::unique_ptr< GroupCell > &&tree)
Fold the current cell.
Definition: GroupCell.cpp:1628
int m_labelWidth_cached
Cache of the last width computed by GetInputIndent(); reused as the input indent while the input labe...
Definition: GroupCell.h:509
std::unique_ptr< GroupCell > m_hiddenTree
here hidden (folded) tree of GCs is stored
Definition: GroupCell.h:482
void LastInEvaluationQueue(bool last)
Is this cell the last cell in the evaluation Queue?
Definition: GroupCell.h:430
wxString ToString() const override
A textual representation of this cell.
Definition: GroupCell.cpp:1058
void SetCurrentPoint(wxPoint point) const override
Pass 2 (Arrange): Sets the GroupCell position and triggers child layout.
Definition: GroupCell.cpp:774
bool AutoAnswer() const
Does this GroupCell save the answer to a question?
Definition: GroupCell.h:114
GroupCell * GetLastWorkingGroup() const
Which GroupCell was the last maxima was working on?
Definition: GroupCell.cpp:261
GroupCell * GetPrevious() const
Get the previous GroupCell in the list.
Definition: GroupCell.h:229
std::unique_ptr< Cell > m_layoutSuppressedNotice
Cached placeholder shown instead of the output while layout is suppressed.
Definition: GroupCell.h:503
bool AddEnding() override
Add a semicolon to a code cell, if needed.
Definition: GroupCell.cpp:849
GroupCell * GetNext() const
Get the next GroupCell in the list.
Definition: GroupCell.h:233
bool m_layoutSuppressed
Laying out this group's output exceeded the configured deadline.
Definition: GroupCell.h:557
Cell * GetInnerCell(size_t index) const override
Retrieve an inner cell with given index which must be less than GetInnerCellCount.
Definition: GroupCell.h:131
wxString ToXML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: GroupCell.cpp:1331
void RecalculateOutput() const
Recalculate the height of the output part of the cell.
Definition: GroupCell.cpp:578
void ResetInputLabelList()
Call ResetInputLabel() on all cells in the list of cells this GroupCell starts with.
Definition: GroupCell.cpp:196
GroupCell * Unfold()
Unfold this cell.
Definition: GroupCell.cpp:1720
std::unique_ptr< Cell > m_output
The maxima output this cell contains.
Definition: GroupCell.h:491
bool IsLesserGCType(GroupType comparedTo) const
Document structure: Can this cell type be part of the contents of comparedTo?
Definition: GroupCell.cpp:1759
bool m_suppressTooltipMarker
Suppress the yellow ToolTip marker?
Definition: GroupCell.h:547
GroupCell * FoldAll()
Fold all cells.
Definition: GroupCell.cpp:1731
The view/interaction half of the cell-pointer registry.
Definition: CellPointers.h:187