wxMaxima
Loading...
Searching...
No Matches
CellPointers.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// Copyright (C) 2014-2018 Gunter Königsmann <wxMaxima@physikbuch.de>
5// Copyright (C) 2020 Kuba Ober <kuba@bertec.com>
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
24#ifndef WXMAXIMA_CELLPOINTERS_H
25#define WXMAXIMA_CELLPOINTERS_H
26
27#include "cells/Cell.h"
28#include <wx/string.h>
29#include <vector>
30
31class wxWindow;
32template<class T> class wxScrolled;
34
35class EditorCell;
36class TextCell;
37
50{
51public:
54 {
55 public:
56 ErrorList() = default;
58 bool Empty() const { return m_errors.empty(); }
60 void Remove(GroupCell * cell);
62 bool Contains(GroupCell * cell) const;
64 void Add(GroupCell * cell);
66 GroupCell *FirstError() const;
68 GroupCell *LastError() const;
70 void Clear() { m_errors.clear(); }
71 private:
73 std::vector<CellPtr<GroupCell>> m_errors;
74 };
75
77
81 GroupCell *GetWorkingGroup(bool resortToLast = false) const;
83 void SetWorkingGroup(GroupCell *group);
85 GroupCell *GetLastWorkingGroup() const { return m_lastWorkingGroup; }
86
88 bool HasCellsSelected() const { return m_selectionStart && m_selectionEnd; }
89
93 const CellPtr<Cell> &GetSelectionStart() const { return m_selectionStart; }
95 const CellPtr<Cell> &GetSelectionEnd() const { return m_selectionEnd; }
97 void SetSelectionStart(Cell *cell) { m_selectionStart = cell; }
99 void SetSelectionEnd(Cell *cell) { m_selectionEnd = cell; }
100
101 // The out-of-line definitions convert a CellPtr to (or a raw pointer from)
102 // EditorCell*/TextCell*, which needs the complete type this header only
103 // forward-declares.
105 EditorCell *GetAnswerCell() const;
107 void SetAnswerCell(EditorCell *cell);
109 void ClearAnswerCell() { m_answerCell = {}; }
113
117 void SetCurrentTextCell(TextCell *cell);
118
120 EditorCell *GetActiveCell() const;
122 void SetActiveCell(EditorCell *cell);
124 void ClearActiveCell() { m_activeCell = {}; }
125
127 const wxString &GetSelectionString() const { return m_selectionString; }
129 void SetSelectionString(const wxString &str) { m_selectionString = str; }
131 void ClearSelectionString() { m_selectionString.Clear(); }
132
134 ErrorList &GetErrorList() { return m_errorList; }
136 const ErrorList &GetErrorList() const { return m_errorList; }
137
138private:
143 CellPtr<GroupCell> m_workingGroup;
145 CellPtr<GroupCell> m_lastWorkingGroup;
147 CellPtr<EditorCell> m_answerCell;
149 CellPtr<TextCell> m_currentTextCell;
151 CellPtr<EditorCell> m_activeCell;
158 CellPtr<Cell> m_selectionStart;
165 CellPtr<Cell> m_selectionEnd;
171 wxString m_selectionString;
173 ErrorList m_errorList;
174};
175
187{
188public:
189 explicit ViewCellPointers(wxScrolledCanvas *worksheet) : m_worksheet(worksheet) {}
190
191 void ScrollToCell(Cell *cell) { m_cellToScrollTo = cell; }
192 Cell *CellToScrollTo() { return m_cellToScrollTo; }
193
195 bool ScrollToCellScheduled() const { return m_scrollToCell; }
197 void SetScrollToCellScheduled(bool scheduled) { m_scrollToCell = scheduled; }
198
200 const CellPtr<EditorCell> &SearchStart() const { return m_cellSearchStartedIn; }
202 int IndexSearchStartedAt() const { return m_indexSearchStartedAt; }
205 void SetSearchStart(EditorCell *cell, int index);
208 {
209 m_cellSearchStartedIn = {};
210 m_indexSearchStartedAt = -1;
211 }
212
215 { return m_cellMouseSelectionStartedIn; }
220 { m_cellMouseSelectionStartedIn = {}; }
221
224 { return m_cellKeyboardSelectionStartedIn; }
229 { m_cellKeyboardSelectionStartedIn = {}; }
230
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);
235
241 Cell *GetCellUnderPointer() const { return m_cellUnderPointer; }
243 void SetCellUnderPointer(Cell *cell) { m_cellUnderPointer = cell; }
245 void ClearCellUnderPointer() { m_cellUnderPointer = {}; }
246
247 void WXMXResetCounter() { m_wxmxImgCounter = 0; }
248 wxString WXMXGetNewFileName();
249 std::size_t WXMXImageCount() const { return m_wxmxImgCounter; }
250
251 wxScrolledCanvas *GetWorksheet() { return m_worksheet; }
252
253private:
255 CellPtr<GroupCell> m_groupCellUnderPointer;
257 CellPtr<Cell> m_cellUnderPointer;
259 CellPtr<EditorCell> m_cellMouseSelectionStartedIn;
261 CellPtr<EditorCell> m_cellKeyboardSelectionStartedIn;
263 CellPtr<EditorCell> m_cellSearchStartedIn;
265 int m_indexSearchStartedAt = -1;
267 bool m_scrollToCell = false;
268 struct CellTimerId {
269 // A CellPtr, not a raw pointer: animation timers fire asynchronously, so a
270 // timer entry can outlive its cell. Auto-nulling means GetCellForTimerId()
271 // returns nullptr for a destroyed cell instead of a dangling pointer, even
272 // if RemoveTimerIdForCell() was somehow not reached (see the "Long-lived
273 // cell references" rule in CellPtr.h).
274 CellPtr<Cell> cell;
275 int timerId = -1;
276 CellTimerId() = default;
277 CellTimerId(Cell *cell, int timerId) : cell(cell), timerId(timerId) {}
278 };
280 std::vector<CellTimerId> m_timerIds;
282 CellPtr<Cell> m_cellToScrollTo;
284 wxScrolledCanvas *const m_worksheet;
286 std::size_t m_wxmxImgCounter = 0;
287};
288
289#endif
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
Definition: CellPointers.h:32