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