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 <vector>
36#include "Cell.h"
37#include "EditorCell.h"
38#include <unordered_map>
39
41// This enum's elements must be synchronized with (WXMFormat.h) WXMHeaderId.
42enum GroupType : int8_t
43{
44 GC_TYPE_INVALID = -1,
45 GC_TYPE_CODE = 0,
46 GC_TYPE_TITLE,
47 GC_TYPE_SECTION,
48 GC_TYPE_SUBSECTION,
49 GC_TYPE_SUBSUBSECTION,
50 GC_TYPE_HEADING5,
51 GC_TYPE_HEADING6,
52 GC_TYPE_TEXT,
53 GC_TYPE_IMAGE,
54 GC_TYPE_PAGEBREAK
55};
57std::ostream& operator<<(std::ostream& out, const GroupType grouptype);
58
87class GroupCell : public Cell
88{
89public:
92 GroupCell(Configuration *config, GroupType groupType,
93 const wxString &initString = {});
94 GroupCell(GroupCell const &cell);
95 GroupCell(GroupCell *group, const GroupCell &cell);
96 std::unique_ptr<Cell> Copy() const;
97 std::unique_ptr<Cell> Copy(GroupCell *group) const override;
98 const CellTypeInfo &GetInfo() override;
99 std::unique_ptr<GroupCell> CopyList() const;
100 virtual ~GroupCell();
101
102 wxCoord GetMaxDrop() const override;
103 wxCoord GetCenterList() const override;
104
105 // cppcheck-suppress duplInheritedMember
106 GroupCell *first() const { return dynamic_cast<GroupCell*>(Cell::first()); }
107 // cppcheck-suppress duplInheritedMember
108 GroupCell *last() const { return dynamic_cast<GroupCell*>(Cell::last()); }
109
110 const wxString &GetAnswer(size_t answer) const;
111 const wxString &GetAnswer(const wxString &question) const;
113 bool ContainsSavedAnswers() const { return !m_knownAnswers.empty(); }
115 bool AutoAnswer() const { return m_autoAnswer; }
116 void SetAutoAnswer(bool autoAnswer);
129 void SetAnswer(const wxString &question, const wxString &answer);
130
131 size_t GetInnerCellCount() const override { return (m_groupType == GC_TYPE_PAGEBREAK) ? 0 : 2; }
132 Cell *GetInnerCell(size_t index) const override {
133 switch (index) {
134 case 0:
135 return m_inputLabel.get();
136 case 1:
137 return m_output.get();
138 default:
139 return nullptr;
140 }
141 }
142
149
155 void CellUnderPointer(GroupCell *cell);
156
161 const wxString GetToolTip(wxPoint point) const override;
162
163 // general methods
164 GroupType GetGroupType() const { return m_groupType; }
165
166 void SetGroupType(GroupType groupType);
167
168 // selection methods
169 Range GetInnerCellsInRect(const wxRect &rect) const override;
170
171 Range GetCellsInOutput() const;
172
173 Range GetCellsInOutputRect(const wxRect &rect, wxPoint one, wxPoint two) const;
174
175 // methods for manipulating GroupCell
176 // cppcheck-suppress functionConst
177 bool SetEditableContent(const wxString &text);
178
179 void AppendOutput(std::unique_ptr<Cell> &&cell);
180
187 void RemoveOutput();
188
189 AFontSize EditorFontSize() const;
190
193
203 wxString ToTeX(const wxString &imgDir, const wxString &filename, std::size_t *imgCounter) const;
204
205 wxString ToRTF() const override;
206
207 wxString ToTeXCodeCell(const wxString &imgDir, const wxString &filename, std::size_t *imgCounter) const;
208
209 static wxString ToTeXImage(const Cell *tmp, const wxString &imgDir, const wxString &filename, std::size_t *imgCounter);
210
217 static wxString ToTeXAnimation(const Cell *tmp, const wxString &imgDir, const wxString &filename, std::size_t *imgCounter);
218
219 wxString ToTeX() const override;
220
221 wxString ToXML() const override;
222
223 void Hide(bool hide) override;
224 virtual bool FirstLineOnlyEditor() const override;
225 void SwitchHide();
226
227 wxRect HideRect() const;
228
237 wxCoord BracketColumnLeft() const;
238
240 wxCoord ContentColumnRight() const;
241
244 wxCoord label = 0;
245 wxCoord rest = 0;
246 };
247
249 static bool IsOutputLabel(const Cell &cell);
250
256 static std::vector<OutputLineWidths> MeasureOutputLines(Cell *displayed);
257
265 wxPoint CalculateLabelPosition() const;
266
267 // raw manipulation of GC (should be protected)
268 void SetInput(std::unique_ptr<Cell> &&input);
269
270 void SetOutput(std::unique_ptr<Cell> &&output);
271
272 void AppendInput(std::unique_ptr<Cell> &&cell);
273
275 // cppcheck-suppress duplInheritedMember
276 GroupCell *GetPrevious() const { return dynamic_cast<GroupCell *>(Cell::GetPrevious()); }
277
279 // cppcheck-suppress duplInheritedMember
280 GroupCell *GetNext() const { return dynamic_cast<GroupCell *>(Cell::GetNext()); }
281
282 static wxString TexEscapeOutputCell(wxString Input);
283
284 Cell *GetPrompt() const { return m_inputLabel.get(); }
285
286 EditorCell *GetEditable() const
287 { return m_inputLabel ? dynamic_cast<EditorCell *>(m_inputLabel->GetNext()) : nullptr; }
288
293 Cell *GetLabel() const { return m_output.get(); }
294
300 { return m_output ? m_output->GetNext() : nullptr; }
301
303 wxRect GetOutputRect() const { return m_outputRect; }
304
311 wxRect GetBracketRect() const;
312
319 void Recalculate(const AFontSize fontsize) const override {
320 if (fontsize.IsValid())
321 m_mathFontSize = fontsize;
322 else
323 m_mathFontSize = m_configuration->GetMathFontSize();
324 m_fontSize = m_mathFontSize;
325 Recalculate();
326 }
327 bool Recalculate() const;
328 bool Reposition() const;
330 bool NeedsRecalculation(AFontSize fontSize) const override;
332 void SetCurrentPoint(wxPoint point) const override;
333 wxPoint CalculateInputPosition() const;
334
336 void RecalculateInput() const;
337 wxRect GetRect(bool all = false) const override;
343 void RecalculateOutput() const;
344
352 Cell *DisplayedOutput() const;
353
355 void BreakLines() const;
356
362 void ResetInputLabel();
363
365 void ResetInputLabelList();
367
369 bool IsFoldable() const;
370
372 GroupCell *GetHiddenTree() const { return m_hiddenTree.get(); }
373
380 bool HideTree(std::unique_ptr<GroupCell> &&tree);
381
383 std::unique_ptr<GroupCell> UnhideTree();
384
391 bool RevealHidden();
392
394 void SetHiddenTreeParent(GroupCell *parent, GroupCell *last = nullptr);
395
401
406 GroupCell *Fold(); // returns pointer to this or NULL if not successful
411 GroupCell *Unfold();
412
420 GroupCell *FoldAll(std::vector<GroupCell *> *affected = nullptr);
421
429 GroupCell *UnfoldAll(std::vector<GroupCell *> *affected = nullptr);
430
436 bool IsLesserGCType(GroupType comparedTo) const;
437
439 bool IsMainInput(const Cell *active) const;
440
441 bool IsHeading() const;
443 bool SectioningCanMoveIn() const {return IsHeading() && (GetGroupType() != GC_TYPE_HEADING6);};
445 bool SectioningCanMoveOut() const {return IsHeading() && (GetGroupType() != GC_TYPE_TITLE);}
448
450 void Number(int &section, int &subsection, int &subsubsection, int &heading5, int &heading6, int &image) const;
451
463 void Draw(wxDC *dc, wxDC *antialiassingDC) override;
464
465 bool AddEnding() override;
466
468 void DrawBracket(wxDC *dc, wxDC *antialiassingDC);
469
471 bool Empty() const;
472
474 bool Contains(GroupCell *cell) const;
475
477 wxString ToString() const override;
478
480 void InEvaluationQueue(bool inQueue) { m_inEvaluationQueue = inQueue; }
481
483 void LastInEvaluationQueue(bool last) { m_lastInEvaluationQueue = last; }
484
486 void OnSize();
487
489 void InputHeightChanged();
490
492 void OutputHeightChanged();
493
494 typedef std::unordered_map <wxString, int, wxStringHash> CmdsAndVariables;
495
497 std::vector<std::pair<wxString, wxString>> m_knownAnswers;
498
499#if wxUSE_ACCESSIBILITY
500 wxAccStatus GetName (int childId, wxString *name) const override;
501 wxAccStatus GetDescription(int childId, wxString *description) const override;
502 wxAccStatus GetLocation (wxRect &rect, int elementId) override;
503 wxAccStatus GetRole (int childId, wxAccRole *role) const override;
504#endif
505
507 void UpdateYPosition() const;
508
509 void UpdateOutputPositions() const;
510
511 void UpdateYPositionList() const;
512
513 bool GetSuppressTooltipMarker() const { return m_suppressTooltipMarker; }
514 void SetSuppressTooltipMarker(bool suppress) { m_suppressTooltipMarker = suppress; }
515
516protected:
517 wxCoord GetInputIndent() const;
518 void UpdateCellsInGroup();
519
520//** 16-byte objects (16 bytes)
521//**
528 mutable wxRect m_outputRect{-1, -1, 0, 0};
529
530//** 8/4 byte objects (40 bytes)
531//**
532 DocumentCellPointers *const m_documentCellPointers = GetDocumentCellPointers();
533 ViewCellPointers *const m_viewCellPointers = GetViewCellPointers();
534
535 std::unique_ptr<GroupCell> m_hiddenTree;
537
538 // The pointers below point to inner cells and must be kept contiguous.
539 // ** All pointers must be the same: either Cell * or std::unique_ptr<Cell>.
540 // ** NO OTHER TYPES are allowed.
542 std::unique_ptr<Cell> m_inputLabel;
544 std::unique_ptr<Cell> m_output;
545 // The pointers above point to inner cells and must be kept contiguous.
546
556 mutable std::unique_ptr<Cell> m_layoutSuppressedNotice;
557
558//** 4-byte objects (16 bytes)
559//**
562 mutable int m_labelWidth_cached = 0;
565 mutable int m_inputWidth, m_inputHeight;
566protected:
567//** 2-byte objects (6 bytes)
568//**
570 int16_t m_cellsInGroup = 1;
571 mutable int16_t m_numberedAnswersCount = 0;
572
573 mutable AFontSize m_mathFontSize;
574
575//** 1-byte objects (1 byte)
576//**
579
580//** Bitfield objects (1 bytes)
581//**
583 bool m_autoAnswer : 1 = false;
584 bool m_inEvaluationQueue : 1 = false;
585 bool m_lastInEvaluationQueue : 1 = false;
586 bool m_updateConfusableCharWarnings : 1 = true;
588 bool m_suppressTooltipMarker : 1 = false;
591 mutable bool m_cellsAppended : 1 = false;
598 mutable bool m_layoutSuppressed : 1 = false;
599
600 static wxString m_lookalikeChars;
601};
602
603#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:2341
GroupType
All types a GroupCell can be of.
Definition: GroupCell.h:43
A Type-Safe Fixed-Point Font Size.
Definition: FontAttribs.h:99
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:148
Cell * GetNext() const
Get the next cell in the list.
Definition: Cell.h:803
Cell * GetPrevious() const
Returns a pointer to the previous cell in the current cell list.
Definition: Cell.h:800
Cell * last() const
Get the last cell in this list of cells.
Definition: Cell.cpp:1376
AFontSize m_fontSize
The unscaled font size.
Definition: Cell.h:1183
Configuration * m_configuration
A pointer to the configuration responsible for this worksheet.
Definition: Cell.h:1138
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:514
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:549
Cell * first() const
Get the first cell in this list of cells.
Definition: Cell.cpp:1367
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:62
A cell grouping input (and, if there is one, also the output) cell to a foldable item.
Definition: GroupCell.h:88
wxCoord GetMaxDrop() const override
Returns the maximum distance between center and bottom of this line.
Definition: GroupCell.cpp:960
bool ContainsSavedAnswers() const
Does this GroupCell know the answer to any of maxima's questions?
Definition: GroupCell.h:113
void Draw(wxDC *dc, wxDC *antialiassingDC) override
Draw this GroupCell.
Definition: GroupCell.cpp:881
bool Contains(GroupCell *cell) const
Does this tree contain the cell "cell"?
Definition: GroupCell.cpp:2141
void Hide(bool hide) override
Hide this cell. See IsHidden() for details.
Definition: GroupCell.cpp:1849
GroupCell * m_hiddenTreeParent
store linkage to the parent of the fold
Definition: GroupCell.h:536
std::vector< std::pair< wxString, wxString > > m_knownAnswers
A list of answers provided by the user.
Definition: GroupCell.h:497
bool IsFoldable() const
folding and unfolding
Definition: GroupCell.cpp:204
void BreakLines() const
Break this cell into lines.
Definition: GroupCell.cpp:1813
Cell * DisplayedOutput() const
The cell list to lay out and draw as this group's output.
Definition: GroupCell.cpp:641
virtual bool FirstLineOnlyEditor() const override
True, if this GroupCell is folded and its editor shows only its first line.
Definition: GroupCell.cpp:1843
bool RevealHidden()
Unfold all that is needed to make the current cell seen.
Definition: GroupCell.cpp:1913
void CellUnderPointer(GroupCell *cell)
Marks the cell that is under the mouse pointer.
Definition: GroupCell.cpp:956
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:2061
GroupType m_groupType
Which type this cell is of?
Definition: GroupCell.h:578
wxPoint CalculateLabelPosition() const
Where this group cell's label (the "(%i1)", or a section's number) goes.
Definition: GroupCell.cpp:712
void OutputHeightChanged()
Reset the data when the output size changes.
Definition: GroupCell.cpp:467
wxCoord BracketColumnLeft() const
The left edge of the gutter column the cell bracket is drawn in.
Definition: GroupCell.cpp:706
bool NeedsRecalculation(AFontSize fontSize) const override
True, if something that affects the cell size has changed.
Definition: GroupCell.cpp:660
wxRect GetBracketRect() const
The on-screen rectangle occupied by this cell's bracket.
Definition: GroupCell.cpp:968
wxRect m_outputRect
Bounding rectangle of this group's output (results) area, in worksheet coordinates.
Definition: GroupCell.h:528
GroupCell * GetHiddenTree() const
Get the tree of cells that got hidden by folding this cell.
Definition: GroupCell.h:372
std::unique_ptr< GroupCell > UnhideTree()
Unfold the current cell.
Definition: GroupCell.cpp:1899
static bool IsOutputLabel(const Cell &cell)
Is this output cell one of the labels that start a line, like "(%o1)"?
Definition: GroupCell.cpp:759
wxString ToTeX() const override
Convert this cell to its LaTeX representation.
Definition: GroupCell.cpp:1179
bool m_autoAnswer
Does this GroupCell automatically fill in the answer to questions?
Definition: GroupCell.h:583
size_t GetInnerCellCount() const override
The number of inner cells - for use by the iterators.
Definition: GroupCell.h:131
wxString ToRTF() const override
Returns the cell's representation as RTF.
Definition: GroupCell.cpp:1183
void DrawBracket(wxDC *dc, wxDC *antialiassingDC)
Draw the bracket of this cell.
Definition: GroupCell.cpp:976
void RemoveOutput()
Remove all output cells attached to this one.
Definition: GroupCell.cpp:305
Cell * GetLabel() const
Returns the list of cells the output consists of, starting with the label.
Definition: GroupCell.h:293
void MarkNeedsRecalculate()
Mark this group as needing a recalculation.
Definition: GroupCell.cpp:241
const wxString GetToolTip(wxPoint point) const override
Returns the tooltip for the element at the position point.
Definition: GroupCell.cpp:1765
Range GetInnerCellsInRect(const wxRect &rect) const override
Select the cells inside this cell described by the rectangle rect.
Definition: GroupCell.cpp:1707
std::unique_ptr< Cell > m_inputLabel
The input label of this cell. Is followed by the input of the cell.
Definition: GroupCell.h:542
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:565
wxRect GetRect(bool all=false) const override
Get the smallest rectangle this cell fits in.
Definition: GroupCell.cpp:944
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:364
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:494
void SetHiddenTreeParent(GroupCell *parent, GroupCell *last=nullptr)
Set the parent cell of hidden cells.
Definition: GroupCell.cpp:1926
void InputHeightChanged()
Reset the data when the input size changes.
Definition: GroupCell.cpp:446
bool m_cellsAppended
Output cells were appended since the last layout, so a recalculation is needed (see NeedsRecalculatio...
Definition: GroupCell.h:591
void ResetInputLabel()
Reset the input label of the current cell.
Definition: GroupCell.cpp:188
static std::vector< OutputLineWidths > MeasureOutputLines(Cell *displayed)
The width of every line of output, so a line can be placed before it is walked.
Definition: GroupCell.cpp:765
wxCoord ContentColumnRight() const
The x just past the right edge of the content column. See the definition.
Definition: GroupCell.cpp:701
void Recalculate(const AFontSize fontsize) const override
Recalculates the size of this GroupCell and all cells inside it if needed.
Definition: GroupCell.h:319
bool Empty() const
Is this list of cells empty?
Definition: GroupCell.cpp:180
wxRect GetOutputRect() const
Determine which rectangle is occupied by this GroupCell.
Definition: GroupCell.h:303
bool SectioningCanMoveIn() const
Can this chapter/section/... converted to a 'smaller' cell, e.g. section->subsection,...
Definition: GroupCell.h:443
wxCoord GetCenterList() const override
Returns the maximum distance between top and center of this line.
Definition: GroupCell.cpp:964
void OnSize()
Called on MathCtrl resize.
Definition: GroupCell.cpp:482
static wxString ToTeXAnimation(const Cell *tmp, const wxString &imgDir, const wxString &filename, std::size_t *imgCounter)
Write an animation's frames as images and emit an \animategraphics for it.
Definition: GroupCell.cpp:1541
GroupCell * Fold()
Fold this cell.
Definition: GroupCell.cpp:1934
void SetAnswer(const wxString &question, const wxString &answer)
Add a new answer to the cell.
Definition: GroupCell.cpp:248
void InEvaluationQueue(bool inQueue)
Is this cell part of the evaluation Queue?
Definition: GroupCell.h:480
int16_t m_cellsInGroup
The number of cells the current group contains (-1, if no GroupCell)
Definition: GroupCell.h:570
GroupCell * UnfoldAll(std::vector< GroupCell * > *affected=nullptr)
Unfold all cells.
Definition: GroupCell.cpp:1999
bool SectioningCanMoveOut() const
Can this chapter/section/... converted to a 'larger' cell, e.g. subsection->section,...
Definition: GroupCell.h:445
void UpdateYPosition() const
Recalculate the cell's y position using the position and height of the last one.
GroupCell * GetHiddenTreeParent() const
The cell this cell is hidden inside, if it is part of a folded subtree.
Definition: GroupCell.h:400
Cell * GetOutput() const
Returns the list of cells the output consists of, starting after the label.
Definition: GroupCell.h:299
bool HideTree(std::unique_ptr< GroupCell > &&tree)
Fold the current cell.
Definition: GroupCell.cpp:1879
int m_labelWidth_cached
Cache of the last width computed by GetInputIndent(); reused as the input indent while the input labe...
Definition: GroupCell.h:562
std::unique_ptr< GroupCell > m_hiddenTree
here hidden (folded) tree of GCs is stored
Definition: GroupCell.h:535
void LastInEvaluationQueue(bool last)
Is this cell the last cell in the evaluation Queue?
Definition: GroupCell.h:483
wxString ToString() const override
A textual representation of this cell.
Definition: GroupCell.cpp:1151
void SetCurrentPoint(wxPoint point) const override
Pass 2 (Arrange): Sets the GroupCell position and triggers child layout.
Definition: GroupCell.cpp:865
bool AutoAnswer() const
Does this GroupCell save the answer to a question?
Definition: GroupCell.h:115
GroupCell * GetLastWorkingGroup() const
Which GroupCell was the last maxima was working on?
Definition: GroupCell.cpp:260
GroupCell * GetPrevious() const
Get the previous GroupCell in the list.
Definition: GroupCell.h:276
std::unique_ptr< Cell > m_layoutSuppressedNotice
Cached placeholder shown instead of the output while layout is suppressed.
Definition: GroupCell.h:556
bool AddEnding() override
Add a semicolon to a code cell, if needed.
Definition: GroupCell.cpp:940
GroupCell * GetNext() const
Get the next GroupCell in the list.
Definition: GroupCell.h:280
bool m_layoutSuppressed
Laying out this group's output exceeded the configured deadline.
Definition: GroupCell.h:598
Cell * GetInnerCell(size_t index) const override
Retrieve an inner cell with given index which must be less than GetInnerCellCount.
Definition: GroupCell.h:132
wxString ToXML() const override
Convert this cell to a representation fit for saving in a .wxmx file.
Definition: GroupCell.cpp:1582
void RecalculateOutput() const
Recalculate the height of the output part of the cell.
Definition: GroupCell.cpp:572
void ResetInputLabelList()
Call ResetInputLabel() on all cells in the list of cells this GroupCell starts with.
Definition: GroupCell.cpp:195
GroupCell * Unfold()
Unfold this cell.
Definition: GroupCell.cpp:1971
GroupCell * FoldAll(std::vector< GroupCell * > *affected=nullptr)
Fold all cells.
Definition: GroupCell.cpp:1982
std::unique_ptr< Cell > m_output
The maxima output this cell contains.
Definition: GroupCell.h:544
bool IsLesserGCType(GroupType comparedTo) const
Document structure: Can this cell type be part of the contents of comparedTo?
Definition: GroupCell.cpp:2014
bool m_suppressTooltipMarker
Suppress the yellow ToolTip marker?
Definition: GroupCell.h:588
The view/interaction half of the cell-pointer registry.
Definition: CellPointers.h:187
The widths of one line of output, split at the label that starts it.
Definition: GroupCell.h:243