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