24#ifndef WXMAXIMA_CELLPOINTERS_H
25#define WXMAXIMA_CELLPOINTERS_H
58 bool Empty()
const {
return m_errors.empty(); }
70 void Clear() { m_errors.clear(); }
73 std::vector<CellPtr<GroupCell>> m_errors;
171 wxString m_selectionString;
173 ErrorList m_errorList;
191 void ScrollToCell(
Cell *cell) { m_cellToScrollTo = cell; }
192 Cell *CellToScrollTo() {
return m_cellToScrollTo; }
209 m_cellSearchStartedIn = {};
210 m_indexSearchStartedAt = -1;
215 {
return m_cellMouseSelectionStartedIn; }
220 { m_cellMouseSelectionStartedIn = {}; }
224 {
return m_cellKeyboardSelectionStartedIn; }
229 { m_cellKeyboardSelectionStartedIn = {}; }
231 void SetTimerIdForCell(
Cell *cell,
int timerId);
232 int GetTimerIdForCell(
Cell *cell)
const;
233 Cell *GetCellForTimerId(
int timerId)
const;
234 void RemoveTimerIdForCell(
const Cell *
const cell);
247 void WXMXResetCounter() { m_wxmxImgCounter = 0; }
248 wxString WXMXGetNewFileName();
249 std::size_t WXMXImageCount()
const {
return m_wxmxImgCounter; }
265 int m_indexSearchStartedAt = -1;
267 bool m_scrollToCell =
false;
276 CellTimerId() =
default;
277 CellTimerId(
Cell *cell,
int timerId) : cell(cell), timerId(timerId) {}
280 std::vector<CellTimerId> m_timerIds;
286 std::size_t m_wxmxImgCounter = 0;
The definition of the base class of all cells the worksheet consists of.
A weak non-owning pointer that becomes null whenever the observed object is destroyed.
Definition: CellPtr.h:511
The base class all cell types the worksheet can consist of are derived from.
Definition: Cell.h:142
A list of editor cells containing error messages.
Definition: CellPointers.h:54
void Clear()
Empty the list of GroupCells with errors.
Definition: CellPointers.h:70
void Remove(GroupCell *cell)
Remove one specific GroupCell from the list of errors.
Definition: CellPointers.cpp:104
bool Empty() const
Is the list of errors empty?
Definition: CellPointers.h:58
bool Contains(GroupCell *cell) const
Does the list of GroupCell with errors contain cell?
Definition: CellPointers.cpp:109
void Add(GroupCell *cell)
Mark this GroupCell as containing errors.
Definition: CellPointers.cpp:113
GroupCell * FirstError() const
The first GroupCell with error that is still in the list.
Definition: CellPointers.cpp:117
GroupCell * LastError() const
The last GroupCell with errors in the list.
Definition: CellPointers.cpp:121
The document-model half of the cell-pointer registry.
Definition: CellPointers.h:50
void SetSelectionEnd(Cell *cell)
Set the last cell of the selected range (may be null).
Definition: CellPointers.h:99
TextCell * GetCurrentTextCell() const
The text cell the text maxima is currently sending us is being appended to.
Definition: CellPointers.cpp:134
const CellPtr< Cell > & GetSelectionStart() const
The first cell of the currently selected range of cells, or null. Returned by reference so callers ke...
Definition: CellPointers.h:93
void SetAnswerCell(EditorCell *cell)
Set the editor cell maxima's current question is answered in.
Definition: CellPointers.cpp:127
void ClearAnswerCell()
Forget the editor cell that held maxima's current question.
Definition: CellPointers.h:109
const CellPtr< Cell > & GetSelectionEnd() const
The last cell of the currently selected range of cells, or null.
Definition: CellPointers.h:95
void ClearActiveCell()
Forget the editor cell the text cursor was in.
Definition: CellPointers.h:124
void SetCurrentTextCell(TextCell *cell)
Set the text cell maxima's incoming text is being appended to (may be null).
Definition: CellPointers.cpp:138
void ClearSelectionString()
Forget the currently selected string.
Definition: CellPointers.h:131
GroupCell * GetLastWorkingGroup() const
The last group cell maxima was working on (regardless of the current one).
Definition: CellPointers.h:85
void ClearAnswerCellIfInGroup(GroupCell *group)
Forget the question editor if it belongs to group, e.g. because that group's output is being reset or...
Definition: CellPointers.cpp:129
EditorCell * GetAnswerCell() const
The editor cell maxima's current question is being answered in, or null.
Definition: CellPointers.cpp:125
void SetSelectionString(const wxString &str)
Set the currently selected string.
Definition: CellPointers.h:129
GroupCell * GetWorkingGroup(bool resortToLast=false) const
Returns the cell maxima currently works on. NULL if there isn't such a cell.
Definition: CellPointers.cpp:152
void SetSelectionStart(Cell *cell)
Set the first cell of the selected range (may be null).
Definition: CellPointers.h:97
bool HasCellsSelected() const
Are any whole cells (as opposed to text inside an editor) selected?
Definition: CellPointers.h:88
void SetWorkingGroup(GroupCell *group)
Sets the cell maxima currently works on. NULL if there isn't such a cell.
Definition: CellPointers.cpp:146
ErrorList & GetErrorList()
The list of cells maxima has complained about errors in.
Definition: CellPointers.h:134
void SetActiveCell(EditorCell *cell)
Set the editor cell the blinking text cursor is in (may be null).
Definition: CellPointers.cpp:144
const wxString & GetSelectionString() const
The currently selected string, or empty.
Definition: CellPointers.h:127
const ErrorList & GetErrorList() const
The list of cells maxima has complained about errors in (read-only view).
Definition: CellPointers.h:136
EditorCell * GetActiveCell() const
The editor cell the blinking text cursor is in, or null.
Definition: CellPointers.cpp:142
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:88
A Text cell.
Definition: TextCell.h:38
The view/interaction half of the cell-pointer registry.
Definition: CellPointers.h:187
void SetSearchStart(EditorCell *cell, int index)
Record where an incremental search started (its cell and cursor index). Out-of-line: assigning the ra...
Definition: CellPointers.cpp:79
void SetGroupCellUnderPointer(GroupCell *cell)
Set the GroupCell under the mouse pointer (may be null).
Definition: CellPointers.cpp:96
void ResetKeyboardSelectionStart()
Forget where the keyboard selection was started.
Definition: CellPointers.h:228
void ClearCellUnderPointer()
Forget which cell was under the mouse pointer.
Definition: CellPointers.h:245
void SetMouseSelectionStart(EditorCell *cell)
Record the EditorCell a mouse selection started in (out-of-line: see above).
Definition: CellPointers.cpp:84
const CellPtr< EditorCell > & MouseSelectionStart() const
The EditorCell a mouse selection was started in, or null.
Definition: CellPointers.h:214
void ResetSearchStart()
Forget where the search was started.
Definition: CellPointers.h:207
void ResetMouseSelectionStart()
Forget where the mouse selection was started.
Definition: CellPointers.h:219
int IndexSearchStartedAt() const
The cursor position an incremental search was started at (-1 = none).
Definition: CellPointers.h:202
GroupCell * GetGroupCellUnderPointer() const
The GroupCell currently under the mouse pointer, or null.
Definition: CellPointers.cpp:92
bool ScrollToCellScheduled() const
Is a scroll to CellToScrollTo() currently scheduled?
Definition: CellPointers.h:195
const CellPtr< EditorCell > & KeyboardSelectionStart() const
The EditorCell a keyboard selection was started in, or null.
Definition: CellPointers.h:223
void SetCellUnderPointer(Cell *cell)
Set the cell under the mouse pointer (may be null).
Definition: CellPointers.h:243
void SetKeyboardSelectionStart(EditorCell *cell)
Record the EditorCell a keyboard selection started in (out-of-line: see above).
Definition: CellPointers.cpp:88
Cell * GetCellUnderPointer() const
The cell currently under the mouse pointer, or null.
Definition: CellPointers.h:241
const CellPtr< EditorCell > & SearchStart() const
The EditorCell an incremental search was started in, or null.
Definition: CellPointers.h:200
void SetScrollToCellScheduled(bool scheduled)
Schedule (or cancel) scrolling to CellToScrollTo().
Definition: CellPointers.h:197