]>
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 | */ |
7afd2b58 | 114 | int AddItems(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 | /** | |
7afd2b58 | 395 | Returns @true if we are dragging a selection. |
23324ae1 | 396 | */ |
7afd2b58 | 397 | bool GetDragging() const { return m_dragging; } |
23324ae1 FM |
398 | |
399 | /** | |
7afd2b58 | 400 | Sets a flag to remember if we are dragging a selection. |
23324ae1 | 401 | */ |
7afd2b58 | 402 | void SetDragging(bool dragging) { m_dragging = dragging; } |
23324ae1 FM |
403 | |
404 | /** | |
7afd2b58 | 405 | Returns the drag start position. |
23324ae1 | 406 | */ |
7afd2b58 | 407 | const wxPoint& GetDragStart() const { return m_dragStart; } |
23324ae1 FM |
408 | |
409 | /** | |
7afd2b58 | 410 | Sets the drag start position. |
23324ae1 | 411 | */ |
7afd2b58 | 412 | void SetDragStart(const wxPoint& pt) { m_dragStart = pt; } |
23324ae1 | 413 | |
7afd2b58 JS |
414 | #if wxRICHTEXT_BUFFERED_PAINTING |
415 | //@{ | |
23324ae1 | 416 | /** |
7afd2b58 | 417 | Returns the buffer bitmap if using buffered painting. |
23324ae1 | 418 | */ |
7afd2b58 JS |
419 | const wxBitmap& GetBufferBitmap() const { return m_bufferBitmap; } |
420 | wxBitmap& GetBufferBitmap() { return m_bufferBitmap; } | |
421 | //@} | |
422 | #endif | |
23324ae1 FM |
423 | |
424 | /** | |
7afd2b58 | 425 | Returns the current context menu. |
23324ae1 | 426 | */ |
7afd2b58 | 427 | wxMenu* GetContextMenu() const { return m_contextMenu; } |
23324ae1 FM |
428 | |
429 | /** | |
7afd2b58 | 430 | Sets the current context menu. |
23324ae1 | 431 | */ |
7afd2b58 | 432 | void SetContextMenu(wxMenu* menu); |
23324ae1 FM |
433 | |
434 | /** | |
7afd2b58 JS |
435 | Returns an anchor so we know how to extend the selection. |
436 | It's a caret position since it's between two characters. | |
23324ae1 | 437 | */ |
7afd2b58 | 438 | long GetSelectionAnchor() const { return m_selectionAnchor; } |
23324ae1 | 439 | |
23324ae1 | 440 | /** |
7afd2b58 JS |
441 | Sets an anchor so we know how to extend the selection. |
442 | It's a caret position since it's between two characters. | |
23324ae1 | 443 | */ |
7afd2b58 | 444 | void SetSelectionAnchor(long anchor) { m_selectionAnchor = anchor; } |
23324ae1 FM |
445 | |
446 | /** | |
7afd2b58 | 447 | Returns the anchor object if selecting multiple containers. |
23324ae1 | 448 | */ |
7afd2b58 | 449 | wxRichTextObject* GetSelectionAnchorObject() const { return m_selectionAnchorObject; } |
23324ae1 FM |
450 | |
451 | /** | |
7afd2b58 | 452 | Sets the anchor object if selecting multiple containers. |
23324ae1 | 453 | */ |
7afd2b58 | 454 | void SetSelectionAnchorObject(wxRichTextObject* anchor) { m_selectionAnchorObject = anchor; } |
23324ae1 | 455 | |
7afd2b58 | 456 | //@{ |
23324ae1 | 457 | /** |
7afd2b58 JS |
458 | Returns an object that stores information about context menu property item(s), |
459 | in order to communicate between the context menu event handler and the code | |
460 | that responds to it. The wxRichTextContextMenuPropertiesInfo stores one | |
461 | item for each object that could respond to a property-editing event. If | |
462 | objects are nested, several might be editable. | |
23324ae1 | 463 | */ |
7afd2b58 JS |
464 | wxRichTextContextMenuPropertiesInfo& GetContextMenuPropertiesInfo() { return m_contextMenuPropertiesInfo; } |
465 | const wxRichTextContextMenuPropertiesInfo& GetContextMenuPropertiesInfo() const { return m_contextMenuPropertiesInfo; } | |
466 | //@} | |
23324ae1 FM |
467 | |
468 | /** | |
7afd2b58 JS |
469 | Returns the wxRichTextObject object that currently has the editing focus. |
470 | If there are no composite objects, this will be the top-level buffer. | |
23324ae1 | 471 | */ |
7afd2b58 | 472 | wxRichTextParagraphLayoutBox* GetFocusObject() const { return m_focusObject; } |
23324ae1 FM |
473 | |
474 | /** | |
7afd2b58 | 475 | Sets the wxRichTextObject object that currently has the editing focus. |
23324ae1 | 476 | */ |
7afd2b58 | 477 | bool SetFocusObject(wxRichTextParagraphLayoutBox* obj, bool setCaretPosition = true); |
371ae8b5 | 478 | |
7afd2b58 | 479 | // Operations |
23324ae1 FM |
480 | |
481 | /** | |
7afd2b58 | 482 | Invalidates the whole buffer to trigger painting later. |
23324ae1 | 483 | */ |
7afd2b58 | 484 | void Invalidate() { GetBuffer().Invalidate(wxRICHTEXT_ALL); } |
23324ae1 FM |
485 | |
486 | /** | |
7afd2b58 | 487 | Clears the buffer content, leaving a single empty paragraph. Cannot be undone. |
23324ae1 | 488 | */ |
7afd2b58 | 489 | virtual void Clear(); |
23324ae1 | 490 | |
23324ae1 | 491 | /** |
7afd2b58 JS |
492 | Replaces the content in the specified range with the string specified by |
493 | @a value. | |
23324ae1 | 494 | */ |
7afd2b58 | 495 | virtual void Replace(long from, long to, const wxString& value); |
23324ae1 FM |
496 | |
497 | /** | |
7afd2b58 | 498 | Removes the content in the specified range. |
23324ae1 | 499 | */ |
7afd2b58 | 500 | virtual void Remove(long from, long to); |
23324ae1 | 501 | |
7afd2b58 | 502 | #ifdef DOXYGEN |
23324ae1 | 503 | /** |
7afd2b58 | 504 | Loads content into the control's buffer using the given type. |
23324ae1 | 505 | |
7afd2b58 JS |
506 | If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from |
507 | the filename extension. | |
23324ae1 | 508 | |
7afd2b58 | 509 | This function looks for a suitable wxRichTextFileHandler object. |
23324ae1 | 510 | */ |
7afd2b58 JS |
511 | bool LoadFile(const wxString& file, |
512 | int type = wxRICHTEXT_TYPE_ANY); | |
513 | #endif | |
23324ae1 FM |
514 | |
515 | /** | |
7afd2b58 | 516 | Helper function for LoadFile(). Loads content into the control's buffer using the given type. |
23324ae1 | 517 | |
7afd2b58 JS |
518 | If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from |
519 | the filename extension. | |
23324ae1 | 520 | |
7afd2b58 | 521 | This function looks for a suitable wxRichTextFileHandler object. |
23324ae1 | 522 | */ |
7afd2b58 | 523 | virtual bool DoLoadFile(const wxString& file, int fileType); |
23324ae1 | 524 | |
7afd2b58 | 525 | #ifdef DOXYGEN |
23324ae1 | 526 | /** |
7afd2b58 | 527 | Saves the buffer content using the given type. |
23324ae1 | 528 | |
7afd2b58 JS |
529 | If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from |
530 | the filename extension. | |
23324ae1 | 531 | |
7afd2b58 | 532 | This function looks for a suitable wxRichTextFileHandler object. |
23324ae1 | 533 | */ |
7afd2b58 JS |
534 | bool SaveFile(const wxString& file = wxEmptyString, |
535 | int type = wxRICHTEXT_TYPE_ANY); | |
536 | #endif | |
23324ae1 FM |
537 | |
538 | /** | |
7afd2b58 | 539 | Helper function for SaveFile(). Saves the buffer content using the given type. |
23324ae1 | 540 | |
7afd2b58 JS |
541 | If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from |
542 | the filename extension. | |
23324ae1 | 543 | |
7afd2b58 | 544 | This function looks for a suitable wxRichTextFileHandler object. |
23324ae1 | 545 | */ |
7afd2b58 JS |
546 | virtual bool DoSaveFile(const wxString& file = wxEmptyString, |
547 | int fileType = wxRICHTEXT_TYPE_ANY); | |
23324ae1 FM |
548 | |
549 | /** | |
7afd2b58 | 550 | Sets flags that change the behaviour of loading or saving. |
23324ae1 | 551 | |
7afd2b58 JS |
552 | See the documentation for each handler class to see what flags are |
553 | relevant for each handler. | |
23324ae1 | 554 | */ |
7afd2b58 | 555 | void SetHandlerFlags(int flags) { GetBuffer().SetHandlerFlags(flags); } |
23324ae1 FM |
556 | |
557 | /** | |
7afd2b58 JS |
558 | Returns flags that change the behaviour of loading or saving. |
559 | See the documentation for each handler class to see what flags are | |
560 | relevant for each handler. | |
23324ae1 | 561 | */ |
7afd2b58 | 562 | int GetHandlerFlags() const { return GetBuffer().GetHandlerFlags(); } |
23324ae1 FM |
563 | |
564 | /** | |
7afd2b58 | 565 | Marks the buffer as modified. |
23324ae1 | 566 | */ |
7afd2b58 | 567 | virtual void MarkDirty(); |
23324ae1 FM |
568 | |
569 | /** | |
7afd2b58 JS |
570 | Sets the buffer's modified status to @false, and clears the buffer's command |
571 | history. | |
23324ae1 | 572 | */ |
7afd2b58 | 573 | virtual void DiscardEdits(); |
23324ae1 FM |
574 | |
575 | /** | |
7afd2b58 JS |
576 | Sets the maximum number of characters that may be entered in a single line |
577 | text control. For compatibility only; currently does nothing. | |
23324ae1 | 578 | */ |
7afd2b58 | 579 | virtual void SetMaxLength(unsigned long WXUNUSED(len)) { } |
23324ae1 FM |
580 | |
581 | /** | |
7afd2b58 | 582 | Writes text at the current position. |
23324ae1 | 583 | */ |
7afd2b58 | 584 | virtual void WriteText(const wxString& text); |
23324ae1 FM |
585 | |
586 | /** | |
7afd2b58 | 587 | Sets the insertion point to the end of the buffer and writes the text. |
23324ae1 | 588 | */ |
7afd2b58 | 589 | virtual void AppendText(const wxString& text); |
23324ae1 | 590 | |
7afd2b58 | 591 | //@{ |
23324ae1 | 592 | /** |
7afd2b58 JS |
593 | Gets the attributes at the given position. |
594 | This function gets the combined style - that is, the style you see on the | |
595 | screen as a result of combining base style, paragraph style and character | |
596 | style attributes. | |
597 | ||
598 | To get the character or paragraph style alone, use GetUncombinedStyle(). | |
599 | ||
600 | @beginWxPerlOnly | |
601 | In wxPerl this method is implemented as GetStyle(@a position) | |
602 | returning a 2-element list (ok, attr). | |
603 | @endWxPerlOnly | |
23324ae1 | 604 | */ |
7afd2b58 JS |
605 | virtual bool GetStyle(long position, wxTextAttr& style); |
606 | virtual bool GetStyle(long position, wxRichTextAttr& style); | |
607 | virtual bool GetStyle(long position, wxRichTextAttr& style, wxRichTextParagraphLayoutBox* container); | |
608 | //@} | |
23324ae1 | 609 | |
7afd2b58 | 610 | //@{ |
23324ae1 | 611 | /** |
7afd2b58 JS |
612 | Sets the attributes for the given range. |
613 | The end point of range is specified as the last character position of the span | |
614 | of text, plus one. | |
615 | ||
616 | So, for example, to set the style for a character at position 5, use the range | |
617 | (5,6). | |
23324ae1 | 618 | */ |
7afd2b58 JS |
619 | virtual bool SetStyle(long start, long end, const wxTextAttr& style); |
620 | virtual bool SetStyle(long start, long end, const wxRichTextAttr& style); | |
621 | virtual bool SetStyle(const wxRichTextRange& range, const wxTextAttr& style); | |
622 | virtual bool SetStyle(const wxRichTextRange& range, const wxRichTextAttr& style); | |
623 | //@} | |
23324ae1 FM |
624 | |
625 | /** | |
7afd2b58 | 626 | Sets the attributes for a single object |
23324ae1 | 627 | */ |
7afd2b58 | 628 | virtual void SetStyle(wxRichTextObject *obj, const wxRichTextAttr& textAttr); |
23324ae1 FM |
629 | |
630 | //@{ | |
631 | /** | |
7afd2b58 JS |
632 | Gets the attributes common to the specified range. |
633 | Attributes that differ in value within the range will not be included | |
634 | in @a style flags. | |
635 | ||
636 | @beginWxPerlOnly | |
637 | In wxPerl this method is implemented as GetStyleForRange(@a position) | |
638 | returning a 2-element list (ok, attr). | |
639 | @endWxPerlOnly | |
23324ae1 | 640 | */ |
7afd2b58 JS |
641 | virtual bool GetStyleForRange(const wxRichTextRange& range, wxTextAttr& style); |
642 | virtual bool GetStyleForRange(const wxRichTextRange& range, wxRichTextAttr& style); | |
643 | virtual bool GetStyleForRange(const wxRichTextRange& range, wxRichTextAttr& style, wxRichTextParagraphLayoutBox* container); | |
23324ae1 FM |
644 | //@} |
645 | ||
646 | /** | |
7afd2b58 JS |
647 | Sets the attributes for the given range, passing flags to determine how the |
648 | attributes are set. | |
649 | ||
650 | The end point of range is specified as the last character position of the span | |
651 | of text, plus one. So, for example, to set the style for a character at | |
652 | position 5, use the range (5,6). | |
653 | ||
654 | @a flags may contain a bit list of the following values: | |
655 | - wxRICHTEXT_SETSTYLE_NONE: no style flag. | |
656 | - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this operation should be | |
657 | undoable. | |
658 | - wxRICHTEXT_SETSTYLE_OPTIMIZE: specifies that the style should not be applied | |
659 | if the combined style at this point is already the style in question. | |
660 | - wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY: specifies that the style should only be | |
661 | applied to paragraphs, and not the content. | |
662 | This allows content styling to be preserved independently from that | |
663 | of e.g. a named paragraph style. | |
664 | - wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY: specifies that the style should only be | |
665 | applied to characters, and not the paragraph. | |
666 | This allows content styling to be preserved independently from that | |
667 | of e.g. a named paragraph style. | |
668 | - wxRICHTEXT_SETSTYLE_RESET: resets (clears) the existing style before applying | |
669 | the new style. | |
670 | - wxRICHTEXT_SETSTYLE_REMOVE: removes the specified style. Only the style flags | |
671 | are used in this operation. | |
23324ae1 | 672 | */ |
7afd2b58 | 673 | virtual bool SetStyleEx(const wxRichTextRange& range, const wxRichTextAttr& style, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO); |
23324ae1 | 674 | |
7afd2b58 | 675 | //@{ |
23324ae1 | 676 | /** |
7afd2b58 JS |
677 | Gets the attributes at the given position. |
678 | This function gets the @e uncombined style - that is, the attributes associated | |
679 | with the paragraph or character content, and not necessarily the combined | |
680 | attributes you see on the screen. | |
681 | To get the combined attributes, use GetStyle(). | |
682 | ||
683 | If you specify (any) paragraph attribute in @e style's flags, this function | |
684 | will fetch the paragraph attributes. | |
685 | Otherwise, it will return the character attributes. | |
371ae8b5 MB |
686 | |
687 | @beginWxPerlOnly | |
7afd2b58 JS |
688 | In wxPerl this method is implemented as GetUncombinedStyle(@a position) |
689 | returning a 2-element list (ok, attr). | |
371ae8b5 | 690 | @endWxPerlOnly |
23324ae1 | 691 | */ |
7afd2b58 JS |
692 | virtual bool GetUncombinedStyle(long position, wxRichTextAttr& style); |
693 | virtual bool GetUncombinedStyle(long position, wxRichTextAttr& style, wxRichTextParagraphLayoutBox* container); | |
694 | //@} | |
23324ae1 | 695 | |
7afd2b58 | 696 | //@{ |
23324ae1 | 697 | /** |
7afd2b58 JS |
698 | Sets the current default style, which can be used to change how subsequently |
699 | inserted text is displayed. | |
23324ae1 | 700 | */ |
7afd2b58 JS |
701 | virtual bool SetDefaultStyle(const wxTextAttr& style); |
702 | virtual bool SetDefaultStyle(const wxRichTextAttr& style); | |
703 | //@} | |
23324ae1 FM |
704 | |
705 | /** | |
706 | Returns the current default style, which can be used to change how subsequently | |
9e7ad1ca | 707 | inserted text is displayed. |
23324ae1 | 708 | */ |
7afd2b58 | 709 | virtual const wxRichTextAttr& GetDefaultStyleEx() const; |
23324ae1 | 710 | |
7afd2b58 | 711 | //virtual const wxTextAttr& GetDefaultStyle() const; |
23324ae1 | 712 | |
7afd2b58 | 713 | //@{ |
23324ae1 | 714 | /** |
7afd2b58 JS |
715 | Sets the list attributes for the given range, passing flags to determine how |
716 | the attributes are set. | |
23324ae1 | 717 | |
7afd2b58 JS |
718 | Either the style definition or the name of the style definition (in the current |
719 | sheet) can be passed. | |
720 | @a flags is a bit list of the following: | |
721 | - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable. | |
722 | - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from | |
723 | @a startFrom, otherwise existing attributes are used. | |
724 | - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used | |
725 | as the level for all paragraphs, otherwise the current indentation will be used. | |
23324ae1 | 726 | |
7afd2b58 | 727 | @see NumberList(), PromoteList(), ClearListStyle(). |
23324ae1 | 728 | */ |
7afd2b58 JS |
729 | virtual bool SetListStyle(const wxRichTextRange& range, wxRichTextListStyleDefinition* def, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1); |
730 | virtual bool SetListStyle(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1); | |
731 | //@} | |
23324ae1 FM |
732 | |
733 | /** | |
7afd2b58 JS |
734 | Clears the list style from the given range, clearing list-related attributes |
735 | and applying any named paragraph style associated with each paragraph. | |
23324ae1 | 736 | |
7afd2b58 JS |
737 | @a flags is a bit list of the following: |
738 | - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable. | |
23324ae1 | 739 | |
7afd2b58 | 740 | @see SetListStyle(), PromoteList(), NumberList(). |
23324ae1 | 741 | */ |
7afd2b58 | 742 | virtual bool ClearListStyle(const wxRichTextRange& range, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO); |
23324ae1 | 743 | |
7afd2b58 | 744 | //@{ |
23324ae1 | 745 | /** |
7afd2b58 JS |
746 | Numbers the paragraphs in the given range. |
747 | Pass flags to determine how the attributes are set. | |
23324ae1 | 748 | |
7afd2b58 JS |
749 | Either the style definition or the name of the style definition (in the current |
750 | sheet) can be passed. | |
23324ae1 | 751 | |
7afd2b58 JS |
752 | @a flags is a bit list of the following: |
753 | - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable. | |
754 | - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from | |
755 | @a startFrom, otherwise existing attributes are used. | |
756 | - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used | |
757 | as the level for all paragraphs, otherwise the current indentation will be used. | |
758 | ||
759 | @see SetListStyle(), PromoteList(), ClearListStyle(). | |
23324ae1 | 760 | */ |
7afd2b58 JS |
761 | virtual bool NumberList(const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1); |
762 | virtual bool NumberList(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1); | |
763 | //@} | |
23324ae1 | 764 | |
7afd2b58 | 765 | //@{ |
23324ae1 | 766 | /** |
7afd2b58 JS |
767 | Promotes or demotes the paragraphs in the given range. |
768 | A positive @a promoteBy produces a smaller indent, and a negative number | |
769 | produces a larger indent. Pass flags to determine how the attributes are set. | |
770 | Either the style definition or the name of the style definition (in the current | |
771 | sheet) can be passed. | |
772 | ||
773 | @a flags is a bit list of the following: | |
774 | - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable. | |
775 | - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from | |
776 | @a startFrom, otherwise existing attributes are used. | |
777 | - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used | |
778 | as the level for all paragraphs, otherwise the current indentation will be used. | |
779 | ||
780 | @see SetListStyle(), @see SetListStyle(), ClearListStyle(). | |
23324ae1 | 781 | */ |
7afd2b58 JS |
782 | virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1); |
783 | virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1); | |
784 | //@} | |
23324ae1 FM |
785 | |
786 | /** | |
7afd2b58 | 787 | Deletes the content within the given range. |
23324ae1 | 788 | */ |
7afd2b58 | 789 | virtual bool Delete(const wxRichTextRange& range); |
23324ae1 FM |
790 | |
791 | /** | |
7afd2b58 | 792 | Translates from column and line number to position. |
23324ae1 | 793 | */ |
7afd2b58 | 794 | virtual long XYToPosition(long x, long y) const; |
23324ae1 FM |
795 | |
796 | /** | |
7afd2b58 | 797 | Converts a text position to zero-based column and line numbers. |
23324ae1 | 798 | */ |
7afd2b58 | 799 | virtual bool PositionToXY(long pos, long *x, long *y) const; |
23324ae1 FM |
800 | |
801 | /** | |
7afd2b58 | 802 | Scrolls the buffer so that the given position is in view. |
23324ae1 | 803 | */ |
7afd2b58 | 804 | virtual void ShowPosition(long pos); |
23324ae1 | 805 | |
7afd2b58 | 806 | //@{ |
23324ae1 | 807 | /** |
7afd2b58 JS |
808 | Finds the character at the given position in pixels. |
809 | @a pt is in device coords (not adjusted for the client area origin nor for | |
810 | scrolling). | |
811 | */ | |
812 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const; | |
813 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, | |
814 | wxTextCoord *col, | |
815 | wxTextCoord *row) const; | |
816 | //@} | |
9e7ad1ca | 817 | |
7afd2b58 | 818 | // Clipboard operations |
371ae8b5 | 819 | |
7afd2b58 JS |
820 | /** |
821 | Copies the selected content (if any) to the clipboard. | |
23324ae1 | 822 | */ |
7afd2b58 | 823 | virtual void Copy(); |
23324ae1 FM |
824 | |
825 | /** | |
7afd2b58 JS |
826 | Copies the selected content (if any) to the clipboard and deletes the selection. |
827 | This is undoable. | |
23324ae1 | 828 | */ |
7afd2b58 | 829 | virtual void Cut(); |
23324ae1 FM |
830 | |
831 | /** | |
7afd2b58 | 832 | Pastes content from the clipboard to the buffer. |
23324ae1 | 833 | */ |
7afd2b58 | 834 | virtual void Paste(); |
23324ae1 FM |
835 | |
836 | /** | |
7afd2b58 | 837 | Deletes the content in the selection, if any. This is undoable. |
23324ae1 | 838 | */ |
7afd2b58 | 839 | virtual void DeleteSelection(); |
23324ae1 FM |
840 | |
841 | /** | |
7afd2b58 | 842 | Returns @true if selected content can be copied to the clipboard. |
23324ae1 | 843 | */ |
7afd2b58 | 844 | virtual bool CanCopy() const; |
23324ae1 FM |
845 | |
846 | /** | |
7afd2b58 | 847 | Returns @true if selected content can be copied to the clipboard and deleted. |
23324ae1 | 848 | */ |
7afd2b58 | 849 | virtual bool CanCut() const; |
23324ae1 FM |
850 | |
851 | /** | |
7afd2b58 JS |
852 | Returns @true if the clipboard content can be pasted to the buffer. |
853 | */ | |
854 | virtual bool CanPaste() const; | |
9e7ad1ca | 855 | |
7afd2b58 JS |
856 | /** |
857 | Returns @true if selected content can be deleted. | |
23324ae1 | 858 | */ |
7afd2b58 | 859 | virtual bool CanDeleteSelection() const; |
23324ae1 FM |
860 | |
861 | /** | |
7afd2b58 | 862 | Undoes the command at the top of the command history, if there is one. |
23324ae1 | 863 | */ |
7afd2b58 | 864 | virtual void Undo(); |
23324ae1 FM |
865 | |
866 | /** | |
7afd2b58 | 867 | Redoes the current command. |
23324ae1 | 868 | */ |
7afd2b58 | 869 | virtual void Redo(); |
23324ae1 | 870 | |
23324ae1 | 871 | /** |
7afd2b58 | 872 | Returns @true if there is a command in the command history that can be undone. |
23324ae1 | 873 | */ |
7afd2b58 | 874 | virtual bool CanUndo() const; |
23324ae1 FM |
875 | |
876 | /** | |
7afd2b58 | 877 | Returns @true if there is a command in the command history that can be redone. |
23324ae1 | 878 | */ |
7afd2b58 | 879 | virtual bool CanRedo() const; |
23324ae1 | 880 | |
23324ae1 | 881 | /** |
7afd2b58 JS |
882 | Sets the insertion point and causes the current editing style to be taken from |
883 | the new position (unlike wxRichTextCtrl::SetCaretPosition). | |
884 | */ | |
885 | virtual void SetInsertionPoint(long pos); | |
9e7ad1ca | 886 | |
7afd2b58 JS |
887 | /** |
888 | Sets the insertion point to the end of the text control. | |
889 | */ | |
890 | virtual void SetInsertionPointEnd(); | |
9e7ad1ca | 891 | |
7afd2b58 JS |
892 | /** |
893 | Returns the current insertion point. | |
23324ae1 | 894 | */ |
7afd2b58 | 895 | virtual long GetInsertionPoint() const; |
23324ae1 FM |
896 | |
897 | /** | |
7afd2b58 | 898 | Returns the last position in the buffer. |
23324ae1 | 899 | */ |
7afd2b58 | 900 | virtual wxTextPos GetLastPosition() const; |
23324ae1 | 901 | |
7afd2b58 | 902 | //@{ |
23324ae1 | 903 | /** |
7afd2b58 JS |
904 | Sets the selection to the given range. |
905 | The end point of range is specified as the last character position of the span | |
906 | of text, plus one. | |
907 | ||
908 | So, for example, to set the selection for a character at position 5, use the | |
909 | range (5,6). | |
23324ae1 | 910 | */ |
7afd2b58 JS |
911 | virtual void SetSelection(long from, long to); |
912 | void SetSelection(const wxRichTextSelection& sel) { m_selection = sel; } | |
913 | //@} | |
914 | ||
23324ae1 FM |
915 | |
916 | /** | |
7afd2b58 | 917 | Selects all the text in the buffer. |
23324ae1 | 918 | */ |
7afd2b58 | 919 | virtual void SelectAll(); |
23324ae1 FM |
920 | |
921 | /** | |
7afd2b58 | 922 | Makes the control editable, or not. |
23324ae1 | 923 | */ |
7afd2b58 | 924 | virtual void SetEditable(bool editable); |
23324ae1 FM |
925 | |
926 | /** | |
7afd2b58 JS |
927 | Returns @true if there is a selection and the object containing the selection |
928 | was the same as the current focus object. | |
23324ae1 | 929 | */ |
7afd2b58 | 930 | virtual bool HasSelection() const; |
23324ae1 FM |
931 | |
932 | /** | |
7afd2b58 JS |
933 | Returns @true if there was a selection, whether or not the current focus object |
934 | is the same as the selection's container object. | |
23324ae1 | 935 | */ |
7afd2b58 | 936 | virtual bool HasUnfocusedSelection() const; |
23324ae1 | 937 | |
7afd2b58 | 938 | //@{ |
23324ae1 | 939 | /** |
7afd2b58 JS |
940 | Write a bitmap or image at the current insertion point. |
941 | Supply an optional type to use for internal and file storage of the raw data. | |
23324ae1 | 942 | */ |
7afd2b58 JS |
943 | virtual bool WriteImage(const wxImage& image, wxBitmapType bitmapType = wxBITMAP_TYPE_PNG, |
944 | const wxRichTextAttr& textAttr = wxRichTextAttr()); | |
945 | ||
946 | virtual bool WriteImage(const wxBitmap& bitmap, wxBitmapType bitmapType = wxBITMAP_TYPE_PNG, | |
947 | const wxRichTextAttr& textAttr = wxRichTextAttr()); | |
948 | //@} | |
23324ae1 FM |
949 | |
950 | /** | |
7afd2b58 | 951 | Loads an image from a file and writes it at the current insertion point. |
23324ae1 | 952 | */ |
7afd2b58 JS |
953 | virtual bool WriteImage(const wxString& filename, wxBitmapType bitmapType, |
954 | const wxRichTextAttr& textAttr = wxRichTextAttr()); | |
23324ae1 FM |
955 | |
956 | /** | |
7afd2b58 | 957 | Writes an image block at the current insertion point. |
23324ae1 | 958 | */ |
7afd2b58 JS |
959 | virtual bool WriteImage(const wxRichTextImageBlock& imageBlock, |
960 | const wxRichTextAttr& textAttr = wxRichTextAttr()); | |
23324ae1 FM |
961 | |
962 | /** | |
7afd2b58 JS |
963 | Write a text box at the current insertion point, returning the text box. |
964 | You can then call SetFocusObject() to set the focus to the new object. | |
23324ae1 | 965 | */ |
7afd2b58 | 966 | virtual wxRichTextBox* WriteTextBox(const wxRichTextAttr& textAttr = wxRichTextAttr()); |
23324ae1 FM |
967 | |
968 | /** | |
7afd2b58 JS |
969 | Write a table at the current insertion point, returning the table. |
970 | You can then call SetFocusObject() to set the focus to the new object. | |
23324ae1 | 971 | */ |
7afd2b58 | 972 | virtual wxRichTextTable* WriteTable(int rows, int cols, const wxRichTextAttr& tableAttr = wxRichTextAttr(), const wxRichTextAttr& cellAttr = wxRichTextAttr()); |
23324ae1 FM |
973 | |
974 | /** | |
7afd2b58 | 975 | Inserts a new paragraph at the current insertion point. @see LineBreak(). |
23324ae1 | 976 | */ |
7afd2b58 | 977 | virtual bool Newline(); |
23324ae1 FM |
978 | |
979 | /** | |
9e7ad1ca FM |
980 | Inserts a line break at the current insertion point. |
981 | ||
982 | A line break forces wrapping within a paragraph, and can be introduced by | |
983 | using this function, by appending the wxChar value @b wxRichTextLineBreakChar | |
984 | to text content, or by typing Shift-Return. | |
23324ae1 | 985 | */ |
adaaa686 | 986 | virtual bool LineBreak(); |
23324ae1 FM |
987 | |
988 | /** | |
7afd2b58 | 989 | Sets the basic (overall) style. |
9e7ad1ca | 990 | |
7afd2b58 JS |
991 | This is the style of the whole buffer before further styles are applied, |
992 | unlike the default style, which only affects the style currently being | |
993 | applied (for example, setting the default style to bold will cause | |
994 | subsequently inserted text to be bold). | |
23324ae1 | 995 | */ |
7afd2b58 | 996 | virtual void SetBasicStyle(const wxRichTextAttr& style) { GetBuffer().SetBasicStyle(style); } |
23324ae1 FM |
997 | |
998 | /** | |
7afd2b58 JS |
999 | Gets the basic (overall) style. |
1000 | ||
1001 | This is the style of the whole buffer before further styles are applied, | |
1002 | unlike the default style, which only affects the style currently being | |
1003 | applied (for example, setting the default style to bold will cause | |
1004 | subsequently inserted text to be bold). | |
23324ae1 | 1005 | */ |
7afd2b58 | 1006 | virtual const wxRichTextAttr& GetBasicStyle() const { return GetBuffer().GetBasicStyle(); } |
23324ae1 FM |
1007 | |
1008 | /** | |
7afd2b58 | 1009 | Begins applying a style. |
23324ae1 | 1010 | */ |
7afd2b58 | 1011 | virtual bool BeginStyle(const wxRichTextAttr& style) { return GetBuffer().BeginStyle(style); } |
23324ae1 FM |
1012 | |
1013 | /** | |
7afd2b58 | 1014 | Ends the current style. |
23324ae1 | 1015 | */ |
7afd2b58 | 1016 | virtual bool EndStyle() { return GetBuffer().EndStyle(); } |
23324ae1 FM |
1017 | |
1018 | /** | |
7afd2b58 | 1019 | Ends application of all styles in the current style stack. |
23324ae1 | 1020 | */ |
7afd2b58 | 1021 | virtual bool EndAllStyles() { return GetBuffer().EndAllStyles(); } |
23324ae1 FM |
1022 | |
1023 | /** | |
7afd2b58 | 1024 | Begins using bold. |
23324ae1 | 1025 | */ |
7afd2b58 | 1026 | bool BeginBold() { return GetBuffer().BeginBold(); } |
23324ae1 FM |
1027 | |
1028 | /** | |
7afd2b58 | 1029 | Ends using bold. |
23324ae1 | 1030 | */ |
7afd2b58 | 1031 | bool EndBold() { return GetBuffer().EndBold(); } |
23324ae1 FM |
1032 | |
1033 | /** | |
7afd2b58 | 1034 | Begins using italic. |
23324ae1 | 1035 | */ |
7afd2b58 | 1036 | bool BeginItalic() { return GetBuffer().BeginItalic(); } |
23324ae1 FM |
1037 | |
1038 | /** | |
7afd2b58 | 1039 | Ends using italic. |
23324ae1 | 1040 | */ |
7afd2b58 | 1041 | bool EndItalic() { return GetBuffer().EndItalic(); } |
23324ae1 FM |
1042 | |
1043 | /** | |
7afd2b58 | 1044 | Begins using underlining. |
23324ae1 | 1045 | */ |
7afd2b58 | 1046 | bool BeginUnderline() { return GetBuffer().BeginUnderline(); } |
23324ae1 FM |
1047 | |
1048 | /** | |
7afd2b58 | 1049 | End applying underlining. |
23324ae1 | 1050 | */ |
7afd2b58 | 1051 | bool EndUnderline() { return GetBuffer().EndUnderline(); } |
23324ae1 FM |
1052 | |
1053 | /** | |
7afd2b58 | 1054 | Begins using the given point size. |
23324ae1 | 1055 | */ |
7afd2b58 | 1056 | bool BeginFontSize(int pointSize) { return GetBuffer().BeginFontSize(pointSize); } |
23324ae1 FM |
1057 | |
1058 | /** | |
7afd2b58 | 1059 | Ends using a point size. |
23324ae1 | 1060 | */ |
7afd2b58 | 1061 | bool EndFontSize() { return GetBuffer().EndFontSize(); } |
23324ae1 FM |
1062 | |
1063 | /** | |
7afd2b58 | 1064 | Begins using this font. |
23324ae1 | 1065 | */ |
7afd2b58 | 1066 | bool BeginFont(const wxFont& font) { return GetBuffer().BeginFont(font); } |
23324ae1 FM |
1067 | |
1068 | /** | |
7afd2b58 | 1069 | Ends using a font. |
23324ae1 | 1070 | */ |
7afd2b58 | 1071 | bool EndFont() { return GetBuffer().EndFont(); } |
23324ae1 FM |
1072 | |
1073 | /** | |
7afd2b58 | 1074 | Begins using this colour. |
23324ae1 | 1075 | */ |
7afd2b58 | 1076 | bool BeginTextColour(const wxColour& colour) { return GetBuffer().BeginTextColour(colour); } |
23324ae1 | 1077 | |
23324ae1 | 1078 | /** |
7afd2b58 JS |
1079 | Ends applying a text colour. |
1080 | */ | |
1081 | bool EndTextColour() { return GetBuffer().EndTextColour(); } | |
9e7ad1ca | 1082 | |
7afd2b58 JS |
1083 | /** |
1084 | Begins using alignment. | |
1085 | For alignment values, see wxTextAttr. | |
1086 | */ | |
1087 | bool BeginAlignment(wxTextAttrAlignment alignment) { return GetBuffer().BeginAlignment(alignment); } | |
9e7ad1ca | 1088 | |
7afd2b58 JS |
1089 | /** |
1090 | Ends alignment. | |
1091 | */ | |
1092 | bool EndAlignment() { return GetBuffer().EndAlignment(); } | |
9e7ad1ca | 1093 | |
7afd2b58 JS |
1094 | /** |
1095 | Begins applying a left indent and subindent in tenths of a millimetre. | |
1096 | The subindent is an offset from the left edge of the paragraph, and is | |
1097 | used for all but the first line in a paragraph. A positive value will | |
1098 | cause the first line to appear to the left of the subsequent lines, and | |
1099 | a negative value will cause the first line to be indented to the right | |
1100 | of the subsequent lines. | |
1101 | ||
1102 | wxRichTextBuffer uses indentation to render a bulleted item. The | |
1103 | content of the paragraph, including the first line, starts at the | |
1104 | @a leftIndent plus the @a leftSubIndent. | |
1105 | ||
1106 | @param leftIndent | |
1107 | The distance between the margin and the bullet. | |
1108 | @param leftSubIndent | |
1109 | The distance between the left edge of the bullet and the left edge | |
1110 | of the actual paragraph. | |
23324ae1 | 1111 | */ |
7afd2b58 | 1112 | bool BeginLeftIndent(int leftIndent, int leftSubIndent = 0) { return GetBuffer().BeginLeftIndent(leftIndent, leftSubIndent); } |
23324ae1 FM |
1113 | |
1114 | /** | |
7afd2b58 | 1115 | Ends left indent. |
23324ae1 | 1116 | */ |
7afd2b58 | 1117 | bool EndLeftIndent() { return GetBuffer().EndLeftIndent(); } |
23324ae1 FM |
1118 | |
1119 | /** | |
7afd2b58 | 1120 | Begins a right indent, specified in tenths of a millimetre. |
23324ae1 | 1121 | */ |
7afd2b58 | 1122 | bool BeginRightIndent(int rightIndent) { return GetBuffer().BeginRightIndent(rightIndent); } |
23324ae1 FM |
1123 | |
1124 | /** | |
7afd2b58 | 1125 | Ends right indent. |
23324ae1 | 1126 | */ |
7afd2b58 | 1127 | bool EndRightIndent() { return GetBuffer().EndRightIndent(); } |
23324ae1 FM |
1128 | |
1129 | /** | |
7afd2b58 JS |
1130 | Begins paragraph spacing; pass the before-paragraph and after-paragraph spacing |
1131 | in tenths of a millimetre. | |
23324ae1 | 1132 | */ |
7afd2b58 | 1133 | bool BeginParagraphSpacing(int before, int after) { return GetBuffer().BeginParagraphSpacing(before, after); } |
23324ae1 FM |
1134 | |
1135 | /** | |
7afd2b58 | 1136 | Ends paragraph spacing. |
23324ae1 | 1137 | */ |
7afd2b58 | 1138 | bool EndParagraphSpacing() { return GetBuffer().EndParagraphSpacing(); } |
23324ae1 FM |
1139 | |
1140 | /** | |
7afd2b58 JS |
1141 | Begins appling line spacing. @e spacing is a multiple, where 10 means |
1142 | single-spacing, 15 means 1.5 spacing, and 20 means double spacing. | |
1143 | ||
1144 | The ::wxTextAttrLineSpacing constants are defined for convenience. | |
23324ae1 | 1145 | */ |
7afd2b58 | 1146 | bool BeginLineSpacing(int lineSpacing) { return GetBuffer().BeginLineSpacing(lineSpacing); } |
23324ae1 FM |
1147 | |
1148 | /** | |
7afd2b58 | 1149 | Ends line spacing. |
23324ae1 | 1150 | */ |
7afd2b58 | 1151 | bool EndLineSpacing() { return GetBuffer().EndLineSpacing(); } |
23324ae1 FM |
1152 | |
1153 | /** | |
7afd2b58 JS |
1154 | Begins a numbered bullet. |
1155 | ||
1156 | This call will be needed for each item in the list, and the | |
1157 | application should take care of incrementing the numbering. | |
1158 | ||
1159 | @a bulletNumber is a number, usually starting with 1. | |
1160 | @a leftIndent and @a leftSubIndent are values in tenths of a millimetre. | |
1161 | @a bulletStyle is a bitlist of the ::wxTextAttrBulletStyle values. | |
1162 | ||
1163 | wxRichTextBuffer uses indentation to render a bulleted item. | |
1164 | The left indent is the distance between the margin and the bullet. | |
1165 | The content of the paragraph, including the first line, starts | |
1166 | at leftMargin + leftSubIndent. | |
1167 | So the distance between the left edge of the bullet and the | |
1168 | left of the actual paragraph is leftSubIndent. | |
23324ae1 | 1169 | */ |
7afd2b58 JS |
1170 | bool BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_PERIOD) |
1171 | { return GetBuffer().BeginNumberedBullet(bulletNumber, leftIndent, leftSubIndent, bulletStyle); } | |
23324ae1 FM |
1172 | |
1173 | /** | |
7afd2b58 | 1174 | Ends application of a numbered bullet. |
23324ae1 | 1175 | */ |
7afd2b58 | 1176 | bool EndNumberedBullet() { return GetBuffer().EndNumberedBullet(); } |
23324ae1 FM |
1177 | |
1178 | /** | |
7afd2b58 JS |
1179 | Begins applying a symbol bullet, using a character from the current font. |
1180 | See BeginNumberedBullet() for an explanation of how indentation is used | |
1181 | to render the bulleted paragraph. | |
23324ae1 | 1182 | */ |
7afd2b58 JS |
1183 | bool BeginSymbolBullet(const wxString& symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL) |
1184 | { return GetBuffer().BeginSymbolBullet(symbol, leftIndent, leftSubIndent, bulletStyle); } | |
23324ae1 FM |
1185 | |
1186 | /** | |
7afd2b58 | 1187 | Ends applying a symbol bullet. |
23324ae1 | 1188 | */ |
7afd2b58 | 1189 | bool EndSymbolBullet() { return GetBuffer().EndSymbolBullet(); } |
23324ae1 FM |
1190 | |
1191 | /** | |
7afd2b58 | 1192 | Begins applying a symbol bullet. |
23324ae1 | 1193 | */ |
7afd2b58 JS |
1194 | bool BeginStandardBullet(const wxString& bulletName, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_STANDARD) |
1195 | { return GetBuffer().BeginStandardBullet(bulletName, leftIndent, leftSubIndent, bulletStyle); } | |
23324ae1 FM |
1196 | |
1197 | /** | |
7afd2b58 | 1198 | Begins applying a standard bullet. |
23324ae1 | 1199 | */ |
7afd2b58 | 1200 | bool EndStandardBullet() { return GetBuffer().EndStandardBullet(); } |
23324ae1 FM |
1201 | |
1202 | /** | |
7afd2b58 | 1203 | Begins using the named character style. |
23324ae1 | 1204 | */ |
7afd2b58 | 1205 | bool BeginCharacterStyle(const wxString& characterStyle) { return GetBuffer().BeginCharacterStyle(characterStyle); } |
23324ae1 FM |
1206 | |
1207 | /** | |
7afd2b58 | 1208 | Ends application of a named character style. |
23324ae1 | 1209 | */ |
7afd2b58 | 1210 | bool EndCharacterStyle() { return GetBuffer().EndCharacterStyle(); } |
23324ae1 FM |
1211 | |
1212 | /** | |
7afd2b58 | 1213 | Begins applying the named paragraph style. |
23324ae1 | 1214 | */ |
7afd2b58 | 1215 | bool BeginParagraphStyle(const wxString& paragraphStyle) { return GetBuffer().BeginParagraphStyle(paragraphStyle); } |
23324ae1 FM |
1216 | |
1217 | /** | |
7afd2b58 | 1218 | Ends application of a named paragraph style. |
23324ae1 | 1219 | */ |
7afd2b58 | 1220 | bool EndParagraphStyle() { return GetBuffer().EndParagraphStyle(); } |
23324ae1 FM |
1221 | |
1222 | /** | |
7afd2b58 JS |
1223 | Begins using a specified list style. |
1224 | Optionally, you can also pass a level and a number. | |
23324ae1 | 1225 | */ |
7afd2b58 | 1226 | bool BeginListStyle(const wxString& listStyle, int level = 1, int number = 1) { return GetBuffer().BeginListStyle(listStyle, level, number); } |
23324ae1 FM |
1227 | |
1228 | /** | |
7afd2b58 | 1229 | Ends using a specified list style. |
23324ae1 | 1230 | */ |
7afd2b58 | 1231 | bool EndListStyle() { return GetBuffer().EndListStyle(); } |
23324ae1 | 1232 | |
826c4761 | 1233 | /** |
7afd2b58 | 1234 | Begins applying wxTEXT_ATTR_URL to the content. |
826c4761 | 1235 | |
7afd2b58 JS |
1236 | Pass a URL and optionally, a character style to apply, since it is common |
1237 | to mark a URL with a familiar style such as blue text with underlining. | |
826c4761 | 1238 | */ |
7afd2b58 | 1239 | bool BeginURL(const wxString& url, const wxString& characterStyle = wxEmptyString) { return GetBuffer().BeginURL(url, characterStyle); } |
826c4761 | 1240 | |
23324ae1 | 1241 | /** |
7afd2b58 | 1242 | Ends applying a URL. |
23324ae1 | 1243 | */ |
7afd2b58 | 1244 | bool EndURL() { return GetBuffer().EndURL(); } |
23324ae1 FM |
1245 | |
1246 | /** | |
7afd2b58 | 1247 | Sets the default style to the style under the cursor. |
23324ae1 | 1248 | */ |
7afd2b58 | 1249 | bool SetDefaultStyleToCursorStyle(); |
23324ae1 FM |
1250 | |
1251 | /** | |
7afd2b58 | 1252 | Cancels any selection. |
23324ae1 | 1253 | */ |
7afd2b58 | 1254 | virtual void SelectNone(); |
23324ae1 | 1255 | |
23324ae1 | 1256 | /** |
7afd2b58 | 1257 | Selects the word at the given character position. |
23324ae1 | 1258 | */ |
7afd2b58 | 1259 | virtual bool SelectWord(long position); |
23324ae1 FM |
1260 | |
1261 | /** | |
7afd2b58 JS |
1262 | Returns the selection range in character positions. -1, -1 means no selection. |
1263 | ||
1264 | The range is in API convention, i.e. a single character selection is denoted | |
1265 | by (n, n+1) | |
23324ae1 | 1266 | */ |
7afd2b58 | 1267 | wxRichTextRange GetSelectionRange() const; |
23324ae1 FM |
1268 | |
1269 | /** | |
7afd2b58 JS |
1270 | Sets the selection to the given range. |
1271 | The end point of range is specified as the last character position of the span | |
1272 | of text, plus one. | |
1273 | ||
1274 | So, for example, to set the selection for a character at position 5, use the | |
1275 | range (5,6). | |
23324ae1 | 1276 | */ |
7afd2b58 | 1277 | void SetSelectionRange(const wxRichTextRange& range); |
23324ae1 FM |
1278 | |
1279 | /** | |
7afd2b58 JS |
1280 | Returns the selection range in character positions. -2, -2 means no selection |
1281 | -1, -1 means select everything. | |
1282 | The range is in internal format, i.e. a single character selection is denoted | |
1283 | by (n, n) | |
23324ae1 | 1284 | */ |
7afd2b58 | 1285 | wxRichTextRange GetInternalSelectionRange() const { return m_selection.GetRange(); } |
23324ae1 FM |
1286 | |
1287 | /** | |
7afd2b58 JS |
1288 | Sets the selection range in character positions. -2, -2 means no selection |
1289 | -1, -1 means select everything. | |
1290 | The range is in internal format, i.e. a single character selection is denoted | |
1291 | by (n, n) | |
23324ae1 | 1292 | */ |
7afd2b58 | 1293 | void SetInternalSelectionRange(const wxRichTextRange& range) { m_selection.Set(range, GetFocusObject()); } |
23324ae1 FM |
1294 | |
1295 | /** | |
7afd2b58 | 1296 | Adds a new paragraph of text to the end of the buffer. |
23324ae1 | 1297 | */ |
7afd2b58 | 1298 | virtual wxRichTextRange AddParagraph(const wxString& text); |
23324ae1 FM |
1299 | |
1300 | /** | |
7afd2b58 | 1301 | Adds an image to the control's buffer. |
23324ae1 | 1302 | */ |
7afd2b58 | 1303 | virtual wxRichTextRange AddImage(const wxImage& image); |
23324ae1 FM |
1304 | |
1305 | /** | |
7afd2b58 JS |
1306 | Lays out the buffer, which must be done before certain operations, such as |
1307 | setting the caret position. | |
1308 | This function should not normally be required by the application. | |
23324ae1 | 1309 | */ |
7afd2b58 | 1310 | virtual bool LayoutContent(bool onlyVisibleRect = false); |
23324ae1 FM |
1311 | |
1312 | /** | |
7afd2b58 | 1313 | Move the caret to the given character position. |
9e7ad1ca | 1314 | |
7afd2b58 JS |
1315 | Please note that this does not update the current editing style |
1316 | from the new position; to do that, call wxRichTextCtrl::SetInsertionPoint instead. | |
23324ae1 | 1317 | */ |
7afd2b58 | 1318 | virtual bool MoveCaret(long pos, bool showAtLineStart = false, wxRichTextParagraphLayoutBox* container = NULL); |
23324ae1 FM |
1319 | |
1320 | /** | |
7afd2b58 | 1321 | Moves right. |
23324ae1 | 1322 | */ |
7afd2b58 | 1323 | virtual bool MoveRight(int noPositions = 1, int flags = 0); |
23324ae1 FM |
1324 | |
1325 | /** | |
7afd2b58 JS |
1326 | Moves left. |
1327 | */ | |
1328 | virtual bool MoveLeft(int noPositions = 1, int flags = 0); | |
346c54a4 | 1329 | |
7afd2b58 JS |
1330 | /** |
1331 | Moves to the start of the paragraph. | |
23324ae1 | 1332 | */ |
7afd2b58 | 1333 | virtual bool MoveUp(int noLines = 1, int flags = 0); |
23324ae1 FM |
1334 | |
1335 | /** | |
7afd2b58 | 1336 | Moves the caret down. |
23324ae1 | 1337 | */ |
7afd2b58 | 1338 | virtual bool MoveDown(int noLines = 1, int flags = 0); |
23324ae1 FM |
1339 | |
1340 | /** | |
7afd2b58 | 1341 | Moves to the end of the line. |
23324ae1 | 1342 | */ |
7afd2b58 | 1343 | virtual bool MoveToLineEnd(int flags = 0); |
23324ae1 FM |
1344 | |
1345 | /** | |
7afd2b58 | 1346 | Moves to the start of the line. |
23324ae1 | 1347 | */ |
7afd2b58 | 1348 | virtual bool MoveToLineStart(int flags = 0); |
23324ae1 FM |
1349 | |
1350 | /** | |
7afd2b58 | 1351 | Moves to the end of the paragraph. |
23324ae1 | 1352 | */ |
7afd2b58 | 1353 | virtual bool MoveToParagraphEnd(int flags = 0); |
23324ae1 FM |
1354 | |
1355 | /** | |
7afd2b58 | 1356 | Moves to the start of the paragraph. |
23324ae1 | 1357 | */ |
7afd2b58 | 1358 | virtual bool MoveToParagraphStart(int flags = 0); |
23324ae1 FM |
1359 | |
1360 | /** | |
7afd2b58 | 1361 | Moves to the start of the buffer. |
23324ae1 | 1362 | */ |
7afd2b58 | 1363 | virtual bool MoveHome(int flags = 0); |
23324ae1 FM |
1364 | |
1365 | /** | |
7afd2b58 JS |
1366 | Moves to the end of the buffer. |
1367 | */ | |
1368 | virtual bool MoveEnd(int flags = 0); | |
9e7ad1ca | 1369 | |
7afd2b58 JS |
1370 | /** |
1371 | Moves one or more pages up. | |
23324ae1 | 1372 | */ |
7afd2b58 | 1373 | virtual bool PageUp(int noPages = 1, int flags = 0); |
23324ae1 FM |
1374 | |
1375 | /** | |
7afd2b58 | 1376 | Moves one or more pages down. |
23324ae1 | 1377 | */ |
7afd2b58 | 1378 | virtual bool PageDown(int noPages = 1, int flags = 0); |
23324ae1 FM |
1379 | |
1380 | /** | |
7afd2b58 | 1381 | Moves a number of words to the left. |
23324ae1 | 1382 | */ |
7afd2b58 | 1383 | virtual bool WordLeft(int noPages = 1, int flags = 0); |
23324ae1 | 1384 | |
23324ae1 | 1385 | /** |
7afd2b58 JS |
1386 | Move a nuber of words to the right. |
1387 | */ | |
1388 | virtual bool WordRight(int noPages = 1, int flags = 0); | |
9e7ad1ca | 1389 | |
7afd2b58 JS |
1390 | //@{ |
1391 | /** | |
1392 | Returns the buffer associated with the control. | |
23324ae1 | 1393 | */ |
7afd2b58 JS |
1394 | wxRichTextBuffer& GetBuffer() { return m_buffer; } |
1395 | const wxRichTextBuffer& GetBuffer() const { return m_buffer; } | |
23324ae1 FM |
1396 | //@} |
1397 | ||
1398 | /** | |
7afd2b58 JS |
1399 | Starts batching undo history for commands. |
1400 | */ | |
1401 | virtual bool BeginBatchUndo(const wxString& cmdName) { return m_buffer.BeginBatchUndo(cmdName); } | |
9e7ad1ca | 1402 | |
7afd2b58 JS |
1403 | /** |
1404 | Ends batching undo command history. | |
23324ae1 | 1405 | */ |
7afd2b58 | 1406 | virtual bool EndBatchUndo() { return m_buffer.EndBatchUndo(); } |
23324ae1 FM |
1407 | |
1408 | /** | |
7afd2b58 JS |
1409 | Returns @true if undo commands are being batched. |
1410 | */ | |
1411 | virtual bool BatchingUndo() const { return m_buffer.BatchingUndo(); } | |
9e7ad1ca | 1412 | |
7afd2b58 JS |
1413 | /** |
1414 | Starts suppressing undo history for commands. | |
23324ae1 | 1415 | */ |
7afd2b58 | 1416 | virtual bool BeginSuppressUndo() { return m_buffer.BeginSuppressUndo(); } |
23324ae1 | 1417 | |
23324ae1 | 1418 | /** |
7afd2b58 JS |
1419 | Ends suppressing undo command history. |
1420 | */ | |
1421 | virtual bool EndSuppressUndo() { return m_buffer.EndSuppressUndo(); } | |
9e7ad1ca | 1422 | |
7afd2b58 JS |
1423 | /** |
1424 | Returns @true if undo history suppression is on. | |
23324ae1 | 1425 | */ |
7afd2b58 | 1426 | virtual bool SuppressingUndo() const { return m_buffer.SuppressingUndo(); } |
23324ae1 | 1427 | |
23324ae1 | 1428 | /** |
7afd2b58 JS |
1429 | Test if this whole range has character attributes of the specified kind. |
1430 | If any of the attributes are different within the range, the test fails. | |
9e7ad1ca | 1431 | |
7afd2b58 JS |
1432 | You can use this to implement, for example, bold button updating. |
1433 | @a style must have flags indicating which attributes are of interest. | |
1434 | */ | |
1435 | virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const | |
1436 | { | |
1437 | return GetBuffer().HasCharacterAttributes(range.ToInternal(), style); | |
1438 | } | |
9e7ad1ca | 1439 | |
7afd2b58 JS |
1440 | /** |
1441 | Test if this whole range has paragraph attributes of the specified kind. | |
1442 | If any of the attributes are different within the range, the test fails. | |
1443 | You can use this to implement, for example, centering button updating. | |
1444 | @a style must have flags indicating which attributes are of interest. | |
1445 | */ | |
1446 | virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const | |
1447 | { | |
1448 | return GetBuffer().HasParagraphAttributes(range.ToInternal(), style); | |
1449 | } | |
1450 | ||
1451 | /** | |
1452 | Returns @true if all of the selection is bold. | |
1453 | */ | |
1454 | virtual bool IsSelectionBold(); | |
1455 | ||
1456 | /** | |
1457 | Returns @true if all of the selection is italic. | |
1458 | */ | |
1459 | virtual bool IsSelectionItalics(); | |
1460 | ||
1461 | /** | |
1462 | Returns @true if all of the selection is underlined. | |
1463 | */ | |
1464 | virtual bool IsSelectionUnderlined(); | |
1465 | ||
1466 | /** | |
1467 | Returns @true if all of the selection is aligned according to the specified flag. | |
1468 | */ | |
1469 | virtual bool IsSelectionAligned(wxTextAttrAlignment alignment); | |
1470 | ||
1471 | /** | |
1472 | Apples bold to the selection (undoable). | |
1473 | */ | |
1474 | virtual bool ApplyBoldToSelection(); | |
1475 | ||
1476 | /** | |
1477 | Applies italic to the selection (undoable). | |
1478 | */ | |
1479 | virtual bool ApplyItalicToSelection(); | |
1480 | ||
1481 | /** | |
1482 | Applies underline to the selection (undoable). | |
1483 | */ | |
1484 | virtual bool ApplyUnderlineToSelection(); | |
1485 | ||
1486 | /** | |
1487 | Applies the given alignment to the selection (undoable). | |
1488 | For alignment values, see wxTextAttr. | |
1489 | */ | |
1490 | virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment); | |
1491 | ||
1492 | /** | |
1493 | Applies the style sheet to the buffer, matching paragraph styles in the sheet | |
1494 | against named styles in the buffer. | |
1495 | ||
1496 | This might be useful if the styles have changed. | |
1497 | If @a sheet is @NULL, the sheet set with SetStyleSheet() is used. | |
1498 | Currently this applies paragraph styles only. | |
23324ae1 | 1499 | */ |
7afd2b58 | 1500 | virtual bool ApplyStyle(wxRichTextStyleDefinition* def); |
23324ae1 FM |
1501 | |
1502 | /** | |
9e7ad1ca FM |
1503 | Sets the style sheet associated with the control. |
1504 | A style sheet allows named character and paragraph styles to be applied. | |
23324ae1 | 1505 | */ |
7afd2b58 | 1506 | void SetStyleSheet(wxRichTextStyleSheet* styleSheet) { GetBuffer().SetStyleSheet(styleSheet); } |
23324ae1 FM |
1507 | |
1508 | /** | |
7afd2b58 JS |
1509 | Returns the style sheet associated with the control, if any. |
1510 | A style sheet allows named character and paragraph styles to be applied. | |
23324ae1 | 1511 | */ |
7afd2b58 | 1512 | wxRichTextStyleSheet* GetStyleSheet() const { return GetBuffer().GetStyleSheet(); } |
23324ae1 FM |
1513 | |
1514 | /** | |
7afd2b58 | 1515 | Push the style sheet to top of stack. |
23324ae1 | 1516 | */ |
7afd2b58 | 1517 | bool PushStyleSheet(wxRichTextStyleSheet* styleSheet) { return GetBuffer().PushStyleSheet(styleSheet); } |
23324ae1 FM |
1518 | |
1519 | /** | |
7afd2b58 | 1520 | Pops the style sheet from top of stack. |
23324ae1 | 1521 | */ |
7afd2b58 | 1522 | wxRichTextStyleSheet* PopStyleSheet() { return GetBuffer().PopStyleSheet(); } |
23324ae1 FM |
1523 | |
1524 | /** | |
7afd2b58 | 1525 | Applies the style sheet to the buffer, for example if the styles have changed. |
23324ae1 | 1526 | */ |
7afd2b58 JS |
1527 | bool ApplyStyleSheet(wxRichTextStyleSheet* styleSheet = NULL); |
1528 | ||
1529 | // Command handlers | |
23324ae1 FM |
1530 | |
1531 | /** | |
7afd2b58 | 1532 | Sends the event to the control. |
23324ae1 | 1533 | */ |
7afd2b58 | 1534 | void Command(wxCommandEvent& event); |
23324ae1 FM |
1535 | |
1536 | /** | |
7afd2b58 | 1537 | Loads the first dropped file. |
23324ae1 | 1538 | */ |
7afd2b58 JS |
1539 | void OnDropFiles(wxDropFilesEvent& event); |
1540 | ||
1541 | void OnCaptureLost(wxMouseCaptureLostEvent& event); | |
1542 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
23324ae1 FM |
1543 | |
1544 | /** | |
7afd2b58 | 1545 | Standard handler for the wxID_CUT command. |
23324ae1 | 1546 | */ |
7afd2b58 | 1547 | void OnCut(wxCommandEvent& event); |
23324ae1 FM |
1548 | |
1549 | /** | |
7afd2b58 | 1550 | Standard handler for the wxID_COPY command. |
23324ae1 | 1551 | */ |
7afd2b58 | 1552 | void OnCopy(wxCommandEvent& event); |
23324ae1 | 1553 | |
23324ae1 | 1554 | /** |
7afd2b58 | 1555 | Standard handler for the wxID_PASTE command. |
23324ae1 | 1556 | */ |
7afd2b58 | 1557 | void OnPaste(wxCommandEvent& event); |
9e7ad1ca FM |
1558 | |
1559 | /** | |
7afd2b58 | 1560 | Standard handler for the wxID_UNDO command. |
9e7ad1ca | 1561 | */ |
7afd2b58 | 1562 | void OnUndo(wxCommandEvent& event); |
9e7ad1ca | 1563 | |
9e7ad1ca | 1564 | /** |
7afd2b58 | 1565 | Standard handler for the wxID_REDO command. |
9e7ad1ca | 1566 | */ |
7afd2b58 | 1567 | void OnRedo(wxCommandEvent& event); |
23324ae1 FM |
1568 | |
1569 | /** | |
7afd2b58 | 1570 | Standard handler for the wxID_SELECTALL command. |
23324ae1 | 1571 | */ |
7afd2b58 | 1572 | void OnSelectAll(wxCommandEvent& event); |
23324ae1 FM |
1573 | |
1574 | /** | |
7afd2b58 | 1575 | Standard handler for property commands. |
23324ae1 | 1576 | */ |
7afd2b58 | 1577 | void OnProperties(wxCommandEvent& event); |
5e6e278d | 1578 | |
7afd2b58 JS |
1579 | /** |
1580 | Standard handler for the wxID_CLEAR command. | |
1581 | */ | |
1582 | void OnClear(wxCommandEvent& event); | |
5e6e278d FM |
1583 | |
1584 | /** | |
7afd2b58 JS |
1585 | Standard update handler for the wxID_CUT command. |
1586 | */ | |
1587 | void OnUpdateCut(wxUpdateUIEvent& event); | |
1588 | ||
1589 | /** | |
1590 | Standard update handler for the wxID_COPY command. | |
1591 | */ | |
1592 | void OnUpdateCopy(wxUpdateUIEvent& event); | |
1593 | ||
1594 | /** | |
1595 | Standard update handler for the wxID_PASTE command. | |
1596 | */ | |
1597 | void OnUpdatePaste(wxUpdateUIEvent& event); | |
1598 | ||
1599 | /** | |
1600 | Standard update handler for the wxID_UNDO command. | |
1601 | */ | |
1602 | void OnUpdateUndo(wxUpdateUIEvent& event); | |
1603 | ||
1604 | /** | |
1605 | Standard update handler for the wxID_REDO command. | |
1606 | */ | |
1607 | void OnUpdateRedo(wxUpdateUIEvent& event); | |
1608 | ||
1609 | /** | |
1610 | Standard update handler for the wxID_SELECTALL command. | |
1611 | */ | |
1612 | void OnUpdateSelectAll(wxUpdateUIEvent& event); | |
1613 | ||
1614 | /** | |
1615 | Standard update handler for property commands. | |
1616 | */ | |
1617 | ||
1618 | void OnUpdateProperties(wxUpdateUIEvent& event); | |
1619 | ||
1620 | /** | |
1621 | Standard update handler for the wxID_CLEAR command. | |
1622 | */ | |
1623 | void OnUpdateClear(wxUpdateUIEvent& event); | |
1624 | ||
1625 | /** | |
1626 | Shows a standard context menu with undo, redo, cut, copy, paste, clear, and | |
1627 | select all commands. | |
1628 | */ | |
1629 | void OnContextMenu(wxContextMenuEvent& event); | |
1630 | ||
1631 | // Event handlers | |
1632 | ||
1633 | // Painting | |
1634 | void OnPaint(wxPaintEvent& event); | |
1635 | void OnEraseBackground(wxEraseEvent& event); | |
1636 | ||
1637 | // Left-click | |
1638 | void OnLeftClick(wxMouseEvent& event); | |
1639 | ||
1640 | // Left-up | |
1641 | void OnLeftUp(wxMouseEvent& event); | |
1642 | ||
1643 | // Motion | |
1644 | void OnMoveMouse(wxMouseEvent& event); | |
1645 | ||
1646 | // Left-double-click | |
1647 | void OnLeftDClick(wxMouseEvent& event); | |
1648 | ||
1649 | // Middle-click | |
1650 | void OnMiddleClick(wxMouseEvent& event); | |
1651 | ||
1652 | // Right-click | |
1653 | void OnRightClick(wxMouseEvent& event); | |
1654 | ||
1655 | // Key press | |
1656 | void OnChar(wxKeyEvent& event); | |
1657 | ||
1658 | // Sizing | |
1659 | void OnSize(wxSizeEvent& event); | |
1660 | ||
1661 | // Setting/losing focus | |
1662 | void OnSetFocus(wxFocusEvent& event); | |
1663 | void OnKillFocus(wxFocusEvent& event); | |
1664 | ||
1665 | // Idle-time processing | |
1666 | void OnIdle(wxIdleEvent& event); | |
1667 | ||
1668 | // Scrolling | |
1669 | void OnScroll(wxScrollWinEvent& event); | |
1670 | ||
1671 | /** | |
1672 | Sets the font, and also the basic and default attributes | |
1673 | (see wxRichTextCtrl::SetDefaultStyle). | |
5e6e278d | 1674 | */ |
7afd2b58 JS |
1675 | virtual bool SetFont(const wxFont& font); |
1676 | ||
1677 | /** | |
1678 | A helper function setting up scrollbars, for example after a resize. | |
1679 | */ | |
1680 | virtual void SetupScrollbars(bool atTop = false); | |
1681 | ||
1682 | /** | |
1683 | Helper function implementing keyboard navigation. | |
1684 | */ | |
1685 | virtual bool KeyboardNavigate(int keyCode, int flags); | |
5e6e278d FM |
1686 | |
1687 | /** | |
7afd2b58 | 1688 | Paints the background. |
5e6e278d | 1689 | */ |
7afd2b58 JS |
1690 | virtual void PaintBackground(wxDC& dc); |
1691 | ||
1692 | /** | |
1693 | Other user defined painting after everything else (i.e. all text) is painted. | |
1694 | ||
1695 | @since 2.9.1 | |
1696 | */ | |
1697 | virtual void PaintAboveContent(wxDC& WXUNUSED(dc)) {} | |
1698 | ||
1699 | #if wxRICHTEXT_BUFFERED_PAINTING | |
1700 | /** | |
1701 | Recreates the buffer bitmap if necessary. | |
1702 | */ | |
1703 | virtual bool RecreateBuffer(const wxSize& size = wxDefaultSize); | |
1704 | #endif | |
1705 | ||
1706 | // Write text | |
1707 | virtual void DoWriteText(const wxString& value, int flags = 0); | |
1708 | ||
1709 | // Should we inherit colours? | |
1710 | virtual bool ShouldInheritColours() const { return false; } | |
1711 | ||
1712 | /** | |
1713 | Internal function to position the visible caret according to the current caret | |
1714 | position. | |
1715 | */ | |
1716 | virtual void PositionCaret(wxRichTextParagraphLayoutBox* container = NULL); | |
1717 | ||
1718 | /** | |
1719 | Helper function for extending the selection, returning @true if the selection | |
1720 | was changed. Selections are in caret positions. | |
1721 | */ | |
1722 | virtual bool ExtendSelection(long oldPosition, long newPosition, int flags); | |
1723 | ||
1724 | /** | |
1725 | Scrolls @a position into view. This function takes a caret position. | |
1726 | */ | |
1727 | virtual bool ScrollIntoView(long position, int keyCode); | |
1728 | ||
1729 | /** | |
1730 | Refreshes the area affected by a selection change. | |
1731 | */ | |
1732 | bool RefreshForSelectionChange(const wxRichTextSelection& oldSelection, const wxRichTextSelection& newSelection); | |
1733 | ||
1734 | /** | |
1735 | Sets the caret position. | |
1736 | ||
1737 | The caret position is the character position just before the caret. | |
1738 | A value of -1 means the caret is at the start of the buffer. | |
1739 | Please note that this does not update the current editing style | |
1740 | from the new position or cause the actual caret to be refreshed; to do that, | |
1741 | call wxRichTextCtrl::SetInsertionPoint instead. | |
1742 | */ | |
1743 | void SetCaretPosition(long position, bool showAtLineStart = false) ; | |
1744 | ||
1745 | /** | |
1746 | Returns the current caret position. | |
1747 | */ | |
1748 | long GetCaretPosition() const { return m_caretPosition; } | |
1749 | ||
1750 | /** | |
1751 | The adjusted caret position is the character position adjusted to take | |
1752 | into account whether we're at the start of a paragraph, in which case | |
1753 | style information should be taken from the next position, not current one. | |
1754 | */ | |
1755 | long GetAdjustedCaretPosition(long caretPos) const; | |
1756 | ||
1757 | /** | |
1758 | Move the caret one visual step forward: this may mean setting a flag | |
1759 | and keeping the same position if we're going from the end of one line | |
1760 | to the start of the next, which may be the exact same caret position. | |
1761 | */ | |
1762 | void MoveCaretForward(long oldPosition) ; | |
1763 | ||
1764 | /** | |
1765 | Move the caret one visual step forward: this may mean setting a flag | |
1766 | and keeping the same position if we're going from the end of one line | |
1767 | to the start of the next, which may be the exact same caret position. | |
1768 | */ | |
1769 | void MoveCaretBack(long oldPosition) ; | |
1770 | ||
1771 | /** | |
1772 | Returns the caret height and position for the given character position. | |
1773 | If container is null, the current focus object will be used. | |
1774 | ||
1775 | @beginWxPerlOnly | |
1776 | In wxPerl this method is implemented as | |
1777 | GetCaretPositionForIndex(@a position) returning a | |
1778 | 2-element list (ok, rect). | |
1779 | @endWxPerlOnly | |
1780 | */ | |
1781 | bool GetCaretPositionForIndex(long position, wxRect& rect, wxRichTextParagraphLayoutBox* container = NULL); | |
1782 | ||
1783 | /** | |
1784 | Internal helper function returning the line for the visible caret position. | |
1785 | If the caret is shown at the very end of the line, it means the next character | |
1786 | is actually on the following line. | |
1787 | So this function gets the line we're expecting to find if this is the case. | |
1788 | */ | |
1789 | wxRichTextLine* GetVisibleLineForCaretPosition(long caretPosition) const; | |
1790 | ||
1791 | /** | |
1792 | Gets the command processor associated with the control's buffer. | |
1793 | */ | |
1794 | wxCommandProcessor* GetCommandProcessor() const { return GetBuffer().GetCommandProcessor(); } | |
1795 | ||
1796 | /** | |
1797 | Deletes content if there is a selection, e.g. when pressing a key. | |
1798 | Returns the new caret position in @e newPos, or leaves it if there | |
1799 | was no action. This is undoable. | |
1800 | ||
1801 | @beginWxPerlOnly | |
1802 | In wxPerl this method takes no arguments and returns a 2-element | |
1803 | list (ok, newPos). | |
1804 | @endWxPerlOnly | |
1805 | */ | |
1806 | bool DeleteSelectedContent(long* newPos= NULL); | |
1807 | ||
1808 | /** | |
1809 | Transforms logical (unscrolled) position to physical window position. | |
1810 | */ | |
1811 | wxPoint GetPhysicalPoint(const wxPoint& ptLogical) const; | |
1812 | ||
1813 | /** | |
1814 | Transforms physical window position to logical (unscrolled) position. | |
1815 | */ | |
1816 | wxPoint GetLogicalPoint(const wxPoint& ptPhysical) const; | |
1817 | ||
1818 | /** | |
1819 | Helper function for finding the caret position for the next word. | |
1820 | Direction is 1 (forward) or -1 (backwards). | |
1821 | */ | |
1822 | virtual long FindNextWordPosition(int direction = 1) const; | |
1823 | ||
1824 | /** | |
1825 | Returns @true if the given position is visible on the screen. | |
1826 | */ | |
1827 | bool IsPositionVisible(long pos) const; | |
1828 | ||
1829 | /** | |
1830 | Returns the first visible position in the current view. | |
1831 | */ | |
1832 | long GetFirstVisiblePosition() const; | |
1833 | ||
1834 | /** | |
1835 | Returns the caret position since the default formatting was changed. As | |
1836 | soon as this position changes, we no longer reflect the default style | |
1837 | in the UI. A value of -2 means that we should only reflect the style of the | |
1838 | content under the caret. | |
1839 | */ | |
1840 | long GetCaretPositionForDefaultStyle() const { return m_caretPositionForDefaultStyle; } | |
1841 | ||
1842 | /** | |
1843 | Set the caret position for the default style that the user is selecting. | |
1844 | */ | |
1845 | void SetCaretPositionForDefaultStyle(long pos) { m_caretPositionForDefaultStyle = pos; } | |
1846 | ||
1847 | /** | |
1848 | Returns @true if the user has recently set the default style without moving | |
1849 | the caret, and therefore the UI needs to reflect the default style and not | |
1850 | the style at the caret. | |
1851 | ||
1852 | Below is an example of code that uses this function to determine whether the UI | |
1853 | should show that the current style is bold. | |
1854 | ||
1855 | @see SetAndShowDefaultStyle(). | |
1856 | */ | |
1857 | bool IsDefaultStyleShowing() const { return m_caretPositionForDefaultStyle != -2; } | |
1858 | ||
1859 | /** | |
1860 | Sets @a attr as the default style and tells the control that the UI should | |
1861 | reflect this attribute until the user moves the caret. | |
1862 | ||
1863 | @see IsDefaultStyleShowing(). | |
1864 | */ | |
1865 | void SetAndShowDefaultStyle(const wxRichTextAttr& attr) | |
1866 | { | |
1867 | SetDefaultStyle(attr); | |
1868 | SetCaretPositionForDefaultStyle(GetCaretPosition()); | |
1869 | } | |
1870 | ||
1871 | /** | |
1872 | Returns the first visible point in the window. | |
1873 | */ | |
1874 | wxPoint GetFirstVisiblePoint() const; | |
1875 | ||
1876 | #ifdef DOXYGEN | |
1877 | /** | |
1878 | Returns the content of the entire control as a string. | |
1879 | */ | |
1880 | virtual wxString GetValue() const; | |
1881 | ||
1882 | /** | |
1883 | Replaces existing content with the given text. | |
1884 | */ | |
1885 | virtual void SetValue(const wxString& value); | |
1886 | ||
1887 | /** | |
1888 | Call this function to prevent refresh and allow fast updates, and then Thaw() to | |
1889 | refresh the control. | |
1890 | */ | |
1891 | void Freeze(); | |
1892 | ||
1893 | /** | |
1894 | Call this function to end a Freeze and refresh the display. | |
1895 | */ | |
1896 | void Thaw(); | |
1897 | ||
1898 | /** | |
1899 | Returns @true if Freeze has been called without a Thaw. | |
1900 | */ | |
1901 | bool IsFrozen() const; | |
1902 | ||
1903 | #endif | |
1904 | ||
1905 | // Implementation | |
1906 | ||
1907 | /** | |
1908 | Sets up the caret for the given position and container, after a mouse click. | |
1909 | */ | |
1910 | bool SetCaretPositionAfterClick(wxRichTextParagraphLayoutBox* container, long position, int hitTestFlags, bool extendSelection = false); | |
1911 | ||
1912 | /** | |
1913 | Find the caret position for the combination of hit-test flags and character position. | |
1914 | Returns the caret position and also an indication of where to place the caret (caretLineStart) | |
1915 | since this is ambiguous (same position used for end of line and start of next). | |
1916 | */ | |
1917 | long FindCaretPositionForCharacterPosition(long position, int hitTestFlags, wxRichTextParagraphLayoutBox* container, | |
1918 | bool& caretLineStart); | |
1919 | ||
1920 | /** | |
1921 | Font names take a long time to retrieve, so cache them (on demand). | |
1922 | */ | |
1923 | static const wxArrayString& GetAvailableFontNames(); | |
1924 | ||
1925 | /** | |
1926 | Clears the cache of available font names. | |
1927 | */ | |
1928 | static void ClearAvailableFontNames(); | |
1929 | ||
1930 | WX_FORWARD_TO_SCROLL_HELPER() | |
1931 | ||
1932 | // implement wxTextEntry methods | |
1933 | virtual wxString DoGetValue() const; | |
1934 | ||
1935 | protected: | |
1936 | // implement the wxTextEntry pure virtual method | |
1937 | virtual wxWindow *GetEditableWindow() { return this; } | |
1938 | ||
1939 | // margins functions | |
1940 | virtual bool DoSetMargins(const wxPoint& pt); | |
1941 | virtual wxPoint DoGetMargins() const; | |
1942 | ||
1943 | // FIXME: this does not work, it allows this code to compile but will fail | |
1944 | // during run-time | |
1945 | #ifndef __WXUNIVERSAL__ | |
1946 | #ifdef __WXMSW__ | |
1947 | virtual WXHWND GetEditHWND() const { return GetHWND(); } | |
1948 | #endif | |
1949 | #ifdef __WXMOTIF__ | |
1950 | virtual WXWidget GetTextWidget() const { return NULL; } | |
1951 | #endif | |
1952 | #ifdef __WXGTK20__ | |
1953 | virtual GtkEditable *GetEditable() const { return NULL; } | |
1954 | virtual GtkEntry *GetEntry() const { return NULL; } | |
1955 | #endif | |
1956 | #endif // !__WXUNIVERSAL__ | |
1957 | ||
1958 | // Overrides | |
1959 | protected: | |
1960 | ||
1961 | /** | |
1962 | Currently this simply returns @c wxSize(10, 10). | |
1963 | */ | |
1964 | virtual wxSize DoGetBestSize() const ; | |
1965 | ||
1966 | virtual void DoSetValue(const wxString& value, int flags = 0); | |
1967 | ||
1968 | virtual void DoThaw(); | |
1969 | ||
1970 | ||
1971 | // Data members | |
1972 | private: | |
1973 | #if wxRICHTEXT_BUFFERED_PAINTING | |
1974 | /// Buffer bitmap | |
1975 | wxBitmap m_bufferBitmap; | |
1976 | #endif | |
1977 | ||
1978 | /// Text buffer | |
1979 | wxRichTextBuffer m_buffer; | |
1980 | ||
1981 | wxMenu* m_contextMenu; | |
1982 | ||
1983 | /// Caret position (1 less than the character position, so -1 is the | |
1984 | /// first caret position). | |
1985 | long m_caretPosition; | |
1986 | ||
1987 | /// Caret position when the default formatting has been changed. As | |
1988 | /// soon as this position changes, we no longer reflect the default style | |
1989 | /// in the UI. | |
1990 | long m_caretPositionForDefaultStyle; | |
1991 | ||
1992 | /// Selection range in character positions. -2, -2 means no selection. | |
1993 | wxRichTextSelection m_selection; | |
1994 | ||
1995 | wxRichTextCtrlSelectionState m_selectionState; | |
1996 | ||
1997 | /// Anchor so we know how to extend the selection | |
1998 | /// It's a caret position since it's between two characters. | |
1999 | long m_selectionAnchor; | |
2000 | ||
2001 | /// Anchor object if selecting multiple container objects, such as grid cells. | |
2002 | wxRichTextObject* m_selectionAnchorObject; | |
2003 | ||
2004 | /// Are we editable? | |
2005 | bool m_editable; | |
2006 | ||
2007 | /// Are we showing the caret position at the start of a line | |
2008 | /// instead of at the end of the previous one? | |
2009 | bool m_caretAtLineStart; | |
2010 | ||
2011 | /// Are we dragging a selection? | |
2012 | bool m_dragging; | |
2013 | ||
2014 | /// Start position for drag | |
2015 | wxPoint m_dragStart; | |
2016 | ||
2017 | /// Do we need full layout in idle? | |
2018 | bool m_fullLayoutRequired; | |
2019 | wxLongLong m_fullLayoutTime; | |
2020 | long m_fullLayoutSavedPosition; | |
2021 | ||
2022 | /// Threshold for doing delayed layout | |
2023 | long m_delayedLayoutThreshold; | |
2024 | ||
2025 | /// Cursors | |
2026 | wxCursor m_textCursor; | |
2027 | wxCursor m_urlCursor; | |
2028 | ||
2029 | static wxArrayString sm_availableFontNames; | |
2030 | ||
2031 | wxRichTextContextMenuPropertiesInfo m_contextMenuPropertiesInfo; | |
2032 | ||
2033 | /// The object that currently has the editing focus | |
2034 | wxRichTextParagraphLayoutBox* m_focusObject; | |
2035 | }; | |
2036 | ||
2037 | /** | |
2038 | @class wxRichTextEvent | |
2039 | ||
2040 | This is the event class for wxRichTextCtrl notifications. | |
2041 | ||
2042 | @beginEventTable{wxRichTextEvent} | |
2043 | @event{EVT_RICHTEXT_LEFT_CLICK(id, func)} | |
2044 | Process a @c wxEVT_COMMAND_RICHTEXT_LEFT_CLICK event, generated when the user | |
2045 | releases the left mouse button over an object. | |
2046 | @event{EVT_RICHTEXT_RIGHT_CLICK(id, func)} | |
2047 | Process a @c wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK event, generated when the user | |
2048 | releases the right mouse button over an object. | |
2049 | @event{EVT_RICHTEXT_MIDDLE_CLICK(id, func)} | |
2050 | Process a @c wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK event, generated when the user | |
2051 | releases the middle mouse button over an object. | |
2052 | @event{EVT_RICHTEXT_LEFT_DCLICK(id, func)} | |
2053 | Process a @c wxEVT_COMMAND_RICHTEXT_DLEFT_CLICK event, generated when the user | |
2054 | double-clicks an object. | |
2055 | @event{EVT_RICHTEXT_RETURN(id, func)} | |
2056 | Process a @c wxEVT_COMMAND_RICHTEXT_RETURN event, generated when the user | |
2057 | presses the return key. Valid event functions: GetFlags, GetPosition. | |
2058 | @event{EVT_RICHTEXT_CHARACTER(id, func)} | |
2059 | Process a @c wxEVT_COMMAND_RICHTEXT_CHARACTER event, generated when the user | |
2060 | presses a character key. Valid event functions: GetFlags, GetPosition, GetCharacter. | |
2061 | @event{EVT_RICHTEXT_DELETE(id, func)} | |
2062 | Process a @c wxEVT_COMMAND_RICHTEXT_DELETE event, generated when the user | |
2063 | presses the backspace or delete key. Valid event functions: GetFlags, GetPosition. | |
2064 | @event{EVT_RICHTEXT_RETURN(id, func)} | |
2065 | Process a @c wxEVT_COMMAND_RICHTEXT_RETURN event, generated when the user | |
2066 | presses the return key. Valid event functions: GetFlags, GetPosition. | |
2067 | @event{EVT_RICHTEXT_STYLE_CHANGED(id, func)} | |
2068 | Process a @c wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED event, generated when | |
2069 | styling has been applied to the control. Valid event functions: GetPosition, GetRange. | |
2070 | @event{EVT_RICHTEXT_STYLESHEET_CHANGED(id, func)} | |
2071 | Process a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING event, generated | |
2072 | when the control's stylesheet has changed, for example the user added, | |
2073 | edited or deleted a style. Valid event functions: GetRange, GetPosition. | |
2074 | @event{EVT_RICHTEXT_STYLESHEET_REPLACING(id, func)} | |
2075 | Process a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING event, generated | |
2076 | when the control's stylesheet is about to be replaced, for example when | |
2077 | a file is loaded into the control. | |
2078 | Valid event functions: Veto, GetOldStyleSheet, GetNewStyleSheet. | |
2079 | @event{EVT_RICHTEXT_STYLESHEET_REPLACED(id, func)} | |
2080 | Process a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED event, generated | |
2081 | when the control's stylesheet has been replaced, for example when a file | |
2082 | is loaded into the control. | |
2083 | Valid event functions: GetOldStyleSheet, GetNewStyleSheet. | |
2084 | @event{EVT_RICHTEXT_CONTENT_INSERTED(id, func)} | |
2085 | Process a @c wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED event, generated when | |
2086 | content has been inserted into the control. | |
2087 | Valid event functions: GetPosition, GetRange. | |
2088 | @event{EVT_RICHTEXT_CONTENT_DELETED(id, func)} | |
2089 | Process a @c wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED event, generated when | |
2090 | content has been deleted from the control. | |
2091 | Valid event functions: GetPosition, GetRange. | |
2092 | @event{EVT_RICHTEXT_BUFFER_RESET(id, func)} | |
2093 | Process a @c wxEVT_COMMAND_RICHTEXT_BUFFER_RESET event, generated when the | |
2094 | buffer has been reset by deleting all content. | |
2095 | You can use this to set a default style for the first new paragraph. | |
2096 | @event{EVT_RICHTEXT_SELECTION_CHANGED(id, func)} | |
2097 | Process a @c wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED event, generated when the | |
2098 | selection range has changed. | |
2099 | @event{EVT_RICHTEXT_FOCUS_OBJECT_CHANGED(id, func)} | |
2100 | Process a @c wxEVT_COMMAND_RICHTEXT_FOCUS_OBJECT_CHANGED event, generated when the | |
2101 | current focus object has changed. | |
2102 | @endEventTable | |
2103 | ||
2104 | @library{wxrichtext} | |
2105 | @category{events,richtext} | |
2106 | */ | |
2107 | ||
2108 | class WXDLLIMPEXP_RICHTEXT wxRichTextEvent : public wxNotifyEvent | |
2109 | { | |
2110 | public: | |
2111 | /** | |
2112 | Constructor. | |
2113 | ||
2114 | @param commandType | |
2115 | The type of the event. | |
2116 | @param id | |
2117 | Window identifier. The value @c wxID_ANY indicates a default value. | |
2118 | */ | |
2119 | wxRichTextEvent(wxEventType commandType = wxEVT_NULL, int winid = 0) | |
2120 | : wxNotifyEvent(commandType, winid), | |
2121 | m_flags(0), m_position(-1), m_oldStyleSheet(NULL), m_newStyleSheet(NULL), | |
2122 | m_char((wxChar) 0), m_container(NULL), m_oldContainer(NULL) | |
2123 | { } | |
2124 | ||
2125 | /** | |
2126 | Copy constructor. | |
2127 | */ | |
2128 | wxRichTextEvent(const wxRichTextEvent& event) | |
2129 | : wxNotifyEvent(event), | |
2130 | m_flags(event.m_flags), m_position(-1), | |
2131 | m_oldStyleSheet(event.m_oldStyleSheet), m_newStyleSheet(event.m_newStyleSheet), | |
2132 | m_char((wxChar) 0), m_container(event.m_container), m_oldContainer(event.m_oldContainer) | |
2133 | { } | |
2134 | ||
2135 | /** | |
2136 | Returns the buffer position at which the event occured. | |
2137 | */ | |
2138 | long GetPosition() const { return m_position; } | |
2139 | ||
2140 | /** | |
2141 | Sets the buffer position variable. | |
2142 | */ | |
2143 | void SetPosition(long pos) { m_position = pos; } | |
2144 | ||
2145 | /** | |
2146 | Returns flags indicating modifier keys pressed. | |
2147 | ||
2148 | Possible values are @c wxRICHTEXT_CTRL_DOWN, @c wxRICHTEXT_SHIFT_DOWN, and @c wxRICHTEXT_ALT_DOWN. | |
2149 | */ | |
2150 | int GetFlags() const { return m_flags; } | |
2151 | ||
2152 | /** | |
2153 | Sets flags indicating modifier keys pressed. | |
2154 | ||
2155 | Possible values are @c wxRICHTEXT_CTRL_DOWN, @c wxRICHTEXT_SHIFT_DOWN, and @c wxRICHTEXT_ALT_DOWN. | |
2156 | */ | |
2157 | void SetFlags(int flags) { m_flags = flags; } | |
2158 | ||
2159 | /** | |
2160 | Returns the old style sheet. | |
2161 | ||
2162 | Can be used in a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING or | |
2163 | @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED event handler. | |
2164 | */ | |
2165 | wxRichTextStyleSheet* GetOldStyleSheet() const { return m_oldStyleSheet; } | |
2166 | ||
2167 | /** | |
2168 | Sets the old style sheet variable. | |
2169 | */ | |
2170 | void SetOldStyleSheet(wxRichTextStyleSheet* sheet) { m_oldStyleSheet = sheet; } | |
2171 | ||
2172 | /** | |
2173 | Returns the new style sheet. | |
2174 | ||
2175 | Can be used in a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING or | |
2176 | @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED event handler. | |
2177 | */ | |
2178 | wxRichTextStyleSheet* GetNewStyleSheet() const { return m_newStyleSheet; } | |
2179 | ||
2180 | /** | |
2181 | Sets the new style sheet variable. | |
2182 | */ | |
2183 | void SetNewStyleSheet(wxRichTextStyleSheet* sheet) { m_newStyleSheet = sheet; } | |
2184 | ||
2185 | /** | |
2186 | Gets the range for the current operation. | |
2187 | */ | |
2188 | const wxRichTextRange& GetRange() const { return m_range; } | |
2189 | ||
2190 | /** | |
2191 | Sets the range variable. | |
2192 | */ | |
2193 | void SetRange(const wxRichTextRange& range) { m_range = range; } | |
2194 | ||
2195 | /** | |
2196 | Returns the character pressed, within a @c wxEVT_COMMAND_RICHTEXT_CHARACTER event. | |
2197 | */ | |
2198 | wxChar GetCharacter() const { return m_char; } | |
2199 | ||
2200 | /** | |
2201 | Sets the character variable. | |
2202 | */ | |
2203 | void SetCharacter(wxChar ch) { m_char = ch; } | |
2204 | ||
2205 | /** | |
2206 | Returns the container for which the event is relevant. | |
2207 | */ | |
2208 | wxRichTextParagraphLayoutBox* GetContainer() const { return m_container; } | |
2209 | ||
2210 | /** | |
2211 | Sets the container for which the event is relevant. | |
2212 | */ | |
2213 | void SetContainer(wxRichTextParagraphLayoutBox* container) { m_container = container; } | |
2214 | ||
2215 | /** | |
2216 | Returns the old container, for a focus change event. | |
2217 | */ | |
2218 | wxRichTextParagraphLayoutBox* GetOldContainer() const { return m_oldContainer; } | |
2219 | ||
2220 | /** | |
2221 | Sets the old container, for a focus change event. | |
2222 | */ | |
2223 | void SetOldContainer(wxRichTextParagraphLayoutBox* container) { m_oldContainer = container; } | |
2224 | ||
2225 | virtual wxEvent *Clone() const { return new wxRichTextEvent(*this); } | |
2226 | ||
2227 | protected: | |
2228 | int m_flags; | |
2229 | long m_position; | |
2230 | wxRichTextStyleSheet* m_oldStyleSheet; | |
2231 | wxRichTextStyleSheet* m_newStyleSheet; | |
2232 | wxRichTextRange m_range; | |
2233 | wxChar m_char; | |
2234 | wxRichTextParagraphLayoutBox* m_container; | |
2235 | wxRichTextParagraphLayoutBox* m_oldContainer; | |
2236 | ||
2237 | private: | |
2238 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxRichTextEvent) | |
23324ae1 | 2239 | }; |