1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/richtext/richtextctrl.h
3 // Purpose: A rich edit control
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RICHTEXTCTRL_H_
13 #define _WX_RICHTEXTCTRL_H_
15 #include "wx/richtext/richtextbuffer.h"
19 #include "wx/scrolwin.h"
22 #include "wx/textctrl.h"
24 #if !defined(__WXGTK__) && !defined(__WXMAC__)
25 #define wxRICHTEXT_BUFFERED_PAINTING 1
27 #define wxRICHTEXT_BUFFERED_PAINTING 0
30 class WXDLLIMPEXP_RICHTEXT wxRichTextStyleDefinition
;
39 #define wxRE_READONLY 0x0010
40 #define wxRE_MULTILINE 0x0020
45 #define wxRICHTEXT_SHIFT_DOWN 0x01
46 #define wxRICHTEXT_CTRL_DOWN 0x02
47 #define wxRICHTEXT_ALT_DOWN 0x04
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
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
68 * Forward declarations
72 * wxRichTextItem class declaration
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
84 * wxRichTextCtrl class declaration
87 class WXDLLIMPEXP_RICHTEXT wxRichTextCtrl
: public wxTextCtrlBase
,
90 DECLARE_CLASS( wxRichTextCtrl
)
97 wxRichTextCtrl( wxWindow
* parent
, wxWindowID id
= -1, const wxString
& value
= wxEmptyString
, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
98 long style
= wxRE_MULTILINE
, const wxValidator
& validator
= wxDefaultValidator
, const wxString
& name
= wxTextCtrlNameStr
);
100 virtual ~wxRichTextCtrl( );
105 bool Create( wxWindow
* parent
, wxWindowID id
= -1, const wxString
& value
= wxEmptyString
, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
106 long style
= wxRE_MULTILINE
, const wxValidator
& validator
= wxDefaultValidator
, const wxString
& name
= wxTextCtrlNameStr
);
108 /// Member initialisation
111 ///// wxTextCtrl compatibility
115 virtual wxString
GetValue() const;
117 virtual wxString
GetRange(long from
, long to
) const;
119 virtual int GetLineLength(long lineNo
) const ;
120 virtual wxString
GetLineText(long lineNo
) const ;
121 virtual int GetNumberOfLines() const ;
123 virtual bool IsModified() const ;
124 virtual bool IsEditable() const ;
126 // more readable flag testing methods
127 bool IsSingleLine() const { return !HasFlag(wxRE_MULTILINE
); }
128 bool IsMultiLine() const { return !IsSingleLine(); }
130 // If the return values from and to are the same, there is no selection.
131 virtual void GetSelection(long* from
, long* to
) const;
133 virtual wxString
GetStringSelection() const;
136 wxString
GetFilename() const { return m_filename
; }
139 void SetFilename(const wxString
& filename
) { m_filename
= filename
; }
141 /// Set the threshold in character positions for doing layout optimization during sizing
142 void SetDelayedLayoutThreshold(long threshold
) { m_delayedLayoutThreshold
= threshold
; }
144 /// Get the threshold in character positions for doing layout optimization during sizing
145 long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold
; }
150 virtual void Clear();
151 virtual void Replace(long from
, long to
, const wxString
& value
);
152 virtual void Remove(long from
, long to
);
154 // load/save the controls contents from/to the file
155 virtual bool DoLoadFile(const wxString
& file
, int fileType
);
156 virtual bool DoSaveFile(const wxString
& file
= wxEmptyString
, int fileType
= wxRICHTEXT_TYPE_ANY
);
158 /// Set the handler flags, controlling loading and saving
159 void SetHandlerFlags(int flags
) { GetBuffer().SetHandlerFlags(flags
); }
161 /// Get the handler flags, controlling loading and saving
162 int GetHandlerFlags() const { return GetBuffer().GetHandlerFlags(); }
164 // sets/clears the dirty flag
165 virtual void MarkDirty();
166 virtual void DiscardEdits();
168 // set the max number of characters which may be entered in a single line
170 virtual void SetMaxLength(unsigned long WXUNUSED(len
)) { }
172 // writing text inserts it at the current position, appending always
173 // inserts it at the end
174 virtual void WriteText(const wxString
& text
);
175 virtual void AppendText(const wxString
& text
);
177 // text control under some platforms supports the text styles: these
178 // methods allow to apply the given text style to the given selection or to
179 // set/get the style which will be used for all appended text
180 virtual bool SetStyle(long start
, long end
, const wxTextAttr
& style
);
181 virtual bool SetStyle(long start
, long end
, const wxTextAttrEx
& style
);
182 virtual bool SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
);
183 virtual bool GetStyle(long position
, wxTextAttr
& style
);
184 virtual bool GetStyle(long position
, wxTextAttrEx
& style
);
185 virtual bool GetStyle(long position
, wxRichTextAttr
& style
);
188 // get the common set of styles for the range
189 bool GetStyleForRange(const wxRichTextRange& range, wxRichTextAttr& style);
190 bool GetStyleForRange(const wxRichTextRange& range, wxTextAttrEx& style);
192 // extended style setting operation with flags including:
193 // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY, wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
194 // see richtextbuffer.h for more details.
195 virtual bool SetStyleEx(long start
, long end
, const wxTextAttrEx
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
196 virtual bool SetStyleEx(const wxRichTextRange
& range
, const wxTextAttrEx
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
197 virtual bool SetStyleEx(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
199 /// Get the content (uncombined) attributes for this position.
200 virtual bool GetUncombinedStyle(long position
, wxTextAttr
& style
);
201 virtual bool GetUncombinedStyle(long position
, wxTextAttrEx
& style
);
202 virtual bool GetUncombinedStyle(long position
, wxRichTextAttr
& style
);
204 virtual bool SetDefaultStyle(const wxTextAttrEx
& style
);
205 virtual bool SetDefaultStyle(const wxTextAttr
& style
);
207 // TODO: change to GetDefaultStyle if we merge wxTextAttr and wxTextAttrEx
208 virtual const wxTextAttrEx
& GetDefaultStyleEx() const;
209 virtual const wxTextAttr
& GetDefaultStyle() const;
212 virtual bool SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
213 virtual bool SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
215 /// Clear list for given range
216 virtual bool ClearListStyle(const wxRichTextRange
& range
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
218 /// Number/renumber any list elements in the given range
219 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
220 virtual bool NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
221 virtual bool NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
223 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
224 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
225 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
226 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
228 // translate between the position (which is just an index in the text ctrl
229 // considering all its contents as a single strings) and (x, y) coordinates
230 // which represent column and line.
231 virtual long XYToPosition(long x
, long y
) const;
232 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
234 virtual void ShowPosition(long pos
);
236 // find the character at position given in pixels
238 // NB: pt is in device coords (not adjusted for the client area origin nor
240 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const;
241 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
,
243 wxTextCoord
*row
) const;
245 // Clipboard operations
248 virtual void Paste();
249 virtual void DeleteSelection();
251 virtual bool CanCopy() const;
252 virtual bool CanCut() const;
253 virtual bool CanPaste() const;
254 virtual bool CanDeleteSelection() const;
260 virtual bool CanUndo() const;
261 virtual bool CanRedo() const;
264 virtual void SetInsertionPoint(long pos
);
265 virtual void SetInsertionPointEnd();
266 virtual long GetInsertionPoint() const;
267 virtual wxTextPos
GetLastPosition() const;
269 virtual void SetSelection(long from
, long to
);
270 virtual void SelectAll();
271 virtual void SetEditable(bool editable
);
273 /// Call Freeze to prevent refresh
274 virtual void Freeze();
276 /// Call Thaw to refresh
279 /// Call Thaw to refresh
280 virtual bool IsFrozen() const { return m_freezeCount
> 0; }
282 virtual bool HasSelection() const;
284 ///// Functionality specific to wxRichTextCtrl
286 /// Write an image 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 wxImage
& image
, int bitmapType
= wxBITMAP_TYPE_PNG
);
290 /// Write a bitmap at the current insertion point. Supply optional type to use
291 /// for internal and file storage of the raw data.
292 virtual bool WriteImage(const wxBitmap
& bitmap
, int bitmapType
= wxBITMAP_TYPE_PNG
);
294 /// Load an image from file and write at the current insertion point.
295 virtual bool WriteImage(const wxString
& filename
, int bitmapType
);
297 /// Write an image block at the current insertion point.
298 virtual bool WriteImage(const wxRichTextImageBlock
& imageBlock
);
300 /// Insert a newline (actually paragraph) at the current insertion point.
301 virtual bool Newline();
303 /// Set basic (overall) style
304 virtual void SetBasicStyle(const wxTextAttrEx
& style
) { GetBuffer().SetBasicStyle(style
); }
305 virtual void SetBasicStyle(const wxRichTextAttr
& style
) { GetBuffer().SetBasicStyle(style
); }
307 /// Get basic (overall) style
308 virtual const wxTextAttrEx
& GetBasicStyle() const { return GetBuffer().GetBasicStyle(); }
310 /// Begin using a style
311 virtual bool BeginStyle(const wxTextAttrEx
& style
) { return GetBuffer().BeginStyle(style
); }
314 virtual bool EndStyle() { return GetBuffer().EndStyle(); }
317 virtual bool EndAllStyles() { return GetBuffer().EndAllStyles(); }
320 bool BeginBold() { return GetBuffer().BeginBold(); }
323 bool EndBold() { return GetBuffer().EndBold(); }
325 /// Begin using italic
326 bool BeginItalic() { return GetBuffer().BeginItalic(); }
329 bool EndItalic() { return GetBuffer().EndItalic(); }
331 /// Begin using underline
332 bool BeginUnderline() { return GetBuffer().BeginUnderline(); }
334 /// End using underline
335 bool EndUnderline() { return GetBuffer().EndUnderline(); }
337 /// Begin using point size
338 bool BeginFontSize(int pointSize
) { return GetBuffer().BeginFontSize(pointSize
); }
340 /// End using point size
341 bool EndFontSize() { return GetBuffer().EndFontSize(); }
343 /// Begin using this font
344 bool BeginFont(const wxFont
& font
) { return GetBuffer().BeginFont(font
); }
347 bool EndFont() { return GetBuffer().EndFont(); }
349 /// Begin using this colour
350 bool BeginTextColour(const wxColour
& colour
) { return GetBuffer().BeginTextColour(colour
); }
352 /// End using a colour
353 bool EndTextColour() { return GetBuffer().EndTextColour(); }
355 /// Begin using alignment
356 bool BeginAlignment(wxTextAttrAlignment alignment
) { return GetBuffer().BeginAlignment(alignment
); }
359 bool EndAlignment() { return GetBuffer().EndAlignment(); }
361 /// Begin left indent
362 bool BeginLeftIndent(int leftIndent
, int leftSubIndent
= 0) { return GetBuffer().BeginLeftIndent(leftIndent
, leftSubIndent
); }
365 bool EndLeftIndent() { return GetBuffer().EndLeftIndent(); }
367 /// Begin right indent
368 bool BeginRightIndent(int rightIndent
) { return GetBuffer().BeginRightIndent(rightIndent
); }
371 bool EndRightIndent() { return GetBuffer().EndRightIndent(); }
373 /// Begin paragraph spacing
374 bool BeginParagraphSpacing(int before
, int after
) { return GetBuffer().BeginParagraphSpacing(before
, after
); }
376 /// End paragraph spacing
377 bool EndParagraphSpacing() { return GetBuffer().EndParagraphSpacing(); }
379 /// Begin line spacing
380 bool BeginLineSpacing(int lineSpacing
) { return GetBuffer().BeginLineSpacing(lineSpacing
); }
383 bool EndLineSpacing() { return GetBuffer().EndLineSpacing(); }
385 /// Begin numbered bullet
386 bool BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
)
387 { return GetBuffer().BeginNumberedBullet(bulletNumber
, leftIndent
, leftSubIndent
, bulletStyle
); }
389 /// End numbered bullet
390 bool EndNumberedBullet() { return GetBuffer().EndNumberedBullet(); }
392 /// Begin symbol bullet
393 bool BeginSymbolBullet(const wxString
& symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_SYMBOL
)
394 { return GetBuffer().BeginSymbolBullet(symbol
, leftIndent
, leftSubIndent
, bulletStyle
); }
396 /// End symbol bullet
397 bool EndSymbolBullet() { return GetBuffer().EndSymbolBullet(); }
399 /// Begin standard bullet
400 bool BeginStandardBullet(const wxString
& bulletName
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_STANDARD
)
401 { return GetBuffer().BeginStandardBullet(bulletName
, leftIndent
, leftSubIndent
, bulletStyle
); }
403 /// End standard bullet
404 bool EndStandardBullet() { return GetBuffer().EndStandardBullet(); }
406 /// Begin named character style
407 bool BeginCharacterStyle(const wxString
& characterStyle
) { return GetBuffer().BeginCharacterStyle(characterStyle
); }
409 /// End named character style
410 bool EndCharacterStyle() { return GetBuffer().EndCharacterStyle(); }
412 /// Begin named paragraph style
413 bool BeginParagraphStyle(const wxString
& paragraphStyle
) { return GetBuffer().BeginParagraphStyle(paragraphStyle
); }
415 /// End named character style
416 bool EndParagraphStyle() { return GetBuffer().EndParagraphStyle(); }
418 /// Begin named list style
419 bool BeginListStyle(const wxString
& listStyle
, int level
= 1, int number
= 1) { return GetBuffer().BeginListStyle(listStyle
, level
, number
); }
421 /// End named character style
422 bool EndListStyle() { return GetBuffer().EndListStyle(); }
425 bool BeginURL(const wxString
& url
, const wxString
& characterStyle
= wxEmptyString
) { return GetBuffer().BeginURL(url
, characterStyle
); }
428 bool EndURL() { return GetBuffer().EndURL(); }
430 /// Sets the default style to the style under the cursor
431 bool SetDefaultStyleToCursorStyle();
433 /// Clear the selection
434 virtual void SelectNone();
436 /// Select the word at the given character position
437 virtual bool SelectWord(long position
);
439 /// Get/set the selection range in character positions. -1, -1 means no selection.
440 /// The range is in API convention, i.e. a single character selection is denoted
442 wxRichTextRange
GetSelectionRange() const;
443 void SetSelectionRange(const wxRichTextRange
& range
);
445 /// Get/set the selection range in character positions. -1, -1 means no selection.
446 /// The range is in internal format, i.e. a single character selection is denoted
448 const wxRichTextRange
& GetInternalSelectionRange() const { return m_selectionRange
; }
449 void SetInternalSelectionRange(const wxRichTextRange
& range
) { m_selectionRange
= range
; }
451 /// Add a new paragraph of text to the end of the buffer
452 virtual wxRichTextRange
AddParagraph(const wxString
& text
);
455 virtual wxRichTextRange
AddImage(const wxImage
& image
);
457 /// Layout the buffer: which we must do before certain operations, such as
458 /// setting the caret position.
459 virtual bool LayoutContent(bool onlyVisibleRect
= false);
461 /// Move the caret to the given character position
462 virtual bool MoveCaret(long pos
, bool showAtLineStart
= false);
465 virtual bool MoveRight(int noPositions
= 1, int flags
= 0);
468 virtual bool MoveLeft(int noPositions
= 1, int flags
= 0);
471 virtual bool MoveUp(int noLines
= 1, int flags
= 0);
474 virtual bool MoveDown(int noLines
= 1, int flags
= 0);
476 /// Move to the end of the line
477 virtual bool MoveToLineEnd(int flags
= 0);
479 /// Move to the start of the line
480 virtual bool MoveToLineStart(int flags
= 0);
482 /// Move to the end of the paragraph
483 virtual bool MoveToParagraphEnd(int flags
= 0);
485 /// Move to the start of the paragraph
486 virtual bool MoveToParagraphStart(int flags
= 0);
488 /// Move to the start of the buffer
489 virtual bool MoveHome(int flags
= 0);
491 /// Move to the end of the buffer
492 virtual bool MoveEnd(int flags
= 0);
495 virtual bool PageUp(int noPages
= 1, int flags
= 0);
497 /// Move n pages down
498 virtual bool PageDown(int noPages
= 1, int flags
= 0);
500 /// Move n words left
501 virtual bool WordLeft(int noPages
= 1, int flags
= 0);
503 /// Move n words right
504 virtual bool WordRight(int noPages
= 1, int flags
= 0);
506 /// Returns the buffer associated with the control.
507 wxRichTextBuffer
& GetBuffer() { return m_buffer
; }
508 const wxRichTextBuffer
& GetBuffer() const { return m_buffer
; }
510 /// Start batching undo history for commands.
511 virtual bool BeginBatchUndo(const wxString
& cmdName
) { return m_buffer
.BeginBatchUndo(cmdName
); }
513 /// End batching undo history for commands.
514 virtual bool EndBatchUndo() { return m_buffer
.EndBatchUndo(); }
516 /// Are we batching undo history for commands?
517 virtual bool BatchingUndo() const { return m_buffer
.BatchingUndo(); }
519 /// Start suppressing undo history for commands.
520 virtual bool BeginSuppressUndo() { return m_buffer
.BeginSuppressUndo(); }
522 /// End suppressing undo history for commands.
523 virtual bool EndSuppressUndo() { return m_buffer
.EndSuppressUndo(); }
525 /// Are we suppressing undo history for commands?
526 virtual bool SuppressingUndo() const { return m_buffer
.SuppressingUndo(); }
528 /// Test if this whole range has character attributes of the specified kind. If any
529 /// of the attributes are different within the range, the test fails. You
530 /// can use this to implement, for example, bold button updating. style must have
531 /// flags indicating which attributes are of interest.
532 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const
534 return GetBuffer().HasCharacterAttributes(range
.ToInternal(), style
);
536 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
538 return GetBuffer().HasCharacterAttributes(range
.ToInternal(), style
);
541 /// Test if this whole range has paragraph attributes of the specified kind. If any
542 /// of the attributes are different within the range, the test fails. You
543 /// can use this to implement, for example, centering button updating. style must have
544 /// flags indicating which attributes are of interest.
545 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const
547 return GetBuffer().HasParagraphAttributes(range
.ToInternal(), style
);
549 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
551 return GetBuffer().HasParagraphAttributes(range
.ToInternal(), style
);
554 /// Is all of the selection bold?
555 virtual bool IsSelectionBold();
557 /// Is all of the selection italics?
558 virtual bool IsSelectionItalics();
560 /// Is all of the selection underlined?
561 virtual bool IsSelectionUnderlined();
563 /// Is all of the selection aligned according to the specified flag?
564 virtual bool IsSelectionAligned(wxTextAttrAlignment alignment
);
566 /// Apply bold to the selection
567 virtual bool ApplyBoldToSelection();
569 /// Apply italic to the selection
570 virtual bool ApplyItalicToSelection();
572 /// Apply underline to the selection
573 virtual bool ApplyUnderlineToSelection();
575 /// Apply alignment to the selection
576 virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment
);
578 /// Apply a named style to the selection
579 virtual bool ApplyStyle(wxRichTextStyleDefinition
* def
);
581 /// Set style sheet, if any
582 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
) { GetBuffer().SetStyleSheet(styleSheet
); }
583 wxRichTextStyleSheet
* GetStyleSheet() const { return GetBuffer().GetStyleSheet(); }
585 /// Push style sheet to top of stack
586 bool PushStyleSheet(wxRichTextStyleSheet
* styleSheet
) { return GetBuffer().PushStyleSheet(styleSheet
); }
588 /// Pop style sheet from top of stack
589 wxRichTextStyleSheet
* PopStyleSheet() { return GetBuffer().PopStyleSheet(); }
591 /// Apply the style sheet to the buffer, for example if the styles have changed.
592 bool ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
= NULL
);
596 void Command(wxCommandEvent
& event
);
597 void OnDropFiles(wxDropFilesEvent
& event
);
599 void OnCut(wxCommandEvent
& event
);
600 void OnCopy(wxCommandEvent
& event
);
601 void OnPaste(wxCommandEvent
& event
);
602 void OnUndo(wxCommandEvent
& event
);
603 void OnRedo(wxCommandEvent
& event
);
604 void OnSelectAll(wxCommandEvent
& event
);
605 void OnClear(wxCommandEvent
& event
);
607 void OnUpdateCut(wxUpdateUIEvent
& event
);
608 void OnUpdateCopy(wxUpdateUIEvent
& event
);
609 void OnUpdatePaste(wxUpdateUIEvent
& event
);
610 void OnUpdateUndo(wxUpdateUIEvent
& event
);
611 void OnUpdateRedo(wxUpdateUIEvent
& event
);
612 void OnUpdateSelectAll(wxUpdateUIEvent
& event
);
613 void OnUpdateClear(wxUpdateUIEvent
& event
);
615 // Show a context menu for Rich Edit controls (the standard
616 // EDIT control has one already)
617 void OnContextMenu(wxContextMenuEvent
& event
);
622 void OnPaint(wxPaintEvent
& event
);
623 void OnEraseBackground(wxEraseEvent
& event
);
626 void OnLeftClick(wxMouseEvent
& event
);
629 void OnLeftUp(wxMouseEvent
& event
);
632 void OnMoveMouse(wxMouseEvent
& event
);
634 /// Left-double-click
635 void OnLeftDClick(wxMouseEvent
& event
);
638 void OnMiddleClick(wxMouseEvent
& event
);
641 void OnRightClick(wxMouseEvent
& event
);
644 void OnChar(wxKeyEvent
& event
);
647 void OnSize(wxSizeEvent
& event
);
649 /// Setting/losing focus
650 void OnSetFocus(wxFocusEvent
& event
);
651 void OnKillFocus(wxFocusEvent
& event
);
653 /// Idle-time processing
654 void OnIdle(wxIdleEvent
& event
);
657 void OnScroll(wxScrollWinEvent
& event
);
659 /// Set font, and also default attributes
660 virtual bool SetFont(const wxFont
& font
);
662 /// Set up scrollbars, e.g. after a resize
663 virtual void SetupScrollbars(bool atTop
= false);
665 /// Keyboard navigation
666 virtual bool KeyboardNavigate(int keyCode
, int flags
);
668 /// Paint the background
669 virtual void PaintBackground(wxDC
& dc
);
671 #if wxRICHTEXT_BUFFERED_PAINTING
672 /// Recreate buffer bitmap if necessary
673 virtual bool RecreateBuffer(const wxSize
& size
= wxDefaultSize
);
676 /// Set the selection
677 virtual void DoSetSelection(long from
, long to
, bool scrollCaret
= true);
680 virtual void DoWriteText(const wxString
& value
, int flags
= 0);
682 /// Should we inherit colours?
683 virtual bool ShouldInheritColours() const { return false; }
685 /// Position the caret
686 virtual void PositionCaret();
688 /// Extend the selection, returning true if the selection was
689 /// changed. Selections are in caret positions.
690 virtual bool ExtendSelection(long oldPosition
, long newPosition
, int flags
);
692 /// Scroll into view. This takes a _caret_ position.
693 virtual bool ScrollIntoView(long position
, int keyCode
);
695 /// The caret position is the character position just before the caret.
696 /// A value of -1 means the caret is at the start of the buffer.
697 void SetCaretPosition(long position
, bool showAtLineStart
= false) ;
698 long GetCaretPosition() const { return m_caretPosition
; }
700 /// The adjusted caret position is the character position adjusted to take
701 /// into account whether we're at the start of a paragraph, in which case
702 /// style information should be taken from the next position, not current one.
703 long GetAdjustedCaretPosition(long caretPos
) const;
705 /// Move caret one visual step forward: this may mean setting a flag
706 /// and keeping the same position if we're going from the end of one line
707 /// to the start of the next, which may be the exact same caret position.
708 void MoveCaretForward(long oldPosition
) ;
710 /// Move caret one visual step forward: this may mean setting a flag
711 /// and keeping the same position if we're going from the end of one line
712 /// to the start of the next, which may be the exact same caret position.
713 void MoveCaretBack(long oldPosition
) ;
715 /// Get the caret height and position for the given character position
716 bool GetCaretPositionForIndex(long position
, wxRect
& rect
);
718 /// Gets the line for the visible caret position. If the caret is
719 /// shown at the very end of the line, it means the next character is actually
720 /// on the following line. So let's get the line we're expecting to find
721 /// if this is the case.
722 wxRichTextLine
* GetVisibleLineForCaretPosition(long caretPosition
) const;
724 /// Gets the command processor
725 wxCommandProcessor
* GetCommandProcessor() const { return GetBuffer().GetCommandProcessor(); }
727 /// Delete content if there is a selection, e.g. when pressing a key.
728 /// Returns the new caret position in newPos, or leaves it if there
730 bool DeleteSelectedContent(long* newPos
= NULL
);
732 /// Transform logical to physical
733 wxPoint
GetPhysicalPoint(const wxPoint
& ptLogical
) const;
735 /// Transform physical to logical
736 wxPoint
GetLogicalPoint(const wxPoint
& ptPhysical
) const;
738 /// Finds the caret position for the next word. Direction
739 /// is 1 (forward) or -1 (backwards).
740 virtual long FindNextWordPosition(int direction
= 1) const;
742 /// Is the given position visible on the screen?
743 bool IsPositionVisible(long pos
) const;
745 /// Returns the first visible position in the current view
746 long GetFirstVisiblePosition() const;
748 /// Returns the caret position since the default formatting was changed. As
749 /// soon as this position changes, we no longer reflect the default style
750 /// in the UI. A value of -2 means that we should only reflect the style of the
751 /// content under the caret.
752 long GetCaretPositionForDefaultStyle() const { return m_caretPositionForDefaultStyle
; }
754 /// Set the caret position for the default style that the user is selecting.
755 void SetCaretPositionForDefaultStyle(long pos
) { m_caretPositionForDefaultStyle
= pos
; }
757 /// Should the UI reflect the default style chosen by the user, rather than the style under
759 bool IsDefaultStyleShowing() const { return m_caretPositionForDefaultStyle
!= -2; }
761 /// Convenience function that tells the control to start reflecting the default
762 /// style, since the user is changing it.
763 void SetAndShowDefaultStyle(const wxRichTextAttr
& attr
)
765 SetDefaultStyle(attr
);
766 SetCaretPositionForDefaultStyle(GetCaretPosition());
769 /// Get the first visible point in the window
770 wxPoint
GetFirstVisiblePoint() const;
774 /// Font names take a long time to retrieve, so cache them (on demand)
775 static const wxArrayString
& GetAvailableFontNames();
776 static void ClearAvailableFontNames();
778 WX_FORWARD_TO_SCROLL_HELPER()
783 virtual wxSize
DoGetBestSize() const ;
785 virtual void DoSetValue(const wxString
& value
, int flags
= 0);
791 /// Allows nested Freeze/Thaw
794 #if wxRICHTEXT_BUFFERED_PAINTING
796 wxBitmap m_bufferBitmap
;
800 wxRichTextBuffer m_buffer
;
802 wxMenu
* m_contextMenu
;
804 /// Caret position (1 less than the character position, so -1 is the
805 /// first caret position).
806 long m_caretPosition
;
808 /// Caret position when the default formatting has been changed. As
809 /// soon as this position changes, we no longer reflect the default style
811 long m_caretPositionForDefaultStyle
;
813 /// Selection range in character positions. -2, -2 means no selection.
814 wxRichTextRange m_selectionRange
;
816 /// Anchor so we know how to extend the selection
817 /// It's a caret position since it's between two characters.
818 long m_selectionAnchor
;
823 /// Are we showing the caret position at the start of a line
824 /// instead of at the end of the previous one?
825 bool m_caretAtLineStart
;
827 /// Are we dragging a selection?
830 /// Start position for drag
833 /// Do we need full layout in idle?
834 bool m_fullLayoutRequired
;
835 wxLongLong m_fullLayoutTime
;
836 long m_fullLayoutSavedPosition
;
838 /// Threshold for doing delayed layout
839 long m_delayedLayoutThreshold
;
842 wxCursor m_textCursor
;
843 wxCursor m_urlCursor
;
845 static wxArrayString sm_availableFontNames
;
849 * wxRichTextEvent - the event class for wxRichTextCtrl notifications
852 class WXDLLIMPEXP_RICHTEXT wxRichTextEvent
: public wxNotifyEvent
855 wxRichTextEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0)
856 : wxNotifyEvent(commandType
, winid
),
857 m_itemIndex(-1), m_flags(0), m_oldStyleSheet(NULL
), m_newStyleSheet(NULL
)
860 wxRichTextEvent(const wxRichTextEvent
& event
)
861 : wxNotifyEvent(event
),
862 m_itemIndex(event
.m_itemIndex
), m_flags(event
.m_flags
),
863 m_oldStyleSheet(event
.m_oldStyleSheet
), m_newStyleSheet(event
.m_newStyleSheet
)
866 int GetIndex() const { return m_itemIndex
; }
867 void SetIndex(int n
) { m_itemIndex
= n
; }
869 int GetFlags() const { return m_flags
; }
870 void SetFlags(int flags
) { m_flags
= flags
; }
872 wxRichTextStyleSheet
* GetOldStyleSheet() const { return m_oldStyleSheet
; }
873 void SetOldStyleSheet(wxRichTextStyleSheet
* sheet
) { m_oldStyleSheet
= sheet
; }
875 wxRichTextStyleSheet
* GetNewStyleSheet() const { return m_newStyleSheet
; }
876 void SetNewStyleSheet(wxRichTextStyleSheet
* sheet
) { m_newStyleSheet
= sheet
; }
878 virtual wxEvent
*Clone() const { return new wxRichTextEvent(*this); }
883 wxRichTextStyleSheet
* m_oldStyleSheet
;
884 wxRichTextStyleSheet
* m_newStyleSheet
;
887 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxRichTextEvent
)
891 * wxRichTextCtrl event macros
894 BEGIN_DECLARE_EVENT_TYPES()
895 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_ITEM_SELECTED
, 2600)
896 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_ITEM_DESELECTED
, 2601)
897 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
, 2602)
898 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
, 2603)
899 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
, 2604)
900 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
, 2605)
901 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_RETURN
, 2606)
903 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING
, 2607)
904 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED
, 2608)
905 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING
, 2609)
906 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED
, 2610)
907 END_DECLARE_EVENT_TYPES()
909 typedef void (wxEvtHandler::*wxRichTextEventFunction
)(wxRichTextEvent
&);
911 #define EVT_RICHTEXT_ITEM_SELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_ITEM_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
912 #define EVT_RICHTEXT_ITEM_DESELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_ITEM_DESELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
913 #define EVT_RICHTEXT_LEFT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
914 #define EVT_RICHTEXT_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
915 #define EVT_RICHTEXT_MIDDLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
916 #define EVT_RICHTEXT_LEFT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
917 #define EVT_RICHTEXT_RETURN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RETURN, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
919 #define EVT_RICHTEXT_STYLESHEET_CHANGING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
920 #define EVT_RICHTEXT_STYLESHEET_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
921 #define EVT_RICHTEXT_STYLESHEET_REPLACING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
922 #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 // _WX_RICHTEXTCTRL_H_