]> git.saurik.com Git - wxWidgets.git/blame - include/wx/richtext/richtextctrl.h
use GLX_DOUBLEBUFFER if no attributes were specified with GLX >= 1.3 too
[wxWidgets.git] / include / wx / richtext / richtextctrl.h
CommitLineData
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 30class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextStyleDefinition;
ab14c7aa 31
5d7836c4
JS
32/*!
33 * Styles and flags
34 */
35
36/* Styles
37 */
38
39#define wxRE_READONLY 0x0010
40#define wxRE_MULTILINE 0x0020
41
42/* Flags
43 */
44
45#define wxRICHTEXT_SHIFT_DOWN 0x01
46#define wxRICHTEXT_CTRL_DOWN 0x02
47#define wxRICHTEXT_ALT_DOWN 0x04
48
49/* Defaults
50 */
51
52#define wxRICHTEXT_DEFAULT_OVERALL_SIZE wxSize(-1, -1)
53#define wxRICHTEXT_DEFAULT_IMAGE_SIZE wxSize(80, 80)
54#define wxRICHTEXT_DEFAULT_SPACING 3
55#define wxRICHTEXT_DEFAULT_MARGIN 3
56#define wxRICHTEXT_DEFAULT_UNFOCUSSED_BACKGROUND wxColour(175, 175, 175)
57#define wxRICHTEXT_DEFAULT_FOCUSSED_BACKGROUND wxColour(140, 140, 140)
58#define wxRICHTEXT_DEFAULT_UNSELECTED_BACKGROUND wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)
59#define wxRICHTEXT_DEFAULT_TYPE_COLOUR wxColour(0, 0, 200)
60#define wxRICHTEXT_DEFAULT_FOCUS_RECT_COLOUR wxColour(100, 80, 80)
61#define wxRICHTEXT_DEFAULT_CARET_WIDTH 2
4d551ad5
JS
62// Minimum buffer size before delayed layout kicks in
63#define wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD 20000
64// Milliseconds before layout occurs after resize
65#define wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL 50
5d7836c4
JS
66
67/*!
68 * Forward declarations
69 */
70
71/*!
72 * wxRichTextItem class declaration
73 */
74
75// Drawing styles/states
76#define wxRICHTEXT_SELECTED 0x01
77#define wxRICHTEXT_TAGGED 0x02
78// The control is focussed
79#define wxRICHTEXT_FOCUSSED 0x04
80// The item itself has the focus
81#define wxRICHTEXT_IS_FOCUS 0x08
82
83/*!
84 * wxRichTextCtrl class declaration
85 */
86
0ec1179b
VZ
87class WXDLLIMPEXP_RICHTEXT wxRichTextCtrl : public wxControl,
88 public wxTextCtrlIface,
343ae70d 89 public wxScrollHelper
7fe8059f 90{
5d7836c4
JS
91 DECLARE_CLASS( wxRichTextCtrl )
92 DECLARE_EVENT_TABLE()
93
94public:
95// Constructors
96
97 wxRichTextCtrl( );
27e20452 98 wxRichTextCtrl( wxWindow* parent, wxWindowID id = -1, const wxString& value = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
4e8d9558
JS
99 long style = wxRE_MULTILINE, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxTextCtrlNameStr);
100
d3c7fc99 101 virtual ~wxRichTextCtrl( );
5d7836c4
JS
102
103// Operations
104
105 /// Creation
27e20452 106 bool Create( wxWindow* parent, wxWindowID id = -1, const wxString& value = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
4e8d9558 107 long style = wxRE_MULTILINE, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxTextCtrlNameStr );
5d7836c4
JS
108
109 /// Member initialisation
110 void Init();
111
112///// wxTextCtrl compatibility
113
114// Accessors
115
116 virtual wxString GetValue() const;
5d7836c4
JS
117
118 virtual wxString GetRange(long from, long to) const;
119
120 virtual int GetLineLength(long lineNo) const ;
121 virtual wxString GetLineText(long lineNo) const ;
122 virtual int GetNumberOfLines() const ;
123
124 virtual bool IsModified() const ;
125 virtual bool IsEditable() const ;
126
127 // more readable flag testing methods
128 bool IsSingleLine() const { return !HasFlag(wxRE_MULTILINE); }
129 bool IsMultiLine() const { return !IsSingleLine(); }
130
131 // If the return values from and to are the same, there is no selection.
132 virtual void GetSelection(long* from, long* to) const;
133
134 virtual wxString GetStringSelection() const;
135
136 /// Get filename
137 wxString GetFilename() const { return m_filename; }
138
139 /// Set filename
140 void SetFilename(const wxString& filename) { m_filename = filename; }
141
4d551ad5
JS
142 /// Set the threshold in character positions for doing layout optimization during sizing
143 void SetDelayedLayoutThreshold(long threshold) { m_delayedLayoutThreshold = threshold; }
144
145 /// Get the threshold in character positions for doing layout optimization during sizing
146 long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold; }
147
c2a4fabb
JS
148 /// Set text cursor
149 void SetTextCursor(const wxCursor& cursor ) { m_textCursor = cursor; }
150
151 /// Get text cursor
152 wxCursor GetTextCursor() const { return m_textCursor; }
153
154 /// Set URL cursor
155 void SetURLCursor(const wxCursor& cursor ) { m_urlCursor = cursor; }
156
157 /// Get URL cursor
158 wxCursor GetURLCursor() const { return m_urlCursor; }
159
5d7836c4
JS
160// Operations
161
162 // editing
163 virtual void Clear();
164 virtual void Replace(long from, long to, const wxString& value);
165 virtual void Remove(long from, long to);
166
167 // load/save the controls contents from/to the file
3306aec1
JS
168 virtual bool DoLoadFile(const wxString& file, int fileType);
169 virtual bool DoSaveFile(const wxString& file = wxEmptyString, int fileType = wxRICHTEXT_TYPE_ANY);
5d7836c4 170
d2d0adc7
JS
171 /// Set the handler flags, controlling loading and saving
172 void SetHandlerFlags(int flags) { GetBuffer().SetHandlerFlags(flags); }
173
174 /// Get the handler flags, controlling loading and saving
175 int GetHandlerFlags() const { return GetBuffer().GetHandlerFlags(); }
176
5d7836c4
JS
177 // sets/clears the dirty flag
178 virtual void MarkDirty();
179 virtual void DiscardEdits();
180
181 // set the max number of characters which may be entered in a single line
182 // text control
183 virtual void SetMaxLength(unsigned long WXUNUSED(len)) { }
184
185 // writing text inserts it at the current position, appending always
186 // inserts it at the end
187 virtual void WriteText(const wxString& text);
188 virtual void AppendText(const wxString& text);
189
190 // text control under some platforms supports the text styles: these
191 // methods allow to apply the given text style to the given selection or to
192 // set/get the style which will be used for all appended text
27e20452 193 virtual bool SetStyle(long start, long end, const wxTextAttr& style);
44cc96a8 194 virtual bool SetStyle(const wxRichTextRange& range, const wxTextAttr& style);
3966a9f4 195 virtual bool GetStyle(long position, wxTextAttr& style);
fe5aa22c 196
a7ed48a5 197 // get the common set of styles for the range
44cc96a8 198 virtual bool GetStyleForRange(const wxRichTextRange& range, wxTextAttr& style);
3e3a754f
JS
199 // extended style setting operation with flags including:
200 // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY, wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
201 // see richtextbuffer.h for more details.
44cc96a8 202 virtual bool SetStyleEx(const wxRichTextRange& range, const wxTextAttr& style, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
3e3a754f 203
fe5aa22c
JS
204 /// Get the content (uncombined) attributes for this position.
205 virtual bool GetUncombinedStyle(long position, wxTextAttr& style);
fe5aa22c 206
27e20452 207 virtual bool SetDefaultStyle(const wxTextAttr& style);
5d7836c4 208
44cc96a8
JS
209 virtual const wxTextAttr& GetDefaultStyleEx() const { return GetDefaultStyle(); }
210
27e20452 211 virtual const wxTextAttr& GetDefaultStyle() const;
5d7836c4 212
38f833b1
JS
213 /// Set list style
214 virtual bool SetListStyle(const wxRichTextRange& range, wxRichTextListStyleDefinition* def, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
215 virtual bool SetListStyle(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
216
217 /// Clear list for given range
218 virtual bool ClearListStyle(const wxRichTextRange& range, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
219
220 /// Number/renumber any list elements in the given range
221 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
dadd4f55 222 virtual bool NumberList(const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
38f833b1
JS
223 virtual bool NumberList(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
224
225 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
226 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
dadd4f55 227 virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1);
38f833b1
JS
228 virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1);
229
12cc29c5
JS
230 /// Deletes the content in the given range
231 virtual bool Delete(const wxRichTextRange& range);
232
5d7836c4
JS
233 // translate between the position (which is just an index in the text ctrl
234 // considering all its contents as a single strings) and (x, y) coordinates
235 // which represent column and line.
236 virtual long XYToPosition(long x, long y) const;
237 virtual bool PositionToXY(long pos, long *x, long *y) const;
238
239 virtual void ShowPosition(long pos);
240
241 // find the character at position given in pixels
242 //
243 // NB: pt is in device coords (not adjusted for the client area origin nor
244 // scrolling)
245 virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const;
246 virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt,
247 wxTextCoord *col,
248 wxTextCoord *row) const;
249
250 // Clipboard operations
251 virtual void Copy();
252 virtual void Cut();
253 virtual void Paste();
254 virtual void DeleteSelection();
255
256 virtual bool CanCopy() const;
257 virtual bool CanCut() const;
258 virtual bool CanPaste() const;
259 virtual bool CanDeleteSelection() const;
260
261 // Undo/redo
262 virtual void Undo();
263 virtual void Redo();
264
265 virtual bool CanUndo() const;
266 virtual bool CanRedo() const;
267
268 // Insertion point
269 virtual void SetInsertionPoint(long pos);
270 virtual void SetInsertionPointEnd();
271 virtual long GetInsertionPoint() const;
272 virtual wxTextPos GetLastPosition() const;
273
274 virtual void SetSelection(long from, long to);
275 virtual void SelectAll();
276 virtual void SetEditable(bool editable);
277
5d7836c4
JS
278 virtual bool HasSelection() const;
279
280///// Functionality specific to wxRichTextCtrl
281
282 /// Write an image at the current insertion point. Supply optional type to use
283 /// for internal and file storage of the raw data.
284 virtual bool WriteImage(const wxImage& image, int bitmapType = wxBITMAP_TYPE_PNG);
285
286 /// Write a bitmap at the current insertion point. Supply optional type to use
287 /// for internal and file storage of the raw data.
288 virtual bool WriteImage(const wxBitmap& bitmap, int bitmapType = wxBITMAP_TYPE_PNG);
289
290 /// Load an image from file and write at the current insertion point.
291 virtual bool WriteImage(const wxString& filename, int bitmapType);
292
293 /// Write an image block at the current insertion point.
294 virtual bool WriteImage(const wxRichTextImageBlock& imageBlock);
295
296 /// Insert a newline (actually paragraph) at the current insertion point.
297 virtual bool Newline();
298
ff76711f
JS
299 /// Insert a line break at the current insertion point.
300 virtual bool LineBreak();
301
5d7836c4 302 /// Set basic (overall) style
44cc96a8 303 virtual void SetBasicStyle(const wxTextAttr& style) { GetBuffer().SetBasicStyle(style); }
5d7836c4
JS
304
305 /// Get basic (overall) style
44cc96a8 306 virtual const wxTextAttr& GetBasicStyle() const { return GetBuffer().GetBasicStyle(); }
5d7836c4 307
44cc96a8 308 virtual bool BeginStyle(const wxTextAttr& style) { return GetBuffer().BeginStyle(style); }
5d7836c4
JS
309
310 /// End the style
311 virtual bool EndStyle() { return GetBuffer().EndStyle(); }
312
313 /// End all styles
314 virtual bool EndAllStyles() { return GetBuffer().EndAllStyles(); }
315
316 /// Begin using bold
317 bool BeginBold() { return GetBuffer().BeginBold(); }
318
319 /// End using bold
320 bool EndBold() { return GetBuffer().EndBold(); }
321
322 /// Begin using italic
323 bool BeginItalic() { return GetBuffer().BeginItalic(); }
324
325 /// End using italic
326 bool EndItalic() { return GetBuffer().EndItalic(); }
327
328 /// Begin using underline
329 bool BeginUnderline() { return GetBuffer().BeginUnderline(); }
330
331 /// End using underline
332 bool EndUnderline() { return GetBuffer().EndUnderline(); }
333
334 /// Begin using point size
335 bool BeginFontSize(int pointSize) { return GetBuffer().BeginFontSize(pointSize); }
336
337 /// End using point size
338 bool EndFontSize() { return GetBuffer().EndFontSize(); }
339
340 /// Begin using this font
341 bool BeginFont(const wxFont& font) { return GetBuffer().BeginFont(font); }
342
343 /// End using a font
344 bool EndFont() { return GetBuffer().EndFont(); }
345
346 /// Begin using this colour
347 bool BeginTextColour(const wxColour& colour) { return GetBuffer().BeginTextColour(colour); }
348
349 /// End using a colour
350 bool EndTextColour() { return GetBuffer().EndTextColour(); }
351
352 /// Begin using alignment
353 bool BeginAlignment(wxTextAttrAlignment alignment) { return GetBuffer().BeginAlignment(alignment); }
354
355 /// End alignment
356 bool EndAlignment() { return GetBuffer().EndAlignment(); }
357
358 /// Begin left indent
359 bool BeginLeftIndent(int leftIndent, int leftSubIndent = 0) { return GetBuffer().BeginLeftIndent(leftIndent, leftSubIndent); }
360
361 /// End left indent
362 bool EndLeftIndent() { return GetBuffer().EndLeftIndent(); }
363
364 /// Begin right indent
365 bool BeginRightIndent(int rightIndent) { return GetBuffer().BeginRightIndent(rightIndent); }
366
367 /// End right indent
368 bool EndRightIndent() { return GetBuffer().EndRightIndent(); }
369
370 /// Begin paragraph spacing
371 bool BeginParagraphSpacing(int before, int after) { return GetBuffer().BeginParagraphSpacing(before, after); }
372
373 /// End paragraph spacing
374 bool EndParagraphSpacing() { return GetBuffer().EndParagraphSpacing(); }
375
376 /// Begin line spacing
377 bool BeginLineSpacing(int lineSpacing) { return GetBuffer().BeginLineSpacing(lineSpacing); }
378
379 /// End line spacing
380 bool EndLineSpacing() { return GetBuffer().EndLineSpacing(); }
381
382 /// Begin numbered bullet
383 bool BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_PERIOD)
384 { return GetBuffer().BeginNumberedBullet(bulletNumber, leftIndent, leftSubIndent, bulletStyle); }
385
386 /// End numbered bullet
387 bool EndNumberedBullet() { return GetBuffer().EndNumberedBullet(); }
388
389 /// Begin symbol bullet
d2d0adc7 390 bool BeginSymbolBullet(const wxString& symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL)
5d7836c4
JS
391 { return GetBuffer().BeginSymbolBullet(symbol, leftIndent, leftSubIndent, bulletStyle); }
392
393 /// End symbol bullet
394 bool EndSymbolBullet() { return GetBuffer().EndSymbolBullet(); }
395
f089713f
JS
396 /// Begin standard bullet
397 bool BeginStandardBullet(const wxString& bulletName, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_STANDARD)
398 { return GetBuffer().BeginStandardBullet(bulletName, leftIndent, leftSubIndent, bulletStyle); }
399
400 /// End standard bullet
401 bool EndStandardBullet() { return GetBuffer().EndStandardBullet(); }
402
5d7836c4
JS
403 /// Begin named character style
404 bool BeginCharacterStyle(const wxString& characterStyle) { return GetBuffer().BeginCharacterStyle(characterStyle); }
405
406 /// End named character style
407 bool EndCharacterStyle() { return GetBuffer().EndCharacterStyle(); }
408
409 /// Begin named paragraph style
410 bool BeginParagraphStyle(const wxString& paragraphStyle) { return GetBuffer().BeginParagraphStyle(paragraphStyle); }
411
412 /// End named character style
413 bool EndParagraphStyle() { return GetBuffer().EndParagraphStyle(); }
414
f089713f
JS
415 /// Begin named list style
416 bool BeginListStyle(const wxString& listStyle, int level = 1, int number = 1) { return GetBuffer().BeginListStyle(listStyle, level, number); }
417
418 /// End named character style
419 bool EndListStyle() { return GetBuffer().EndListStyle(); }
420
d2d0adc7
JS
421 /// Begin URL
422 bool BeginURL(const wxString& url, const wxString& characterStyle = wxEmptyString) { return GetBuffer().BeginURL(url, characterStyle); }
423
424 /// End URL
425 bool EndURL() { return GetBuffer().EndURL(); }
426
5d7836c4
JS
427 /// Sets the default style to the style under the cursor
428 bool SetDefaultStyleToCursorStyle();
429
430 /// Clear the selection
431 virtual void SelectNone();
432
0ca07313
JS
433 /// Select the word at the given character position
434 virtual bool SelectWord(long position);
435
5d7836c4 436 /// Get/set the selection range in character positions. -1, -1 means no selection.
96c9f0f6
JS
437 /// The range is in API convention, i.e. a single character selection is denoted
438 /// by (n, n+1)
439 wxRichTextRange GetSelectionRange() const;
440 void SetSelectionRange(const wxRichTextRange& range);
441
442 /// Get/set the selection range in character positions. -1, -1 means no selection.
443 /// The range is in internal format, i.e. a single character selection is denoted
444 /// by (n, n)
445 const wxRichTextRange& GetInternalSelectionRange() const { return m_selectionRange; }
446 void SetInternalSelectionRange(const wxRichTextRange& range) { m_selectionRange = range; }
5d7836c4
JS
447
448 /// Add a new paragraph of text to the end of the buffer
449 virtual wxRichTextRange AddParagraph(const wxString& text);
450
451 /// Add an image
452 virtual wxRichTextRange AddImage(const wxImage& image);
453
454 /// Layout the buffer: which we must do before certain operations, such as
455 /// setting the caret position.
2f36e8dc 456 virtual bool LayoutContent(bool onlyVisibleRect = false);
5d7836c4
JS
457
458 /// Move the caret to the given character position
459 virtual bool MoveCaret(long pos, bool showAtLineStart = false);
460
461 /// Move right
462 virtual bool MoveRight(int noPositions = 1, int flags = 0);
463
464 /// Move left
465 virtual bool MoveLeft(int noPositions = 1, int flags = 0);
466
467 /// Move up
468 virtual bool MoveUp(int noLines = 1, int flags = 0);
469
470 /// Move up
471 virtual bool MoveDown(int noLines = 1, int flags = 0);
472
473 /// Move to the end of the line
474 virtual bool MoveToLineEnd(int flags = 0);
475
476 /// Move to the start of the line
477 virtual bool MoveToLineStart(int flags = 0);
478
479 /// Move to the end of the paragraph
480 virtual bool MoveToParagraphEnd(int flags = 0);
481
482 /// Move to the start of the paragraph
483 virtual bool MoveToParagraphStart(int flags = 0);
484
485 /// Move to the start of the buffer
486 virtual bool MoveHome(int flags = 0);
487
488 /// Move to the end of the buffer
489 virtual bool MoveEnd(int flags = 0);
490
491 /// Move n pages up
492 virtual bool PageUp(int noPages = 1, int flags = 0);
493
494 /// Move n pages down
495 virtual bool PageDown(int noPages = 1, int flags = 0);
496
497 /// Move n words left
498 virtual bool WordLeft(int noPages = 1, int flags = 0);
499
500 /// Move n words right
501 virtual bool WordRight(int noPages = 1, int flags = 0);
502
503 /// Returns the buffer associated with the control.
504 wxRichTextBuffer& GetBuffer() { return m_buffer; }
505 const wxRichTextBuffer& GetBuffer() const { return m_buffer; }
506
507 /// Start batching undo history for commands.
508 virtual bool BeginBatchUndo(const wxString& cmdName) { return m_buffer.BeginBatchUndo(cmdName); }
509
510 /// End batching undo history for commands.
511 virtual bool EndBatchUndo() { return m_buffer.EndBatchUndo(); }
512
513 /// Are we batching undo history for commands?
514 virtual bool BatchingUndo() const { return m_buffer.BatchingUndo(); }
515
516 /// Start suppressing undo history for commands.
517 virtual bool BeginSuppressUndo() { return m_buffer.BeginSuppressUndo(); }
518
519 /// End suppressing undo history for commands.
520 virtual bool EndSuppressUndo() { return m_buffer.EndSuppressUndo(); }
521
522 /// Are we suppressing undo history for commands?
523 virtual bool SuppressingUndo() const { return m_buffer.SuppressingUndo(); }
524
525 /// Test if this whole range has character attributes of the specified kind. If any
526 /// of the attributes are different within the range, the test fails. You
527 /// can use this to implement, for example, bold button updating. style must have
528 /// flags indicating which attributes are of interest.
44cc96a8 529 virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxTextAttr& style) const
5d7836c4 530 {
a7ed48a5 531 return GetBuffer().HasCharacterAttributes(range.ToInternal(), style);
5d7836c4
JS
532 }
533
534 /// Test if this whole range has paragraph attributes of the specified kind. If any
535 /// of the attributes are different within the range, the test fails. You
536 /// can use this to implement, for example, centering button updating. style must have
537 /// flags indicating which attributes are of interest.
44cc96a8 538 virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxTextAttr& style) const
5d7836c4 539 {
a7ed48a5 540 return GetBuffer().HasParagraphAttributes(range.ToInternal(), style);
5d7836c4
JS
541 }
542
543 /// Is all of the selection bold?
3966a9f4 544 virtual bool IsSelectionBold();
5d7836c4
JS
545
546 /// Is all of the selection italics?
3966a9f4 547 virtual bool IsSelectionItalics();
5d7836c4
JS
548
549 /// Is all of the selection underlined?
3966a9f4 550 virtual bool IsSelectionUnderlined();
5d7836c4
JS
551
552 /// Is all of the selection aligned according to the specified flag?
3966a9f4 553 virtual bool IsSelectionAligned(wxTextAttrAlignment alignment);
5d7836c4
JS
554
555 /// Apply bold to the selection
556 virtual bool ApplyBoldToSelection();
557
558 /// Apply italic to the selection
559 virtual bool ApplyItalicToSelection();
560
561 /// Apply underline to the selection
562 virtual bool ApplyUnderlineToSelection();
563
564 /// Apply alignment to the selection
565 virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment);
566
ab14c7aa 567 /// Apply a named style to the selection
1807a1f3 568 virtual bool ApplyStyle(wxRichTextStyleDefinition* def);
ab14c7aa 569
38f833b1 570 /// Set style sheet, if any
5d7836c4
JS
571 void SetStyleSheet(wxRichTextStyleSheet* styleSheet) { GetBuffer().SetStyleSheet(styleSheet); }
572 wxRichTextStyleSheet* GetStyleSheet() const { return GetBuffer().GetStyleSheet(); }
573
38f833b1
JS
574 /// Push style sheet to top of stack
575 bool PushStyleSheet(wxRichTextStyleSheet* styleSheet) { return GetBuffer().PushStyleSheet(styleSheet); }
576
577 /// Pop style sheet from top of stack
578 wxRichTextStyleSheet* PopStyleSheet() { return GetBuffer().PopStyleSheet(); }
579
fe5aa22c
JS
580 /// Apply the style sheet to the buffer, for example if the styles have changed.
581 bool ApplyStyleSheet(wxRichTextStyleSheet* styleSheet = NULL);
582
5d7836c4
JS
583// Command handlers
584
c9f3a6a8 585 void Command(wxCommandEvent& event);
5d7836c4 586 void OnDropFiles(wxDropFilesEvent& event);
61f84e24 587 void OnCaptureLost(wxMouseCaptureLostEvent& event);
52170c5b 588 void OnSysColourChanged(wxSysColourChangedEvent& event);
5d7836c4
JS
589
590 void OnCut(wxCommandEvent& event);
591 void OnCopy(wxCommandEvent& event);
592 void OnPaste(wxCommandEvent& event);
593 void OnUndo(wxCommandEvent& event);
594 void OnRedo(wxCommandEvent& event);
595 void OnSelectAll(wxCommandEvent& event);
596 void OnClear(wxCommandEvent& event);
597
598 void OnUpdateCut(wxUpdateUIEvent& event);
599 void OnUpdateCopy(wxUpdateUIEvent& event);
600 void OnUpdatePaste(wxUpdateUIEvent& event);
601 void OnUpdateUndo(wxUpdateUIEvent& event);
602 void OnUpdateRedo(wxUpdateUIEvent& event);
603 void OnUpdateSelectAll(wxUpdateUIEvent& event);
604 void OnUpdateClear(wxUpdateUIEvent& event);
605
606 // Show a context menu for Rich Edit controls (the standard
607 // EDIT control has one already)
608 void OnContextMenu(wxContextMenuEvent& event);
7fe8059f 609
5d7836c4
JS
610// Event handlers
611
612 /// Painting
613 void OnPaint(wxPaintEvent& event);
614 void OnEraseBackground(wxEraseEvent& event);
615
616 /// Left-click
617 void OnLeftClick(wxMouseEvent& event);
618
619 /// Left-up
620 void OnLeftUp(wxMouseEvent& event);
621
622 /// Motion
623 void OnMoveMouse(wxMouseEvent& event);
624
625 /// Left-double-click
626 void OnLeftDClick(wxMouseEvent& event);
627
628 /// Middle-click
629 void OnMiddleClick(wxMouseEvent& event);
630
631 /// Right-click
632 void OnRightClick(wxMouseEvent& event);
633
634 /// Key press
635 void OnChar(wxKeyEvent& event);
636
637 /// Sizing
638 void OnSize(wxSizeEvent& event);
639
640 /// Setting/losing focus
641 void OnSetFocus(wxFocusEvent& event);
642 void OnKillFocus(wxFocusEvent& event);
643
4d551ad5
JS
644 /// Idle-time processing
645 void OnIdle(wxIdleEvent& event);
646
c59f6793
JS
647 /// Scrolling
648 void OnScroll(wxScrollWinEvent& event);
649
5d7836c4
JS
650 /// Set font, and also default attributes
651 virtual bool SetFont(const wxFont& font);
652
653 /// Set up scrollbars, e.g. after a resize
169adfa9 654 virtual void SetupScrollbars(bool atTop = false);
5d7836c4
JS
655
656 /// Keyboard navigation
0bab774b 657 virtual bool KeyboardNavigate(int keyCode, int flags);
5d7836c4
JS
658
659 /// Paint the background
660 virtual void PaintBackground(wxDC& dc);
7fe8059f 661
3e3a754f 662#if wxRICHTEXT_BUFFERED_PAINTING
5d7836c4
JS
663 /// Recreate buffer bitmap if necessary
664 virtual bool RecreateBuffer(const wxSize& size = wxDefaultSize);
3e3a754f 665#endif
5d7836c4
JS
666
667 /// Set the selection
668 virtual void DoSetSelection(long from, long to, bool scrollCaret = true);
669
670 /// Write text
343ae70d 671 virtual void DoWriteText(const wxString& value, int flags = 0);
5d7836c4
JS
672
673 /// Should we inherit colours?
674 virtual bool ShouldInheritColours() const { return false; }
675
676 /// Position the caret
677 virtual void PositionCaret();
678
679 /// Extend the selection, returning true if the selection was
680 /// changed. Selections are in caret positions.
681 virtual bool ExtendSelection(long oldPosition, long newPosition, int flags);
682
683 /// Scroll into view. This takes a _caret_ position.
684 virtual bool ScrollIntoView(long position, int keyCode);
685
686 /// The caret position is the character position just before the caret.
687 /// A value of -1 means the caret is at the start of the buffer.
688 void SetCaretPosition(long position, bool showAtLineStart = false) ;
689 long GetCaretPosition() const { return m_caretPosition; }
690
ab14c7aa
JS
691 /// The adjusted caret position is the character position adjusted to take
692 /// into account whether we're at the start of a paragraph, in which case
693 /// style information should be taken from the next position, not current one.
694 long GetAdjustedCaretPosition(long caretPos) const;
695
5d7836c4
JS
696 /// Move caret one visual step forward: this may mean setting a flag
697 /// and keeping the same position if we're going from the end of one line
698 /// to the start of the next, which may be the exact same caret position.
699 void MoveCaretForward(long oldPosition) ;
700
701 /// Move caret one visual step forward: this may mean setting a flag
702 /// and keeping the same position if we're going from the end of one line
703 /// to the start of the next, which may be the exact same caret position.
704 void MoveCaretBack(long oldPosition) ;
705
706 /// Get the caret height and position for the given character position
707 bool GetCaretPositionForIndex(long position, wxRect& rect);
708
709 /// Gets the line for the visible caret position. If the caret is
710 /// shown at the very end of the line, it means the next character is actually
711 /// on the following line. So let's get the line we're expecting to find
712 /// if this is the case.
713 wxRichTextLine* GetVisibleLineForCaretPosition(long caretPosition) const;
714
715 /// Gets the command processor
716 wxCommandProcessor* GetCommandProcessor() const { return GetBuffer().GetCommandProcessor(); }
717
718 /// Delete content if there is a selection, e.g. when pressing a key.
719 /// Returns the new caret position in newPos, or leaves it if there
720 /// was no action.
721 bool DeleteSelectedContent(long* newPos= NULL);
722
723 /// Transform logical to physical
4d551ad5 724 wxPoint GetPhysicalPoint(const wxPoint& ptLogical) const;
5d7836c4
JS
725
726 /// Transform physical to logical
4d551ad5 727 wxPoint GetLogicalPoint(const wxPoint& ptPhysical) const;
5d7836c4
JS
728
729 /// Finds the caret position for the next word. Direction
730 /// is 1 (forward) or -1 (backwards).
731 virtual long FindNextWordPosition(int direction = 1) const;
732
733 /// Is the given position visible on the screen?
734 bool IsPositionVisible(long pos) const;
735
4d551ad5
JS
736 /// Returns the first visible position in the current view
737 long GetFirstVisiblePosition() const;
738
ab14c7aa
JS
739 /// Returns the caret position since the default formatting was changed. As
740 /// soon as this position changes, we no longer reflect the default style
741 /// in the UI. A value of -2 means that we should only reflect the style of the
742 /// content under the caret.
743 long GetCaretPositionForDefaultStyle() const { return m_caretPositionForDefaultStyle; }
744
745 /// Set the caret position for the default style that the user is selecting.
746 void SetCaretPositionForDefaultStyle(long pos) { m_caretPositionForDefaultStyle = pos; }
747
748 /// Should the UI reflect the default style chosen by the user, rather than the style under
749 /// the caret?
750 bool IsDefaultStyleShowing() const { return m_caretPositionForDefaultStyle != -2; }
751
752 /// Convenience function that tells the control to start reflecting the default
753 /// style, since the user is changing it.
44cc96a8 754 void SetAndShowDefaultStyle(const wxTextAttr& attr)
ab14c7aa
JS
755 {
756 SetDefaultStyle(attr);
757 SetCaretPositionForDefaultStyle(GetCaretPosition());
758 }
759
ea160b2e
JS
760 /// Get the first visible point in the window
761 wxPoint GetFirstVisiblePoint() const;
762
fe5aa22c
JS
763// Implementation
764
dadd4f55
JS
765 /// Font names take a long time to retrieve, so cache them (on demand)
766 static const wxArrayString& GetAvailableFontNames();
767 static void ClearAvailableFontNames();
768
6b69c8ee 769 WX_FORWARD_TO_SCROLL_HELPER()
6b69c8ee 770
5d7836c4 771// Overrides
6f02a879 772protected:
5d7836c4
JS
773
774 virtual wxSize DoGetBestSize() const ;
775
343ae70d
VZ
776 virtual void DoSetValue(const wxString& value, int flags = 0);
777
17808a75
VZ
778 virtual void DoThaw();
779
343ae70d 780
5d7836c4
JS
781// Data members
782private:
3e3a754f 783#if wxRICHTEXT_BUFFERED_PAINTING
5d7836c4
JS
784 /// Buffer bitmap
785 wxBitmap m_bufferBitmap;
3e3a754f 786#endif
5d7836c4
JS
787
788 /// Text buffer
789 wxRichTextBuffer m_buffer;
790
5d7836c4
JS
791 wxMenu* m_contextMenu;
792
793 /// Caret position (1 less than the character position, so -1 is the
794 /// first caret position).
795 long m_caretPosition;
796
ab14c7aa
JS
797 /// Caret position when the default formatting has been changed. As
798 /// soon as this position changes, we no longer reflect the default style
799 /// in the UI.
800 long m_caretPositionForDefaultStyle;
801
5d7836c4
JS
802 /// Selection range in character positions. -2, -2 means no selection.
803 wxRichTextRange m_selectionRange;
804
805 /// Anchor so we know how to extend the selection
806 /// It's a caret position since it's between two characters.
807 long m_selectionAnchor;
808
809 /// Are we editable?
810 bool m_editable;
811
812 /// Are we showing the caret position at the start of a line
813 /// instead of at the end of the previous one?
814 bool m_caretAtLineStart;
815
816 /// Are we dragging a selection?
817 bool m_dragging;
818
819 /// Start position for drag
820 wxPoint m_dragStart;
4d551ad5
JS
821
822 /// Do we need full layout in idle?
823 bool m_fullLayoutRequired;
824 wxLongLong m_fullLayoutTime;
825 long m_fullLayoutSavedPosition;
826
827 /// Threshold for doing delayed layout
828 long m_delayedLayoutThreshold;
dadd4f55 829
d2d0adc7
JS
830 /// Cursors
831 wxCursor m_textCursor;
832 wxCursor m_urlCursor;
833
dadd4f55 834 static wxArrayString sm_availableFontNames;
5d7836c4
JS
835};
836
837/*!
838 * wxRichTextEvent - the event class for wxRichTextCtrl notifications
839 */
840
3b2cb431 841class WXDLLIMPEXP_RICHTEXT wxRichTextEvent : public wxNotifyEvent
5d7836c4
JS
842{
843public:
844 wxRichTextEvent(wxEventType commandType = wxEVT_NULL, int winid = 0)
845 : wxNotifyEvent(commandType, winid),
5912d19e
JS
846 m_flags(0), m_position(-1), m_oldStyleSheet(NULL), m_newStyleSheet(NULL),
847 m_char((wxChar) 0)
5d7836c4
JS
848 { }
849
850 wxRichTextEvent(const wxRichTextEvent& event)
851 : wxNotifyEvent(event),
5912d19e
JS
852 m_flags(event.m_flags), m_position(-1),
853 m_oldStyleSheet(event.m_oldStyleSheet), m_newStyleSheet(event.m_newStyleSheet),
854 m_char((wxChar) 0)
5d7836c4
JS
855 { }
856
5912d19e
JS
857 long GetPosition() const { return m_position; }
858 void SetPosition(long pos) { m_position = pos; }
5d7836c4
JS
859
860 int GetFlags() const { return m_flags; }
861 void SetFlags(int flags) { m_flags = flags; }
862
d2d0adc7
JS
863 wxRichTextStyleSheet* GetOldStyleSheet() const { return m_oldStyleSheet; }
864 void SetOldStyleSheet(wxRichTextStyleSheet* sheet) { m_oldStyleSheet = sheet; }
865
866 wxRichTextStyleSheet* GetNewStyleSheet() const { return m_newStyleSheet; }
867 void SetNewStyleSheet(wxRichTextStyleSheet* sheet) { m_newStyleSheet = sheet; }
868
5912d19e
JS
869 const wxRichTextRange& GetRange() const { return m_range; }
870 void SetRange(const wxRichTextRange& range) { m_range = range; }
871
872 wxChar GetCharacter() const { return m_char; }
873 void SetCharacter(wxChar ch) { m_char = ch; }
874
5d7836c4
JS
875 virtual wxEvent *Clone() const { return new wxRichTextEvent(*this); }
876
877protected:
d2d0adc7 878 int m_flags;
5912d19e 879 long m_position;
d2d0adc7
JS
880 wxRichTextStyleSheet* m_oldStyleSheet;
881 wxRichTextStyleSheet* m_newStyleSheet;
5912d19e
JS
882 wxRichTextRange m_range;
883 wxChar m_char;
5d7836c4
JS
884
885private:
886 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxRichTextEvent)
887};
888
889/*!
c058cafa 890 * wxRichTextCtrl events
5d7836c4 891 */
c058cafa
VZ
892extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_LEFT_CLICK;
893extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK;
894extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK;
895extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK;
896extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_RETURN;
897extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_CHARACTER;
898extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_DELETE;
899
900extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING;
901extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED;
902extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING;
903extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED;
904
905extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED;
906extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED;
907extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED;
908extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED;
cd8ba0d9 909extern WXDLLIMPEXP_RICHTEXT const wxEventType wxEVT_COMMAND_RICHTEXT_BUFFER_RESET;
5d7836c4
JS
910
911typedef void (wxEvtHandler::*wxRichTextEventFunction)(wxRichTextEvent&);
912
97f3b1e9
JS
913#define wxRichTextEventHandler(func) \
914 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxRichTextEventFunction, &func)
915
5d7836c4
JS
916#define EVT_RICHTEXT_LEFT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
917#define EVT_RICHTEXT_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
918#define EVT_RICHTEXT_MIDDLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
919#define EVT_RICHTEXT_LEFT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
920#define EVT_RICHTEXT_RETURN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RETURN, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
5912d19e
JS
921#define EVT_RICHTEXT_CHARACTER(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_CHARACTER, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
922#define EVT_RICHTEXT_DELETE(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_DELETE, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
5d7836c4 923
d2d0adc7
JS
924#define EVT_RICHTEXT_STYLESHEET_CHANGING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
925#define EVT_RICHTEXT_STYLESHEET_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
926#define EVT_RICHTEXT_STYLESHEET_REPLACING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
927#define EVT_RICHTEXT_STYLESHEET_REPLACED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
928
5912d19e
JS
929#define EVT_RICHTEXT_CONTENT_INSERTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
930#define EVT_RICHTEXT_CONTENT_DELETED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
931#define EVT_RICHTEXT_STYLE_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
932#define EVT_RICHTEXT_SELECTION_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
cd8ba0d9 933#define EVT_RICHTEXT_BUFFER_RESET(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_BUFFER_RESET, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
5912d19e 934
5d7836c4
JS
935#endif
936 // wxUSE_RICHTEXT
937
938#endif
939 // _WX_RICHTEXTCTRL_H_