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