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_FWD_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 wxControl
,
88 public wxTextCtrlIface
,
91 DECLARE_CLASS( wxRichTextCtrl
)
98 wxRichTextCtrl( wxWindow
* parent
, wxWindowID id
= -1, const wxString
& value
= wxEmptyString
, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
99 long style
= wxRE_MULTILINE
, const wxValidator
& validator
= wxDefaultValidator
, const wxString
& name
= wxTextCtrlNameStr
);
101 virtual ~wxRichTextCtrl( );
106 bool Create( wxWindow
* parent
, wxWindowID id
= -1, const wxString
& value
= wxEmptyString
, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
107 long style
= wxRE_MULTILINE
, const wxValidator
& validator
= wxDefaultValidator
, const wxString
& name
= wxTextCtrlNameStr
);
109 /// Member initialisation
112 ///// wxTextCtrl compatibility
116 virtual wxString
GetValue() const;
118 virtual wxString
GetRange(long from
, long to
) const;
120 virtual int GetLineLength(long lineNo
) const ;
121 virtual wxString
GetLineText(long lineNo
) const ;
122 virtual int GetNumberOfLines() const ;
124 virtual bool IsModified() const ;
125 virtual bool IsEditable() const ;
127 // more readable flag testing methods
128 bool IsSingleLine() const { return !HasFlag(wxRE_MULTILINE
); }
129 bool IsMultiLine() const { return !IsSingleLine(); }
131 // If the return values from and to are the same, there is no selection.
132 virtual void GetSelection(long* from
, long* to
) const;
134 virtual wxString
GetStringSelection() const;
137 wxString
GetFilename() const { return m_filename
; }
140 void SetFilename(const wxString
& filename
) { m_filename
= filename
; }
142 /// Set the threshold in character positions for doing layout optimization during sizing
143 void SetDelayedLayoutThreshold(long threshold
) { m_delayedLayoutThreshold
= threshold
; }
145 /// Get the threshold in character positions for doing layout optimization during sizing
146 long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold
; }
151 virtual void Clear();
152 virtual void Replace(long from
, long to
, const wxString
& value
);
153 virtual void Remove(long from
, long to
);
155 // load/save the controls contents from/to the file
156 virtual bool DoLoadFile(const wxString
& file
, int fileType
);
157 virtual bool DoSaveFile(const wxString
& file
= wxEmptyString
, int fileType
= wxRICHTEXT_TYPE_ANY
);
159 /// Set the handler flags, controlling loading and saving
160 void SetHandlerFlags(int flags
) { GetBuffer().SetHandlerFlags(flags
); }
162 /// Get the handler flags, controlling loading and saving
163 int GetHandlerFlags() const { return GetBuffer().GetHandlerFlags(); }
165 // sets/clears the dirty flag
166 virtual void MarkDirty();
167 virtual void DiscardEdits();
169 // set the max number of characters which may be entered in a single line
171 virtual void SetMaxLength(unsigned long WXUNUSED(len
)) { }
173 // writing text inserts it at the current position, appending always
174 // inserts it at the end
175 virtual void WriteText(const wxString
& text
);
176 virtual void AppendText(const wxString
& text
);
178 // text control under some platforms supports the text styles: these
179 // methods allow to apply the given text style to the given selection or to
180 // set/get the style which will be used for all appended text
181 virtual bool SetStyle(long start
, long end
, const wxTextAttr
& style
);
182 virtual bool SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
);
183 virtual bool GetStyle(long position
, wxTextAttr
& style
);
185 // get the common set of styles for the range
186 virtual bool GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
);
187 // extended style setting operation with flags including:
188 // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY, wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
189 // see richtextbuffer.h for more details.
190 virtual bool SetStyleEx(const wxRichTextRange
& range
, const wxTextAttr
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
192 /// Get the content (uncombined) attributes for this position.
193 virtual bool GetUncombinedStyle(long position
, wxTextAttr
& style
);
195 virtual bool SetDefaultStyle(const wxTextAttr
& style
);
197 virtual const wxTextAttr
& GetDefaultStyleEx() const { return GetDefaultStyle(); }
199 virtual const wxTextAttr
& GetDefaultStyle() const;
202 virtual bool SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
203 virtual bool SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
205 /// Clear list for given range
206 virtual bool ClearListStyle(const wxRichTextRange
& range
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
208 /// Number/renumber any list elements in the given range
209 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
210 virtual bool NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
211 virtual bool NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
213 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
214 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
215 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
216 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
218 /// Deletes the content in the given range
219 virtual bool Delete(const wxRichTextRange
& range
);
221 // translate between the position (which is just an index in the text ctrl
222 // considering all its contents as a single strings) and (x, y) coordinates
223 // which represent column and line.
224 virtual long XYToPosition(long x
, long y
) const;
225 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
227 virtual void ShowPosition(long pos
);
229 // find the character at position given in pixels
231 // NB: pt is in device coords (not adjusted for the client area origin nor
233 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const;
234 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
,
236 wxTextCoord
*row
) const;
238 // Clipboard operations
241 virtual void Paste();
242 virtual void DeleteSelection();
244 virtual bool CanCopy() const;
245 virtual bool CanCut() const;
246 virtual bool CanPaste() const;
247 virtual bool CanDeleteSelection() const;
253 virtual bool CanUndo() const;
254 virtual bool CanRedo() const;
257 virtual void SetInsertionPoint(long pos
);
258 virtual void SetInsertionPointEnd();
259 virtual long GetInsertionPoint() const;
260 virtual wxTextPos
GetLastPosition() const;
262 virtual void SetSelection(long from
, long to
);
263 virtual void SelectAll();
264 virtual void SetEditable(bool editable
);
266 virtual bool HasSelection() const;
268 ///// Functionality specific to wxRichTextCtrl
270 /// Write an image at the current insertion point. Supply optional type to use
271 /// for internal and file storage of the raw data.
272 virtual bool WriteImage(const wxImage
& image
, int bitmapType
= wxBITMAP_TYPE_PNG
);
274 /// Write a bitmap at the current insertion point. Supply optional type to use
275 /// for internal and file storage of the raw data.
276 virtual bool WriteImage(const wxBitmap
& bitmap
, int bitmapType
= wxBITMAP_TYPE_PNG
);
278 /// Load an image from file and write at the current insertion point.
279 virtual bool WriteImage(const wxString
& filename
, int bitmapType
);
281 /// Write an image block at the current insertion point.
282 virtual bool WriteImage(const wxRichTextImageBlock
& imageBlock
);
284 /// Insert a newline (actually paragraph) at the current insertion point.
285 virtual bool Newline();
287 /// Insert a line break at the current insertion point.
288 virtual bool LineBreak();
290 /// Set basic (overall) style
291 virtual void SetBasicStyle(const wxTextAttr
& style
) { GetBuffer().SetBasicStyle(style
); }
293 /// Get basic (overall) style
294 virtual const wxTextAttr
& GetBasicStyle() const { return GetBuffer().GetBasicStyle(); }
296 virtual bool BeginStyle(const wxTextAttr
& style
) { return GetBuffer().BeginStyle(style
); }
299 virtual bool EndStyle() { return GetBuffer().EndStyle(); }
302 virtual bool EndAllStyles() { return GetBuffer().EndAllStyles(); }
305 bool BeginBold() { return GetBuffer().BeginBold(); }
308 bool EndBold() { return GetBuffer().EndBold(); }
310 /// Begin using italic
311 bool BeginItalic() { return GetBuffer().BeginItalic(); }
314 bool EndItalic() { return GetBuffer().EndItalic(); }
316 /// Begin using underline
317 bool BeginUnderline() { return GetBuffer().BeginUnderline(); }
319 /// End using underline
320 bool EndUnderline() { return GetBuffer().EndUnderline(); }
322 /// Begin using point size
323 bool BeginFontSize(int pointSize
) { return GetBuffer().BeginFontSize(pointSize
); }
325 /// End using point size
326 bool EndFontSize() { return GetBuffer().EndFontSize(); }
328 /// Begin using this font
329 bool BeginFont(const wxFont
& font
) { return GetBuffer().BeginFont(font
); }
332 bool EndFont() { return GetBuffer().EndFont(); }
334 /// Begin using this colour
335 bool BeginTextColour(const wxColour
& colour
) { return GetBuffer().BeginTextColour(colour
); }
337 /// End using a colour
338 bool EndTextColour() { return GetBuffer().EndTextColour(); }
340 /// Begin using alignment
341 bool BeginAlignment(wxTextAttrAlignment alignment
) { return GetBuffer().BeginAlignment(alignment
); }
344 bool EndAlignment() { return GetBuffer().EndAlignment(); }
346 /// Begin left indent
347 bool BeginLeftIndent(int leftIndent
, int leftSubIndent
= 0) { return GetBuffer().BeginLeftIndent(leftIndent
, leftSubIndent
); }
350 bool EndLeftIndent() { return GetBuffer().EndLeftIndent(); }
352 /// Begin right indent
353 bool BeginRightIndent(int rightIndent
) { return GetBuffer().BeginRightIndent(rightIndent
); }
356 bool EndRightIndent() { return GetBuffer().EndRightIndent(); }
358 /// Begin paragraph spacing
359 bool BeginParagraphSpacing(int before
, int after
) { return GetBuffer().BeginParagraphSpacing(before
, after
); }
361 /// End paragraph spacing
362 bool EndParagraphSpacing() { return GetBuffer().EndParagraphSpacing(); }
364 /// Begin line spacing
365 bool BeginLineSpacing(int lineSpacing
) { return GetBuffer().BeginLineSpacing(lineSpacing
); }
368 bool EndLineSpacing() { return GetBuffer().EndLineSpacing(); }
370 /// Begin numbered bullet
371 bool BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
)
372 { return GetBuffer().BeginNumberedBullet(bulletNumber
, leftIndent
, leftSubIndent
, bulletStyle
); }
374 /// End numbered bullet
375 bool EndNumberedBullet() { return GetBuffer().EndNumberedBullet(); }
377 /// Begin symbol bullet
378 bool BeginSymbolBullet(const wxString
& symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_SYMBOL
)
379 { return GetBuffer().BeginSymbolBullet(symbol
, leftIndent
, leftSubIndent
, bulletStyle
); }
381 /// End symbol bullet
382 bool EndSymbolBullet() { return GetBuffer().EndSymbolBullet(); }
384 /// Begin standard bullet
385 bool BeginStandardBullet(const wxString
& bulletName
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_STANDARD
)
386 { return GetBuffer().BeginStandardBullet(bulletName
, leftIndent
, leftSubIndent
, bulletStyle
); }
388 /// End standard bullet
389 bool EndStandardBullet() { return GetBuffer().EndStandardBullet(); }
391 /// Begin named character style
392 bool BeginCharacterStyle(const wxString
& characterStyle
) { return GetBuffer().BeginCharacterStyle(characterStyle
); }
394 /// End named character style
395 bool EndCharacterStyle() { return GetBuffer().EndCharacterStyle(); }
397 /// Begin named paragraph style
398 bool BeginParagraphStyle(const wxString
& paragraphStyle
) { return GetBuffer().BeginParagraphStyle(paragraphStyle
); }
400 /// End named character style
401 bool EndParagraphStyle() { return GetBuffer().EndParagraphStyle(); }
403 /// Begin named list style
404 bool BeginListStyle(const wxString
& listStyle
, int level
= 1, int number
= 1) { return GetBuffer().BeginListStyle(listStyle
, level
, number
); }
406 /// End named character style
407 bool EndListStyle() { return GetBuffer().EndListStyle(); }
410 bool BeginURL(const wxString
& url
, const wxString
& characterStyle
= wxEmptyString
) { return GetBuffer().BeginURL(url
, characterStyle
); }
413 bool EndURL() { return GetBuffer().EndURL(); }
415 /// Sets the default style to the style under the cursor
416 bool SetDefaultStyleToCursorStyle();
418 /// Clear the selection
419 virtual void SelectNone();
421 /// Select the word at the given character position
422 virtual bool SelectWord(long position
);
424 /// Get/set the selection range in character positions. -1, -1 means no selection.
425 /// The range is in API convention, i.e. a single character selection is denoted
427 wxRichTextRange
GetSelectionRange() const;
428 void SetSelectionRange(const wxRichTextRange
& range
);
430 /// Get/set the selection range in character positions. -1, -1 means no selection.
431 /// The range is in internal format, i.e. a single character selection is denoted
433 const wxRichTextRange
& GetInternalSelectionRange() const { return m_selectionRange
; }
434 void SetInternalSelectionRange(const wxRichTextRange
& range
) { m_selectionRange
= range
; }
436 /// Add a new paragraph of text to the end of the buffer
437 virtual wxRichTextRange
AddParagraph(const wxString
& text
);
440 virtual wxRichTextRange
AddImage(const wxImage
& image
);
442 /// Layout the buffer: which we must do before certain operations, such as
443 /// setting the caret position.
444 virtual bool LayoutContent(bool onlyVisibleRect
= false);
446 /// Move the caret to the given character position
447 virtual bool MoveCaret(long pos
, bool showAtLineStart
= false);
450 virtual bool MoveRight(int noPositions
= 1, int flags
= 0);
453 virtual bool MoveLeft(int noPositions
= 1, int flags
= 0);
456 virtual bool MoveUp(int noLines
= 1, int flags
= 0);
459 virtual bool MoveDown(int noLines
= 1, int flags
= 0);
461 /// Move to the end of the line
462 virtual bool MoveToLineEnd(int flags
= 0);
464 /// Move to the start of the line
465 virtual bool MoveToLineStart(int flags
= 0);
467 /// Move to the end of the paragraph
468 virtual bool MoveToParagraphEnd(int flags
= 0);
470 /// Move to the start of the paragraph
471 virtual bool MoveToParagraphStart(int flags
= 0);
473 /// Move to the start of the buffer
474 virtual bool MoveHome(int flags
= 0);
476 /// Move to the end of the buffer
477 virtual bool MoveEnd(int flags
= 0);
480 virtual bool PageUp(int noPages
= 1, int flags
= 0);
482 /// Move n pages down
483 virtual bool PageDown(int noPages
= 1, int flags
= 0);
485 /// Move n words left
486 virtual bool WordLeft(int noPages
= 1, int flags
= 0);
488 /// Move n words right
489 virtual bool WordRight(int noPages
= 1, int flags
= 0);
491 /// Returns the buffer associated with the control.
492 wxRichTextBuffer
& GetBuffer() { return m_buffer
; }
493 const wxRichTextBuffer
& GetBuffer() const { return m_buffer
; }
495 /// Start batching undo history for commands.
496 virtual bool BeginBatchUndo(const wxString
& cmdName
) { return m_buffer
.BeginBatchUndo(cmdName
); }
498 /// End batching undo history for commands.
499 virtual bool EndBatchUndo() { return m_buffer
.EndBatchUndo(); }
501 /// Are we batching undo history for commands?
502 virtual bool BatchingUndo() const { return m_buffer
.BatchingUndo(); }
504 /// Start suppressing undo history for commands.
505 virtual bool BeginSuppressUndo() { return m_buffer
.BeginSuppressUndo(); }
507 /// End suppressing undo history for commands.
508 virtual bool EndSuppressUndo() { return m_buffer
.EndSuppressUndo(); }
510 /// Are we suppressing undo history for commands?
511 virtual bool SuppressingUndo() const { return m_buffer
.SuppressingUndo(); }
513 /// Test if this whole range has character attributes of the specified kind. If any
514 /// of the attributes are different within the range, the test fails. You
515 /// can use this to implement, for example, bold button updating. style must have
516 /// flags indicating which attributes are of interest.
517 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxTextAttr
& style
) const
519 return GetBuffer().HasCharacterAttributes(range
.ToInternal(), style
);
522 /// Test if this whole range has paragraph attributes of the specified kind. If any
523 /// of the attributes are different within the range, the test fails. You
524 /// can use this to implement, for example, centering button updating. style must have
525 /// flags indicating which attributes are of interest.
526 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxTextAttr
& style
) const
528 return GetBuffer().HasParagraphAttributes(range
.ToInternal(), style
);
531 /// Is all of the selection bold?
532 virtual bool IsSelectionBold();
534 /// Is all of the selection italics?
535 virtual bool IsSelectionItalics();
537 /// Is all of the selection underlined?
538 virtual bool IsSelectionUnderlined();
540 /// Is all of the selection aligned according to the specified flag?
541 virtual bool IsSelectionAligned(wxTextAttrAlignment alignment
);
543 /// Apply bold to the selection
544 virtual bool ApplyBoldToSelection();
546 /// Apply italic to the selection
547 virtual bool ApplyItalicToSelection();
549 /// Apply underline to the selection
550 virtual bool ApplyUnderlineToSelection();
552 /// Apply alignment to the selection
553 virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment
);
555 /// Apply a named style to the selection
556 virtual bool ApplyStyle(wxRichTextStyleDefinition
* def
);
558 /// Set style sheet, if any
559 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
) { GetBuffer().SetStyleSheet(styleSheet
); }
560 wxRichTextStyleSheet
* GetStyleSheet() const { return GetBuffer().GetStyleSheet(); }
562 /// Push style sheet to top of stack
563 bool PushStyleSheet(wxRichTextStyleSheet
* styleSheet
) { return GetBuffer().PushStyleSheet(styleSheet
); }
565 /// Pop style sheet from top of stack
566 wxRichTextStyleSheet
* PopStyleSheet() { return GetBuffer().PopStyleSheet(); }
568 /// Apply the style sheet to the buffer, for example if the styles have changed.
569 bool ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
= NULL
);
573 void Command(wxCommandEvent
& event
);
574 void OnDropFiles(wxDropFilesEvent
& event
);
575 void OnCaptureLost(wxMouseCaptureLostEvent
& event
);
576 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
578 void OnCut(wxCommandEvent
& event
);
579 void OnCopy(wxCommandEvent
& event
);
580 void OnPaste(wxCommandEvent
& event
);
581 void OnUndo(wxCommandEvent
& event
);
582 void OnRedo(wxCommandEvent
& event
);
583 void OnSelectAll(wxCommandEvent
& event
);
584 void OnClear(wxCommandEvent
& event
);
586 void OnUpdateCut(wxUpdateUIEvent
& event
);
587 void OnUpdateCopy(wxUpdateUIEvent
& event
);
588 void OnUpdatePaste(wxUpdateUIEvent
& event
);
589 void OnUpdateUndo(wxUpdateUIEvent
& event
);
590 void OnUpdateRedo(wxUpdateUIEvent
& event
);
591 void OnUpdateSelectAll(wxUpdateUIEvent
& event
);
592 void OnUpdateClear(wxUpdateUIEvent
& event
);
594 // Show a context menu for Rich Edit controls (the standard
595 // EDIT control has one already)
596 void OnContextMenu(wxContextMenuEvent
& event
);
601 void OnPaint(wxPaintEvent
& event
);
602 void OnEraseBackground(wxEraseEvent
& event
);
605 void OnLeftClick(wxMouseEvent
& event
);
608 void OnLeftUp(wxMouseEvent
& event
);
611 void OnMoveMouse(wxMouseEvent
& event
);
613 /// Left-double-click
614 void OnLeftDClick(wxMouseEvent
& event
);
617 void OnMiddleClick(wxMouseEvent
& event
);
620 void OnRightClick(wxMouseEvent
& event
);
623 void OnChar(wxKeyEvent
& event
);
626 void OnSize(wxSizeEvent
& event
);
628 /// Setting/losing focus
629 void OnSetFocus(wxFocusEvent
& event
);
630 void OnKillFocus(wxFocusEvent
& event
);
632 /// Idle-time processing
633 void OnIdle(wxIdleEvent
& event
);
636 void OnScroll(wxScrollWinEvent
& event
);
638 /// Set font, and also default attributes
639 virtual bool SetFont(const wxFont
& font
);
641 /// Set up scrollbars, e.g. after a resize
642 virtual void SetupScrollbars(bool atTop
= false);
644 /// Keyboard navigation
645 virtual bool KeyboardNavigate(int keyCode
, int flags
);
647 /// Paint the background
648 virtual void PaintBackground(wxDC
& dc
);
650 #if wxRICHTEXT_BUFFERED_PAINTING
651 /// Recreate buffer bitmap if necessary
652 virtual bool RecreateBuffer(const wxSize
& size
= wxDefaultSize
);
655 /// Set the selection
656 virtual void DoSetSelection(long from
, long to
, bool scrollCaret
= true);
659 virtual void DoWriteText(const wxString
& value
, int flags
= 0);
661 /// Should we inherit colours?
662 virtual bool ShouldInheritColours() const { return false; }
664 /// Position the caret
665 virtual void PositionCaret();
667 /// Extend the selection, returning true if the selection was
668 /// changed. Selections are in caret positions.
669 virtual bool ExtendSelection(long oldPosition
, long newPosition
, int flags
);
671 /// Scroll into view. This takes a _caret_ position.
672 virtual bool ScrollIntoView(long position
, int keyCode
);
674 /// The caret position is the character position just before the caret.
675 /// A value of -1 means the caret is at the start of the buffer.
676 void SetCaretPosition(long position
, bool showAtLineStart
= false) ;
677 long GetCaretPosition() const { return m_caretPosition
; }
679 /// The adjusted caret position is the character position adjusted to take
680 /// into account whether we're at the start of a paragraph, in which case
681 /// style information should be taken from the next position, not current one.
682 long GetAdjustedCaretPosition(long caretPos
) const;
684 /// Move caret one visual step forward: this may mean setting a flag
685 /// and keeping the same position if we're going from the end of one line
686 /// to the start of the next, which may be the exact same caret position.
687 void MoveCaretForward(long oldPosition
) ;
689 /// Move caret one visual step forward: this may mean setting a flag
690 /// and keeping the same position if we're going from the end of one line
691 /// to the start of the next, which may be the exact same caret position.
692 void MoveCaretBack(long oldPosition
) ;
694 /// Get the caret height and position for the given character position
695 bool GetCaretPositionForIndex(long position
, wxRect
& rect
);
697 /// Gets the line for the visible caret position. If the caret is
698 /// shown at the very end of the line, it means the next character is actually
699 /// on the following line. So let's get the line we're expecting to find
700 /// if this is the case.
701 wxRichTextLine
* GetVisibleLineForCaretPosition(long caretPosition
) const;
703 /// Gets the command processor
704 wxCommandProcessor
* GetCommandProcessor() const { return GetBuffer().GetCommandProcessor(); }
706 /// Delete content if there is a selection, e.g. when pressing a key.
707 /// Returns the new caret position in newPos, or leaves it if there
709 bool DeleteSelectedContent(long* newPos
= NULL
);
711 /// Transform logical to physical
712 wxPoint
GetPhysicalPoint(const wxPoint
& ptLogical
) const;
714 /// Transform physical to logical
715 wxPoint
GetLogicalPoint(const wxPoint
& ptPhysical
) const;
717 /// Finds the caret position for the next word. Direction
718 /// is 1 (forward) or -1 (backwards).
719 virtual long FindNextWordPosition(int direction
= 1) const;
721 /// Is the given position visible on the screen?
722 bool IsPositionVisible(long pos
) const;
724 /// Returns the first visible position in the current view
725 long GetFirstVisiblePosition() const;
727 /// Returns the caret position since the default formatting was changed. As
728 /// soon as this position changes, we no longer reflect the default style
729 /// in the UI. A value of -2 means that we should only reflect the style of the
730 /// content under the caret.
731 long GetCaretPositionForDefaultStyle() const { return m_caretPositionForDefaultStyle
; }
733 /// Set the caret position for the default style that the user is selecting.
734 void SetCaretPositionForDefaultStyle(long pos
) { m_caretPositionForDefaultStyle
= pos
; }
736 /// Should the UI reflect the default style chosen by the user, rather than the style under
738 bool IsDefaultStyleShowing() const { return m_caretPositionForDefaultStyle
!= -2; }
740 /// Convenience function that tells the control to start reflecting the default
741 /// style, since the user is changing it.
742 void SetAndShowDefaultStyle(const wxTextAttr
& attr
)
744 SetDefaultStyle(attr
);
745 SetCaretPositionForDefaultStyle(GetCaretPosition());
748 /// Get the first visible point in the window
749 wxPoint
GetFirstVisiblePoint() const;
753 /// Font names take a long time to retrieve, so cache them (on demand)
754 static const wxArrayString
& GetAvailableFontNames();
755 static void ClearAvailableFontNames();
757 WX_FORWARD_TO_SCROLL_HELPER()
762 virtual wxSize
DoGetBestSize() const ;
764 virtual void DoSetValue(const wxString
& value
, int flags
= 0);
766 virtual void DoThaw();
771 #if wxRICHTEXT_BUFFERED_PAINTING
773 wxBitmap m_bufferBitmap
;
777 wxRichTextBuffer m_buffer
;
779 wxMenu
* m_contextMenu
;
781 /// Caret position (1 less than the character position, so -1 is the
782 /// first caret position).
783 long m_caretPosition
;
785 /// Caret position when the default formatting has been changed. As
786 /// soon as this position changes, we no longer reflect the default style
788 long m_caretPositionForDefaultStyle
;
790 /// Selection range in character positions. -2, -2 means no selection.
791 wxRichTextRange m_selectionRange
;
793 /// Anchor so we know how to extend the selection
794 /// It's a caret position since it's between two characters.
795 long m_selectionAnchor
;
800 /// Are we showing the caret position at the start of a line
801 /// instead of at the end of the previous one?
802 bool m_caretAtLineStart
;
804 /// Are we dragging a selection?
807 /// Start position for drag
810 /// Do we need full layout in idle?
811 bool m_fullLayoutRequired
;
812 wxLongLong m_fullLayoutTime
;
813 long m_fullLayoutSavedPosition
;
815 /// Threshold for doing delayed layout
816 long m_delayedLayoutThreshold
;
819 wxCursor m_textCursor
;
820 wxCursor m_urlCursor
;
822 static wxArrayString sm_availableFontNames
;
826 * wxRichTextEvent - the event class for wxRichTextCtrl notifications
829 class WXDLLIMPEXP_RICHTEXT wxRichTextEvent
: public wxNotifyEvent
832 wxRichTextEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0)
833 : wxNotifyEvent(commandType
, winid
),
834 m_flags(0), m_position(-1), m_oldStyleSheet(NULL
), m_newStyleSheet(NULL
),
838 wxRichTextEvent(const wxRichTextEvent
& event
)
839 : wxNotifyEvent(event
),
840 m_flags(event
.m_flags
), m_position(-1),
841 m_oldStyleSheet(event
.m_oldStyleSheet
), m_newStyleSheet(event
.m_newStyleSheet
),
845 long GetPosition() const { return m_position
; }
846 void SetPosition(long pos
) { m_position
= pos
; }
848 int GetFlags() const { return m_flags
; }
849 void SetFlags(int flags
) { m_flags
= flags
; }
851 wxRichTextStyleSheet
* GetOldStyleSheet() const { return m_oldStyleSheet
; }
852 void SetOldStyleSheet(wxRichTextStyleSheet
* sheet
) { m_oldStyleSheet
= sheet
; }
854 wxRichTextStyleSheet
* GetNewStyleSheet() const { return m_newStyleSheet
; }
855 void SetNewStyleSheet(wxRichTextStyleSheet
* sheet
) { m_newStyleSheet
= sheet
; }
857 const wxRichTextRange
& GetRange() const { return m_range
; }
858 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
860 wxChar
GetCharacter() const { return m_char
; }
861 void SetCharacter(wxChar ch
) { m_char
= ch
; }
863 virtual wxEvent
*Clone() const { return new wxRichTextEvent(*this); }
868 wxRichTextStyleSheet
* m_oldStyleSheet
;
869 wxRichTextStyleSheet
* m_newStyleSheet
;
870 wxRichTextRange m_range
;
874 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxRichTextEvent
)
878 * wxRichTextCtrl events
880 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
;
881 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
;
882 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
;
883 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
;
884 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_RETURN
;
885 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_CHARACTER
;
886 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_DELETE
;
888 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING
;
889 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED
;
890 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING
;
891 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED
;
893 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED
;
894 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED
;
895 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED
;
896 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED
;
897 extern WXDLLIMPEXP_RICHTEXT
const wxEventType wxEVT_COMMAND_RICHTEXT_BUFFER_RESET
;
899 typedef void (wxEvtHandler::*wxRichTextEventFunction
)(wxRichTextEvent
&);
901 #define wxRichTextEventHandler(func) \
902 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxRichTextEventFunction, &func)
904 #define EVT_RICHTEXT_LEFT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
905 #define EVT_RICHTEXT_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
906 #define EVT_RICHTEXT_MIDDLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
907 #define EVT_RICHTEXT_LEFT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
908 #define EVT_RICHTEXT_RETURN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RETURN, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
909 #define EVT_RICHTEXT_CHARACTER(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_CHARACTER, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
910 #define EVT_RICHTEXT_DELETE(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_DELETE, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
912 #define EVT_RICHTEXT_STYLESHEET_CHANGING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
913 #define EVT_RICHTEXT_STYLESHEET_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
914 #define EVT_RICHTEXT_STYLESHEET_REPLACING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
915 #define EVT_RICHTEXT_STYLESHEET_REPLACED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
917 #define EVT_RICHTEXT_CONTENT_INSERTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
918 #define EVT_RICHTEXT_CONTENT_DELETED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
919 #define EVT_RICHTEXT_STYLE_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
920 #define EVT_RICHTEXT_SELECTION_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
921 #define EVT_RICHTEXT_BUFFER_RESET(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_BUFFER_RESET, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
927 // _WX_RICHTEXTCTRL_H_