39#include <wx/xml/xml.h>
40#include <wx/aui/aui.h>
41#include <wx/textfile.h>
42#include <wx/fdrepdlg.h>
48#include "CellPointers.h"
53#include "cells/ImgCell.h"
54#include "cells/ImgCellBase.h"
63#include "cells/TextCell.h"
121 { GetClientSize(width, height); }
123 {
int x, y; GetViewStart(&x, &y);
return y; }
125 { SetVirtualSize(width, height); }
128 {
const wxPoint p = GetPosition(); *x = p.x; *y = p.y; }
148 wxString m_maximaDocDir;
150 bool m_updateControls =
true;
152 bool m_scrollToCaret =
false;
154 int m_newxPosition = -1;
156 int m_newyPosition = -1;
158 double m_zoomAtGestureStart = 1.0;
160 bool m_scrollToTopOfCell =
false;
162 bool m_windowActive =
true;
164 wxRegion m_regionToRefresh;
173 bool m_fullRedrawRequested =
false;
177 static wxDataFormat m_wxmFormat;
179 static wxDataFormat m_mathmlFormat;
181 static wxDataFormat m_mathmlFormat2;
183 static wxDataFormat m_rtfFormat;
185 static wxDataFormat m_rtfFormat2;
189 static wxDataFormat m_rtfFormat3;
193 class MathMLDataObject :
public wxCustomDataObject
196 explicit MathMLDataObject(
const wxString &data);
201 wxCharBuffer m_databuf;
205 class wxmDataObject :
public wxCustomDataObject
208 explicit wxmDataObject(
const wxString &data);
213 wxCharBuffer m_databuf;
216 class MathMLDataObject2 :
public wxCustomDataObject
219 explicit MathMLDataObject2(
const wxString &data);
224 wxCharBuffer m_databuf;
229 class RtfDataObject :
public wxCustomDataObject
232 explicit RtfDataObject(
const wxString &data);
237 wxCharBuffer m_databuf;
240 class RtfDataObject2 :
public wxCustomDataObject
243 explicit RtfDataObject2(
const wxString &data);
248 wxCharBuffer m_databuf;
253 class RtfDataObject3 :
public wxCustomDataObject
256 explicit RtfDataObject3(
const wxString &data);
261 wxCharBuffer m_databuf;
265 bool m_hasFocus =
true;
269 long m_lastBottom = 0;
337 {
return TreeUndo(&GetTreeUndo().UndoStack(), &GetTreeUndo().RedoStack()); }
341 {
return TreeUndo(&GetTreeUndo().RedoStack(), &GetTreeUndo().UndoStack()); }
377 bool m_scrolledAwayFromEvaluation =
false;
384 CLICK_TYPE_GROUP_SELECTION,
385 CLICK_TYPE_INPUT_SELECTION,
386 CLICK_TYPE_INPUT_LABEL_SELECTION,
387 CLICK_TYPE_OUTPUT_SELECTION
399 std::unique_ptr<Cell>
CopySelection(
bool asData =
false)
const;
415 void OnTimer(wxTimerEvent &event);
417#if wxCHECK_VERSION(3, 1, 1)
419 void OnZoom(wxZoomGestureEvent &event);
422 void OnMouseExit(wxMouseEvent &event);
424 void OnMouseEnter(wxMouseEvent &event);
438 void OnPaint(wxPaintEvent &event);
453 void OnSize(wxSizeEvent &event);
455 void OnMouseRightDown(wxMouseEvent &event);
457 void OnSidebarKey(wxCommandEvent &event);
459 void OnMouseLeftUp(wxMouseEvent &event);
464 void OnMouseLeftDown(wxMouseEvent &event);
466 void OnMouseLeftInGcCell(wxMouseEvent &event,
GroupCell *clickedInGC);
468 void OnMouseLeftInGcLeft(wxMouseEvent &event,
GroupCell *clickedInGC);
470 void OnMouseLeftInGc(wxMouseEvent &event,
GroupCell *clickedInGC);
472 void OnMouseMotion(wxMouseEvent &event);
511 void SelectGroupCells(wxPoint down, wxPoint up);
521 void CheckUnixCopy();
523 void OnMouseMiddleUp(wxMouseEvent &event);
525 static bool IsLesserGCType(
int type,
int comparedTo);
544 wxPoint m_leftDownPosition;
547 wxPoint m_mousePoint;
558 bool m_leftDown =
false;
560 bool m_followEvaluation =
true;
561 bool m_mouseDrag =
false;
562 bool m_mouseOutside =
false;
568 int m_clickType = CLICK_TYPE_NONE;
578 bool m_blinkDisplayCaret =
true;
580 bool m_hCaretBlinkVisible =
true;
584 wxTimer m_caretTimer;
585 std::vector<wxString> m_completions;
586 bool m_autocompleteTemplates =
true;
592 {
return !GetTree() || (!GetTree()->
GetNext() && GetTree()->GetEditable()->
GetValue().Length() <= 1); }
596 if(m_autocompletePopup != NULL)
597 m_autocompletePopup->Destroy();
605 void OnChar(wxKeyEvent &event);
626 std::optional<Notification> m_notificationMessage;
636 void SetNotification(
const wxString &message,
int flags = wxICON_INFORMATION);
646 static std::mutex m_drawDCLock;
658 void FocusFindDialogue()
689 int IndexSearchStartedAt()
const
729 m_redrawStart = NULL;
730 m_fullRedrawRequested =
false;
825 bool CanUndo()
const;
827 bool CanRedo()
const;
837 void TreeUndo_ClearBuffers();
849 wxPoint pos = wxDefaultPosition, wxSize size = wxDefaultSize,
850 bool reactToEvents =
true);
858 wxTimer m_keyboardInactiveTimer;
865 std::unique_ptr<GroupCell>
CopyTree()
const;
893 void InsertLine(std::unique_ptr<Cell> &&newCell,
bool forceNewLine =
false);
924 : m_worksheet(worksheet) {
990 void ResetInputPrompts();
1009 bool CanPaste()
const
1056 void DeleteSelection();
1117 void Animate(
bool run =
true)
const;
1129 void PasteFromClipboard();
1137 bool Copy(
bool astext =
false)
const;
1186#if wxUSE_ENH_METAFILE
1188 bool CopyEMF()
const;
1199 wxSize CopyToFile(
const wxString &file)
const;
1201 wxSize CopyToFile(
const wxString &file,
Cell *start,
Cell *end,
bool asData =
false,
double scale = 1)
const;
1239 wxString
GetString(
bool lb =
false)
const;
1277 bool ActivatePrevInput() {
return ActivateInput(-1); }
1278 bool ActivateNextInput() {
return ActivateInput(+1); }
1279 wxString GetStatusText()
const {
return m_statusText;}
1280 bool StatusTextChangedHas() {
1281 bool retval = (m_statusTextHas != m_statusTextHas_old) ||
1282 (m_statusText != m_statusText_old);
1283 m_statusText_old = m_statusText;
1284 m_statusTextHas_old = m_statusTextHas;
1287 bool StatusTextHas()
const {
return m_statusTextHas;}
1300 wxTimer m_displayTimeoutTimer;
1302 template <
class T_SRC,
class T_DEST>
1303 inline std::unique_ptr<T_DEST> unique_cast(std::unique_ptr<T_SRC> &&src)
1305 if (!src)
return std::unique_ptr<T_DEST>();
1307 T_DEST *dest_ptr = &
dynamic_cast<T_DEST &
>(*src.get());
1309 (void) src.release();
1310 return std::unique_ptr<T_DEST>(dest_ptr);
1312 wxString m_statusText;
1313 wxString m_statusText_old;
1314 bool m_statusTextHas =
false;
1315 bool m_statusTextHas_old =
false;
1316 void StatusText(
const wxString &text){m_statusText = text; m_statusTextHas =
true;}
1317 void UnsetStatusText(){m_statusTextHas =
false;}
1318 bool ActivateInput(
int direction);
1325 m_scrollToCaret =
true;
1338 m_scrollToTopOfCell = scrollToTop;
1339 m_scrollToCaret =
false;
1434 void UndoInsideCell();
1442 void RedoInsideCell();
1457 {
return m_followEvaluation; }
1464 void ScrolledAwayFromEvaluation(
bool ScrolledAway);
1466 bool ScrolledAwayFromEvaluation()
const
1467 {
return m_scrolledAwayFromEvaluation; }
1471 bool IsSaved()
const
1474 void SetSaved(
bool saved)
1477 void OutputChanged()
1503 void AddDocumentToEvaluationQueue();
1548 void SetZoomFactor(
double newzoom);
1550 void CommentSelection();
1557 void OnScrollEvent(wxScrollWinEvent &ev);
1558 void CheckIfActiveCellScrolledOut();
1570 bool FindIncremental(
const wxString &str,
bool down,
bool ignoreCase,
bool searchInInput =
true,
bool searchInOutput =
true);
1571 bool FindIncremental_RegEx(
const wxString &str,
bool down,
bool searchInInput =
true,
bool searchInOutput =
true);
1591 bool FindNext(
const wxString &str,
bool down,
bool ignoreCase,
bool searchInInput =
true,
bool searchInOutput =
true,
bool warn =
true);
1592 bool FindNext_Regex(
const wxString &str,
const bool &down,
bool searchInInput =
true,
bool searchInOutput =
true,
bool warn =
true);
1598 void Replace(
const wxString &oldString,
const wxString &newString,
bool ignoreCase);
1599 void Replace_RegEx(
const wxString &oldString,
const wxString &newString);
1605 int ReplaceAll(
const wxString &oldString,
const wxString &newString,
bool ignoreCase,
bool searchInInput =
true,
bool searchInOutput =
true);
1606 int ReplaceAll_RegEx(
const wxString &oldString,
const wxString &newString,
bool searchInInput =
true,
bool searchInOutput =
true);
1620 wxString GetInputAboveCaret();
1622 wxString GetOutputAboveCaret();
1631 { m_autocomplete.
AddSymbol(fun, type); }
1640 void SetActiveCellText(
const wxString &text);
1642 bool InsertText(
const wxString &text);
1644 void OpenNextOrCreateCell();
1677 void SetMaximaDocDir(
const wxString &dir)
1679 m_maximaDocDir = dir;
1681 const wxString &GetMaximaDocDir()
const {
return m_maximaDocDir; }
1699 void UpdateScrollPos();
1710 wxString GetHelpfileAnchorName(
const wxString &keyword)
1711 {
return m_maximaManual.GetHelpfileAnchorName(keyword);}
1712 wxString GetHelpfileURL(
const wxString &keyword)
1713 {
return m_maximaManual.GetHelpfileURL(keyword);}
1717#if wxUSE_ACCESSIBILITY
1718 int GetAccessibilityId(
Cell *cell)
const;
1721#if wxUSE_ACCESSIBILITY
1722 class AccessibilityInfo:
public wxAccessible
1725 AccessibilityInfo(wxWindow *parent,
Worksheet *worksheet);
1726 wxAccStatus GetName (
int childId, wxString *name);
1727 wxAccStatus GetChildCount (
int *childCount);
1728 wxAccStatus GetChild (
int childId, wxAccessible **child);
1729 wxAccStatus GetDefaultAction(
int childId, wxString *actionName);
1730 wxAccStatus GetParent (wxAccessible ** parent);
1731 wxAccStatus GetFocus (
int *childId, wxAccessible **child);
1732 wxAccStatus GetLocation (wxRect &rect,
int elementId);
1733 wxAccStatus HitTest (
const wxPoint &pt,
1734 int *childId, wxAccessible **childObject);
1735 wxAccStatus GetDescription(
int childId, wxString *description);
1736 wxAccStatus GetRole(
int childId, wxAccRole *role);
1737 wxAccStatus GetState(
int childId,
long *state);
1739 wxWindow *m_parent = NULL;
1742 class CaretAccessibilityInfo :
public wxAccessible {
1744 CaretAccessibilityInfo(AccessibilityInfo* parent,
Worksheet* worksheet)
1745 : wxAccessible(worksheet->GetTargetWindow()), m_parent(parent), m_worksheet(worksheet) {}
1747 wxAccStatus GetName(
int childId, wxString *name)
override;
1748 wxAccStatus GetDescription(
int WXUNUSED(childId), wxString *description)
override;
1749 wxAccStatus GetParent(wxAccessible **parent)
override;
1750 wxAccStatus GetChildCount(
int *childCount)
override;
1751 wxAccStatus GetChild(
int childId, wxAccessible **child)
override;
1752 wxAccStatus GetRole(
int childId, wxAccRole *role)
override;
1754 AccessibilityInfo* m_parent;
1757 CaretAccessibilityInfo* m_caretAccessible =
nullptr;
1761 MaximaManual *GetMaximaManual() {
return &m_maximaManual;}
1763 void FocusTextControl();
1774 virtual wxSize DoGetBestClientSize()
const override;
1775#if wxUSE_ACCESSIBILITY
1776 AccessibilityInfo *m_accessibilityInfo = NULL;
1788wxDECLARE_EVENT(TOC_UPDATE_NEEDED_EVENT, wxCommandEvent);
This file declares the class AnimationCell.
This file declares the class AutoComplete.
The definition of the base class of all cells the worksheet consists of.
CellType
The supported types of math cells.
Definition: Cell.h:64
@ MC_TYPE_GROUP
A group cells that bundles several individual cells together.
Definition: Cell.h:82
This file contains the definition of the class EditorCell.
This file declares the class EventIDs that contains unique IDs for many events wxMaxima needs.
This file defines the class FindReplaceDialog.
This file defines the class GroupCell that bundles input and output in the worksheet.
GroupType
All types a GroupCell can be of.
Definition: GroupCell.h:43
This file declares the class MaximaManual.
This file defines the class Notification.
The definition of the class RecentDocuments that provides a recent files mechanism that is extensible...
std::list< TreeUndoAction > UndoActions
The type of the list of tree actions that can be undone.
Definition: TreeUndoAction.h:141
Declares TreeUndoManager: the owner of the cell-tree undo/redo state.
The file that contains the "variables" sidepane.
The worksheet's "between the cells" cursor (the horizontally drawn caret).
The narrow "something in the document changed" surface a WorksheetDocument needs to poke its view.
The document half of the worksheet: the state and commands that describe the edited document itself,...
The worksheet's layout engine: scheduling, the recalculation walk and the virtual-size update,...
The worksheet's search engine.
Definition: AnimationCell.h:46
Definition: Autocomplete.h:61
autoCompletionType
All types of things we can autocomplete.
Definition: Autocomplete.h:68
void AddSymbols(wxString xml)
Interprets the XML autocompletable symbol list maxima can send us.
Definition: Autocomplete.cpp:135
void AddSymbol(wxString fun, autoCompletionType type=command)
Manually add an autocompletable symbol to our symbols lists.
Definition: Autocomplete.cpp:686
A weak non-owning pointer that becomes null whenever the observed object is destroyed.
Definition: CellPtr.h:539
The base class all cell types the worksheet can consist of are derived from.
Definition: Cell.h:148
GroupCell * GetGroup() const
Returns the group cell this cell belongs to.
Definition: Cell.cpp:285
CellType GetType() const
Returns the type of this cell.
Definition: Cell.h:489
The configuration storage for the current worksheet.
Definition: Configuration.h:98
void ReadConfig()
Read the config from the wxConfig object.
Definition: Configuration.cpp:619
A list of editor cells containing error messages.
Definition: CellPointers.h:54
The document-model half of the cell-pointer registry.
Definition: CellPointers.h:50
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
const CellPtr< Cell > & GetSelectionEnd() const
The last cell of the currently selected range of cells, or null.
Definition: CellPointers.h:95
void SetCurrentTextCell(TextCell *cell)
Set the text cell maxima's incoming text is being appended to (may be null).
Definition: CellPointers.cpp:138
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
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:62
const wxString & GetValue() const override
Returns the text contained in this cell.
Definition: EditorCell.h:225
bool CanCopy() const override
Select Can we copy the editable text of this cell?
Definition: EditorCell.h:377
A simple FIFO queue with manual removal of elements.
Definition: EvaluationQueue.h:44
The find+replace dialog.
Definition: FindReplaceDialog.h:42
The find+replace pane.
Definition: FindReplacePane.h:46
A cell grouping input (and, if there is one, also the output) cell to a foldable item.
Definition: GroupCell.h:88
GroupCell * GetNext() const
Get the next GroupCell in the list.
Definition: GroupCell.h:280
Definition: ImgCellBase.h:42
Definition: MaximaManual.h:59
void LoadHelpFileAnchors(const wxString &docdir, const wxString &maximaVersion)
Search maxima's help file for command and variable names.
Definition: MaximaManual.cpp:538
A class that maintains a list of recent documents.
Definition: RecentDocuments.h:42
A Text cell.
Definition: TextCell.h:38
Owns the cell-tree undo/redo stacks and the active-cell snapshot.
Definition: TreeUndoManager.h:51
void ClearUndoActionList()
Clear the list of actions that can be undone.
Definition: TreeUndoManager.h:94
void ClearRedoActionList()
Clear the list of actions that can be redone.
Definition: TreeUndoManager.h:87
static void AppendAction(UndoActions *actionList)
Mark the newest action of the list as part of the following atomic action.
Definition: TreeUndoManager.h:77
The view/interaction half of the cell-pointer registry.
Definition: CellPointers.h:187
const CellPtr< EditorCell > & MouseSelectionStart() const
The EditorCell a mouse selection was started in, or null.
Definition: CellPointers.h:214
int IndexSearchStartedAt() const
The cursor position an incremental search was started at (-1 = none).
Definition: CellPointers.h:202
const CellPtr< EditorCell > & KeyboardSelectionStart() const
The EditorCell a keyboard selection was started in, or null.
Definition: CellPointers.h:223
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
The between-the-cells cursor: active flag, position, selection anchors.
Definition: WorksheetCursor.h:49
bool IsActive() const
Is this (rather than the in-cell text cursor) the active cursor?
Definition: WorksheetCursor.h:52
The view notifications a WorksheetDocument emits when it edits itself.
Definition: WorksheetDocumentView.h:50
The view-independent state and commands of an edited worksheet document.
Definition: WorksheetDocument.h:61
bool CanMergeSelection() const
Can the current selection (of more than one cell) be merged into one?
Definition: WorksheetDocument.cpp:361
CellPtr< GroupCell > & LastCache() const
The cached pointer to the document's last GroupCell (<0 = unknown).
Definition: WorksheetDocument.h:93
bool CanRedoInsideCell() const
Can the active cell's own (intra-cell) redo be invoked right now?
Definition: WorksheetDocument.cpp:390
void SetSaved(bool saved)
Record whether the document is in its saved state.
Definition: WorksheetDocument.cpp:34
void FoldAll()
Recursively folds every foldable cell in the document.
Definition: WorksheetDocument.cpp:317
void UnfoldAll()
Recursively unfolds every folded cell in the document.
Definition: WorksheetDocument.cpp:326
bool QuestionPending() const
Is Maxima currently waiting for an answer to a question?
Definition: WorksheetDocument.h:215
bool CanUndoInsideCell() const
Can the active cell's own (intra-cell) undo be invoked right now?
Definition: WorksheetDocument.cpp:386
bool IsSaved() const
True while the document has no unsaved changes.
Definition: WorksheetDocument.h:226
void SetCurrentFile(const wxString &file)
Record the file this document is associated with.
Definition: WorksheetDocument.h:205
EvaluationQueue & GetEvaluationQueue()
The list of cells scheduled to be sent to Maxima for evaluation.
Definition: WorksheetDocument.h:64
GroupCell * Unfold(GroupCell *which)
Unfold which; see GroupCell::Unfold(). Mirrors Fold().
Definition: WorksheetDocument.cpp:277
bool IsSelectionInWorkingGroup() const
Is the selection start inside the group Maxima is currently evaluating?
Definition: WorksheetDocument.cpp:381
DocumentCellPointers & GetCellPointers()
The document-model half of the cell-pointer registry (selection, the active/answer/current-text cell,...
Definition: WorksheetDocument.h:221
bool IsSelected(CellType type) const
Is the selection exactly one cell of the given type?
Definition: WorksheetDocument.cpp:374
GroupCell * ToggleFold(GroupCell *which)
Fold or unfold which, whichever it currently isn't; see GroupCell::Fold()/Unfold().
Definition: WorksheetDocument.cpp:292
TreeUndoManager & GetTreeUndo()
The document's undo/redo history of tree-structure edits.
Definition: WorksheetDocument.h:69
const wxString & GetCurrentFile() const
The file this document was last loaded from / saved to (empty if none).
Definition: WorksheetDocument.h:203
std::unique_ptr< GroupCell > & TreeOwner()
Mutable access to the owning pointer of the cell tree.
Definition: WorksheetDocument.h:87
const wxString & GetLastQuestion() const
The text of the Maxima question the user is currently being asked.
Definition: WorksheetDocument.h:208
bool CanDeleteSelection() const
Can the current selection be deleted right now (see CanRemoveCells())?
Definition: WorksheetDocument.cpp:353
bool CanEdit() const
Is exactly one cell selected, and does it directly follow Maxima's own input prompt (as opposed to be...
Definition: WorksheetDocument.cpp:335
void SetQuestionPending(bool pending)
Record whether Maxima is waiting for an answer to a question.
Definition: WorksheetDocument.h:217
WorksheetCursor & GetCursor()
The between-cells cursor (the h-caret) and its group-level selection.
Definition: WorksheetDocument.h:74
GroupCell * GetTree() const
The first GroupCell of the document (null when the document is empty).
Definition: WorksheetDocument.h:79
void SetLastQuestion(const wxString &lastQuestion)
Remember the text of the question Maxima is currently asking.
Definition: WorksheetDocument.h:210
GroupCell * ToggleFoldAll(GroupCell *which)
Like ToggleFold(), but folds/unfolds which's whole subtree.
Definition: WorksheetDocument.cpp:299
void OutputChanged()
Note that a cell's output changed.
Definition: WorksheetDocument.h:241
GroupCell * Fold(GroupCell *which)
Fold which; see GroupCell::Fold().
Definition: WorksheetDocument.cpp:262
The layout/recalculation engine of a worksheet.
Definition: WorksheetLayout.h:54
void RequestFullRecalculation()
Schedule a recalculation of the whole worksheet.
Definition: WorksheetLayout.cpp:237
void RequestAdjustSize()
Flag the virtual (scroll) size as needing re-adjustment.
Definition: WorksheetLayout.h:143
void RequestRecalculation(Cell *start)
Schedule a recalculation of the worksheet starting with the cell start.
Definition: WorksheetLayout.cpp:179
void GetMaxPoint(int *width, int *height)
Get the coordinates of the bottom right point of the worksheet.
Definition: WorksheetLayout.cpp:259
void UpdateConfigurationClientSize()
Inform the configuration about the view's current client size.
Definition: WorksheetLayout.cpp:246
int GetLastCellsVisited() const
GroupCells walked by the most recent RecalculateIfNeeded() pass (visited includes cheap reposition-on...
Definition: WorksheetLayout.h:156
void AdjustSize()
Adjust the virtual size and scrollbars to the document's extent.
Definition: WorksheetLayout.cpp:305
bool RecalculateIfNeeded(bool timeout=false, long timeSliceMs=50)
Perform the scheduled recalculation, if one is pending.
Definition: WorksheetLayout.cpp:41
The narrow view surface the worksheet's layout pipeline needs.
Definition: WorksheetSizeMath.h:172
Scoped SetAsyncOutputTarget(), so an early return or a throw while appending can't leave every subseq...
Definition: Worksheet.h:921
The canvas that contains the spreadsheet the whole program is about.
Definition: Worksheet.h:116
bool IsActiveInLast() const
Is the editor active in the last cell of the worksheet?
Definition: Worksheet.h:1386
GroupCell * ToggleFold(GroupCell *which)
Fold or unfold a cell.
Definition: Worksheet.h:1539
void OnTimer(wxTimerEvent &event)
Is executed if a timer associated with Worksheet has expired.
Definition: Worksheet.cpp:3400
void ClearSelection()
Clear the selection - make it empty, i.e. no selection.
Definition: Worksheet.h:1259
const wxString UnicodeToMaxima(wxString s)
Make a few unicode characters interpretable by maxima.
Definition: Worksheet.cpp:3802
bool CanMergeSelection() const
Can we merge the selected cells into one?
Definition: Worksheet.h:823
bool IsSelectionInWorkingGroup() const
Is the selection in the current working group?
Definition: Worksheet.h:1396
int GetLastCellsRecalculated() const
How many cells the last layout pass truly recalculated. See WorksheetLayout.
Definition: Worksheet.h:982
void SetViewScrollRate(int rate) override
Set the scroll granularity (device pixels per scroll unit) on both axes.
Definition: Worksheet.h:126
ImgCellBase * GetSelectedImgCellBase() const
Returns the selected cell - or NULL, if the selection isn't image nor animation.
Definition: Worksheet.h:1089
wxString RTFStart() const
The start of a RTF document.
Definition: Worksheet.cpp:6166
int m_pointer_x
The x position of the mouse pointer.
Definition: Worksheet.h:1779
void SetDefaultHCaret()
Set the HCaret to its default location, at the end of the document.
Definition: Worksheet.cpp:4971
bool CanDeleteRegion(GroupCell *start, const GroupCell *end) const
Is it possible to delete the cells between start and end?
Definition: Worksheet.cpp:2157
void AddSectionToEvaluationQueue(GroupCell *start)
Adds a chapter, a section or a subsection to the evaluation queue.
Definition: Worksheet.cpp:4094
void AddSymbols(const wxString &xml)
Add a xml-encoded list of symbols to the autocompletion list.
Definition: Worksheet.h:1634
virtual ~Worksheet()
The destructor.
Definition: Worksheet.cpp:535
bool CutToClipboard()
Add the currently selected cells to the clipboard and delete them.
Definition: Worksheet.cpp:4669
void GetViewPosition(int *x, int *y) const override
The view's position within its parent, in device pixels (wxWindow::GetPosition).
Definition: Worksheet.h:127
WorksheetDocument m_document
The view-independent document state (file, current question, ...) that Worksheet's document accessors...
Definition: Worksheet.h:1767
FindReplacePane * m_findPane
The dockable find-and-replace sidebar (GH #2249), set once by wxMaximaFrame at startup and never dest...
Definition: Worksheet.h:813
std::unique_ptr< wxDataObject > CreateCellsDataObject() const
Build the multi-format clipboard object for a whole-cell selection.
Definition: Worksheet.cpp:2070
GroupCell * GetInsertGroup() const
The group that the line's cells will belong to - used by InsertLine.
Definition: Worksheet.cpp:977
void OnCharNoActive(wxKeyEvent &event)
Key pressed and no cell was active.
Definition: Worksheet.cpp:2924
bool QuestionPending() const
Does maxima wait for the answer of a question?
Definition: Worksheet.h:1667
void AddEntireDocumentToEvaluationQueue()
Schedule all cells in the document for evaluation.
Definition: Worksheet.cpp:4085
GroupCell * FirstVisibleGC()
The first groupCell that is currently visible.
Definition: Worksheet.cpp:1522
void SetAsyncOutputTarget(GroupCell *cell)
Routes output to one specific cell instead of the one being evaluated.
Definition: Worksheet.h:914
void UpdateConfigurationClientSize()
Inform the configuration about the current client size.
Definition: Worksheet.h:1271
int ReplaceAll(const wxString &oldString, const wxString &newString, bool ignoreCase, bool searchInInput=true, bool searchInOutput=true)
Replace all occurrences of a string.
Definition: Worksheet.cpp:5443
void AddSymbols(wxXmlDocument xml)
Add a xml-encoded list of symbols to the autocompletion list.
Definition: Worksheet.h:1637
void LoadHelpFileAnchors(const wxString &docdir, const wxString &maximaVersion)
Tries to parse maxima's manual in order to find out which anchors it contains.
Definition: Worksheet.h:1708
bool ExportToHTML(const wxString &file)
Export the file to an html document.
Definition: Worksheet.cpp:3771
void OpenHCaret(const wxString &txt={})
Place the cursor into a new cell where the horizontal cursor is.
Definition: Worksheet.h:1414
void NotifyAdjustSizeNeeded() override
The scrollable size will need re-adjusting once cell positions settle.
Definition: Worksheet.h:135
void ApplyOverlayScrollbarsSetting()
Apply the configuration's OverlayScrollbars() choice to this window.
Definition: Worksheet.cpp:510
TextCell * GetSelectedTextCell() const
Returns the selected cell - or NULL, if the selection isn't a text cell.
Definition: Worksheet.h:1097
void ScrollToError()
Unfold the cell that produced the error, if necessary and, if requested, scroll to it.
Definition: Worksheet.cpp:899
bool HCaretActive() const
Is the vertically-drawn cursor active?
Definition: Worksheet.h:816
void OnEraseBackground(wxEraseEvent &WXUNUSED(event))
Cannot be static as it is called using a function pointer to an object.
Definition: Worksheet.h:518
void ClearDocument()
Empties the current document.
Definition: Worksheet.cpp:1120
wxString RTFEnd() const
The end of a RTF document.
Definition: Worksheet.cpp:6170
ViewCellPointers m_viewCellPointers
The transient view-state half of the cell-pointer registry (hover, selection anchors,...
Definition: Worksheet.h:1771
void UpdateTableOfContents()
Update the table of contents.
Definition: Worksheet.cpp:6496
void RemoveAllOutput()
Remove all output cells from the whole worksheet.
Definition: Worksheet.cpp:5044
Cell * GetSelectionEnd() const
Return the last of the currently selected cells.
Definition: Worksheet.h:1255
void QuestionPending(bool pending)
Does maxima currently wait for the answer of a question?
Definition: Worksheet.h:1674
void ClickNDrag(wxPoint down, wxPoint up)
Select the rectangle surrounded by down and up.
Definition: Worksheet.cpp:1674
FindReplacePane * GetActiveFindPane() const
Whichever find/replace UI is actually in use right now: the dockable sidebar (GH #2249) if Configurat...
Definition: Worksheet.cpp:5249
DocumentCellPointers & GetDocumentCellPointers()
The document-model half of the cell-pointer registry (owned by m_document).
Definition: Worksheet.h:693
const wxString & GetCurrentFile() const
The name of the currently-opened file.
Definition: Worksheet.h:792
void SetCurrentFile(const wxString &file)
Set the name of the currently-opened file.
Definition: Worksheet.h:794
RecentDocuments & UnsavedDocuments()
The list of unsaved (autosaved) documents offered for recovery.
Definition: Worksheet.h:139
bool CopyHTML() const
Copy a self-contained HTML version (inline CSS, base64-embedded images – see WorksheetExport::Selecti...
Definition: Worksheet.cpp:3577
void DeleteCurrentCell()
Delete the currently active cell - or the cell above this one.
Definition: Worksheet.cpp:2142
AutoComplete & GetAutocomplete()
The storage for the autocompletion feature.
Definition: Worksheet.h:669
AnimationCell * GetSelectedAnimation() const
Returns the selected cell - or NULL, if the selection isn't an animation.
Definition: Worksheet.h:1073
void Replace(const wxString &oldString, const wxString &newString, bool ignoreCase)
Replace the current occurrence of a string.
Definition: Worksheet.cpp:5409
bool CopyMatlab() const
Copy a Matlab representation of the current selection to the clipboard.
Definition: Worksheet.cpp:1962
bool CopyText() const
Copy a textual representation of the current selection to the clipboard.
Definition: Worksheet.cpp:2025
bool m_inPopupMenu
Is there an active popup menu?
Definition: Worksheet.h:1785
EvaluationQueue & GetEvaluationQueue()
The list of cells that have to be evaluated.
Definition: Worksheet.h:1527
void Animate(bool run=true) const
Animate the current slide show.
Definition: Worksheet.cpp:4948
static GroupCell * StartOfSectioningUnit(GroupCell *start)
Finds the start of the current chapter/section/...
Definition: Worksheet.cpp:2539
bool CopyRTF() const
Copy a rtf version of the current selection to the clipboard.
Definition: Worksheet.cpp:3546
void UpdateConfig()
Re-read the configuration.
Definition: Worksheet.h:774
int m_pointer_y
The y position of the mouse pointer.
Definition: Worksheet.h:1781
bool Copy(bool astext=false) const
Copy the current selection to the clipboard.
Definition: Worksheet.cpp:1781
bool CopyAnimation() const
Copy the current animation to the clipboard.
Definition: Worksheet.cpp:3524
void StepAnimation(int change=1)
Set the slide of the currently selected animation or advance it by one step.
Definition: Worksheet.cpp:3374
GroupCell * Unfold(GroupCell *which)
Unfold a cell (see WorksheetDocument::Unfold())
Definition: Worksheet.h:1536
void SelectEditable(EditorCell *editor, bool up)
Is called when a hCursor is active and we have a WXK_UP/WXK_DOWN event.
Definition: Worksheet.cpp:2893
void SetAnswer(const wxString &answer)
Handling questions from and answers for maxima.
Definition: Worksheet.cpp:2266
ViewCellPointers & GetViewCellPointers()
The transient view-state half of the cell-pointer registry (owned here).
Definition: Worksheet.h:696
void OnChar(wxKeyEvent &event)
Key for a printable character pressed.
Definition: Worksheet.cpp:3258
void SelectWithChar(int ccode)
Handle selecting text using the keyboard Is called when the all of the following is true:
Definition: Worksheet.cpp:2808
void AddSelectionToEvaluationQueue()
Schedule all cells in the selection to be evaluated.
Definition: Worksheet.cpp:4123
bool HasCellsSelected() const
Is at least one entire cell selected?
Definition: Worksheet.h:1022
std::optional< Notification > & GetNotification()
The error notification message, if any.
Definition: Worksheet.h:623
void OnSetFocus(wxFocusEvent &event)
What to do if the worksheet is in the input focus.
Definition: Worksheet.cpp:4908
void SetNotification(const wxString &message, int flags=wxICON_INFORMATION)
Inform the user that something happened in a non-active window.
Definition: Worksheet.cpp:3236
bool IsSelected(CellType type) const
Does the selection start with a cell of the type "type".
Definition: Worksheet.h:1375
GroupCell * GetAsyncOutputTarget() const
The cell async output is currently being routed to, if any.
Definition: Worksheet.h:916
void ScheduleScrollToCell(Cell *cell, bool scrollToTop=true)
Schedules scrolling to a given cell.
Definition: Worksheet.h:1335
int GetViewScrollUnitY() const override
The current vertical scroll position, in scroll units (not pixels).
Definition: Worksheet.h:122
GroupCell * InsertGroupCells(std::unique_ptr< GroupCell > &&cells, GroupCell *where, UndoActions *undoBuffer)
Insert group cells into the worksheet.
Definition: Worksheet.cpp:879
void AddDocumentTillHereToEvaluationQueue()
Schedule all cells stopping with the one the caret is in for evaluation.
Definition: Worksheet.cpp:4139
void OnComplete(wxCommandEvent &event)
Is called if an action from the autocomplete menu is selected.
Definition: Worksheet.cpp:5906
bool CanAnimate() const
Does it make sense to enable the "Play" button and the slider now?
Definition: Worksheet.h:1105
bool RecalculateIfNeeded(bool timeout=false, long timeSliceMs=50)
Actually recalculate the worksheet.
Definition: Worksheet.h:953
bool m_mouseMotionWas
Was there a mouse motion we didn't react to until now?
Definition: Worksheet.h:1783
void SelectAll()
Select the whole document.
Definition: Worksheet.cpp:4831
void OnKillFocus(wxFocusEvent &event)
What to do if the worksheet looses the input focus.
Definition: Worksheet.cpp:4920
void InsertLine(std::unique_ptr< Cell > &&newCell, bool forceNewLine=false)
Add a new line to the output cell of the working group.
Definition: Worksheet.cpp:994
void ClearNotification()
Clears the notification message from SetNotification.
Definition: Worksheet.cpp:3234
void OnPaint(wxPaintEvent &event)
Is called by wxWidgets when it wants to redraw the worksheet or a part of it.
Definition: Worksheet.cpp:578
void OnFollow()
Called when the "Scroll to currently evaluated" button is pressed.
Definition: Worksheet.cpp:6090
void PrepareDrawGC(wxDC &dc) const
All that has need to be done before drawing a GroupCell in a DC.
Definition: Worksheet.cpp:755
void OnCharInActive(wxKeyEvent &event)
Key pressed inside a cell.
Definition: Worksheet.cpp:2583
Cell * GetSelectionStart() const
Return the first of the currently selected cells.
Definition: Worksheet.h:1248
void FoldOccurred()
Call when a fold action was detected, to update the state in response to a fold occurring.
Definition: Worksheet.cpp:1209
void OnMouseCaptureLost(wxMouseCaptureLostEvent &event)
Is called if we loose the mouse connection whilst selecting text/cells.
Definition: Worksheet.cpp:6174
wxTimer & KeyboardInactiveTimer()
The timer that tells us when the keyboard is inactive so an autosave isn't disrupting.
Definition: Worksheet.h:856
ClickType
An enum for all classes of items one can click on.
Definition: Worksheet.h:382
ImgCell * GetSelectedImgCell() const
Returns the selected cell - or NULL, if the selection isn't an image.
Definition: Worksheet.h:1081
Cell * FindCellByUUID(const wxString &uuid)
Find a cell by its UUID.
Definition: Worksheet.cpp:4187
void EraseBackground(wxEraseEvent &event)
Is called if wxWidgets wants to erase the worksheet's background.
Definition: Worksheet.cpp:313
bool CanDeleteSelection() const
Is it possible to delete the currently selected cells?
Definition: Worksheet.h:1064
ToolBar * m_mainToolBar
The toolbar of the main window: We need to access it and therefore have it defined here.
Definition: Worksheet.h:1650
bool CaretVisibleIs()
Is the caret (hcaret or vcaret) currently visible on the worksheet?
Definition: Worksheet.cpp:5345
EditorCell * GetActiveCell() const
Get the currently active EditorCell.
Definition: Worksheet.h:677
bool UpdateControlsNeeded()
Is an update of the worksheet controls needed?
Definition: Worksheet.h:144
bool CopyCells() const
Copy the selection to the clipboard as it would appear in a .wxm file.
Definition: Worksheet.cpp:2054
bool OpenQuestionCaret(const wxString &txt={})
Move the cursor to the question maxima currently asks and if needed add a cell for user input.
Definition: Worksheet.cpp:2281
bool FindIncremental(const wxString &str, bool down, bool ignoreCase, bool searchInInput=true, bool searchInOutput=true)
Do an incremental search from the cursor or the point the last search started at.
Definition: Worksheet.cpp:5186
GroupCell * GetLastCell()
Returns the last cell of the worksheet.
Definition: Worksheet.h:1390
GroupCell * GetHCaret()
The cell the horizontal cursor is above. NULL means at the start of the document.
Definition: Worksheet.cpp:4954
wxString ConvertSelectionToMathML() const
Convert the current selection to MathML.
Definition: Worksheet.cpp:1867
bool CanUndoInsideCell() const
Is it possible to issue an undo in the currently selected cell?
Definition: Worksheet.h:1432
void SetHCaret(GroupCell *where)
Set the HCaret at the location of the given Cell.
Definition: Worksheet.cpp:4981
bool CanRedoInsideCell() const
Is it possible to issue an undo in the currently selected cell?
Definition: Worksheet.h:1440
bool GCContainsCurrentQuestion(const GroupCell *cell)
Does the GroupCell cell points to contain the question currently asked by maxima?
Definition: Worksheet.cpp:2511
bool WillAutoAnswer() const
Execute all collected scroll events in one go.
Definition: Worksheet.cpp:2274
bool IsEmpty() const
Is this worksheet empty?
Definition: Worksheet.h:591
void NumberSections() const
Renumber all sections.
Definition: Worksheet.cpp:1153
void SetViewVirtualSize(int width, int height) override
Set the scrollable (virtual) area, in device pixels.
Definition: Worksheet.h:124
void OnKeyDown(wxKeyEvent &event)
A special key has been pressed.
Definition: Worksheet.cpp:2406
GroupCell * FindGroupCellByUUID(const wxString &uuid) const
Finds a GroupCell by its UUID, or nullptr if no cell has that UUID.
Definition: Worksheet.cpp:959
EditorCell * KeyboardSelectionStart() const
Tells us which cell the keyboard selection has started in.
Definition: Worksheet.h:680
void SetSelection(Cell *sel)
Select the cell sel.
Definition: Worksheet.h:1262
void AddCellToEvaluationQueue(GroupCell *gc)
Schedule this cell for evaluation.
Definition: Worksheet.cpp:4157
void SetCellStyle(GroupCell *group, GroupType style)
Change the style of a cell.
Definition: Worksheet.cpp:2199
bool Autocomplete(AutoComplete::autoCompletionType type=AutoComplete::command)
Definition: Worksheet.cpp:5651
wxBitmap m_memory
A memory we can manually buffer the contents of the area that is to be redrawn in.
Definition: Worksheet.h:1773
void LoadSymbols()
Compile a list of known autocompletion symbols.
Definition: Worksheet.cpp:3800
void SelectGroupCell(GroupCell *cell)
Set this cell as the currently selected one.
Definition: Worksheet.cpp:6076
void ShowPoint(wxPoint point)
Scrolls to a point on the worksheet.
Definition: Worksheet.cpp:4620
void WindowActive(bool active)
Is this window active?
Definition: Worksheet.h:629
bool ExportToTeX(const wxString &file)
export to a LaTeX file
Definition: Worksheet.cpp:3793
void AdjustSize()
Adjust the virtual size and scrollbars; see WorksheetLayout::AdjustSize().
Definition: Worksheet.h:515
void ShowHCaret()
Activates the horizontal cursor.
Definition: Worksheet.cpp:5013
TimerIDs
An enum of individual IDs for all timers this class handles.
Definition: Worksheet.h:392
void CodeCellVisibilityChanged()
To be called after enabling or disabling the visibility of code cells.
Definition: Worksheet.cpp:3781
void ScrollToCaret()
Request to scroll to the cursor as soon as wxMaxima is idle.
Definition: Worksheet.h:1322
void MarkRefreshAsDone()
Handle redrawing the worksheet or of parts of it.
Definition: Worksheet.h:727
bool CopyMathML() const
Copy the MathML representation of the current selection to the clipboard.
Definition: Worksheet.cpp:1935
bool CopyBitmap() const
Copy a bitmap of the current selection to the clipboard.
Definition: Worksheet.cpp:3517
bool CanCopyAsMathML() const
Would "Copy as MathML" of the current selection produce actual math?
Definition: Worksheet.cpp:1916
void GetViewClientSize(int *width, int *height) const override
The visible client area, in device pixels.
Definition: Worksheet.h:120
GroupCell * Fold(GroupCell *which)
Fold a cell (see WorksheetDocument::Fold())
Definition: Worksheet.h:1533
bool PointVisibleIs(wxPoint point)
Is the point currently visible on the worksheet?
Definition: Worksheet.cpp:4599
std::unique_ptr< Cell > CopySelection(bool asData=false) const
Copy the currently selected cells.
Definition: Worksheet.cpp:3693
GroupCell * GetLastCellInWorksheet() const
Returns a pointer to the last cell of this worksheet.
Definition: Worksheet.cpp:1669
void ScrollToStart()
Scroll to the start of the worksheet.
Definition: Worksheet.h:803
void NotifyRecalculation(GroupCell *start) override
Schedule a re-layout of the document starting at start (null = all).
Definition: Worksheet.h:132
void AddSymbol(const wxString &fun, AutoComplete::autoCompletionType type=AutoComplete::command)
Add a symbol to the autocompletion list.
Definition: Worksheet.h:1630
bool CanEdit() const
We can edit the input if the we have the whole input in selection!
Definition: Worksheet.h:1275
bool FindNext(const wxString &str, bool down, bool ignoreCase, bool searchInInput=true, bool searchInOutput=true, bool warn=true)
Find the next occurrence of a string.
Definition: Worksheet.cpp:5279
bool SectioningMoveIn(GroupCell *parent)
Make this chapter/section/... a section/subsection/... changing its subheadings, too.
Definition: Worksheet.cpp:5943
wxBitmap ConvertSelectionToBitmap() const
Convert the current selection to a bitmap.
void RequestRedraw(GroupCell *start=NULL)
Request the worksheet to be redrawn.
Definition: Worksheet.cpp:482
bool RedrawIfRequested()
Redraw the worksheet if RequestRedraw() has been called.
Definition: Worksheet.cpp:325
bool ExportToMAC(const wxString &file)
Export the file to a text file maxima's load command can read.
Definition: Worksheet.cpp:3926
void SetActiveCell(EditorCell *cell)
Mark an editor cell as the active one.
Definition: Worksheet.cpp:4515
FindReplaceDialog * m_findDialog
The find-and-replace-dialog.
Definition: Worksheet.h:809
void DrawGroupCell(wxDC &dc, wxDC &adc, GroupCell &cell)
Draws a groupcell on the DC.
Definition: Worksheet.cpp:821
void QuestionAnswered()
Mark the current question from maxima as "answered"..
Definition: Worksheet.cpp:2515
void DeleteRegion(GroupCell *start, GroupCell *end, UndoActions *undoBuffer)
Definition: Worksheet.cpp:2230
bool ScrollToCaretIfNeeded()
Scrolls to the cursor, if requested.
Definition: Worksheet.cpp:5379
void NotifyRedraw(GroupCell *start) override
Schedule a redraw of the document starting at start (null = all).
Definition: Worksheet.h:134
std::unique_ptr< GroupCell > CopyTree() const
Copies the worksheet's entire contents.
Definition: Worksheet.cpp:3513
GroupCell * EndOfSectioningUnit(GroupCell *start)
Finds the end of the current chapter/section/...
Definition: Worksheet.cpp:2556
std::vector< wxString > m_replacementsForCurrentWord
Suggestions for how the word that was right-clicked on could continue.
Definition: Worksheet.h:1716
int ExportSelectionOutputToDir(const wxString &dir, bool svg)
Write each selected group cell's output to an image file in a folder.
Definition: Worksheet.cpp:3638
void ForceRedraw()
Redraw the window now and mark any pending redraw request as "handled".
Definition: Worksheet.h:764
bool CopyTeX() const
Copy the TeX representation of the current selection to the clipboard.
Definition: Worksheet.cpp:1990
void AddRestToEvaluationQueue()
Add all cells below the cursor to the evaluation queue.
Definition: Worksheet.cpp:4103
void ScrollToCellIfNeeded()
Scrolls to the cell given by ScheduleScrollToCell; Is called once we have time to do so.
Definition: Worksheet.cpp:4209
void DrawGroupCell_UsingBitmap(wxDC *dc, GroupCell *cell)
Draws a groupcell in a bitmap and then blits it onto the DC.
Definition: Worksheet.cpp:770
void GetMaxPoint(int *width, int *height)
Get the coordinates of the bottom right point of the worksheet.
Definition: Worksheet.h:412
void OnMouseWheel(wxMouseEvent &event)
Called if the mouse wheel sents events.
Definition: Worksheet.cpp:1556
void RequestRecalculation()
Schedule a recalculation of the whole worksheet.
Definition: Worksheet.h:977
void CloseAutoCompletePopup()
Close the autocompletion pop-up if it is currently open.
Definition: Worksheet.h:594
bool SectioningMoveOut(GroupCell *parent)
Make this section/subsection/... a chapter/section/... changing its subheadings, too.
Definition: Worksheet.cpp:5985
bool FollowEvaluation() const
Query if we want to automatically scroll to the cell that is currently evaluated.
Definition: Worksheet.h:1456
void DestroyTree()
Clear the whole worksheet.
Definition: Worksheet.cpp:3504
wxString GetString(bool lb=false) const
Convert the current selection to a string.
Definition: Worksheet.cpp:1763
void NotifySavedStateChanged() override
The document's saved-state flipped; refresh the controls that show it.
Definition: Worksheet.h:136
int GetLastCellsVisited() const
How many cells the last layout pass visited. See WorksheetLayout.
Definition: Worksheet.h:980
std::unique_ptr< wxDataObject > CreateSelectionDataObject() const
Build the multi-format clipboard object for a non-cell selection.
Definition: Worksheet.cpp:1810
GroupCell * GetWorkingGroup(bool resortToLast=false) const
Returns the cell maxima currently works on.
Definition: Worksheet.cpp:937
bool CopySVG() const
Copy a svg of the current selection to the clipboard.
Definition: Worksheet.cpp:3532
void Evaluate()
Trigger the evaluation of the current cell(s)
Definition: Worksheet.cpp:2397
void OnScrollChanged(wxScrollEvent &ev)
Called if the user is using the scrollbar for scrolling through the document.
Definition: Worksheet.cpp:5112
void OnDoubleClick(wxMouseEvent &event)
Is called on double click on a cell.
Definition: Worksheet.cpp:4002
void OnActivate(wxActivateEvent &event)
Is called if this element looses or gets the focus.
Definition: Worksheet.cpp:4973
void AddToEvaluationQueue(GroupCell *cell)
Adds a group cell to the evaluation queue marking its contents as "outdated".
Definition: Worksheet.cpp:4078
void RequestRecalculation(Cell *start)
Schedule a recalculation of the worksheet starting with the cell start.
Definition: Worksheet.h:966
void AnonymizeCodeCells()
Anonymize the code cells in the current selection for a bug report (GH #1339).
Definition: Worksheet.cpp:5527
bool CanTreeRedo() const
Can we redo a tree operation?
Definition: Worksheet.cpp:4328
void TreeUndo_CellEntered()
The cursor has entered one cell => save the value to see if it has changed.
Definition: Worksheet.cpp:2190
void TreeUndo_AppendAction()
Add another action to this undo action.
Definition: Worksheet.h:309
bool TreeUndoTextChange(UndoActions *sourcelist, UndoActions *undoForThisOperation)
Undo a text change.
Definition: Worksheet.cpp:4420
bool TreeUndo()
Undo a tree operation.
Definition: Worksheet.h:336
void TreeUndo_ClearRedoActionList()
Clear the list of actions for which an undo can be undone.
Definition: Worksheet.h:303
bool CanTreeUndo() const
Can we undo a tree operation?
Definition: Worksheet.cpp:4324
void TreeUndo_CellLeft()
The cursor is about to leave the current cell => Store the change if the value has changed.
Definition: Worksheet.cpp:2175
void TreeUndo_ClearUndoActionList()
Clear the list of actions for which undo can undo.
Definition: Worksheet.h:306
bool TreeUndoCellAddition(UndoActions *sourcelist, UndoActions *undoForThisOperation)
Undo adding cells.
Definition: Worksheet.cpp:4356
bool TreeUndoCellDeletion(UndoActions *sourcelist, UndoActions *undoForThisOperation)
Undo a call deletion.
Definition: Worksheet.cpp:4343
bool TreeRedo()
Redo an undone tree operation.
Definition: Worksheet.h:340
void TreeUndo_MarkCellsAsAdded(GroupCell *start, GroupCell *end, UndoActions *undoBuffer)
Remember that these cells were just added so this addition can be undone.
Definition: Worksheet.cpp:2166
bool TreeUndoFold(UndoActions *sourcelist, UndoActions *undoForThisOperation)
Undo a fold or unfold (GH #266)
Definition: Worksheet.cpp:4391
Where a search starts: a group plus what the cursor is doing there.
Definition: WorksheetSearch.h:113
A search match: the group it is in and the matching part.
Definition: WorksheetSearch.h:97