]>
Commit | Line | Data |
---|---|---|
23324ae1 | 1 | ///////////////////////////////////////////////////////////////////////////// |
7afd2b58 JS |
2 | // Name: wx/richtext/richtextctrl.h |
3 | // Purpose: A rich edit control | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 2005-09-30 | |
23324ae1 | 7 | // RCS-ID: $Id$ |
7afd2b58 | 8 | // Copyright: (c) Julian Smart |
526954c5 | 9 | // Licence: wxWindows licence |
23324ae1 FM |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
7afd2b58 JS |
12 | /* |
13 | * Styles and flags | |
14 | */ | |
15 | ||
23324ae1 | 16 | /** |
7afd2b58 JS |
17 | Styles |
18 | */ | |
7c913512 | 19 | |
7afd2b58 JS |
20 | #define wxRE_READONLY 0x0010 |
21 | #define wxRE_MULTILINE 0x0020 | |
22 | #define wxRE_CENTRE_CARET 0x8000 | |
23 | #define wxRE_CENTER_CARET wxRE_CENTRE_CARET | |
7c913512 | 24 | |
7afd2b58 JS |
25 | /** |
26 | Flags | |
27 | */ | |
9e7ad1ca | 28 | |
7afd2b58 JS |
29 | #define wxRICHTEXT_SHIFT_DOWN 0x01 |
30 | #define wxRICHTEXT_CTRL_DOWN 0x02 | |
31 | #define wxRICHTEXT_ALT_DOWN 0x04 | |
32 | ||
33 | /** | |
34 | Extra flags | |
35 | */ | |
36 | ||
37 | // Don't draw guide lines around boxes and tables | |
38 | #define wxRICHTEXT_EX_NO_GUIDELINES 0x00000100 | |
39 | ||
40 | ||
41 | /* | |
42 | Defaults | |
23324ae1 | 43 | */ |
7afd2b58 JS |
44 | |
45 | #define wxRICHTEXT_DEFAULT_OVERALL_SIZE wxSize(-1, -1) | |
46 | #define wxRICHTEXT_DEFAULT_IMAGE_SIZE wxSize(80, 80) | |
47 | #define wxRICHTEXT_DEFAULT_SPACING 3 | |
48 | #define wxRICHTEXT_DEFAULT_MARGIN 3 | |
49 | #define wxRICHTEXT_DEFAULT_UNFOCUSSED_BACKGROUND wxColour(175, 175, 175) | |
50 | #define wxRICHTEXT_DEFAULT_FOCUSSED_BACKGROUND wxColour(140, 140, 140) | |
51 | #define wxRICHTEXT_DEFAULT_UNSELECTED_BACKGROUND wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE) | |
52 | #define wxRICHTEXT_DEFAULT_TYPE_COLOUR wxColour(0, 0, 200) | |
53 | #define wxRICHTEXT_DEFAULT_FOCUS_RECT_COLOUR wxColour(100, 80, 80) | |
54 | #define wxRICHTEXT_DEFAULT_CARET_WIDTH 2 | |
55 | // Minimum buffer size before delayed layout kicks in | |
56 | #define wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD 20000 | |
57 | // Milliseconds before layout occurs after resize | |
58 | #define wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL 50 | |
59 | ||
60 | /* Identifiers | |
61 | */ | |
62 | #define wxID_RICHTEXT_PROPERTIES1 (wxID_HIGHEST + 1) | |
63 | #define wxID_RICHTEXT_PROPERTIES2 (wxID_HIGHEST + 2) | |
64 | #define wxID_RICHTEXT_PROPERTIES3 (wxID_HIGHEST + 3) | |
65 | ||
66 | /* | |
67 | Normal selection occurs initially and as user drags within one container. | |
68 | Common ancestor selection occurs when the user starts dragging across containers | |
69 | that have a common ancestor, for example the cells in a table. | |
70 | */ | |
71 | ||
72 | enum wxRichTextCtrlSelectionState | |
23324ae1 | 73 | { |
7afd2b58 JS |
74 | wxRichTextCtrlSelectionState_Normal, |
75 | wxRichTextCtrlSelectionState_CommonAncestor | |
76 | }; | |
77 | ||
78 | /** | |
79 | @class wxRichTextContextMenuPropertiesInfo | |
80 | ||
81 | wxRichTextContextMenuPropertiesInfo keeps track of objects that appear in the context menu, | |
82 | whose properties are available to be edited. | |
83 | */ | |
738b7b98 | 84 | |
7afd2b58 JS |
85 | class WXDLLIMPEXP_RICHTEXT wxRichTextContextMenuPropertiesInfo |
86 | { | |
87 | public: | |
738b7b98 BP |
88 | /** |
89 | Constructor. | |
738b7b98 | 90 | */ |
7afd2b58 JS |
91 | wxRichTextContextMenuPropertiesInfo() { Init(); } |
92 | ||
93 | // Operations | |
23324ae1 | 94 | |
23324ae1 | 95 | /** |
7afd2b58 | 96 | Initialisation. |
23324ae1 | 97 | */ |
7afd2b58 | 98 | void Init() {} |
23324ae1 FM |
99 | |
100 | /** | |
7afd2b58 | 101 | Adds an item. |
23324ae1 | 102 | */ |
7afd2b58 | 103 | bool AddItem(const wxString& label, wxRichTextObject* obj); |
23324ae1 FM |
104 | |
105 | /** | |
7afd2b58 | 106 | Returns the number of menu items that were added. |
23324ae1 | 107 | */ |
7afd2b58 | 108 | int AddMenuItems(wxMenu* menu, int startCmd = wxID_RICHTEXT_PROPERTIES1) const; |
23324ae1 FM |
109 | |
110 | /** | |
7afd2b58 JS |
111 | Adds appropriate menu items for the current container and clicked on object |
112 | (and container's parent, if appropriate). | |
23324ae1 | 113 | */ |
303f0be7 | 114 | int AddItems(wxRichTextCtrl* ctrl, wxRichTextObject* container, wxRichTextObject* obj); |
23324ae1 FM |
115 | |
116 | /** | |
7afd2b58 | 117 | Clears the items. |
23324ae1 | 118 | */ |
7afd2b58 JS |
119 | void Clear() { m_objects.Clear(); m_labels.Clear(); } |
120 | ||
121 | // Accessors | |
23324ae1 FM |
122 | |
123 | /** | |
7afd2b58 | 124 | Returns the nth label. |
23324ae1 | 125 | */ |
7afd2b58 | 126 | wxString GetLabel(int n) const { return m_labels[n]; } |
23324ae1 FM |
127 | |
128 | /** | |
7afd2b58 | 129 | Returns the nth object. |
23324ae1 | 130 | */ |
7afd2b58 | 131 | wxRichTextObject* GetObject(int n) const { return m_objects[n]; } |
23324ae1 FM |
132 | |
133 | /** | |
7afd2b58 | 134 | Returns the array of objects. |
23324ae1 | 135 | */ |
7afd2b58 | 136 | wxRichTextObjectPtrArray& GetObjects() { return m_objects; } |
23324ae1 FM |
137 | |
138 | /** | |
7afd2b58 | 139 | Returns the array of objects. |
23324ae1 | 140 | */ |
7afd2b58 | 141 | const wxRichTextObjectPtrArray& GetObjects() const { return m_objects; } |
23324ae1 FM |
142 | |
143 | /** | |
7afd2b58 | 144 | Returns the array of labels. |
23324ae1 | 145 | */ |
7afd2b58 | 146 | wxArrayString& GetLabels() { return m_labels; } |
23324ae1 FM |
147 | |
148 | /** | |
7afd2b58 | 149 | Returns the array of labels. |
23324ae1 | 150 | */ |
7afd2b58 | 151 | const wxArrayString& GetLabels() const { return m_labels; } |
23324ae1 FM |
152 | |
153 | /** | |
7afd2b58 | 154 | Returns the number of items. |
23324ae1 | 155 | */ |
7afd2b58 | 156 | int GetCount() const { return m_objects.GetCount(); } |
23324ae1 | 157 | |
7afd2b58 JS |
158 | wxRichTextObjectPtrArray m_objects; |
159 | wxArrayString m_labels; | |
160 | }; | |
e54c96f1 | 161 | |
23324ae1 FM |
162 | /** |
163 | @class wxRichTextCtrl | |
7c913512 | 164 | |
23324ae1 FM |
165 | wxRichTextCtrl provides a generic, ground-up implementation of a text control |
166 | capable of showing multiple styles and images. | |
7c913512 | 167 | |
23324ae1 | 168 | wxRichTextCtrl sends notification events: see wxRichTextEvent. |
9e7ad1ca | 169 | |
3a194bda SL |
170 | It also sends the standard wxTextCtrl events @c wxEVT_COMMAND_TEXT_ENTER and |
171 | @c wxEVT_COMMAND_TEXT_UPDATED, and wxTextUrlEvent when URL content is clicked. | |
7c913512 | 172 | |
738b7b98 | 173 | For more information, see the @ref overview_richtextctrl. |
7c913512 | 174 | |
e9f10004 JS |
175 | @beginStyleTable |
176 | @style{wxRE_CENTRE_CARET} | |
177 | The control will try to keep the caret line centred vertically while editing. | |
178 | wxRE_CENTER_CARET is a synonym for this style. | |
179 | @style{wxRE_MULTILINE} | |
180 | The control will be multiline (mandatory). | |
181 | @style{wxRE_READONLY} | |
182 | The control will not be editable. | |
183 | @endStyleTable | |
184 | ||
23324ae1 | 185 | @library{wxrichtext} |
21b447dc | 186 | @category{richtext} |
36d0c795 | 187 | @appearance{richtextctrl.png} |
7afd2b58 JS |
188 | |
189 | */ | |
190 | ||
191 | class WXDLLIMPEXP_RICHTEXT wxRichTextCtrl : public wxControl, | |
192 | public wxTextCtrlIface, | |
193 | public wxScrollHelper | |
23324ae1 | 194 | { |
7afd2b58 JS |
195 | DECLARE_CLASS( wxRichTextCtrl ) |
196 | DECLARE_EVENT_TABLE() | |
197 | ||
23324ae1 | 198 | public: |
7afd2b58 JS |
199 | // Constructors |
200 | ||
23324ae1 | 201 | /** |
7afd2b58 | 202 | Default constructor. |
23324ae1 | 203 | */ |
7afd2b58 | 204 | wxRichTextCtrl( ); |
738b7b98 BP |
205 | |
206 | /** | |
207 | Constructor, creating and showing a rich text control. | |
208 | ||
209 | @param parent | |
210 | Parent window. Must not be @NULL. | |
211 | @param id | |
212 | Window identifier. The value @c wxID_ANY indicates a default value. | |
213 | @param value | |
214 | Default string. | |
215 | @param pos | |
216 | Window position. | |
217 | @param size | |
218 | Window size. | |
219 | @param style | |
220 | Window style. | |
221 | @param validator | |
222 | Window validator. | |
223 | @param name | |
224 | Window name. | |
225 | ||
226 | @see Create(), wxValidator | |
227 | */ | |
7afd2b58 JS |
228 | wxRichTextCtrl( wxWindow* parent, wxWindowID id = -1, const wxString& value = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
229 | long style = wxRE_MULTILINE, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxTextCtrlNameStr); | |
23324ae1 FM |
230 | |
231 | /** | |
232 | Destructor. | |
233 | */ | |
7afd2b58 JS |
234 | virtual ~wxRichTextCtrl( ); |
235 | ||
236 | // Operations | |
23324ae1 FM |
237 | |
238 | /** | |
7afd2b58 | 239 | Creates the underlying window. |
23324ae1 | 240 | */ |
7afd2b58 JS |
241 | bool Create( wxWindow* parent, wxWindowID id = -1, const wxString& value = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
242 | long style = wxRE_MULTILINE, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxTextCtrlNameStr ); | |
23324ae1 FM |
243 | |
244 | /** | |
7afd2b58 | 245 | Initialises the members of the control. |
23324ae1 | 246 | */ |
7afd2b58 JS |
247 | void Init(); |
248 | ||
249 | // Accessors | |
23324ae1 FM |
250 | |
251 | /** | |
7afd2b58 JS |
252 | Gets the text for the given range. |
253 | The end point of range is specified as the last character position of | |
254 | the span of text, plus one. | |
23324ae1 | 255 | */ |
7afd2b58 | 256 | virtual wxString GetRange(long from, long to) const; |
23324ae1 FM |
257 | |
258 | /** | |
7afd2b58 | 259 | Returns the length of the specified line in characters. |
23324ae1 | 260 | */ |
7afd2b58 | 261 | virtual int GetLineLength(long lineNo) const ; |
23324ae1 FM |
262 | |
263 | /** | |
7afd2b58 | 264 | Returns the text for the given line. |
23324ae1 | 265 | */ |
7afd2b58 | 266 | virtual wxString GetLineText(long lineNo) const ; |
23324ae1 FM |
267 | |
268 | /** | |
7afd2b58 | 269 | Returns the number of lines in the buffer. |
23324ae1 | 270 | */ |
7afd2b58 | 271 | virtual int GetNumberOfLines() const ; |
23324ae1 FM |
272 | |
273 | /** | |
7afd2b58 | 274 | Returns @true if the buffer has been modified. |
23324ae1 | 275 | */ |
7afd2b58 | 276 | virtual bool IsModified() const ; |
23324ae1 FM |
277 | |
278 | /** | |
7afd2b58 | 279 | Returns @true if the control is editable. |
23324ae1 | 280 | */ |
7afd2b58 | 281 | virtual bool IsEditable() const ; |
23324ae1 FM |
282 | |
283 | /** | |
7afd2b58 JS |
284 | Returns @true if the control is single-line. |
285 | Currently wxRichTextCtrl does not support single-line editing. | |
23324ae1 | 286 | */ |
7afd2b58 | 287 | bool IsSingleLine() const { return !HasFlag(wxRE_MULTILINE); } |
23324ae1 FM |
288 | |
289 | /** | |
7afd2b58 | 290 | Returns @true if the control is multiline. |
23324ae1 | 291 | */ |
7afd2b58 | 292 | bool IsMultiLine() const { return !IsSingleLine(); } |
23324ae1 | 293 | |
7afd2b58 | 294 | //@{ |
23324ae1 | 295 | /** |
7afd2b58 JS |
296 | Returns the range of the current selection. |
297 | The end point of range is specified as the last character position of the span | |
298 | of text, plus one. | |
299 | If the return values @a from and @a to are the same, there is no selection. | |
23324ae1 | 300 | */ |
7afd2b58 JS |
301 | virtual void GetSelection(long* from, long* to) const; |
302 | const wxRichTextSelection& GetSelection() const { return m_selection; } | |
303 | wxRichTextSelection& GetSelection() { return m_selection; } | |
304 | //@} | |
23324ae1 FM |
305 | |
306 | /** | |
7afd2b58 | 307 | Returns the text within the current selection range, if any. |
23324ae1 | 308 | */ |
7afd2b58 | 309 | virtual wxString GetStringSelection() const; |
23324ae1 FM |
310 | |
311 | /** | |
7afd2b58 | 312 | Gets the current filename associated with the control. |
23324ae1 | 313 | */ |
7afd2b58 | 314 | wxString GetFilename() const { return m_filename; } |
23324ae1 FM |
315 | |
316 | /** | |
7afd2b58 | 317 | Sets the current filename. |
23324ae1 | 318 | */ |
7afd2b58 | 319 | void SetFilename(const wxString& filename) { m_filename = filename; } |
23324ae1 FM |
320 | |
321 | /** | |
7afd2b58 JS |
322 | Sets the size of the buffer beyond which layout is delayed during resizing. |
323 | This optimizes sizing for large buffers. The default is 20000. | |
23324ae1 | 324 | */ |
7afd2b58 | 325 | void SetDelayedLayoutThreshold(long threshold) { m_delayedLayoutThreshold = threshold; } |
23324ae1 FM |
326 | |
327 | /** | |
7afd2b58 JS |
328 | Gets the size of the buffer beyond which layout is delayed during resizing. |
329 | This optimizes sizing for large buffers. The default is 20000. | |
23324ae1 | 330 | */ |
7afd2b58 | 331 | long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold; } |
23324ae1 FM |
332 | |
333 | /** | |
23324ae1 | 334 | */ |
7afd2b58 | 335 | bool GetFullLayoutRequired() const { return m_fullLayoutRequired; } |
23324ae1 FM |
336 | |
337 | /** | |
23324ae1 | 338 | */ |
7afd2b58 | 339 | void SetFullLayoutRequired(bool b) { m_fullLayoutRequired = b; } |
23324ae1 FM |
340 | |
341 | /** | |
23324ae1 | 342 | */ |
7afd2b58 | 343 | wxLongLong GetFullLayoutTime() const { return m_fullLayoutTime; } |
23324ae1 FM |
344 | |
345 | /** | |
23324ae1 | 346 | */ |
7afd2b58 | 347 | void SetFullLayoutTime(wxLongLong t) { m_fullLayoutTime = t; } |
23324ae1 FM |
348 | |
349 | /** | |
23324ae1 | 350 | */ |
7afd2b58 | 351 | long GetFullLayoutSavedPosition() const { return m_fullLayoutSavedPosition; } |
23324ae1 FM |
352 | |
353 | /** | |
23324ae1 | 354 | */ |
7afd2b58 | 355 | void SetFullLayoutSavedPosition(long p) { m_fullLayoutSavedPosition = p; } |
23324ae1 | 356 | |
7afd2b58 | 357 | // Force any pending layout due to large buffer |
23324ae1 | 358 | /** |
23324ae1 | 359 | */ |
7afd2b58 | 360 | void ForceDelayedLayout(); |
23324ae1 FM |
361 | |
362 | /** | |
7afd2b58 | 363 | Sets the text (normal) cursor. |
23324ae1 | 364 | */ |
7afd2b58 | 365 | void SetTextCursor(const wxCursor& cursor ) { m_textCursor = cursor; } |
23324ae1 FM |
366 | |
367 | /** | |
7afd2b58 | 368 | Returns the text (normal) cursor. |
23324ae1 | 369 | */ |
7afd2b58 | 370 | wxCursor GetTextCursor() const { return m_textCursor; } |
23324ae1 FM |
371 | |
372 | /** | |
7afd2b58 | 373 | Sets the cursor to be used over URLs. |
23324ae1 | 374 | */ |
7afd2b58 | 375 | void SetURLCursor(const wxCursor& cursor ) { m_urlCursor = cursor; } |
23324ae1 FM |
376 | |
377 | /** | |
7afd2b58 | 378 | Returns the cursor to be used over URLs. |
23324ae1 | 379 | */ |
7afd2b58 | 380 | wxCursor GetURLCursor() const { return m_urlCursor; } |
23324ae1 FM |
381 | |
382 | /** | |
7afd2b58 JS |
383 | Returns @true if we are showing the caret position at the start of a line |
384 | instead of at the end of the previous one. | |
23324ae1 | 385 | */ |
7afd2b58 | 386 | bool GetCaretAtLineStart() const { return m_caretAtLineStart; } |
23324ae1 FM |
387 | |
388 | /** | |
7afd2b58 JS |
389 | Sets a flag to remember that we are showing the caret position at the start of a line |
390 | instead of at the end of the previous one. | |
23324ae1 | 391 | */ |
7afd2b58 | 392 | void SetCaretAtLineStart(bool atStart) { m_caretAtLineStart = atStart; } |
23324ae1 FM |
393 | |
394 | /** | |
0c0e063e | 395 | Returns @true if we are extending a selection. |
23324ae1 | 396 | */ |
7afd2b58 | 397 | bool GetDragging() const { return m_dragging; } |
23324ae1 FM |
398 | |
399 | /** | |
0c0e063e | 400 | Sets a flag to remember if we are extending a selection. |
23324ae1 | 401 | */ |
7afd2b58 | 402 | void SetDragging(bool dragging) { m_dragging = dragging; } |
23324ae1 FM |
403 | |
404 | /** | |
0c0e063e | 405 | Are we trying to start Drag'n'Drop? |
23324ae1 | 406 | */ |
0c0e063e | 407 | bool GetPreDrag() const { return m_preDrag; } |
23324ae1 FM |
408 | |
409 | /** | |
0c0e063e | 410 | Set if we're trying to start Drag'n'Drop |
23324ae1 | 411 | */ |
0c0e063e JS |
412 | void SetPreDrag(bool pd) { m_preDrag = pd; } |
413 | ||
414 | /** | |
415 | Get the possible Drag'n'Drop start point | |
416 | */ | |
417 | const wxPoint GetDragStartPoint() const { return m_dragStartPoint; } | |
418 | ||
419 | /** | |
420 | Set the possible Drag'n'Drop start point | |
421 | */ | |
422 | void SetDragStartPoint(wxPoint sp) { m_dragStartPoint = sp; } | |
423 | ||
424 | /** | |
425 | Get the possible Drag'n'Drop start time | |
426 | */ | |
427 | const wxDateTime GetDragStartTime() const { return m_dragStartTime; } | |
428 | ||
429 | /** | |
430 | Set the possible Drag'n'Drop start time | |
431 | */ | |
432 | void SetDragStartTime(wxDateTime st) { m_dragStartTime = st; } | |
23324ae1 | 433 | |
7afd2b58 JS |
434 | #if wxRICHTEXT_BUFFERED_PAINTING |
435 | //@{ | |
23324ae1 | 436 | /** |
7afd2b58 | 437 | Returns the buffer bitmap if using buffered painting. |
23324ae1 | 438 | */ |
7afd2b58 JS |
439 | const wxBitmap& GetBufferBitmap() const { return m_bufferBitmap; } |
440 | wxBitmap& GetBufferBitmap() { return m_bufferBitmap; } | |
441 | //@} | |
442 | #endif | |
23324ae1 FM |
443 | |
444 | /** | |
7afd2b58 | 445 | Returns the current context menu. |
23324ae1 | 446 | */ |
7afd2b58 | 447 | wxMenu* GetContextMenu() const { return m_contextMenu; } |
23324ae1 FM |
448 | |
449 | /** | |
7afd2b58 | 450 | Sets the current context menu. |
23324ae1 | 451 | */ |
7afd2b58 | 452 | void SetContextMenu(wxMenu* menu); |
23324ae1 FM |
453 | |
454 | /** | |
7afd2b58 JS |
455 | Returns an anchor so we know how to extend the selection. |
456 | It's a caret position since it's between two characters. | |
23324ae1 | 457 | */ |
7afd2b58 | 458 | long GetSelectionAnchor() const { return m_selectionAnchor; } |
23324ae1 | 459 | |
23324ae1 | 460 | /** |
7afd2b58 JS |
461 | Sets an anchor so we know how to extend the selection. |
462 | It's a caret position since it's between two characters. | |
23324ae1 | 463 | */ |
7afd2b58 | 464 | void SetSelectionAnchor(long anchor) { m_selectionAnchor = anchor; } |
23324ae1 FM |
465 | |
466 | /** | |
7afd2b58 | 467 | Returns the anchor object if selecting multiple containers. |
23324ae1 | 468 | */ |
7afd2b58 | 469 | wxRichTextObject* GetSelectionAnchorObject() const { return m_selectionAnchorObject; } |
23324ae1 FM |
470 | |
471 | /** | |
7afd2b58 | 472 | Sets the anchor object if selecting multiple containers. |
23324ae1 | 473 | */ |
7afd2b58 | 474 | void SetSelectionAnchorObject(wxRichTextObject* anchor) { m_selectionAnchorObject = anchor; } |
23324ae1 | 475 | |
7afd2b58 | 476 | //@{ |
23324ae1 | 477 | /** |
7afd2b58 JS |
478 | Returns an object that stores information about context menu property item(s), |
479 | in order to communicate between the context menu event handler and the code | |
480 | that responds to it. The wxRichTextContextMenuPropertiesInfo stores one | |
481 | item for each object that could respond to a property-editing event. If | |
482 | objects are nested, several might be editable. | |
23324ae1 | 483 | */ |
7afd2b58 JS |
484 | wxRichTextContextMenuPropertiesInfo& GetContextMenuPropertiesInfo() { return m_contextMenuPropertiesInfo; } |
485 | const wxRichTextContextMenuPropertiesInfo& GetContextMenuPropertiesInfo() const { return m_contextMenuPropertiesInfo; } | |
486 | //@} | |
23324ae1 FM |
487 | |
488 | /** | |
7afd2b58 JS |
489 | Returns the wxRichTextObject object that currently has the editing focus. |
490 | If there are no composite objects, this will be the top-level buffer. | |
23324ae1 | 491 | */ |
7afd2b58 | 492 | wxRichTextParagraphLayoutBox* GetFocusObject() const { return m_focusObject; } |
23324ae1 | 493 | |
0c0e063e JS |
494 | /** |
495 | Setter for m_focusObject. | |
496 | */ | |
497 | void StoreFocusObject(wxRichTextParagraphLayoutBox* obj); | |
498 | ||
23324ae1 | 499 | /** |
7afd2b58 | 500 | Sets the wxRichTextObject object that currently has the editing focus. |
0c0e063e JS |
501 | @param setCaretPosition |
502 | Optionally set the caret position. | |
23324ae1 | 503 | */ |
7afd2b58 | 504 | bool SetFocusObject(wxRichTextParagraphLayoutBox* obj, bool setCaretPosition = true); |
371ae8b5 | 505 | |
7afd2b58 | 506 | // Operations |
23324ae1 FM |
507 | |
508 | /** | |
7afd2b58 | 509 | Invalidates the whole buffer to trigger painting later. |
23324ae1 | 510 | */ |
7afd2b58 | 511 | void Invalidate() { GetBuffer().Invalidate(wxRICHTEXT_ALL); } |
23324ae1 FM |
512 | |
513 | /** | |
7afd2b58 | 514 | Clears the buffer content, leaving a single empty paragraph. Cannot be undone. |
23324ae1 | 515 | */ |
7afd2b58 | 516 | virtual void Clear(); |
23324ae1 | 517 | |
23324ae1 | 518 | /** |
7afd2b58 JS |
519 | Replaces the content in the specified range with the string specified by |
520 | @a value. | |
23324ae1 | 521 | */ |
7afd2b58 | 522 | virtual void Replace(long from, long to, const wxString& value); |
23324ae1 FM |
523 | |
524 | /** | |
7afd2b58 | 525 | Removes the content in the specified range. |
23324ae1 | 526 | */ |
7afd2b58 | 527 | virtual void Remove(long from, long to); |
23324ae1 | 528 | |
7afd2b58 | 529 | #ifdef DOXYGEN |
23324ae1 | 530 | /** |
7afd2b58 | 531 | Loads content into the control's buffer using the given type. |
23324ae1 | 532 | |
7afd2b58 JS |
533 | If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from |
534 | the filename extension. | |
23324ae1 | 535 | |
7afd2b58 | 536 | This function looks for a suitable wxRichTextFileHandler object. |
23324ae1 | 537 | */ |
7afd2b58 JS |
538 | bool LoadFile(const wxString& file, |
539 | int type = wxRICHTEXT_TYPE_ANY); | |
540 | #endif | |
23324ae1 FM |
541 | |
542 | /** | |
7afd2b58 | 543 | Helper function for LoadFile(). Loads content into the control's buffer using the given type. |
23324ae1 | 544 | |
7afd2b58 JS |
545 | If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from |
546 | the filename extension. | |
23324ae1 | 547 | |
7afd2b58 | 548 | This function looks for a suitable wxRichTextFileHandler object. |
23324ae1 | 549 | */ |
7afd2b58 | 550 | virtual bool DoLoadFile(const wxString& file, int fileType); |
23324ae1 | 551 | |
7afd2b58 | 552 | #ifdef DOXYGEN |
23324ae1 | 553 | /** |
7afd2b58 | 554 | Saves the buffer content using the given type. |
23324ae1 | 555 | |
7afd2b58 JS |
556 | If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from |
557 | the filename extension. | |
23324ae1 | 558 | |
7afd2b58 | 559 | This function looks for a suitable wxRichTextFileHandler object. |
23324ae1 | 560 | */ |
7afd2b58 JS |
561 | bool SaveFile(const wxString& file = wxEmptyString, |
562 | int type = wxRICHTEXT_TYPE_ANY); | |
563 | #endif | |
23324ae1 FM |
564 | |
565 | /** | |
7afd2b58 | 566 | Helper function for SaveFile(). Saves the buffer content using the given type. |
23324ae1 | 567 | |
7afd2b58 JS |
568 | If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from |
569 | the filename extension. | |
23324ae1 | 570 | |
7afd2b58 | 571 | This function looks for a suitable wxRichTextFileHandler object. |
23324ae1 | 572 | */ |
7afd2b58 JS |
573 | virtual bool DoSaveFile(const wxString& file = wxEmptyString, |
574 | int fileType = wxRICHTEXT_TYPE_ANY); | |
23324ae1 FM |
575 | |
576 | /** | |
7afd2b58 | 577 | Sets flags that change the behaviour of loading or saving. |
23324ae1 | 578 | |
7afd2b58 JS |
579 | See the documentation for each handler class to see what flags are |
580 | relevant for each handler. | |
23324ae1 | 581 | */ |
7afd2b58 | 582 | void SetHandlerFlags(int flags) { GetBuffer().SetHandlerFlags(flags); } |
23324ae1 FM |
583 | |
584 | /** | |
7afd2b58 JS |
585 | Returns flags that change the behaviour of loading or saving. |
586 | See the documentation for each handler class to see what flags are | |
587 | relevant for each handler. | |
23324ae1 | 588 | */ |
7afd2b58 | 589 | int GetHandlerFlags() const { return GetBuffer().GetHandlerFlags(); } |
23324ae1 FM |
590 | |
591 | /** | |
7afd2b58 | 592 | Marks the buffer as modified. |
23324ae1 | 593 | */ |
7afd2b58 | 594 | virtual void MarkDirty(); |
23324ae1 FM |
595 | |
596 | /** | |
7afd2b58 JS |
597 | Sets the buffer's modified status to @false, and clears the buffer's command |
598 | history. | |
23324ae1 | 599 | */ |
7afd2b58 | 600 | virtual void DiscardEdits(); |
23324ae1 FM |
601 | |
602 | /** | |
7afd2b58 JS |
603 | Sets the maximum number of characters that may be entered in a single line |
604 | text control. For compatibility only; currently does nothing. | |
23324ae1 | 605 | */ |
7afd2b58 | 606 | virtual void SetMaxLength(unsigned long WXUNUSED(len)) { } |
23324ae1 FM |
607 | |
608 | /** | |
7afd2b58 | 609 | Writes text at the current position. |
23324ae1 | 610 | */ |
7afd2b58 | 611 | virtual void WriteText(const wxString& text); |
23324ae1 FM |
612 | |
613 | /** | |
7afd2b58 | 614 | Sets the insertion point to the end of the buffer and writes the text. |
23324ae1 | 615 | */ |
7afd2b58 | 616 | virtual void AppendText(const wxString& text); |
23324ae1 | 617 | |
7afd2b58 | 618 | //@{ |
23324ae1 | 619 | /** |
7afd2b58 JS |
620 | Gets the attributes at the given position. |
621 | This function gets the combined style - that is, the style you see on the | |
622 | screen as a result of combining base style, paragraph style and character | |
623 | style attributes. | |
624 | ||
625 | To get the character or paragraph style alone, use GetUncombinedStyle(). | |
626 | ||
627 | @beginWxPerlOnly | |
628 | In wxPerl this method is implemented as GetStyle(@a position) | |
629 | returning a 2-element list (ok, attr). | |
630 | @endWxPerlOnly | |
23324ae1 | 631 | */ |
7afd2b58 JS |
632 | virtual bool GetStyle(long position, wxTextAttr& style); |
633 | virtual bool GetStyle(long position, wxRichTextAttr& style); | |
634 | virtual bool GetStyle(long position, wxRichTextAttr& style, wxRichTextParagraphLayoutBox* container); | |
635 | //@} | |
23324ae1 | 636 | |
7afd2b58 | 637 | //@{ |
23324ae1 | 638 | /** |
7afd2b58 JS |
639 | Sets the attributes for the given range. |
640 | The end point of range is specified as the last character position of the span | |
641 | of text, plus one. | |
642 | ||
643 | So, for example, to set the style for a character at position 5, use the range | |
644 | (5,6). | |
23324ae1 | 645 | */ |
7afd2b58 JS |
646 | virtual bool SetStyle(long start, long end, const wxTextAttr& style); |
647 | virtual bool SetStyle(long start, long end, const wxRichTextAttr& style); | |
648 | virtual bool SetStyle(const wxRichTextRange& range, const wxTextAttr& style); | |
649 | virtual bool SetStyle(const wxRichTextRange& range, const wxRichTextAttr& style); | |
650 | //@} | |
23324ae1 FM |
651 | |
652 | /** | |
7afd2b58 | 653 | Sets the attributes for a single object |
23324ae1 | 654 | */ |
e059e1bb | 655 | virtual void SetStyle(wxRichTextObject *obj, const wxRichTextAttr& textAttr, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO); |
23324ae1 FM |
656 | |
657 | //@{ | |
658 | /** | |
7afd2b58 JS |
659 | Gets the attributes common to the specified range. |
660 | Attributes that differ in value within the range will not be included | |
661 | in @a style flags. | |
662 | ||
663 | @beginWxPerlOnly | |
664 | In wxPerl this method is implemented as GetStyleForRange(@a position) | |
665 | returning a 2-element list (ok, attr). | |
666 | @endWxPerlOnly | |
23324ae1 | 667 | */ |
7afd2b58 JS |
668 | virtual bool GetStyleForRange(const wxRichTextRange& range, wxTextAttr& style); |
669 | virtual bool GetStyleForRange(const wxRichTextRange& range, wxRichTextAttr& style); | |
670 | virtual bool GetStyleForRange(const wxRichTextRange& range, wxRichTextAttr& style, wxRichTextParagraphLayoutBox* container); | |
23324ae1 FM |
671 | //@} |
672 | ||
673 | /** | |
7afd2b58 JS |
674 | Sets the attributes for the given range, passing flags to determine how the |
675 | attributes are set. | |
676 | ||
677 | The end point of range is specified as the last character position of the span | |
678 | of text, plus one. So, for example, to set the style for a character at | |
679 | position 5, use the range (5,6). | |
680 | ||
681 | @a flags may contain a bit list of the following values: | |
682 | - wxRICHTEXT_SETSTYLE_NONE: no style flag. | |
683 | - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this operation should be | |
684 | undoable. | |
685 | - wxRICHTEXT_SETSTYLE_OPTIMIZE: specifies that the style should not be applied | |
686 | if the combined style at this point is already the style in question. | |
687 | - wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY: specifies that the style should only be | |
688 | applied to paragraphs, and not the content. | |
689 | This allows content styling to be preserved independently from that | |
690 | of e.g. a named paragraph style. | |
691 | - wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY: specifies that the style should only be | |
692 | applied to characters, and not the paragraph. | |
693 | This allows content styling to be preserved independently from that | |
694 | of e.g. a named paragraph style. | |
695 | - wxRICHTEXT_SETSTYLE_RESET: resets (clears) the existing style before applying | |
696 | the new style. | |
697 | - wxRICHTEXT_SETSTYLE_REMOVE: removes the specified style. Only the style flags | |
698 | are used in this operation. | |
23324ae1 | 699 | */ |
7afd2b58 | 700 | virtual bool SetStyleEx(const wxRichTextRange& range, const wxRichTextAttr& style, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO); |
23324ae1 | 701 | |
7afd2b58 | 702 | //@{ |
23324ae1 | 703 | /** |
7afd2b58 JS |
704 | Gets the attributes at the given position. |
705 | This function gets the @e uncombined style - that is, the attributes associated | |
706 | with the paragraph or character content, and not necessarily the combined | |
707 | attributes you see on the screen. | |
708 | To get the combined attributes, use GetStyle(). | |
709 | ||
710 | If you specify (any) paragraph attribute in @e style's flags, this function | |
711 | will fetch the paragraph attributes. | |
712 | Otherwise, it will return the character attributes. | |
371ae8b5 MB |
713 | |
714 | @beginWxPerlOnly | |
7afd2b58 JS |
715 | In wxPerl this method is implemented as GetUncombinedStyle(@a position) |
716 | returning a 2-element list (ok, attr). | |
371ae8b5 | 717 | @endWxPerlOnly |
23324ae1 | 718 | */ |
7afd2b58 JS |
719 | virtual bool GetUncombinedStyle(long position, wxRichTextAttr& style); |
720 | virtual bool GetUncombinedStyle(long position, wxRichTextAttr& style, wxRichTextParagraphLayoutBox* container); | |
721 | //@} | |
23324ae1 | 722 | |
7afd2b58 | 723 | //@{ |
23324ae1 | 724 | /** |
7afd2b58 JS |
725 | Sets the current default style, which can be used to change how subsequently |
726 | inserted text is displayed. | |
23324ae1 | 727 | */ |
7afd2b58 JS |
728 | virtual bool SetDefaultStyle(const wxTextAttr& style); |
729 | virtual bool SetDefaultStyle(const wxRichTextAttr& style); | |
730 | //@} | |
23324ae1 FM |
731 | |
732 | /** | |
733 | Returns the current default style, which can be used to change how subsequently | |
9e7ad1ca | 734 | inserted text is displayed. |
23324ae1 | 735 | */ |
7afd2b58 | 736 | virtual const wxRichTextAttr& GetDefaultStyleEx() const; |
23324ae1 | 737 | |
7afd2b58 | 738 | //virtual const wxTextAttr& GetDefaultStyle() const; |
23324ae1 | 739 | |
7afd2b58 | 740 | //@{ |
23324ae1 | 741 | /** |
7afd2b58 JS |
742 | Sets the list attributes for the given range, passing flags to determine how |
743 | the attributes are set. | |
23324ae1 | 744 | |
7afd2b58 JS |
745 | Either the style definition or the name of the style definition (in the current |
746 | sheet) can be passed. | |
747 | @a flags is a bit list of the following: | |
748 | - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable. | |
749 | - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from | |
750 | @a startFrom, otherwise existing attributes are used. | |
751 | - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used | |
752 | as the level for all paragraphs, otherwise the current indentation will be used. | |
23324ae1 | 753 | |
7afd2b58 | 754 | @see NumberList(), PromoteList(), ClearListStyle(). |
23324ae1 | 755 | */ |
7afd2b58 JS |
756 | virtual bool SetListStyle(const wxRichTextRange& range, wxRichTextListStyleDefinition* def, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1); |
757 | virtual bool SetListStyle(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1); | |
758 | //@} | |
23324ae1 FM |
759 | |
760 | /** | |
7afd2b58 JS |
761 | Clears the list style from the given range, clearing list-related attributes |
762 | and applying any named paragraph style associated with each paragraph. | |
23324ae1 | 763 | |
7afd2b58 JS |
764 | @a flags is a bit list of the following: |
765 | - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable. | |
23324ae1 | 766 | |
7afd2b58 | 767 | @see SetListStyle(), PromoteList(), NumberList(). |
23324ae1 | 768 | */ |
7afd2b58 | 769 | virtual bool ClearListStyle(const wxRichTextRange& range, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO); |
23324ae1 | 770 | |
7afd2b58 | 771 | //@{ |
23324ae1 | 772 | /** |
7afd2b58 JS |
773 | Numbers the paragraphs in the given range. |
774 | Pass flags to determine how the attributes are set. | |
23324ae1 | 775 | |
7afd2b58 JS |
776 | Either the style definition or the name of the style definition (in the current |
777 | sheet) can be passed. | |
23324ae1 | 778 | |
7afd2b58 JS |
779 | @a flags is a bit list of the following: |
780 | - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable. | |
781 | - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from | |
782 | @a startFrom, otherwise existing attributes are used. | |
783 | - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used | |
784 | as the level for all paragraphs, otherwise the current indentation will be used. | |
785 | ||
786 | @see SetListStyle(), PromoteList(), ClearListStyle(). | |
23324ae1 | 787 | */ |
7afd2b58 JS |
788 | virtual bool NumberList(const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1); |
789 | virtual bool NumberList(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1); | |
790 | //@} | |
23324ae1 | 791 | |
7afd2b58 | 792 | //@{ |
23324ae1 | 793 | /** |
7afd2b58 JS |
794 | Promotes or demotes the paragraphs in the given range. |
795 | A positive @a promoteBy produces a smaller indent, and a negative number | |
796 | produces a larger indent. Pass flags to determine how the attributes are set. | |
797 | Either the style definition or the name of the style definition (in the current | |
798 | sheet) can be passed. | |
799 | ||
800 | @a flags is a bit list of the following: | |
801 | - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable. | |
802 | - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from | |
803 | @a startFrom, otherwise existing attributes are used. | |
804 | - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used | |
805 | as the level for all paragraphs, otherwise the current indentation will be used. | |
806 | ||
807 | @see SetListStyle(), @see SetListStyle(), ClearListStyle(). | |
23324ae1 | 808 | */ |
7afd2b58 JS |
809 | virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1); |
810 | virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1); | |
811 | //@} | |
23324ae1 | 812 | |
590a0f8b JS |
813 | /** |
814 | Sets the properties for the given range, passing flags to determine how the | |
815 | attributes are set. You can merge properties or replace them. | |
816 | ||
817 | The end point of range is specified as the last character position of the span | |
818 | of text, plus one. So, for example, to set the properties for a character at | |
819 | position 5, use the range (5,6). | |
820 | ||
821 | @a flags may contain a bit list of the following values: | |
822 | - wxRICHTEXT_SETSPROPERTIES_NONE: no flag. | |
823 | - wxRICHTEXT_SETPROPERTIES_WITH_UNDO: specifies that this operation should be | |
824 | undoable. | |
825 | - wxRICHTEXT_SETPROPERTIES_PARAGRAPHS_ONLY: specifies that the properties should only be | |
826 | applied to paragraphs, and not the content. | |
827 | - wxRICHTEXT_SETPROPERTIES_CHARACTERS_ONLY: specifies that the properties should only be | |
828 | applied to characters, and not the paragraph. | |
829 | - wxRICHTEXT_SETPROPERTIES_RESET: resets (clears) the existing properties before applying | |
830 | the new properties. | |
831 | - wxRICHTEXT_SETPROPERTIES_REMOVE: removes the specified properties. | |
832 | */ | |
833 | virtual bool SetProperties(const wxRichTextRange& range, const wxRichTextProperties& properties, int flags = wxRICHTEXT_SETPROPERTIES_WITH_UNDO); | |
834 | ||
23324ae1 | 835 | /** |
7afd2b58 | 836 | Deletes the content within the given range. |
23324ae1 | 837 | */ |
7afd2b58 | 838 | virtual bool Delete(const wxRichTextRange& range); |
23324ae1 FM |
839 | |
840 | /** | |
7afd2b58 | 841 | Translates from column and line number to position. |
23324ae1 | 842 | */ |
7afd2b58 | 843 | virtual long XYToPosition(long x, long y) const; |
23324ae1 FM |
844 | |
845 | /** | |
7afd2b58 | 846 | Converts a text position to zero-based column and line numbers. |
23324ae1 | 847 | */ |
7afd2b58 | 848 | virtual bool PositionToXY(long pos, long *x, long *y) const; |
23324ae1 FM |
849 | |
850 | /** | |
7afd2b58 | 851 | Scrolls the buffer so that the given position is in view. |
23324ae1 | 852 | */ |
7afd2b58 | 853 | virtual void ShowPosition(long pos); |
23324ae1 | 854 | |
7afd2b58 | 855 | //@{ |
23324ae1 | 856 | /** |
7afd2b58 JS |
857 | Finds the character at the given position in pixels. |
858 | @a pt is in device coords (not adjusted for the client area origin nor for | |
859 | scrolling). | |
860 | */ | |
861 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const; | |
862 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, | |
863 | wxTextCoord *col, | |
864 | wxTextCoord *row) const; | |
0c0e063e JS |
865 | |
866 | /** | |
867 | Finds the container at the given point, which is assumed to be in client coordinates. | |
868 | */ | |
869 | wxRichTextParagraphLayoutBox* FindContainerAtPoint(const wxPoint pt, long& position, int& hit, wxRichTextObject* hitObj, int flags = 0); | |
7afd2b58 | 870 | //@} |
9e7ad1ca | 871 | |
7afd2b58 | 872 | // Clipboard operations |
371ae8b5 | 873 | |
7afd2b58 JS |
874 | /** |
875 | Copies the selected content (if any) to the clipboard. | |
23324ae1 | 876 | */ |
7afd2b58 | 877 | virtual void Copy(); |
23324ae1 FM |
878 | |
879 | /** | |
7afd2b58 JS |
880 | Copies the selected content (if any) to the clipboard and deletes the selection. |
881 | This is undoable. | |
23324ae1 | 882 | */ |
7afd2b58 | 883 | virtual void Cut(); |
23324ae1 FM |
884 | |
885 | /** | |
7afd2b58 | 886 | Pastes content from the clipboard to the buffer. |
23324ae1 | 887 | */ |
7afd2b58 | 888 | virtual void Paste(); |
23324ae1 FM |
889 | |
890 | /** | |
7afd2b58 | 891 | Deletes the content in the selection, if any. This is undoable. |
23324ae1 | 892 | */ |
7afd2b58 | 893 | virtual void DeleteSelection(); |
23324ae1 FM |
894 | |
895 | /** | |
7afd2b58 | 896 | Returns @true if selected content can be copied to the clipboard. |
23324ae1 | 897 | */ |
7afd2b58 | 898 | virtual bool CanCopy() const; |
23324ae1 FM |
899 | |
900 | /** | |
7afd2b58 | 901 | Returns @true if selected content can be copied to the clipboard and deleted. |
23324ae1 | 902 | */ |
7afd2b58 | 903 | virtual bool CanCut() const; |
23324ae1 FM |
904 | |
905 | /** | |
7afd2b58 JS |
906 | Returns @true if the clipboard content can be pasted to the buffer. |
907 | */ | |
908 | virtual bool CanPaste() const; | |
9e7ad1ca | 909 | |
7afd2b58 JS |
910 | /** |
911 | Returns @true if selected content can be deleted. | |
23324ae1 | 912 | */ |
7afd2b58 | 913 | virtual bool CanDeleteSelection() const; |
23324ae1 FM |
914 | |
915 | /** | |
7afd2b58 | 916 | Undoes the command at the top of the command history, if there is one. |
23324ae1 | 917 | */ |
7afd2b58 | 918 | virtual void Undo(); |
23324ae1 FM |
919 | |
920 | /** | |
7afd2b58 | 921 | Redoes the current command. |
23324ae1 | 922 | */ |
7afd2b58 | 923 | virtual void Redo(); |
23324ae1 | 924 | |
23324ae1 | 925 | /** |
7afd2b58 | 926 | Returns @true if there is a command in the command history that can be undone. |
23324ae1 | 927 | */ |
7afd2b58 | 928 | virtual bool CanUndo() const; |
23324ae1 FM |
929 | |
930 | /** | |
7afd2b58 | 931 | Returns @true if there is a command in the command history that can be redone. |
23324ae1 | 932 | */ |
7afd2b58 | 933 | virtual bool CanRedo() const; |
23324ae1 | 934 | |
23324ae1 | 935 | /** |
7afd2b58 JS |
936 | Sets the insertion point and causes the current editing style to be taken from |
937 | the new position (unlike wxRichTextCtrl::SetCaretPosition). | |
938 | */ | |
939 | virtual void SetInsertionPoint(long pos); | |
9e7ad1ca | 940 | |
7afd2b58 JS |
941 | /** |
942 | Sets the insertion point to the end of the text control. | |
943 | */ | |
944 | virtual void SetInsertionPointEnd(); | |
9e7ad1ca | 945 | |
7afd2b58 JS |
946 | /** |
947 | Returns the current insertion point. | |
23324ae1 | 948 | */ |
7afd2b58 | 949 | virtual long GetInsertionPoint() const; |
23324ae1 FM |
950 | |
951 | /** | |
7afd2b58 | 952 | Returns the last position in the buffer. |
23324ae1 | 953 | */ |
7afd2b58 | 954 | virtual wxTextPos GetLastPosition() const; |
23324ae1 | 955 | |
7afd2b58 | 956 | //@{ |
23324ae1 | 957 | /** |
7afd2b58 JS |
958 | Sets the selection to the given range. |
959 | The end point of range is specified as the last character position of the span | |
960 | of text, plus one. | |
961 | ||
962 | So, for example, to set the selection for a character at position 5, use the | |
963 | range (5,6). | |
23324ae1 | 964 | */ |
7afd2b58 JS |
965 | virtual void SetSelection(long from, long to); |
966 | void SetSelection(const wxRichTextSelection& sel) { m_selection = sel; } | |
967 | //@} | |
968 | ||
23324ae1 FM |
969 | |
970 | /** | |
7afd2b58 | 971 | Selects all the text in the buffer. |
23324ae1 | 972 | */ |
7afd2b58 | 973 | virtual void SelectAll(); |
23324ae1 FM |
974 | |
975 | /** | |
7afd2b58 | 976 | Makes the control editable, or not. |
23324ae1 | 977 | */ |
7afd2b58 | 978 | virtual void SetEditable(bool editable); |
23324ae1 FM |
979 | |
980 | /** | |
7afd2b58 JS |
981 | Returns @true if there is a selection and the object containing the selection |
982 | was the same as the current focus object. | |
23324ae1 | 983 | */ |
7afd2b58 | 984 | virtual bool HasSelection() const; |
23324ae1 FM |
985 | |
986 | /** | |
7afd2b58 JS |
987 | Returns @true if there was a selection, whether or not the current focus object |
988 | is the same as the selection's container object. | |
23324ae1 | 989 | */ |
7afd2b58 | 990 | virtual bool HasUnfocusedSelection() const; |
23324ae1 | 991 | |
7afd2b58 | 992 | //@{ |
23324ae1 | 993 | /** |
7afd2b58 JS |
994 | Write a bitmap or image at the current insertion point. |
995 | Supply an optional type to use for internal and file storage of the raw data. | |
23324ae1 | 996 | */ |
7afd2b58 JS |
997 | virtual bool WriteImage(const wxImage& image, wxBitmapType bitmapType = wxBITMAP_TYPE_PNG, |
998 | const wxRichTextAttr& textAttr = wxRichTextAttr()); | |
999 | ||
1000 | virtual bool WriteImage(const wxBitmap& bitmap, wxBitmapType bitmapType = wxBITMAP_TYPE_PNG, | |
1001 | const wxRichTextAttr& textAttr = wxRichTextAttr()); | |
1002 | //@} | |
23324ae1 FM |
1003 | |
1004 | /** | |
7afd2b58 | 1005 | Loads an image from a file and writes it at the current insertion point. |
23324ae1 | 1006 | */ |
7afd2b58 JS |
1007 | virtual bool WriteImage(const wxString& filename, wxBitmapType bitmapType, |
1008 | const wxRichTextAttr& textAttr = wxRichTextAttr()); | |
23324ae1 FM |
1009 | |
1010 | /** | |
7afd2b58 | 1011 | Writes an image block at the current insertion point. |
23324ae1 | 1012 | */ |
7afd2b58 JS |
1013 | virtual bool WriteImage(const wxRichTextImageBlock& imageBlock, |
1014 | const wxRichTextAttr& textAttr = wxRichTextAttr()); | |
23324ae1 FM |
1015 | |
1016 | /** | |
7afd2b58 JS |
1017 | Write a text box at the current insertion point, returning the text box. |
1018 | You can then call SetFocusObject() to set the focus to the new object. | |
23324ae1 | 1019 | */ |
7afd2b58 | 1020 | virtual wxRichTextBox* WriteTextBox(const wxRichTextAttr& textAttr = wxRichTextAttr()); |
23324ae1 | 1021 | |
7c9fdebe JS |
1022 | /** |
1023 | Writes a field at the current insertion point. | |
1024 | ||
1025 | @param fieldType | |
1026 | The field type, matching an existing field type definition. | |
1027 | @param properties | |
1028 | Extra data for the field. | |
1029 | @param textAttr | |
1030 | Optional attributes. | |
1031 | ||
1032 | @see wxRichTextField, wxRichTextFieldType, wxRichTextFieldTypeStandard | |
1033 | */ | |
1034 | virtual wxRichTextField* WriteField(const wxString& fieldType, const wxRichTextProperties& properties, | |
1035 | const wxRichTextAttr& textAttr = wxRichTextAttr()); | |
1036 | ||
23324ae1 | 1037 | /** |
7afd2b58 JS |
1038 | Write a table at the current insertion point, returning the table. |
1039 | You can then call SetFocusObject() to set the focus to the new object. | |
23324ae1 | 1040 | */ |
7afd2b58 | 1041 | virtual wxRichTextTable* WriteTable(int rows, int cols, const wxRichTextAttr& tableAttr = wxRichTextAttr(), const wxRichTextAttr& cellAttr = wxRichTextAttr()); |
23324ae1 FM |
1042 | |
1043 | /** | |
7afd2b58 | 1044 | Inserts a new paragraph at the current insertion point. @see LineBreak(). |
23324ae1 | 1045 | */ |
7afd2b58 | 1046 | virtual bool Newline(); |
23324ae1 FM |
1047 | |
1048 | /** | |
9e7ad1ca FM |
1049 | Inserts a line break at the current insertion point. |
1050 | ||
1051 | A line break forces wrapping within a paragraph, and can be introduced by | |
1052 | using this function, by appending the wxChar value @b wxRichTextLineBreakChar | |
1053 | to text content, or by typing Shift-Return. | |
23324ae1 | 1054 | */ |
adaaa686 | 1055 | virtual bool LineBreak(); |
23324ae1 FM |
1056 | |
1057 | /** | |
7afd2b58 | 1058 | Sets the basic (overall) style. |
9e7ad1ca | 1059 | |
7afd2b58 JS |
1060 | This is the style of the whole buffer before further styles are applied, |
1061 | unlike the default style, which only affects the style currently being | |
1062 | applied (for example, setting the default style to bold will cause | |
1063 | subsequently inserted text to be bold). | |
23324ae1 | 1064 | */ |
7afd2b58 | 1065 | virtual void SetBasicStyle(const wxRichTextAttr& style) { GetBuffer().SetBasicStyle(style); } |
23324ae1 FM |
1066 | |
1067 | /** | |
7afd2b58 JS |
1068 | Gets the basic (overall) style. |
1069 | ||
1070 | This is the style of the whole buffer before further styles are applied, | |
1071 | unlike the default style, which only affects the style currently being | |
1072 | applied (for example, setting the default style to bold will cause | |
1073 | subsequently inserted text to be bold). | |
23324ae1 | 1074 | */ |
7afd2b58 | 1075 | virtual const wxRichTextAttr& GetBasicStyle() const { return GetBuffer().GetBasicStyle(); } |
23324ae1 FM |
1076 | |
1077 | /** | |
7afd2b58 | 1078 | Begins applying a style. |
23324ae1 | 1079 | */ |
7afd2b58 | 1080 | virtual bool BeginStyle(const wxRichTextAttr& style) { return GetBuffer().BeginStyle(style); } |
23324ae1 FM |
1081 | |
1082 | /** | |
7afd2b58 | 1083 | Ends the current style. |
23324ae1 | 1084 | */ |
7afd2b58 | 1085 | virtual bool EndStyle() { return GetBuffer().EndStyle(); } |
23324ae1 FM |
1086 | |
1087 | /** | |
7afd2b58 | 1088 | Ends application of all styles in the current style stack. |
23324ae1 | 1089 | */ |
7afd2b58 | 1090 | virtual bool EndAllStyles() { return GetBuffer().EndAllStyles(); } |
23324ae1 FM |
1091 | |
1092 | /** | |
7afd2b58 | 1093 | Begins using bold. |
23324ae1 | 1094 | */ |
7afd2b58 | 1095 | bool BeginBold() { return GetBuffer().BeginBold(); } |
23324ae1 FM |
1096 | |
1097 | /** | |
7afd2b58 | 1098 | Ends using bold. |
23324ae1 | 1099 | */ |
7afd2b58 | 1100 | bool EndBold() { return GetBuffer().EndBold(); } |
23324ae1 FM |
1101 | |
1102 | /** | |
7afd2b58 | 1103 | Begins using italic. |
23324ae1 | 1104 | */ |
7afd2b58 | 1105 | bool BeginItalic() { return GetBuffer().BeginItalic(); } |
23324ae1 FM |
1106 | |
1107 | /** | |
7afd2b58 | 1108 | Ends using italic. |
23324ae1 | 1109 | */ |
7afd2b58 | 1110 | bool EndItalic() { return GetBuffer().EndItalic(); } |
23324ae1 FM |
1111 | |
1112 | /** | |
7afd2b58 | 1113 | Begins using underlining. |
23324ae1 | 1114 | */ |
7afd2b58 | 1115 | bool BeginUnderline() { return GetBuffer().BeginUnderline(); } |
23324ae1 FM |
1116 | |
1117 | /** | |
7afd2b58 | 1118 | End applying underlining. |
23324ae1 | 1119 | */ |
7afd2b58 | 1120 | bool EndUnderline() { return GetBuffer().EndUnderline(); } |
23324ae1 FM |
1121 | |
1122 | /** | |
7afd2b58 | 1123 | Begins using the given point size. |
23324ae1 | 1124 | */ |
7afd2b58 | 1125 | bool BeginFontSize(int pointSize) { return GetBuffer().BeginFontSize(pointSize); } |
23324ae1 FM |
1126 | |
1127 | /** | |
7afd2b58 | 1128 | Ends using a point size. |
23324ae1 | 1129 | */ |
7afd2b58 | 1130 | bool EndFontSize() { return GetBuffer().EndFontSize(); } |
23324ae1 FM |
1131 | |
1132 | /** | |
7afd2b58 | 1133 | Begins using this font. |
23324ae1 | 1134 | */ |
7afd2b58 | 1135 | bool BeginFont(const wxFont& font) { return GetBuffer().BeginFont(font); } |
23324ae1 FM |
1136 | |
1137 | /** | |
7afd2b58 | 1138 | Ends using a font. |
23324ae1 | 1139 | */ |
7afd2b58 | 1140 | bool EndFont() { return GetBuffer().EndFont(); } |
23324ae1 FM |
1141 | |
1142 | /** | |
7afd2b58 | 1143 | Begins using this colour. |
23324ae1 | 1144 | */ |
7afd2b58 | 1145 | bool BeginTextColour(const wxColour& colour) { return GetBuffer().BeginTextColour(colour); } |
23324ae1 | 1146 | |
23324ae1 | 1147 | /** |
7afd2b58 JS |
1148 | Ends applying a text colour. |
1149 | */ | |
1150 | bool EndTextColour() { return GetBuffer().EndTextColour(); } | |
9e7ad1ca | 1151 | |
7afd2b58 JS |
1152 | /** |
1153 | Begins using alignment. | |
1154 | For alignment values, see wxTextAttr. | |
1155 | */ | |
1156 | bool BeginAlignment(wxTextAttrAlignment alignment) { return GetBuffer().BeginAlignment(alignment); } | |
9e7ad1ca | 1157 | |
7afd2b58 JS |
1158 | /** |
1159 | Ends alignment. | |
1160 | */ | |
1161 | bool EndAlignment() { return GetBuffer().EndAlignment(); } | |
9e7ad1ca | 1162 | |
7afd2b58 JS |
1163 | /** |
1164 | Begins applying a left indent and subindent in tenths of a millimetre. | |
1165 | The subindent is an offset from the left edge of the paragraph, and is | |
1166 | used for all but the first line in a paragraph. A positive value will | |
1167 | cause the first line to appear to the left of the subsequent lines, and | |
1168 | a negative value will cause the first line to be indented to the right | |
1169 | of the subsequent lines. | |
1170 | ||
1171 | wxRichTextBuffer uses indentation to render a bulleted item. The | |
1172 | content of the paragraph, including the first line, starts at the | |
1173 | @a leftIndent plus the @a leftSubIndent. | |
1174 | ||
1175 | @param leftIndent | |
1176 | The distance between the margin and the bullet. | |
1177 | @param leftSubIndent | |
1178 | The distance between the left edge of the bullet and the left edge | |
1179 | of the actual paragraph. | |
23324ae1 | 1180 | */ |
7afd2b58 | 1181 | bool BeginLeftIndent(int leftIndent, int leftSubIndent = 0) { return GetBuffer().BeginLeftIndent(leftIndent, leftSubIndent); } |
23324ae1 FM |
1182 | |
1183 | /** | |
7afd2b58 | 1184 | Ends left indent. |
23324ae1 | 1185 | */ |
7afd2b58 | 1186 | bool EndLeftIndent() { return GetBuffer().EndLeftIndent(); } |
23324ae1 FM |
1187 | |
1188 | /** | |
7afd2b58 | 1189 | Begins a right indent, specified in tenths of a millimetre. |
23324ae1 | 1190 | */ |
7afd2b58 | 1191 | bool BeginRightIndent(int rightIndent) { return GetBuffer().BeginRightIndent(rightIndent); } |
23324ae1 FM |
1192 | |
1193 | /** | |
7afd2b58 | 1194 | Ends right indent. |
23324ae1 | 1195 | */ |
7afd2b58 | 1196 | bool EndRightIndent() { return GetBuffer().EndRightIndent(); } |
23324ae1 FM |
1197 | |
1198 | /** | |
7afd2b58 JS |
1199 | Begins paragraph spacing; pass the before-paragraph and after-paragraph spacing |
1200 | in tenths of a millimetre. | |
23324ae1 | 1201 | */ |
7afd2b58 | 1202 | bool BeginParagraphSpacing(int before, int after) { return GetBuffer().BeginParagraphSpacing(before, after); } |
23324ae1 FM |
1203 | |
1204 | /** | |
7afd2b58 | 1205 | Ends paragraph spacing. |
23324ae1 | 1206 | */ |
7afd2b58 | 1207 | bool EndParagraphSpacing() { return GetBuffer().EndParagraphSpacing(); } |
23324ae1 FM |
1208 | |
1209 | /** | |
7afd2b58 JS |
1210 | Begins appling line spacing. @e spacing is a multiple, where 10 means |
1211 | single-spacing, 15 means 1.5 spacing, and 20 means double spacing. | |
1212 | ||
1213 | The ::wxTextAttrLineSpacing constants are defined for convenience. | |
23324ae1 | 1214 | */ |
7afd2b58 | 1215 | bool BeginLineSpacing(int lineSpacing) { return GetBuffer().BeginLineSpacing(lineSpacing); } |
23324ae1 FM |
1216 | |
1217 | /** | |
7afd2b58 | 1218 | Ends line spacing. |
23324ae1 | 1219 | */ |
7afd2b58 | 1220 | bool EndLineSpacing() { return GetBuffer().EndLineSpacing(); } |
23324ae1 FM |
1221 | |
1222 | /** | |
7afd2b58 JS |
1223 | Begins a numbered bullet. |
1224 | ||
1225 | This call will be needed for each item in the list, and the | |
1226 | application should take care of incrementing the numbering. | |
1227 | ||
1228 | @a bulletNumber is a number, usually starting with 1. | |
1229 | @a leftIndent and @a leftSubIndent are values in tenths of a millimetre. | |
1230 | @a bulletStyle is a bitlist of the ::wxTextAttrBulletStyle values. | |
1231 | ||
1232 | wxRichTextBuffer uses indentation to render a bulleted item. | |
1233 | The left indent is the distance between the margin and the bullet. | |
1234 | The content of the paragraph, including the first line, starts | |
1235 | at leftMargin + leftSubIndent. | |
1236 | So the distance between the left edge of the bullet and the | |
1237 | left of the actual paragraph is leftSubIndent. | |
23324ae1 | 1238 | */ |
7afd2b58 JS |
1239 | bool BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_PERIOD) |
1240 | { return GetBuffer().BeginNumberedBullet(bulletNumber, leftIndent, leftSubIndent, bulletStyle); } | |
23324ae1 FM |
1241 | |
1242 | /** | |
7afd2b58 | 1243 | Ends application of a numbered bullet. |
23324ae1 | 1244 | */ |
7afd2b58 | 1245 | bool EndNumberedBullet() { return GetBuffer().EndNumberedBullet(); } |
23324ae1 FM |
1246 | |
1247 | /** | |
7afd2b58 JS |
1248 | Begins applying a symbol bullet, using a character from the current font. |
1249 | See BeginNumberedBullet() for an explanation of how indentation is used | |
1250 | to render the bulleted paragraph. | |
23324ae1 | 1251 | */ |
7afd2b58 JS |
1252 | bool BeginSymbolBullet(const wxString& symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL) |
1253 | { return GetBuffer().BeginSymbolBullet(symbol, leftIndent, leftSubIndent, bulletStyle); } | |
23324ae1 FM |
1254 | |
1255 | /** | |
7afd2b58 | 1256 | Ends applying a symbol bullet. |
23324ae1 | 1257 | */ |
7afd2b58 | 1258 | bool EndSymbolBullet() { return GetBuffer().EndSymbolBullet(); } |
23324ae1 FM |
1259 | |
1260 | /** | |
7afd2b58 | 1261 | Begins applying a symbol bullet. |
23324ae1 | 1262 | */ |
7afd2b58 JS |
1263 | bool BeginStandardBullet(const wxString& bulletName, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_STANDARD) |
1264 | { return GetBuffer().BeginStandardBullet(bulletName, leftIndent, leftSubIndent, bulletStyle); } | |
23324ae1 FM |
1265 | |
1266 | /** | |
7afd2b58 | 1267 | Begins applying a standard bullet. |
23324ae1 | 1268 | */ |
7afd2b58 | 1269 | bool EndStandardBullet() { return GetBuffer().EndStandardBullet(); } |
23324ae1 FM |
1270 | |
1271 | /** | |
7afd2b58 | 1272 | Begins using the named character style. |
23324ae1 | 1273 | */ |
7afd2b58 | 1274 | bool BeginCharacterStyle(const wxString& characterStyle) { return GetBuffer().BeginCharacterStyle(characterStyle); } |
23324ae1 FM |
1275 | |
1276 | /** | |
7afd2b58 | 1277 | Ends application of a named character style. |
23324ae1 | 1278 | */ |
7afd2b58 | 1279 | bool EndCharacterStyle() { return GetBuffer().EndCharacterStyle(); } |
23324ae1 FM |
1280 | |
1281 | /** | |
7afd2b58 | 1282 | Begins applying the named paragraph style. |
23324ae1 | 1283 | */ |
7afd2b58 | 1284 | bool BeginParagraphStyle(const wxString& paragraphStyle) { return GetBuffer().BeginParagraphStyle(paragraphStyle); } |
23324ae1 FM |
1285 | |
1286 | /** | |
7afd2b58 | 1287 | Ends application of a named paragraph style. |
23324ae1 | 1288 | */ |
7afd2b58 | 1289 | bool EndParagraphStyle() { return GetBuffer().EndParagraphStyle(); } |
23324ae1 FM |
1290 | |
1291 | /** | |
7afd2b58 JS |
1292 | Begins using a specified list style. |
1293 | Optionally, you can also pass a level and a number. | |
23324ae1 | 1294 | */ |
7afd2b58 | 1295 | bool BeginListStyle(const wxString& listStyle, int level = 1, int number = 1) { return GetBuffer().BeginListStyle(listStyle, level, number); } |
23324ae1 FM |
1296 | |
1297 | /** | |
7afd2b58 | 1298 | Ends using a specified list style. |
23324ae1 | 1299 | */ |
7afd2b58 | 1300 | bool EndListStyle() { return GetBuffer().EndListStyle(); } |
23324ae1 | 1301 | |
826c4761 | 1302 | /** |
7afd2b58 | 1303 | Begins applying wxTEXT_ATTR_URL to the content. |
826c4761 | 1304 | |
7afd2b58 JS |
1305 | Pass a URL and optionally, a character style to apply, since it is common |
1306 | to mark a URL with a familiar style such as blue text with underlining. | |
826c4761 | 1307 | */ |
7afd2b58 | 1308 | bool BeginURL(const wxString& url, const wxString& characterStyle = wxEmptyString) { return GetBuffer().BeginURL(url, characterStyle); } |
826c4761 | 1309 | |
23324ae1 | 1310 | /** |
7afd2b58 | 1311 | Ends applying a URL. |
23324ae1 | 1312 | */ |
7afd2b58 | 1313 | bool EndURL() { return GetBuffer().EndURL(); } |
23324ae1 FM |
1314 | |
1315 | /** | |
7afd2b58 | 1316 | Sets the default style to the style under the cursor. |
23324ae1 | 1317 | */ |
7afd2b58 | 1318 | bool SetDefaultStyleToCursorStyle(); |
23324ae1 FM |
1319 | |
1320 | /** | |
7afd2b58 | 1321 | Cancels any selection. |
23324ae1 | 1322 | */ |
7afd2b58 | 1323 | virtual void SelectNone(); |
23324ae1 | 1324 | |
23324ae1 | 1325 | /** |
7afd2b58 | 1326 | Selects the word at the given character position. |
23324ae1 | 1327 | */ |
7afd2b58 | 1328 | virtual bool SelectWord(long position); |
23324ae1 FM |
1329 | |
1330 | /** | |
7afd2b58 JS |
1331 | Returns the selection range in character positions. -1, -1 means no selection. |
1332 | ||
1333 | The range is in API convention, i.e. a single character selection is denoted | |
1334 | by (n, n+1) | |
23324ae1 | 1335 | */ |
7afd2b58 | 1336 | wxRichTextRange GetSelectionRange() const; |
23324ae1 FM |
1337 | |
1338 | /** | |
7afd2b58 JS |
1339 | Sets the selection to the given range. |
1340 | The end point of range is specified as the last character position of the span | |
1341 | of text, plus one. | |
1342 | ||
1343 | So, for example, to set the selection for a character at position 5, use the | |
1344 | range (5,6). | |
23324ae1 | 1345 | */ |
7afd2b58 | 1346 | void SetSelectionRange(const wxRichTextRange& range); |
23324ae1 FM |
1347 | |
1348 | /** | |
7afd2b58 JS |
1349 | Returns the selection range in character positions. -2, -2 means no selection |
1350 | -1, -1 means select everything. | |
1351 | The range is in internal format, i.e. a single character selection is denoted | |
1352 | by (n, n) | |
23324ae1 | 1353 | */ |
7afd2b58 | 1354 | wxRichTextRange GetInternalSelectionRange() const { return m_selection.GetRange(); } |
23324ae1 FM |
1355 | |
1356 | /** | |
7afd2b58 JS |
1357 | Sets the selection range in character positions. -2, -2 means no selection |
1358 | -1, -1 means select everything. | |
1359 | The range is in internal format, i.e. a single character selection is denoted | |
1360 | by (n, n) | |
23324ae1 | 1361 | */ |
7afd2b58 | 1362 | void SetInternalSelectionRange(const wxRichTextRange& range) { m_selection.Set(range, GetFocusObject()); } |
23324ae1 FM |
1363 | |
1364 | /** | |
7afd2b58 | 1365 | Adds a new paragraph of text to the end of the buffer. |
23324ae1 | 1366 | */ |
7afd2b58 | 1367 | virtual wxRichTextRange AddParagraph(const wxString& text); |
23324ae1 FM |
1368 | |
1369 | /** | |
7afd2b58 | 1370 | Adds an image to the control's buffer. |
23324ae1 | 1371 | */ |
7afd2b58 | 1372 | virtual wxRichTextRange AddImage(const wxImage& image); |
23324ae1 FM |
1373 | |
1374 | /** | |
7afd2b58 JS |
1375 | Lays out the buffer, which must be done before certain operations, such as |
1376 | setting the caret position. | |
1377 | This function should not normally be required by the application. | |
23324ae1 | 1378 | */ |
7afd2b58 | 1379 | virtual bool LayoutContent(bool onlyVisibleRect = false); |
23324ae1 FM |
1380 | |
1381 | /** | |
7afd2b58 | 1382 | Move the caret to the given character position. |
9e7ad1ca | 1383 | |
7afd2b58 JS |
1384 | Please note that this does not update the current editing style |
1385 | from the new position; to do that, call wxRichTextCtrl::SetInsertionPoint instead. | |
23324ae1 | 1386 | */ |
7afd2b58 | 1387 | virtual bool MoveCaret(long pos, bool showAtLineStart = false, wxRichTextParagraphLayoutBox* container = NULL); |
23324ae1 FM |
1388 | |
1389 | /** | |
7afd2b58 | 1390 | Moves right. |
23324ae1 | 1391 | */ |
7afd2b58 | 1392 | virtual bool MoveRight(int noPositions = 1, int flags = 0); |
23324ae1 FM |
1393 | |
1394 | /** | |
7afd2b58 JS |
1395 | Moves left. |
1396 | */ | |
1397 | virtual bool MoveLeft(int noPositions = 1, int flags = 0); | |
346c54a4 | 1398 | |
7afd2b58 JS |
1399 | /** |
1400 | Moves to the start of the paragraph. | |
23324ae1 | 1401 | */ |
7afd2b58 | 1402 | virtual bool MoveUp(int noLines = 1, int flags = 0); |
23324ae1 FM |
1403 | |
1404 | /** | |
7afd2b58 | 1405 | Moves the caret down. |
23324ae1 | 1406 | */ |
7afd2b58 | 1407 | virtual bool MoveDown(int noLines = 1, int flags = 0); |
23324ae1 FM |
1408 | |
1409 | /** | |
7afd2b58 | 1410 | Moves to the end of the line. |
23324ae1 | 1411 | */ |
7afd2b58 | 1412 | virtual bool MoveToLineEnd(int flags = 0); |
23324ae1 FM |
1413 | |
1414 | /** | |
7afd2b58 | 1415 | Moves to the start of the line. |
23324ae1 | 1416 | */ |
7afd2b58 | 1417 | virtual bool MoveToLineStart(int flags = 0); |
23324ae1 FM |
1418 | |
1419 | /** | |
7afd2b58 | 1420 | Moves to the end of the paragraph. |
23324ae1 | 1421 | */ |
7afd2b58 | 1422 | virtual bool MoveToParagraphEnd(int flags = 0); |
23324ae1 FM |
1423 | |
1424 | /** | |
7afd2b58 | 1425 | Moves to the start of the paragraph. |
23324ae1 | 1426 | */ |
7afd2b58 | 1427 | virtual bool MoveToParagraphStart(int flags = 0); |
23324ae1 FM |
1428 | |
1429 | /** | |
7afd2b58 | 1430 | Moves to the start of the buffer. |
23324ae1 | 1431 | */ |
7afd2b58 | 1432 | virtual bool MoveHome(int flags = 0); |
23324ae1 FM |
1433 | |
1434 | /** | |
7afd2b58 JS |
1435 | Moves to the end of the buffer. |
1436 | */ | |
1437 | virtual bool MoveEnd(int flags = 0); | |
9e7ad1ca | 1438 | |
7afd2b58 JS |
1439 | /** |
1440 | Moves one or more pages up. | |
23324ae1 | 1441 | */ |
7afd2b58 | 1442 | virtual bool PageUp(int noPages = 1, int flags = 0); |
23324ae1 FM |
1443 | |
1444 | /** | |
7afd2b58 | 1445 | Moves one or more pages down. |
23324ae1 | 1446 | */ |
7afd2b58 | 1447 | virtual bool PageDown(int noPages = 1, int flags = 0); |
23324ae1 FM |
1448 | |
1449 | /** | |
7afd2b58 | 1450 | Moves a number of words to the left. |
23324ae1 | 1451 | */ |
7afd2b58 | 1452 | virtual bool WordLeft(int noPages = 1, int flags = 0); |
23324ae1 | 1453 | |
23324ae1 | 1454 | /** |
7afd2b58 JS |
1455 | Move a nuber of words to the right. |
1456 | */ | |
1457 | virtual bool WordRight(int noPages = 1, int flags = 0); | |
9e7ad1ca | 1458 | |
7afd2b58 JS |
1459 | //@{ |
1460 | /** | |
1461 | Returns the buffer associated with the control. | |
23324ae1 | 1462 | */ |
7afd2b58 JS |
1463 | wxRichTextBuffer& GetBuffer() { return m_buffer; } |
1464 | const wxRichTextBuffer& GetBuffer() const { return m_buffer; } | |
23324ae1 FM |
1465 | //@} |
1466 | ||
1467 | /** | |
7afd2b58 JS |
1468 | Starts batching undo history for commands. |
1469 | */ | |
1470 | virtual bool BeginBatchUndo(const wxString& cmdName) { return m_buffer.BeginBatchUndo(cmdName); } | |
9e7ad1ca | 1471 | |
7afd2b58 JS |
1472 | /** |
1473 | Ends batching undo command history. | |
23324ae1 | 1474 | */ |
7afd2b58 | 1475 | virtual bool EndBatchUndo() { return m_buffer.EndBatchUndo(); } |
23324ae1 FM |
1476 | |
1477 | /** | |
7afd2b58 JS |
1478 | Returns @true if undo commands are being batched. |
1479 | */ | |
1480 | virtual bool BatchingUndo() const { return m_buffer.BatchingUndo(); } | |
9e7ad1ca | 1481 | |
7afd2b58 JS |
1482 | /** |
1483 | Starts suppressing undo history for commands. | |
23324ae1 | 1484 | */ |
7afd2b58 | 1485 | virtual bool BeginSuppressUndo() { return m_buffer.BeginSuppressUndo(); } |
23324ae1 | 1486 | |
23324ae1 | 1487 | /** |
7afd2b58 JS |
1488 | Ends suppressing undo command history. |
1489 | */ | |
1490 | virtual bool EndSuppressUndo() { return m_buffer.EndSuppressUndo(); } | |
9e7ad1ca | 1491 | |
7afd2b58 JS |
1492 | /** |
1493 | Returns @true if undo history suppression is on. | |
23324ae1 | 1494 | */ |
7afd2b58 | 1495 | virtual bool SuppressingUndo() const { return m_buffer.SuppressingUndo(); } |
23324ae1 | 1496 | |
23324ae1 | 1497 | /** |
7afd2b58 JS |
1498 | Test if this whole range has character attributes of the specified kind. |
1499 | If any of the attributes are different within the range, the test fails. | |
9e7ad1ca | 1500 | |
7afd2b58 JS |
1501 | You can use this to implement, for example, bold button updating. |
1502 | @a style must have flags indicating which attributes are of interest. | |
1503 | */ | |
1504 | virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const | |
1505 | { | |
1506 | return GetBuffer().HasCharacterAttributes(range.ToInternal(), style); | |
1507 | } | |
9e7ad1ca | 1508 | |
7afd2b58 JS |
1509 | /** |
1510 | Test if this whole range has paragraph attributes of the specified kind. | |
1511 | If any of the attributes are different within the range, the test fails. | |
1512 | You can use this to implement, for example, centering button updating. | |
1513 | @a style must have flags indicating which attributes are of interest. | |
1514 | */ | |
1515 | virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const | |
1516 | { | |
1517 | return GetBuffer().HasParagraphAttributes(range.ToInternal(), style); | |
1518 | } | |
1519 | ||
1520 | /** | |
4f51b983 | 1521 | Returns @true if all of the selection, or the content at the caret position, is bold. |
7afd2b58 JS |
1522 | */ |
1523 | virtual bool IsSelectionBold(); | |
1524 | ||
1525 | /** | |
4f51b983 | 1526 | Returns @true if all of the selection, or the content at the caret position, is italic. |
7afd2b58 JS |
1527 | */ |
1528 | virtual bool IsSelectionItalics(); | |
1529 | ||
1530 | /** | |
4f51b983 | 1531 | Returns @true if all of the selection, or the content at the caret position, is underlined. |
7afd2b58 JS |
1532 | */ |
1533 | virtual bool IsSelectionUnderlined(); | |
1534 | ||
75936ec6 | 1535 | /** |
4f51b983 | 1536 | Returns @true if all of the selection, or the content at the current caret position, has the supplied wxTextAttrEffects flag(s). |
75936ec6 JS |
1537 | */ |
1538 | virtual bool DoesSelectionHaveTextEffectFlag(int flag); | |
1539 | ||
7afd2b58 JS |
1540 | /** |
1541 | Returns @true if all of the selection is aligned according to the specified flag. | |
1542 | */ | |
1543 | virtual bool IsSelectionAligned(wxTextAttrAlignment alignment); | |
1544 | ||
1545 | /** | |
4f51b983 | 1546 | Apples bold to the selection or the default style (undoable). |
7afd2b58 JS |
1547 | */ |
1548 | virtual bool ApplyBoldToSelection(); | |
1549 | ||
1550 | /** | |
4f51b983 | 1551 | Applies italic to the selection or the default style (undoable). |
7afd2b58 JS |
1552 | */ |
1553 | virtual bool ApplyItalicToSelection(); | |
1554 | ||
1555 | /** | |
4f51b983 | 1556 | Applies underline to the selection or the default style (undoable). |
7afd2b58 JS |
1557 | */ |
1558 | virtual bool ApplyUnderlineToSelection(); | |
1559 | ||
75936ec6 JS |
1560 | /** |
1561 | Applies one or more wxTextAttrEffects flags to the selection (undoable). | |
4f51b983 | 1562 | If there is no selection, it is applied to the default style. |
75936ec6 JS |
1563 | */ |
1564 | virtual bool ApplyTextEffectToSelection(int flags); | |
1565 | ||
7afd2b58 | 1566 | /** |
4f51b983 | 1567 | Applies the given alignment to the selection or the default style (undoable). |
7afd2b58 JS |
1568 | For alignment values, see wxTextAttr. |
1569 | */ | |
1570 | virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment); | |
1571 | ||
1572 | /** | |
1573 | Applies the style sheet to the buffer, matching paragraph styles in the sheet | |
1574 | against named styles in the buffer. | |
1575 | ||
1576 | This might be useful if the styles have changed. | |
1577 | If @a sheet is @NULL, the sheet set with SetStyleSheet() is used. | |
1578 | Currently this applies paragraph styles only. | |
23324ae1 | 1579 | */ |
7afd2b58 | 1580 | virtual bool ApplyStyle(wxRichTextStyleDefinition* def); |
23324ae1 FM |
1581 | |
1582 | /** | |
9e7ad1ca FM |
1583 | Sets the style sheet associated with the control. |
1584 | A style sheet allows named character and paragraph styles to be applied. | |
23324ae1 | 1585 | */ |
7afd2b58 | 1586 | void SetStyleSheet(wxRichTextStyleSheet* styleSheet) { GetBuffer().SetStyleSheet(styleSheet); } |
23324ae1 FM |
1587 | |
1588 | /** | |
7afd2b58 JS |
1589 | Returns the style sheet associated with the control, if any. |
1590 | A style sheet allows named character and paragraph styles to be applied. | |
23324ae1 | 1591 | */ |
7afd2b58 | 1592 | wxRichTextStyleSheet* GetStyleSheet() const { return GetBuffer().GetStyleSheet(); } |
23324ae1 FM |
1593 | |
1594 | /** | |
7afd2b58 | 1595 | Push the style sheet to top of stack. |
23324ae1 | 1596 | */ |
7afd2b58 | 1597 | bool PushStyleSheet(wxRichTextStyleSheet* styleSheet) { return GetBuffer().PushStyleSheet(styleSheet); } |
23324ae1 FM |
1598 | |
1599 | /** | |
7afd2b58 | 1600 | Pops the style sheet from top of stack. |
23324ae1 | 1601 | */ |
7afd2b58 | 1602 | wxRichTextStyleSheet* PopStyleSheet() { return GetBuffer().PopStyleSheet(); } |
23324ae1 FM |
1603 | |
1604 | /** | |
7afd2b58 | 1605 | Applies the style sheet to the buffer, for example if the styles have changed. |
23324ae1 | 1606 | */ |
7afd2b58 JS |
1607 | bool ApplyStyleSheet(wxRichTextStyleSheet* styleSheet = NULL); |
1608 | ||
9b794421 JS |
1609 | /** |
1610 | Shows the given context menu, optionally adding appropriate property-editing commands for the current position in the object hierarchy. | |
1611 | */ | |
1612 | virtual bool ShowContextMenu(wxMenu* menu, const wxPoint& pt, bool addPropertyCommands); | |
1613 | ||
1614 | /** | |
1615 | Prepares the context menu, optionally adding appropriate property-editing commands. | |
1616 | Returns the number of property commands added. | |
1617 | */ | |
1618 | virtual int PrepareContextMenu(wxMenu* menu, const wxPoint& pt, bool addPropertyCommands); | |
1619 | ||
303f0be7 JS |
1620 | /** |
1621 | Returns @true if we can edit the object's properties via a GUI. | |
1622 | */ | |
590a0f8b | 1623 | virtual bool CanEditProperties(wxRichTextObject* obj) const; |
303f0be7 JS |
1624 | |
1625 | /** | |
1626 | Edits the object's properties via a GUI. | |
1627 | */ | |
590a0f8b JS |
1628 | virtual bool EditProperties(wxRichTextObject* obj, wxWindow* parent); |
1629 | ||
1630 | /** | |
1631 | Gets the object's properties menu label. | |
1632 | */ | |
1633 | virtual wxString GetPropertiesMenuLabel(wxRichTextObject* obj); | |
303f0be7 | 1634 | |
cc2aecde JS |
1635 | /** |
1636 | Prepares the content just before insertion (or after buffer reset). Called by the same function in wxRichTextBuffer. | |
1637 | Currently is only called if undo mode is on. | |
1638 | */ | |
1639 | virtual void PrepareContent(wxRichTextParagraphLayoutBox& WXUNUSED(container)) {} | |
1640 | ||
1641 | /** | |
1642 | Can we delete this range? | |
1643 | Sends an event to the control. | |
1644 | */ | |
1645 | virtual bool CanDeleteRange(wxRichTextParagraphLayoutBox& container, const wxRichTextRange& range) const; | |
1646 | ||
1647 | /** | |
1648 | Can we insert content at this position? | |
1649 | Sends an event to the control. | |
1650 | */ | |
1651 | virtual bool CanInsertContent(wxRichTextParagraphLayoutBox& container, long pos) const; | |
1652 | ||
12f5219f JS |
1653 | /** |
1654 | Enable or disable the vertical scrollbar. | |
1655 | */ | |
1656 | virtual void EnableVerticalScrollbar(bool enable); | |
1657 | ||
1658 | /** | |
1659 | Returns @true if the vertical scrollbar is enabled. | |
1660 | */ | |
1661 | virtual bool GetVerticalScrollbarEnabled() const; | |
1662 | ||
32423dd8 JS |
1663 | /** |
1664 | Sets the scale factor for displaying fonts, for example for more comfortable | |
1665 | editing. | |
1666 | */ | |
1667 | void SetFontScale(double fontScale, bool refresh = false); | |
1668 | ||
1669 | /** | |
1670 | Returns the scale factor for displaying fonts, for example for more comfortable | |
1671 | editing. | |
1672 | */ | |
1673 | double GetFontScale() const { return GetBuffer().GetFontScale(); } | |
1674 | ||
1675 | /** | |
1676 | Sets the scale factor for displaying certain dimensions such as indentation and | |
1677 | inter-paragraph spacing. This can be useful when editing in a small control | |
1678 | where you still want legible text, but a minimum of wasted white space. | |
1679 | */ | |
1680 | void SetDimensionScale(double dimScale, bool refresh = false); | |
1681 | ||
1682 | /** | |
1683 | Returns the scale factor for displaying certain dimensions such as indentation | |
1684 | and inter-paragraph spacing. | |
1685 | */ | |
1686 | double GetDimensionScale() const { return GetBuffer().GetDimensionScale(); } | |
1687 | ||
4ba36292 JS |
1688 | /** |
1689 | Sets an overall scale factor for displaying and editing the content. | |
1690 | */ | |
1691 | void SetScale(double scale, bool refresh = false); | |
1692 | ||
1693 | /** | |
1694 | Returns an overall scale factor for displaying and editing the content. | |
1695 | */ | |
1696 | double GetScale() const { return m_scale; } | |
1697 | ||
1698 | /** | |
1699 | Returns an unscaled point. | |
1700 | */ | |
1701 | wxPoint GetUnscaledPoint(const wxPoint& pt) const; | |
1702 | ||
1703 | /** | |
1704 | Returns a scaled point. | |
1705 | */ | |
1706 | wxPoint GetScaledPoint(const wxPoint& pt) const; | |
1707 | ||
1708 | /** | |
1709 | Returns an unscaled size. | |
1710 | */ | |
1711 | wxSize GetUnscaledSize(const wxSize& sz) const; | |
1712 | ||
1713 | /** | |
1714 | Returns a scaled size. | |
1715 | */ | |
1716 | wxSize GetScaledSize(const wxSize& sz) const; | |
1717 | ||
1718 | /** | |
1719 | Returns an unscaled rectangle. | |
1720 | */ | |
1721 | wxRect GetUnscaledRect(const wxRect& rect) const; | |
1722 | ||
1723 | /** | |
1724 | Returns a scaled rectangle. | |
1725 | */ | |
1726 | wxRect GetScaledRect(const wxRect& rect) const; | |
1727 | ||
7afd2b58 | 1728 | // Command handlers |
23324ae1 FM |
1729 | |
1730 | /** | |
7afd2b58 | 1731 | Sends the event to the control. |
23324ae1 | 1732 | */ |
7afd2b58 | 1733 | void Command(wxCommandEvent& event); |
23324ae1 FM |
1734 | |
1735 | /** | |
7afd2b58 | 1736 | Loads the first dropped file. |
23324ae1 | 1737 | */ |
7afd2b58 JS |
1738 | void OnDropFiles(wxDropFilesEvent& event); |
1739 | ||
1740 | void OnCaptureLost(wxMouseCaptureLostEvent& event); | |
1741 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
23324ae1 FM |
1742 | |
1743 | /** | |
7afd2b58 | 1744 | Standard handler for the wxID_CUT command. |
23324ae1 | 1745 | */ |
7afd2b58 | 1746 | void OnCut(wxCommandEvent& event); |
23324ae1 FM |
1747 | |
1748 | /** | |
7afd2b58 | 1749 | Standard handler for the wxID_COPY command. |
23324ae1 | 1750 | */ |
7afd2b58 | 1751 | void OnCopy(wxCommandEvent& event); |
23324ae1 | 1752 | |
23324ae1 | 1753 | /** |
7afd2b58 | 1754 | Standard handler for the wxID_PASTE command. |
23324ae1 | 1755 | */ |
7afd2b58 | 1756 | void OnPaste(wxCommandEvent& event); |
9e7ad1ca FM |
1757 | |
1758 | /** | |
7afd2b58 | 1759 | Standard handler for the wxID_UNDO command. |
9e7ad1ca | 1760 | */ |
7afd2b58 | 1761 | void OnUndo(wxCommandEvent& event); |
9e7ad1ca | 1762 | |
9e7ad1ca | 1763 | /** |
7afd2b58 | 1764 | Standard handler for the wxID_REDO command. |
9e7ad1ca | 1765 | */ |
7afd2b58 | 1766 | void OnRedo(wxCommandEvent& event); |
23324ae1 FM |
1767 | |
1768 | /** | |
7afd2b58 | 1769 | Standard handler for the wxID_SELECTALL command. |
23324ae1 | 1770 | */ |
7afd2b58 | 1771 | void OnSelectAll(wxCommandEvent& event); |
23324ae1 FM |
1772 | |
1773 | /** | |
7afd2b58 | 1774 | Standard handler for property commands. |
23324ae1 | 1775 | */ |
7afd2b58 | 1776 | void OnProperties(wxCommandEvent& event); |
5e6e278d | 1777 | |
7afd2b58 JS |
1778 | /** |
1779 | Standard handler for the wxID_CLEAR command. | |
1780 | */ | |
1781 | void OnClear(wxCommandEvent& event); | |
5e6e278d FM |
1782 | |
1783 | /** | |
7afd2b58 JS |
1784 | Standard update handler for the wxID_CUT command. |
1785 | */ | |
1786 | void OnUpdateCut(wxUpdateUIEvent& event); | |
1787 | ||
1788 | /** | |
1789 | Standard update handler for the wxID_COPY command. | |
1790 | */ | |
1791 | void OnUpdateCopy(wxUpdateUIEvent& event); | |
1792 | ||
1793 | /** | |
1794 | Standard update handler for the wxID_PASTE command. | |
1795 | */ | |
1796 | void OnUpdatePaste(wxUpdateUIEvent& event); | |
1797 | ||
1798 | /** | |
1799 | Standard update handler for the wxID_UNDO command. | |
1800 | */ | |
1801 | void OnUpdateUndo(wxUpdateUIEvent& event); | |
1802 | ||
1803 | /** | |
1804 | Standard update handler for the wxID_REDO command. | |
1805 | */ | |
1806 | void OnUpdateRedo(wxUpdateUIEvent& event); | |
1807 | ||
1808 | /** | |
1809 | Standard update handler for the wxID_SELECTALL command. | |
1810 | */ | |
1811 | void OnUpdateSelectAll(wxUpdateUIEvent& event); | |
1812 | ||
1813 | /** | |
1814 | Standard update handler for property commands. | |
1815 | */ | |
1816 | ||
1817 | void OnUpdateProperties(wxUpdateUIEvent& event); | |
1818 | ||
1819 | /** | |
1820 | Standard update handler for the wxID_CLEAR command. | |
1821 | */ | |
1822 | void OnUpdateClear(wxUpdateUIEvent& event); | |
1823 | ||
1824 | /** | |
1825 | Shows a standard context menu with undo, redo, cut, copy, paste, clear, and | |
1826 | select all commands. | |
1827 | */ | |
1828 | void OnContextMenu(wxContextMenuEvent& event); | |
1829 | ||
1830 | // Event handlers | |
1831 | ||
1832 | // Painting | |
1833 | void OnPaint(wxPaintEvent& event); | |
1834 | void OnEraseBackground(wxEraseEvent& event); | |
1835 | ||
1836 | // Left-click | |
1837 | void OnLeftClick(wxMouseEvent& event); | |
1838 | ||
1839 | // Left-up | |
1840 | void OnLeftUp(wxMouseEvent& event); | |
1841 | ||
1842 | // Motion | |
1843 | void OnMoveMouse(wxMouseEvent& event); | |
1844 | ||
1845 | // Left-double-click | |
1846 | void OnLeftDClick(wxMouseEvent& event); | |
1847 | ||
1848 | // Middle-click | |
1849 | void OnMiddleClick(wxMouseEvent& event); | |
1850 | ||
1851 | // Right-click | |
1852 | void OnRightClick(wxMouseEvent& event); | |
1853 | ||
1854 | // Key press | |
1855 | void OnChar(wxKeyEvent& event); | |
1856 | ||
1857 | // Sizing | |
1858 | void OnSize(wxSizeEvent& event); | |
1859 | ||
1860 | // Setting/losing focus | |
1861 | void OnSetFocus(wxFocusEvent& event); | |
1862 | void OnKillFocus(wxFocusEvent& event); | |
1863 | ||
1864 | // Idle-time processing | |
1865 | void OnIdle(wxIdleEvent& event); | |
1866 | ||
1867 | // Scrolling | |
1868 | void OnScroll(wxScrollWinEvent& event); | |
1869 | ||
1870 | /** | |
1871 | Sets the font, and also the basic and default attributes | |
1872 | (see wxRichTextCtrl::SetDefaultStyle). | |
5e6e278d | 1873 | */ |
7afd2b58 JS |
1874 | virtual bool SetFont(const wxFont& font); |
1875 | ||
1876 | /** | |
1877 | A helper function setting up scrollbars, for example after a resize. | |
1878 | */ | |
1879 | virtual void SetupScrollbars(bool atTop = false); | |
1880 | ||
1881 | /** | |
1882 | Helper function implementing keyboard navigation. | |
1883 | */ | |
1884 | virtual bool KeyboardNavigate(int keyCode, int flags); | |
5e6e278d FM |
1885 | |
1886 | /** | |
7afd2b58 | 1887 | Paints the background. |
5e6e278d | 1888 | */ |
7afd2b58 JS |
1889 | virtual void PaintBackground(wxDC& dc); |
1890 | ||
1891 | /** | |
1892 | Other user defined painting after everything else (i.e. all text) is painted. | |
1893 | ||
1894 | @since 2.9.1 | |
1895 | */ | |
1896 | virtual void PaintAboveContent(wxDC& WXUNUSED(dc)) {} | |
1897 | ||
1898 | #if wxRICHTEXT_BUFFERED_PAINTING | |
1899 | /** | |
1900 | Recreates the buffer bitmap if necessary. | |
1901 | */ | |
1902 | virtual bool RecreateBuffer(const wxSize& size = wxDefaultSize); | |
1903 | #endif | |
1904 | ||
1905 | // Write text | |
1906 | virtual void DoWriteText(const wxString& value, int flags = 0); | |
1907 | ||
1908 | // Should we inherit colours? | |
1909 | virtual bool ShouldInheritColours() const { return false; } | |
1910 | ||
1911 | /** | |
1912 | Internal function to position the visible caret according to the current caret | |
1913 | position. | |
1914 | */ | |
1915 | virtual void PositionCaret(wxRichTextParagraphLayoutBox* container = NULL); | |
1916 | ||
1917 | /** | |
1918 | Helper function for extending the selection, returning @true if the selection | |
1919 | was changed. Selections are in caret positions. | |
1920 | */ | |
1921 | virtual bool ExtendSelection(long oldPosition, long newPosition, int flags); | |
1922 | ||
1923 | /** | |
1924 | Scrolls @a position into view. This function takes a caret position. | |
1925 | */ | |
1926 | virtual bool ScrollIntoView(long position, int keyCode); | |
1927 | ||
1928 | /** | |
1929 | Refreshes the area affected by a selection change. | |
1930 | */ | |
1931 | bool RefreshForSelectionChange(const wxRichTextSelection& oldSelection, const wxRichTextSelection& newSelection); | |
1932 | ||
1933 | /** | |
1934 | Sets the caret position. | |
1935 | ||
1936 | The caret position is the character position just before the caret. | |
1937 | A value of -1 means the caret is at the start of the buffer. | |
1938 | Please note that this does not update the current editing style | |
1939 | from the new position or cause the actual caret to be refreshed; to do that, | |
1940 | call wxRichTextCtrl::SetInsertionPoint instead. | |
1941 | */ | |
1942 | void SetCaretPosition(long position, bool showAtLineStart = false) ; | |
1943 | ||
1944 | /** | |
1945 | Returns the current caret position. | |
1946 | */ | |
1947 | long GetCaretPosition() const { return m_caretPosition; } | |
1948 | ||
1949 | /** | |
1950 | The adjusted caret position is the character position adjusted to take | |
1951 | into account whether we're at the start of a paragraph, in which case | |
1952 | style information should be taken from the next position, not current one. | |
1953 | */ | |
1954 | long GetAdjustedCaretPosition(long caretPos) const; | |
1955 | ||
1956 | /** | |
1957 | Move the caret one visual step forward: this may mean setting a flag | |
1958 | and keeping the same position if we're going from the end of one line | |
1959 | to the start of the next, which may be the exact same caret position. | |
1960 | */ | |
1961 | void MoveCaretForward(long oldPosition) ; | |
1962 | ||
1963 | /** | |
1964 | Move the caret one visual step forward: this may mean setting a flag | |
1965 | and keeping the same position if we're going from the end of one line | |
1966 | to the start of the next, which may be the exact same caret position. | |
1967 | */ | |
1968 | void MoveCaretBack(long oldPosition) ; | |
1969 | ||
1970 | /** | |
1971 | Returns the caret height and position for the given character position. | |
1972 | If container is null, the current focus object will be used. | |
1973 | ||
1974 | @beginWxPerlOnly | |
1975 | In wxPerl this method is implemented as | |
1976 | GetCaretPositionForIndex(@a position) returning a | |
1977 | 2-element list (ok, rect). | |
1978 | @endWxPerlOnly | |
1979 | */ | |
1980 | bool GetCaretPositionForIndex(long position, wxRect& rect, wxRichTextParagraphLayoutBox* container = NULL); | |
1981 | ||
1982 | /** | |
1983 | Internal helper function returning the line for the visible caret position. | |
1984 | If the caret is shown at the very end of the line, it means the next character | |
1985 | is actually on the following line. | |
1986 | So this function gets the line we're expecting to find if this is the case. | |
1987 | */ | |
1988 | wxRichTextLine* GetVisibleLineForCaretPosition(long caretPosition) const; | |
1989 | ||
1990 | /** | |
1991 | Gets the command processor associated with the control's buffer. | |
1992 | */ | |
1993 | wxCommandProcessor* GetCommandProcessor() const { return GetBuffer().GetCommandProcessor(); } | |
1994 | ||
1995 | /** | |
1996 | Deletes content if there is a selection, e.g. when pressing a key. | |
1997 | Returns the new caret position in @e newPos, or leaves it if there | |
1998 | was no action. This is undoable. | |
1999 | ||
2000 | @beginWxPerlOnly | |
2001 | In wxPerl this method takes no arguments and returns a 2-element | |
2002 | list (ok, newPos). | |
2003 | @endWxPerlOnly | |
2004 | */ | |
2005 | bool DeleteSelectedContent(long* newPos= NULL); | |
2006 | ||
2007 | /** | |
2008 | Transforms logical (unscrolled) position to physical window position. | |
2009 | */ | |
2010 | wxPoint GetPhysicalPoint(const wxPoint& ptLogical) const; | |
2011 | ||
2012 | /** | |
2013 | Transforms physical window position to logical (unscrolled) position. | |
2014 | */ | |
2015 | wxPoint GetLogicalPoint(const wxPoint& ptPhysical) const; | |
2016 | ||
2017 | /** | |
2018 | Helper function for finding the caret position for the next word. | |
2019 | Direction is 1 (forward) or -1 (backwards). | |
2020 | */ | |
2021 | virtual long FindNextWordPosition(int direction = 1) const; | |
2022 | ||
2023 | /** | |
2024 | Returns @true if the given position is visible on the screen. | |
2025 | */ | |
2026 | bool IsPositionVisible(long pos) const; | |
2027 | ||
2028 | /** | |
2029 | Returns the first visible position in the current view. | |
2030 | */ | |
2031 | long GetFirstVisiblePosition() const; | |
2032 | ||
2033 | /** | |
2034 | Returns the caret position since the default formatting was changed. As | |
2035 | soon as this position changes, we no longer reflect the default style | |
2036 | in the UI. A value of -2 means that we should only reflect the style of the | |
2037 | content under the caret. | |
2038 | */ | |
2039 | long GetCaretPositionForDefaultStyle() const { return m_caretPositionForDefaultStyle; } | |
2040 | ||
2041 | /** | |
2042 | Set the caret position for the default style that the user is selecting. | |
2043 | */ | |
2044 | void SetCaretPositionForDefaultStyle(long pos) { m_caretPositionForDefaultStyle = pos; } | |
2045 | ||
2046 | /** | |
2047 | Returns @true if the user has recently set the default style without moving | |
2048 | the caret, and therefore the UI needs to reflect the default style and not | |
2049 | the style at the caret. | |
2050 | ||
2051 | Below is an example of code that uses this function to determine whether the UI | |
2052 | should show that the current style is bold. | |
2053 | ||
2054 | @see SetAndShowDefaultStyle(). | |
2055 | */ | |
2056 | bool IsDefaultStyleShowing() const { return m_caretPositionForDefaultStyle != -2; } | |
2057 | ||
2058 | /** | |
2059 | Sets @a attr as the default style and tells the control that the UI should | |
2060 | reflect this attribute until the user moves the caret. | |
2061 | ||
2062 | @see IsDefaultStyleShowing(). | |
2063 | */ | |
2064 | void SetAndShowDefaultStyle(const wxRichTextAttr& attr) | |
2065 | { | |
2066 | SetDefaultStyle(attr); | |
2067 | SetCaretPositionForDefaultStyle(GetCaretPosition()); | |
2068 | } | |
2069 | ||
2070 | /** | |
2071 | Returns the first visible point in the window. | |
2072 | */ | |
2073 | wxPoint GetFirstVisiblePoint() const; | |
2074 | ||
2075 | #ifdef DOXYGEN | |
2076 | /** | |
2077 | Returns the content of the entire control as a string. | |
2078 | */ | |
2079 | virtual wxString GetValue() const; | |
2080 | ||
2081 | /** | |
2082 | Replaces existing content with the given text. | |
2083 | */ | |
2084 | virtual void SetValue(const wxString& value); | |
2085 | ||
2086 | /** | |
2087 | Call this function to prevent refresh and allow fast updates, and then Thaw() to | |
2088 | refresh the control. | |
2089 | */ | |
2090 | void Freeze(); | |
2091 | ||
2092 | /** | |
2093 | Call this function to end a Freeze and refresh the display. | |
2094 | */ | |
2095 | void Thaw(); | |
2096 | ||
2097 | /** | |
2098 | Returns @true if Freeze has been called without a Thaw. | |
2099 | */ | |
2100 | bool IsFrozen() const; | |
2101 | ||
2102 | #endif | |
2103 | ||
2104 | // Implementation | |
2105 | ||
2106 | /** | |
2107 | Sets up the caret for the given position and container, after a mouse click. | |
2108 | */ | |
2109 | bool SetCaretPositionAfterClick(wxRichTextParagraphLayoutBox* container, long position, int hitTestFlags, bool extendSelection = false); | |
2110 | ||
2111 | /** | |
2112 | Find the caret position for the combination of hit-test flags and character position. | |
2113 | Returns the caret position and also an indication of where to place the caret (caretLineStart) | |
2114 | since this is ambiguous (same position used for end of line and start of next). | |
2115 | */ | |
2116 | long FindCaretPositionForCharacterPosition(long position, int hitTestFlags, wxRichTextParagraphLayoutBox* container, | |
2117 | bool& caretLineStart); | |
2118 | ||
590a0f8b JS |
2119 | /** |
2120 | Processes mouse movement in order to change the cursor | |
2121 | */ | |
2122 | virtual bool ProcessMouseMovement(wxRichTextParagraphLayoutBox* container, wxRichTextObject* obj, long position, const wxPoint& pos); | |
2123 | ||
7afd2b58 JS |
2124 | /** |
2125 | Font names take a long time to retrieve, so cache them (on demand). | |
2126 | */ | |
2127 | static const wxArrayString& GetAvailableFontNames(); | |
2128 | ||
2129 | /** | |
2130 | Clears the cache of available font names. | |
2131 | */ | |
2132 | static void ClearAvailableFontNames(); | |
2133 | ||
2134 | WX_FORWARD_TO_SCROLL_HELPER() | |
2135 | ||
2136 | // implement wxTextEntry methods | |
2137 | virtual wxString DoGetValue() const; | |
2138 | ||
2139 | protected: | |
2140 | // implement the wxTextEntry pure virtual method | |
2141 | virtual wxWindow *GetEditableWindow() { return this; } | |
2142 | ||
2143 | // margins functions | |
2144 | virtual bool DoSetMargins(const wxPoint& pt); | |
2145 | virtual wxPoint DoGetMargins() const; | |
2146 | ||
2147 | // FIXME: this does not work, it allows this code to compile but will fail | |
2148 | // during run-time | |
2149 | #ifndef __WXUNIVERSAL__ | |
2150 | #ifdef __WXMSW__ | |
2151 | virtual WXHWND GetEditHWND() const { return GetHWND(); } | |
2152 | #endif | |
2153 | #ifdef __WXMOTIF__ | |
2154 | virtual WXWidget GetTextWidget() const { return NULL; } | |
2155 | #endif | |
2156 | #ifdef __WXGTK20__ | |
2157 | virtual GtkEditable *GetEditable() const { return NULL; } | |
2158 | virtual GtkEntry *GetEntry() const { return NULL; } | |
2159 | #endif | |
2160 | #endif // !__WXUNIVERSAL__ | |
2161 | ||
2162 | // Overrides | |
2163 | protected: | |
2164 | ||
2165 | /** | |
2166 | Currently this simply returns @c wxSize(10, 10). | |
2167 | */ | |
2168 | virtual wxSize DoGetBestSize() const ; | |
2169 | ||
2170 | virtual void DoSetValue(const wxString& value, int flags = 0); | |
2171 | ||
2172 | virtual void DoThaw(); | |
2173 | ||
2174 | ||
2175 | // Data members | |
0c0e063e | 2176 | protected: |
7afd2b58 JS |
2177 | #if wxRICHTEXT_BUFFERED_PAINTING |
2178 | /// Buffer bitmap | |
2179 | wxBitmap m_bufferBitmap; | |
2180 | #endif | |
2181 | ||
2182 | /// Text buffer | |
2183 | wxRichTextBuffer m_buffer; | |
2184 | ||
2185 | wxMenu* m_contextMenu; | |
2186 | ||
2187 | /// Caret position (1 less than the character position, so -1 is the | |
2188 | /// first caret position). | |
2189 | long m_caretPosition; | |
2190 | ||
2191 | /// Caret position when the default formatting has been changed. As | |
2192 | /// soon as this position changes, we no longer reflect the default style | |
2193 | /// in the UI. | |
2194 | long m_caretPositionForDefaultStyle; | |
2195 | ||
2196 | /// Selection range in character positions. -2, -2 means no selection. | |
2197 | wxRichTextSelection m_selection; | |
2198 | ||
2199 | wxRichTextCtrlSelectionState m_selectionState; | |
2200 | ||
2201 | /// Anchor so we know how to extend the selection | |
2202 | /// It's a caret position since it's between two characters. | |
2203 | long m_selectionAnchor; | |
2204 | ||
2205 | /// Anchor object if selecting multiple container objects, such as grid cells. | |
2206 | wxRichTextObject* m_selectionAnchorObject; | |
2207 | ||
2208 | /// Are we editable? | |
2209 | bool m_editable; | |
2210 | ||
2211 | /// Are we showing the caret position at the start of a line | |
2212 | /// instead of at the end of the previous one? | |
2213 | bool m_caretAtLineStart; | |
2214 | ||
2215 | /// Are we dragging a selection? | |
2216 | bool m_dragging; | |
2217 | ||
7afd2b58 JS |
2218 | /// Do we need full layout in idle? |
2219 | bool m_fullLayoutRequired; | |
2220 | wxLongLong m_fullLayoutTime; | |
2221 | long m_fullLayoutSavedPosition; | |
2222 | ||
2223 | /// Threshold for doing delayed layout | |
2224 | long m_delayedLayoutThreshold; | |
2225 | ||
2226 | /// Cursors | |
2227 | wxCursor m_textCursor; | |
2228 | wxCursor m_urlCursor; | |
2229 | ||
2230 | static wxArrayString sm_availableFontNames; | |
2231 | ||
2232 | wxRichTextContextMenuPropertiesInfo m_contextMenuPropertiesInfo; | |
2233 | ||
2234 | /// The object that currently has the editing focus | |
2235 | wxRichTextParagraphLayoutBox* m_focusObject; | |
2236 | }; | |
2237 | ||
2238 | /** | |
2239 | @class wxRichTextEvent | |
2240 | ||
2241 | This is the event class for wxRichTextCtrl notifications. | |
2242 | ||
2243 | @beginEventTable{wxRichTextEvent} | |
2244 | @event{EVT_RICHTEXT_LEFT_CLICK(id, func)} | |
2245 | Process a @c wxEVT_COMMAND_RICHTEXT_LEFT_CLICK event, generated when the user | |
2246 | releases the left mouse button over an object. | |
2247 | @event{EVT_RICHTEXT_RIGHT_CLICK(id, func)} | |
2248 | Process a @c wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK event, generated when the user | |
2249 | releases the right mouse button over an object. | |
2250 | @event{EVT_RICHTEXT_MIDDLE_CLICK(id, func)} | |
2251 | Process a @c wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK event, generated when the user | |
2252 | releases the middle mouse button over an object. | |
2253 | @event{EVT_RICHTEXT_LEFT_DCLICK(id, func)} | |
b099835e | 2254 | Process a @c wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK event, generated when the user |
7afd2b58 JS |
2255 | double-clicks an object. |
2256 | @event{EVT_RICHTEXT_RETURN(id, func)} | |
2257 | Process a @c wxEVT_COMMAND_RICHTEXT_RETURN event, generated when the user | |
2258 | presses the return key. Valid event functions: GetFlags, GetPosition. | |
2259 | @event{EVT_RICHTEXT_CHARACTER(id, func)} | |
2260 | Process a @c wxEVT_COMMAND_RICHTEXT_CHARACTER event, generated when the user | |
2261 | presses a character key. Valid event functions: GetFlags, GetPosition, GetCharacter. | |
2262 | @event{EVT_RICHTEXT_DELETE(id, func)} | |
2263 | Process a @c wxEVT_COMMAND_RICHTEXT_DELETE event, generated when the user | |
2264 | presses the backspace or delete key. Valid event functions: GetFlags, GetPosition. | |
2265 | @event{EVT_RICHTEXT_RETURN(id, func)} | |
2266 | Process a @c wxEVT_COMMAND_RICHTEXT_RETURN event, generated when the user | |
2267 | presses the return key. Valid event functions: GetFlags, GetPosition. | |
2268 | @event{EVT_RICHTEXT_STYLE_CHANGED(id, func)} | |
2269 | Process a @c wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED event, generated when | |
2270 | styling has been applied to the control. Valid event functions: GetPosition, GetRange. | |
2271 | @event{EVT_RICHTEXT_STYLESHEET_CHANGED(id, func)} | |
2272 | Process a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING event, generated | |
2273 | when the control's stylesheet has changed, for example the user added, | |
2274 | edited or deleted a style. Valid event functions: GetRange, GetPosition. | |
2275 | @event{EVT_RICHTEXT_STYLESHEET_REPLACING(id, func)} | |
2276 | Process a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING event, generated | |
2277 | when the control's stylesheet is about to be replaced, for example when | |
2278 | a file is loaded into the control. | |
2279 | Valid event functions: Veto, GetOldStyleSheet, GetNewStyleSheet. | |
2280 | @event{EVT_RICHTEXT_STYLESHEET_REPLACED(id, func)} | |
2281 | Process a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED event, generated | |
2282 | when the control's stylesheet has been replaced, for example when a file | |
2283 | is loaded into the control. | |
2284 | Valid event functions: GetOldStyleSheet, GetNewStyleSheet. | |
590a0f8b JS |
2285 | @event{EVT_RICHTEXT_PROPERTIES_CHANGED(id, func)} |
2286 | Process a @c wxEVT_COMMAND_RICHTEXT_PROPERTIES_CHANGED event, generated when | |
2287 | properties have been applied to the control. Valid event functions: GetPosition, GetRange. | |
7afd2b58 JS |
2288 | @event{EVT_RICHTEXT_CONTENT_INSERTED(id, func)} |
2289 | Process a @c wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED event, generated when | |
2290 | content has been inserted into the control. | |
2291 | Valid event functions: GetPosition, GetRange. | |
2292 | @event{EVT_RICHTEXT_CONTENT_DELETED(id, func)} | |
2293 | Process a @c wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED event, generated when | |
2294 | content has been deleted from the control. | |
2295 | Valid event functions: GetPosition, GetRange. | |
2296 | @event{EVT_RICHTEXT_BUFFER_RESET(id, func)} | |
2297 | Process a @c wxEVT_COMMAND_RICHTEXT_BUFFER_RESET event, generated when the | |
2298 | buffer has been reset by deleting all content. | |
2299 | You can use this to set a default style for the first new paragraph. | |
2300 | @event{EVT_RICHTEXT_SELECTION_CHANGED(id, func)} | |
2301 | Process a @c wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED event, generated when the | |
2302 | selection range has changed. | |
2303 | @event{EVT_RICHTEXT_FOCUS_OBJECT_CHANGED(id, func)} | |
2304 | Process a @c wxEVT_COMMAND_RICHTEXT_FOCUS_OBJECT_CHANGED event, generated when the | |
2305 | current focus object has changed. | |
2306 | @endEventTable | |
2307 | ||
2308 | @library{wxrichtext} | |
2309 | @category{events,richtext} | |
2310 | */ | |
2311 | ||
2312 | class WXDLLIMPEXP_RICHTEXT wxRichTextEvent : public wxNotifyEvent | |
2313 | { | |
2314 | public: | |
2315 | /** | |
2316 | Constructor. | |
2317 | ||
2318 | @param commandType | |
2319 | The type of the event. | |
2320 | @param id | |
2321 | Window identifier. The value @c wxID_ANY indicates a default value. | |
2322 | */ | |
2323 | wxRichTextEvent(wxEventType commandType = wxEVT_NULL, int winid = 0) | |
2324 | : wxNotifyEvent(commandType, winid), | |
2325 | m_flags(0), m_position(-1), m_oldStyleSheet(NULL), m_newStyleSheet(NULL), | |
2326 | m_char((wxChar) 0), m_container(NULL), m_oldContainer(NULL) | |
2327 | { } | |
2328 | ||
2329 | /** | |
2330 | Copy constructor. | |
2331 | */ | |
2332 | wxRichTextEvent(const wxRichTextEvent& event) | |
2333 | : wxNotifyEvent(event), | |
2334 | m_flags(event.m_flags), m_position(-1), | |
2335 | m_oldStyleSheet(event.m_oldStyleSheet), m_newStyleSheet(event.m_newStyleSheet), | |
2336 | m_char((wxChar) 0), m_container(event.m_container), m_oldContainer(event.m_oldContainer) | |
2337 | { } | |
2338 | ||
2339 | /** | |
f090e4ef | 2340 | Returns the buffer position at which the event occurred. |
7afd2b58 JS |
2341 | */ |
2342 | long GetPosition() const { return m_position; } | |
2343 | ||
2344 | /** | |
2345 | Sets the buffer position variable. | |
2346 | */ | |
2347 | void SetPosition(long pos) { m_position = pos; } | |
2348 | ||
2349 | /** | |
2350 | Returns flags indicating modifier keys pressed. | |
2351 | ||
2352 | Possible values are @c wxRICHTEXT_CTRL_DOWN, @c wxRICHTEXT_SHIFT_DOWN, and @c wxRICHTEXT_ALT_DOWN. | |
2353 | */ | |
2354 | int GetFlags() const { return m_flags; } | |
2355 | ||
2356 | /** | |
2357 | Sets flags indicating modifier keys pressed. | |
2358 | ||
2359 | Possible values are @c wxRICHTEXT_CTRL_DOWN, @c wxRICHTEXT_SHIFT_DOWN, and @c wxRICHTEXT_ALT_DOWN. | |
2360 | */ | |
2361 | void SetFlags(int flags) { m_flags = flags; } | |
2362 | ||
2363 | /** | |
2364 | Returns the old style sheet. | |
2365 | ||
2366 | Can be used in a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING or | |
2367 | @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED event handler. | |
2368 | */ | |
2369 | wxRichTextStyleSheet* GetOldStyleSheet() const { return m_oldStyleSheet; } | |
2370 | ||
2371 | /** | |
2372 | Sets the old style sheet variable. | |
2373 | */ | |
2374 | void SetOldStyleSheet(wxRichTextStyleSheet* sheet) { m_oldStyleSheet = sheet; } | |
2375 | ||
2376 | /** | |
2377 | Returns the new style sheet. | |
2378 | ||
2379 | Can be used in a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING or | |
2380 | @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED event handler. | |
2381 | */ | |
2382 | wxRichTextStyleSheet* GetNewStyleSheet() const { return m_newStyleSheet; } | |
2383 | ||
2384 | /** | |
2385 | Sets the new style sheet variable. | |
2386 | */ | |
2387 | void SetNewStyleSheet(wxRichTextStyleSheet* sheet) { m_newStyleSheet = sheet; } | |
2388 | ||
2389 | /** | |
2390 | Gets the range for the current operation. | |
2391 | */ | |
2392 | const wxRichTextRange& GetRange() const { return m_range; } | |
2393 | ||
2394 | /** | |
2395 | Sets the range variable. | |
2396 | */ | |
2397 | void SetRange(const wxRichTextRange& range) { m_range = range; } | |
2398 | ||
2399 | /** | |
2400 | Returns the character pressed, within a @c wxEVT_COMMAND_RICHTEXT_CHARACTER event. | |
2401 | */ | |
2402 | wxChar GetCharacter() const { return m_char; } | |
2403 | ||
2404 | /** | |
2405 | Sets the character variable. | |
2406 | */ | |
2407 | void SetCharacter(wxChar ch) { m_char = ch; } | |
2408 | ||
2409 | /** | |
2410 | Returns the container for which the event is relevant. | |
2411 | */ | |
2412 | wxRichTextParagraphLayoutBox* GetContainer() const { return m_container; } | |
2413 | ||
2414 | /** | |
2415 | Sets the container for which the event is relevant. | |
2416 | */ | |
2417 | void SetContainer(wxRichTextParagraphLayoutBox* container) { m_container = container; } | |
2418 | ||
2419 | /** | |
2420 | Returns the old container, for a focus change event. | |
2421 | */ | |
2422 | wxRichTextParagraphLayoutBox* GetOldContainer() const { return m_oldContainer; } | |
2423 | ||
2424 | /** | |
2425 | Sets the old container, for a focus change event. | |
2426 | */ | |
2427 | void SetOldContainer(wxRichTextParagraphLayoutBox* container) { m_oldContainer = container; } | |
2428 | ||
2429 | virtual wxEvent *Clone() const { return new wxRichTextEvent(*this); } | |
2430 | ||
2431 | protected: | |
2432 | int m_flags; | |
2433 | long m_position; | |
2434 | wxRichTextStyleSheet* m_oldStyleSheet; | |
2435 | wxRichTextStyleSheet* m_newStyleSheet; | |
2436 | wxRichTextRange m_range; | |
2437 | wxChar m_char; | |
2438 | wxRichTextParagraphLayoutBox* m_container; | |
2439 | wxRichTextParagraphLayoutBox* m_oldContainer; | |
2440 | ||
2441 | private: | |
2442 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxRichTextEvent) | |
23324ae1 | 2443 | }; |