1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/richtext/richeditctrl.cpp
3 // Purpose: A rich edit control
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/richtext/richtextctrl.h"
22 #include "wx/richtext/richtextstyles.h"
26 #include "wx/settings.h"
30 #include "wx/textfile.h"
32 #include "wx/filename.h"
33 #include "wx/dcbuffer.h"
34 #include "wx/arrimpl.cpp"
35 #include "wx/fontenum.h"
38 // DLL options compatibility check:
40 WX_CHECK_BUILD_OPTIONS("wxRichTextCtrl")
42 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
, wxRichTextEvent
);
43 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
, wxRichTextEvent
);
44 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
, wxRichTextEvent
);
45 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
, wxRichTextEvent
);
46 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_RETURN
, wxRichTextEvent
);
47 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_CHARACTER
, wxRichTextEvent
);
48 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_DELETE
, wxRichTextEvent
);
50 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING
, wxRichTextEvent
);
51 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED
, wxRichTextEvent
);
52 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING
, wxRichTextEvent
);
53 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED
, wxRichTextEvent
);
55 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED
, wxRichTextEvent
);
56 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED
, wxRichTextEvent
);
57 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED
, wxRichTextEvent
);
58 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED
, wxRichTextEvent
);
59 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_BUFFER_RESET
, wxRichTextEvent
);
61 #if wxRICHTEXT_USE_OWN_CARET
66 * This implements a non-flashing cursor in case there
67 * are platform-specific problems with the generic caret.
68 * wxRICHTEXT_USE_OWN_CARET is set in richtextbuffer.h.
71 class wxRichTextCaret
;
72 class wxRichTextCaretTimer
: public wxTimer
75 wxRichTextCaretTimer(wxRichTextCaret
* caret
)
79 virtual void Notify();
80 wxRichTextCaret
* m_caret
;
83 class wxRichTextCaret
: public wxCaret
88 // default - use Create()
89 wxRichTextCaret(): m_timer(this) { Init(); }
90 // creates a block caret associated with the given window
91 wxRichTextCaret(wxRichTextCtrl
*window
, int width
, int height
)
92 : wxCaret(window
, width
, height
), m_timer(this) { Init(); m_richTextCtrl
= window
; }
93 wxRichTextCaret(wxRichTextCtrl
*window
, const wxSize
& size
)
94 : wxCaret(window
, size
), m_timer(this) { Init(); m_richTextCtrl
= window
; }
96 virtual ~wxRichTextCaret();
101 // called by wxWindow (not using the event tables)
102 virtual void OnSetFocus();
103 virtual void OnKillFocus();
105 // draw the caret on the given DC
106 void DoDraw(wxDC
*dc
);
108 // get the visible count
109 int GetVisibleCount() const { return m_countVisible
; }
111 // delay repositioning
112 bool GetNeedsUpdate() const { return m_needsUpdate
; }
113 void SetNeedsUpdate(bool needsUpdate
= true ) { m_needsUpdate
= needsUpdate
; }
118 virtual void DoShow();
119 virtual void DoHide();
120 virtual void DoMove();
121 virtual void DoSize();
131 bool m_hasFocus
; // true => our window has focus
132 bool m_needsUpdate
; // must be repositioned
134 wxRichTextCaretTimer m_timer
;
135 wxRichTextCtrl
* m_richTextCtrl
;
139 IMPLEMENT_DYNAMIC_CLASS( wxRichTextCtrl
, wxTextCtrlBase
)
141 IMPLEMENT_DYNAMIC_CLASS( wxRichTextEvent
, wxNotifyEvent
)
143 BEGIN_EVENT_TABLE( wxRichTextCtrl
, wxTextCtrlBase
)
144 EVT_PAINT(wxRichTextCtrl::OnPaint
)
145 EVT_ERASE_BACKGROUND(wxRichTextCtrl::OnEraseBackground
)
146 EVT_IDLE(wxRichTextCtrl::OnIdle
)
147 EVT_SCROLLWIN(wxRichTextCtrl::OnScroll
)
148 EVT_LEFT_DOWN(wxRichTextCtrl::OnLeftClick
)
149 EVT_MOTION(wxRichTextCtrl::OnMoveMouse
)
150 EVT_LEFT_UP(wxRichTextCtrl::OnLeftUp
)
151 EVT_RIGHT_DOWN(wxRichTextCtrl::OnRightClick
)
152 EVT_MIDDLE_DOWN(wxRichTextCtrl::OnMiddleClick
)
153 EVT_LEFT_DCLICK(wxRichTextCtrl::OnLeftDClick
)
154 EVT_CHAR(wxRichTextCtrl::OnChar
)
155 EVT_KEY_DOWN(wxRichTextCtrl::OnChar
)
156 EVT_SIZE(wxRichTextCtrl::OnSize
)
157 EVT_SET_FOCUS(wxRichTextCtrl::OnSetFocus
)
158 EVT_KILL_FOCUS(wxRichTextCtrl::OnKillFocus
)
159 EVT_MOUSE_CAPTURE_LOST(wxRichTextCtrl::OnCaptureLost
)
160 EVT_CONTEXT_MENU(wxRichTextCtrl::OnContextMenu
)
161 EVT_SYS_COLOUR_CHANGED(wxRichTextCtrl::OnSysColourChanged
)
163 EVT_MENU(wxID_UNDO
, wxRichTextCtrl::OnUndo
)
164 EVT_UPDATE_UI(wxID_UNDO
, wxRichTextCtrl::OnUpdateUndo
)
166 EVT_MENU(wxID_REDO
, wxRichTextCtrl::OnRedo
)
167 EVT_UPDATE_UI(wxID_REDO
, wxRichTextCtrl::OnUpdateRedo
)
169 EVT_MENU(wxID_COPY
, wxRichTextCtrl::OnCopy
)
170 EVT_UPDATE_UI(wxID_COPY
, wxRichTextCtrl::OnUpdateCopy
)
172 EVT_MENU(wxID_PASTE
, wxRichTextCtrl::OnPaste
)
173 EVT_UPDATE_UI(wxID_PASTE
, wxRichTextCtrl::OnUpdatePaste
)
175 EVT_MENU(wxID_CUT
, wxRichTextCtrl::OnCut
)
176 EVT_UPDATE_UI(wxID_CUT
, wxRichTextCtrl::OnUpdateCut
)
178 EVT_MENU(wxID_CLEAR
, wxRichTextCtrl::OnClear
)
179 EVT_UPDATE_UI(wxID_CLEAR
, wxRichTextCtrl::OnUpdateClear
)
181 EVT_MENU(wxID_SELECTALL
, wxRichTextCtrl::OnSelectAll
)
182 EVT_UPDATE_UI(wxID_SELECTALL
, wxRichTextCtrl::OnUpdateSelectAll
)
189 wxArrayString
wxRichTextCtrl::sm_availableFontNames
;
191 wxRichTextCtrl::wxRichTextCtrl()
192 : wxScrollHelper(this)
197 wxRichTextCtrl::wxRichTextCtrl(wxWindow
* parent
,
199 const wxString
& value
,
203 const wxValidator
& validator
,
204 const wxString
& name
)
205 : wxScrollHelper(this)
208 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
212 bool wxRichTextCtrl::Create( wxWindow
* parent
, wxWindowID id
, const wxString
& value
, const wxPoint
& pos
, const wxSize
& size
, long style
,
213 const wxValidator
& validator
, const wxString
& name
)
217 if (!wxTextCtrlBase::Create(parent
, id
, pos
, size
,
218 style
|wxFULL_REPAINT_ON_RESIZE
,
224 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
227 // No physical scrolling, so we can preserve margins
228 EnableScrolling(false, false);
230 if (style
& wxTE_READONLY
)
233 // The base attributes must all have default values
234 wxTextAttr attributes
;
235 attributes
.SetFont(GetFont());
236 attributes
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
237 attributes
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
238 attributes
.SetLineSpacing(10);
239 attributes
.SetParagraphSpacingAfter(10);
240 attributes
.SetParagraphSpacingBefore(0);
242 SetBasicStyle(attributes
);
244 // The default attributes will be merged with base attributes, so
245 // can be empty to begin with
246 wxTextAttr defaultAttributes
;
247 SetDefaultStyle(defaultAttributes
);
249 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
250 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
253 GetBuffer().SetRichTextCtrl(this);
255 #if wxRICHTEXT_USE_OWN_CARET
256 SetCaret(new wxRichTextCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16));
258 SetCaret(new wxCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16));
261 // Tell the sizers to use the given or best size
262 SetInitialSize(size
);
264 #if wxRICHTEXT_BUFFERED_PAINTING
266 RecreateBuffer(size
);
269 m_textCursor
= wxCursor(wxCURSOR_IBEAM
);
270 m_urlCursor
= wxCursor(wxCURSOR_HAND
);
272 SetCursor(m_textCursor
);
274 if (!value
.IsEmpty())
277 GetBuffer().AddEventHandler(this);
280 wxAcceleratorEntry entries
[6];
282 entries
[0].Set(wxACCEL_CMD
, (int) 'C', wxID_COPY
);
283 entries
[1].Set(wxACCEL_CMD
, (int) 'X', wxID_CUT
);
284 entries
[2].Set(wxACCEL_CMD
, (int) 'V', wxID_PASTE
);
285 entries
[3].Set(wxACCEL_CMD
, (int) 'A', wxID_SELECTALL
);
286 entries
[4].Set(wxACCEL_CMD
, (int) 'Z', wxID_UNDO
);
287 entries
[5].Set(wxACCEL_CMD
, (int) 'Y', wxID_REDO
);
289 wxAcceleratorTable
accel(6, entries
);
290 SetAcceleratorTable(accel
);
292 m_contextMenu
= new wxMenu
;
293 m_contextMenu
->Append(wxID_UNDO
, _("&Undo"));
294 m_contextMenu
->Append(wxID_REDO
, _("&Redo"));
295 m_contextMenu
->AppendSeparator();
296 m_contextMenu
->Append(wxID_CUT
, _("Cu&t"));
297 m_contextMenu
->Append(wxID_COPY
, _("&Copy"));
298 m_contextMenu
->Append(wxID_PASTE
, _("&Paste"));
299 m_contextMenu
->Append(wxID_CLEAR
, _("&Delete"));
300 m_contextMenu
->AppendSeparator();
301 m_contextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
306 wxRichTextCtrl::~wxRichTextCtrl()
308 GetBuffer().RemoveEventHandler(this);
310 delete m_contextMenu
;
313 /// Member initialisation
314 void wxRichTextCtrl::Init()
316 m_contextMenu
= NULL
;
318 m_caretPosition
= -1;
319 m_selectionRange
.SetRange(-2, -2);
320 m_selectionAnchor
= -2;
322 m_caretAtLineStart
= false;
324 m_fullLayoutRequired
= false;
325 m_fullLayoutTime
= 0;
326 m_fullLayoutSavedPosition
= 0;
327 m_delayedLayoutThreshold
= wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD
;
328 m_caretPositionForDefaultStyle
= -2;
331 void wxRichTextCtrl::DoThaw()
333 if (GetBuffer().GetDirty())
342 void wxRichTextCtrl::Clear()
344 m_buffer
.ResetAndClearCommands();
345 m_buffer
.SetDirty(true);
346 m_caretPosition
= -1;
347 m_caretPositionForDefaultStyle
= -2;
348 m_caretAtLineStart
= false;
349 m_selectionRange
.SetRange(-2, -2);
359 wxTextCtrl::SendTextUpdatedEvent(this);
363 void wxRichTextCtrl::OnPaint(wxPaintEvent
& WXUNUSED(event
))
365 #if !wxRICHTEXT_USE_OWN_CARET
366 if (GetCaret() && !IsFrozen())
371 #if wxRICHTEXT_BUFFERED_PAINTING
372 wxBufferedPaintDC
dc(this, m_bufferBitmap
);
382 dc
.SetFont(GetFont());
384 // Paint the background
387 // wxRect drawingArea(GetLogicalPoint(wxPoint(0, 0)), GetClientSize());
389 wxRect
drawingArea(GetUpdateRegion().GetBox());
390 drawingArea
.SetPosition(GetLogicalPoint(drawingArea
.GetPosition()));
392 wxRect
availableSpace(GetClientSize());
393 if (GetBuffer().GetDirty())
395 GetBuffer().Layout(dc
, availableSpace
, wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
);
396 GetBuffer().SetDirty(false);
400 wxRect
clipRect(availableSpace
);
401 clipRect
.x
+= GetBuffer().GetLeftMargin();
402 clipRect
.y
+= GetBuffer().GetTopMargin();
403 clipRect
.width
-= (GetBuffer().GetLeftMargin() + GetBuffer().GetRightMargin());
404 clipRect
.height
-= (GetBuffer().GetTopMargin() + GetBuffer().GetBottomMargin());
405 clipRect
.SetPosition(GetLogicalPoint(clipRect
.GetPosition()));
406 dc
.SetClippingRegion(clipRect
);
408 GetBuffer().Draw(dc
, GetBuffer().GetRange(), GetInternalSelectionRange(), drawingArea
, 0 /* descent */, 0 /* flags */);
410 dc
.DestroyClippingRegion();
412 #if wxRICHTEXT_USE_OWN_CARET
413 if (GetCaret()->IsVisible())
415 ((wxRichTextCaret
*) GetCaret())->DoDraw(& dc
);
420 #if !wxRICHTEXT_USE_OWN_CARET
427 // Empty implementation, to prevent flicker
428 void wxRichTextCtrl::OnEraseBackground(wxEraseEvent
& WXUNUSED(event
))
432 void wxRichTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
436 #if !wxRICHTEXT_USE_OWN_CARET
442 #if defined(__WXGTK__) && !wxRICHTEXT_USE_OWN_CARET
443 // Work around dropouts when control is focused
451 void wxRichTextCtrl::OnKillFocus(wxFocusEvent
& WXUNUSED(event
))
456 #if defined(__WXGTK__) && !wxRICHTEXT_USE_OWN_CARET
457 // Work around dropouts when control is focused
465 void wxRichTextCtrl::OnCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
471 void wxRichTextCtrl::OnLeftClick(wxMouseEvent
& event
)
477 dc
.SetFont(GetFont());
480 int hit
= GetBuffer().HitTest(dc
, event
.GetLogicalPosition(dc
), position
);
482 if (hit
!= wxRICHTEXT_HITTEST_NONE
)
484 m_dragStart
= event
.GetLogicalPosition(dc
);
488 bool caretAtLineStart
= false;
490 if (hit
& wxRICHTEXT_HITTEST_BEFORE
)
492 // If we're at the start of a line (but not first in para)
493 // then we should keep the caret showing at the start of the line
494 // by showing the m_caretAtLineStart flag.
495 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
496 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(position
);
498 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
499 caretAtLineStart
= true;
503 long oldCaretPos
= m_caretPosition
;
505 MoveCaret(position
, caretAtLineStart
);
506 SetDefaultStyleToCursorStyle();
508 if (event
.ShiftDown())
510 if (m_selectionRange
.GetStart() == -2)
511 ExtendSelection(oldCaretPos
, m_caretPosition
, wxRICHTEXT_SHIFT_DOWN
);
513 ExtendSelection(m_caretPosition
, m_caretPosition
, wxRICHTEXT_SHIFT_DOWN
);
523 void wxRichTextCtrl::OnLeftUp(wxMouseEvent
& event
)
528 if (GetCapture() == this)
531 // See if we clicked on a URL
534 dc
.SetFont(GetFont());
537 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
538 int hit
= GetBuffer().HitTest(dc
, logicalPt
, position
);
540 if ((hit
!= wxRICHTEXT_HITTEST_NONE
) && !(hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
542 wxRichTextEvent
cmdEvent(
543 wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
,
545 cmdEvent
.SetEventObject(this);
546 cmdEvent
.SetPosition(m_caretPosition
+1);
548 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
551 if (GetStyle(position
, attr
))
553 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
555 wxString urlTarget
= attr
.GetURL();
556 if (!urlTarget
.IsEmpty())
558 wxMouseEvent
mouseEvent(event
);
560 long startPos
= 0, endPos
= 0;
561 wxRichTextObject
* obj
= GetBuffer().GetLeafObjectAtPosition(position
);
564 startPos
= obj
->GetRange().GetStart();
565 endPos
= obj
->GetRange().GetEnd();
568 wxTextUrlEvent
urlEvent(GetId(), mouseEvent
, startPos
, endPos
);
569 InitCommandEvent(urlEvent
);
571 urlEvent
.SetString(urlTarget
);
573 GetEventHandler()->ProcessEvent(urlEvent
);
583 void wxRichTextCtrl::OnMoveMouse(wxMouseEvent
& event
)
587 dc
.SetFont(GetFont());
590 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
591 int hit
= GetBuffer().HitTest(dc
, logicalPt
, position
);
593 // See if we need to change the cursor
596 if (hit
!= wxRICHTEXT_HITTEST_NONE
&& !(hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
599 if (GetStyle(position
, attr
))
601 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
603 SetCursor(m_urlCursor
);
605 else if (!attr
.HasFlag(wxTEXT_ATTR_URL
))
607 SetCursor(m_textCursor
);
612 SetCursor(m_textCursor
);
615 if (!event
.Dragging())
621 if (m_dragging
&& hit
!= wxRICHTEXT_HITTEST_NONE
)
623 // TODO: test closeness
625 bool caretAtLineStart
= false;
627 if (hit
& wxRICHTEXT_HITTEST_BEFORE
)
629 // If we're at the start of a line (but not first in para)
630 // then we should keep the caret showing at the start of the line
631 // by showing the m_caretAtLineStart flag.
632 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
633 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(position
);
635 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
636 caretAtLineStart
= true;
640 if (m_caretPosition
!= position
)
642 ExtendSelection(m_caretPosition
, position
, wxRICHTEXT_SHIFT_DOWN
);
644 MoveCaret(position
, caretAtLineStart
);
645 SetDefaultStyleToCursorStyle();
651 void wxRichTextCtrl::OnRightClick(wxMouseEvent
& event
)
655 wxRichTextEvent
cmdEvent(
656 wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
,
658 cmdEvent
.SetEventObject(this);
659 cmdEvent
.SetPosition(m_caretPosition
+1);
661 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
665 /// Left-double-click
666 void wxRichTextCtrl::OnLeftDClick(wxMouseEvent
& WXUNUSED(event
))
668 wxRichTextEvent
cmdEvent(
669 wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
,
671 cmdEvent
.SetEventObject(this);
672 cmdEvent
.SetPosition(m_caretPosition
+1);
674 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
676 SelectWord(GetCaretPosition()+1);
681 void wxRichTextCtrl::OnMiddleClick(wxMouseEvent
& event
)
683 wxRichTextEvent
cmdEvent(
684 wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
,
686 cmdEvent
.SetEventObject(this);
687 cmdEvent
.SetPosition(m_caretPosition
+1);
689 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
694 void wxRichTextCtrl::OnChar(wxKeyEvent
& event
)
698 flags
|= wxRICHTEXT_CTRL_DOWN
;
699 if (event
.ShiftDown())
700 flags
|= wxRICHTEXT_SHIFT_DOWN
;
702 flags
|= wxRICHTEXT_ALT_DOWN
;
704 if (event
.GetEventType() == wxEVT_KEY_DOWN
)
706 if (event
.IsKeyInCategory(WXK_CATEGORY_NAVIGATION
))
708 KeyboardNavigate(event
.GetKeyCode(), flags
);
712 long keycode
= event
.GetKeyCode();
772 case WXK_NUMPAD_HOME
:
773 case WXK_NUMPAD_LEFT
:
775 case WXK_NUMPAD_RIGHT
:
776 case WXK_NUMPAD_DOWN
:
777 case WXK_NUMPAD_PAGEUP
:
778 case WXK_NUMPAD_PAGEDOWN
:
780 case WXK_NUMPAD_BEGIN
:
781 case WXK_NUMPAD_INSERT
:
782 case WXK_WINDOWS_LEFT
:
791 // Must process this before translation, otherwise it's translated into a WXK_DELETE event.
792 if (event
.CmdDown() && event
.GetKeyCode() == WXK_BACK
)
794 BeginBatchUndo(_("Delete Text"));
796 long newPos
= m_caretPosition
;
798 bool processed
= DeleteSelectedContent(& newPos
);
800 // Submit range in character positions, which are greater than caret positions,
801 // so subtract 1 for deleted character and add 1 for conversion to character position.
806 long pos
= wxRichTextCtrl::FindNextWordPosition(-1);
809 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(pos
+1, newPos
), this);
815 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(newPos
, newPos
), this);
820 if (GetLastPosition() == -1)
824 m_caretPosition
= -1;
826 SetDefaultStyleToCursorStyle();
829 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
831 wxRichTextEvent
cmdEvent(
832 wxEVT_COMMAND_RICHTEXT_DELETE
,
834 cmdEvent
.SetEventObject(this);
835 cmdEvent
.SetFlags(flags
);
836 cmdEvent
.SetPosition(m_caretPosition
+1);
837 GetEventHandler()->ProcessEvent(cmdEvent
);
847 // all the other keys modify the controls contents which shouldn't be
848 // possible if we're read-only
855 if (event
.GetKeyCode() == WXK_RETURN
)
857 BeginBatchUndo(_("Insert Text"));
859 long newPos
= m_caretPosition
;
861 DeleteSelectedContent(& newPos
);
863 if (event
.ShiftDown())
866 text
= wxRichTextLineBreakChar
;
867 GetBuffer().InsertTextWithUndo(newPos
+1, text
, this);
868 m_caretAtLineStart
= true;
872 GetBuffer().InsertNewlineWithUndo(newPos
+1, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
|wxRICHTEXT_INSERT_INTERACTIVE
);
875 SetDefaultStyleToCursorStyle();
877 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
879 wxRichTextEvent
cmdEvent(
880 wxEVT_COMMAND_RICHTEXT_RETURN
,
882 cmdEvent
.SetEventObject(this);
883 cmdEvent
.SetFlags(flags
);
884 cmdEvent
.SetPosition(newPos
+1);
886 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
888 // Generate conventional event
889 wxCommandEvent
textEvent(wxEVT_COMMAND_TEXT_ENTER
, GetId());
890 InitCommandEvent(textEvent
);
892 GetEventHandler()->ProcessEvent(textEvent
);
896 else if (event
.GetKeyCode() == WXK_BACK
)
898 BeginBatchUndo(_("Delete Text"));
900 long newPos
= m_caretPosition
;
902 bool processed
= DeleteSelectedContent(& newPos
);
904 // Submit range in character positions, which are greater than caret positions,
905 // so subtract 1 for deleted character and add 1 for conversion to character position.
910 long pos
= wxRichTextCtrl::FindNextWordPosition(-1);
913 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(pos
+1, newPos
), this);
919 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(newPos
, newPos
), this);
924 if (GetLastPosition() == -1)
928 m_caretPosition
= -1;
930 SetDefaultStyleToCursorStyle();
933 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
935 wxRichTextEvent
cmdEvent(
936 wxEVT_COMMAND_RICHTEXT_DELETE
,
938 cmdEvent
.SetEventObject(this);
939 cmdEvent
.SetFlags(flags
);
940 cmdEvent
.SetPosition(m_caretPosition
+1);
941 GetEventHandler()->ProcessEvent(cmdEvent
);
945 else if (event
.GetKeyCode() == WXK_DELETE
)
947 BeginBatchUndo(_("Delete Text"));
949 long newPos
= m_caretPosition
;
951 bool processed
= DeleteSelectedContent(& newPos
);
953 // Submit range in character positions, which are greater than caret positions,
954 if (newPos
< GetBuffer().GetRange().GetEnd()+1)
958 long pos
= wxRichTextCtrl::FindNextWordPosition(1);
959 if (pos
!= -1 && (pos
> newPos
))
961 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(newPos
+1, pos
), this);
966 if (!processed
&& newPos
< (GetLastPosition()-1))
967 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(newPos
+1, newPos
+1), this);
972 if (GetLastPosition() == -1)
976 m_caretPosition
= -1;
978 SetDefaultStyleToCursorStyle();
981 wxRichTextEvent
cmdEvent(
982 wxEVT_COMMAND_RICHTEXT_DELETE
,
984 cmdEvent
.SetEventObject(this);
985 cmdEvent
.SetFlags(flags
);
986 cmdEvent
.SetPosition(m_caretPosition
+1);
987 GetEventHandler()->ProcessEvent(cmdEvent
);
993 long keycode
= event
.GetKeyCode();
1005 if (event
.CmdDown())
1007 // Fixes AltGr+key with European input languages on Windows
1008 if ((event
.CmdDown() && !event
.AltDown()) || (event
.AltDown() && !event
.CmdDown()))
1015 wxRichTextEvent
cmdEvent(
1016 wxEVT_COMMAND_RICHTEXT_CHARACTER
,
1018 cmdEvent
.SetEventObject(this);
1019 cmdEvent
.SetFlags(flags
);
1021 cmdEvent
.SetCharacter(event
.GetUnicodeKey());
1023 cmdEvent
.SetCharacter((wxChar
) keycode
);
1025 cmdEvent
.SetPosition(m_caretPosition
+1);
1027 if (keycode
== wxT('\t'))
1029 // See if we need to promote or demote the selection or paragraph at the cursor
1030 // position, instead of inserting a tab.
1031 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
1032 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
);
1033 if (para
&& para
->GetRange().GetStart() == pos
&& para
->GetAttributes().HasListStyleName())
1035 wxRichTextRange range
;
1037 range
= GetSelectionRange();
1039 range
= para
->GetRange().FromInternal();
1041 int promoteBy
= event
.ShiftDown() ? 1 : -1;
1043 PromoteList(promoteBy
, range
, NULL
);
1045 GetEventHandler()->ProcessEvent(cmdEvent
);
1051 BeginBatchUndo(_("Insert Text"));
1053 long newPos
= m_caretPosition
;
1054 DeleteSelectedContent(& newPos
);
1057 wxString str
= event
.GetUnicodeKey();
1059 wxString str
= (wxChar
) event
.GetKeyCode();
1061 GetBuffer().InsertTextWithUndo(newPos
+1, str
, this, 0);
1065 SetDefaultStyleToCursorStyle();
1066 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
1068 GetEventHandler()->ProcessEvent(cmdEvent
);
1076 /// Delete content if there is a selection, e.g. when pressing a key.
1077 bool wxRichTextCtrl::DeleteSelectedContent(long* newPos
)
1081 long pos
= m_selectionRange
.GetStart();
1082 wxRichTextRange range
= m_selectionRange
;
1084 // SelectAll causes more to be selected than doing it interactively,
1085 // and causes a new paragraph to be inserted. So for multiline buffers,
1086 // don't delete the final position.
1087 if (range
.GetEnd() == GetLastPosition() && GetNumberOfLines() > 0)
1088 range
.SetEnd(range
.GetEnd()-1);
1090 GetBuffer().DeleteRangeWithUndo(range
, this);
1091 m_selectionRange
.SetRange(-2, -2);
1101 /// Keyboard navigation
1105 Left: left one character
1106 Right: right one character
1109 Ctrl-Left: left one word
1110 Ctrl-Right: right one word
1111 Ctrl-Up: previous paragraph start
1112 Ctrl-Down: next start of paragraph
1115 Ctrl-Home: start of document
1116 Ctrl-End: end of document
1117 Page-Up: Up a screen
1118 Page-Down: Down a screen
1122 Ctrl-Alt-PgUp: Start of window
1123 Ctrl-Alt-PgDn: End of window
1124 F8: Start selection mode
1125 Esc: End selection mode
1127 Adding Shift does the above but starts/extends selection.
1132 bool wxRichTextCtrl::KeyboardNavigate(int keyCode
, int flags
)
1134 bool success
= false;
1136 if (keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
)
1138 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1139 success
= WordRight(1, flags
);
1141 success
= MoveRight(1, flags
);
1143 else if (keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
)
1145 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1146 success
= WordLeft(1, flags
);
1148 success
= MoveLeft(1, flags
);
1150 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
)
1152 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1153 success
= MoveToParagraphStart(flags
);
1155 success
= MoveUp(1, flags
);
1157 else if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
)
1159 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1160 success
= MoveToParagraphEnd(flags
);
1162 success
= MoveDown(1, flags
);
1164 else if (keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1166 success
= PageUp(1, flags
);
1168 else if (keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1170 success
= PageDown(1, flags
);
1172 else if (keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
)
1174 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1175 success
= MoveHome(flags
);
1177 success
= MoveToLineStart(flags
);
1179 else if (keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
)
1181 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1182 success
= MoveEnd(flags
);
1184 success
= MoveToLineEnd(flags
);
1189 ScrollIntoView(m_caretPosition
, keyCode
);
1190 SetDefaultStyleToCursorStyle();
1196 /// Extend the selection. Selections are in caret positions.
1197 bool wxRichTextCtrl::ExtendSelection(long oldPos
, long newPos
, int flags
)
1199 if (flags
& wxRICHTEXT_SHIFT_DOWN
)
1201 if (oldPos
== newPos
)
1204 wxRichTextRange oldSelection
= m_selectionRange
;
1206 // If not currently selecting, start selecting
1207 if (m_selectionRange
.GetStart() == -2)
1209 m_selectionAnchor
= oldPos
;
1211 if (oldPos
> newPos
)
1212 m_selectionRange
.SetRange(newPos
+1, oldPos
);
1214 m_selectionRange
.SetRange(oldPos
+1, newPos
);
1218 // Always ensure that the selection range start is greater than
1220 if (newPos
> m_selectionAnchor
)
1221 m_selectionRange
.SetRange(m_selectionAnchor
+1, newPos
);
1222 else if (newPos
== m_selectionAnchor
)
1223 m_selectionRange
= wxRichTextRange(-2, -2);
1225 m_selectionRange
.SetRange(newPos
+1, m_selectionAnchor
);
1228 RefreshForSelectionChange(oldSelection
, m_selectionRange
);
1230 if (m_selectionRange
.GetStart() > m_selectionRange
.GetEnd())
1232 wxLogDebug(wxT("Strange selection range"));
1241 /// Scroll into view, returning true if we scrolled.
1242 /// This takes a _caret_ position.
1243 bool wxRichTextCtrl::ScrollIntoView(long position
, int keyCode
)
1245 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(position
);
1251 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1253 int startXUnits
, startYUnits
;
1254 GetViewStart(& startXUnits
, & startYUnits
);
1255 int startY
= startYUnits
* ppuY
;
1258 GetVirtualSize(& sx
, & sy
);
1264 wxRect rect
= line
->GetRect();
1266 bool scrolled
= false;
1268 wxSize clientSize
= GetClientSize();
1269 clientSize
.y
-= GetBuffer().GetBottomMargin();
1271 if (GetWindowStyle() & wxRE_CENTRE_CARET
)
1273 int y
= rect
.y
- GetClientSize().y
/2;
1274 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1275 if (y
>= 0 && (y
+ clientSize
.y
) < GetBuffer().GetCachedSize().y
)
1277 if (startYUnits
!= yUnits
)
1279 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1282 #if !wxRICHTEXT_USE_OWN_CARET
1292 if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
||
1293 keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
||
1294 keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
||
1295 keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1297 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1299 // Make it scroll so this item is at the bottom
1301 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1302 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1304 // If we're still off the screen, scroll another line down
1305 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1308 if (startYUnits
!= yUnits
)
1310 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1314 else if (rect
.y
< (startY
+ GetBuffer().GetTopMargin()))
1316 // Make it scroll so this item is at the top
1318 int y
= rect
.y
- GetBuffer().GetTopMargin();
1319 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1321 if (startYUnits
!= yUnits
)
1323 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1329 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
||
1330 keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
||
1331 keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
||
1332 keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1334 if (rect
.y
< (startY
+ GetBuffer().GetBottomMargin()))
1336 // Make it scroll so this item is at the top
1338 int y
= rect
.y
- GetBuffer().GetTopMargin();
1339 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1341 if (startYUnits
!= yUnits
)
1343 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1347 else if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1349 // Make it scroll so this item is at the bottom
1351 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1352 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1354 // If we're still off the screen, scroll another line down
1355 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1358 if (startYUnits
!= yUnits
)
1360 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1366 #if !wxRICHTEXT_USE_OWN_CARET
1374 /// Is the given position visible on the screen?
1375 bool wxRichTextCtrl::IsPositionVisible(long pos
) const
1377 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(pos
-1);
1383 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1386 GetViewStart(& startX
, & startY
);
1388 startY
= startY
* ppuY
;
1390 wxRect rect
= line
->GetRect();
1391 wxSize clientSize
= GetClientSize();
1392 clientSize
.y
-= GetBuffer().GetBottomMargin();
1394 return (rect
.GetBottom() > (startY
+ GetBuffer().GetTopMargin())) && (rect
.GetTop() < (startY
+ clientSize
.y
));
1397 void wxRichTextCtrl::SetCaretPosition(long position
, bool showAtLineStart
)
1399 m_caretPosition
= position
;
1400 m_caretAtLineStart
= showAtLineStart
;
1403 /// Move caret one visual step forward: this may mean setting a flag
1404 /// and keeping the same position if we're going from the end of one line
1405 /// to the start of the next, which may be the exact same caret position.
1406 void wxRichTextCtrl::MoveCaretForward(long oldPosition
)
1408 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(oldPosition
);
1410 // Only do the check if we're not at the end of the paragraph (where things work OK
1412 if (para
&& (oldPosition
!= para
->GetRange().GetEnd() - 1))
1414 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(oldPosition
);
1418 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1420 // We're at the end of a line. See whether we need to
1421 // stay at the same actual caret position but change visual
1422 // position, or not.
1423 if (oldPosition
== lineRange
.GetEnd())
1425 if (m_caretAtLineStart
)
1427 // We're already at the start of the line, so actually move on now.
1428 m_caretPosition
= oldPosition
+ 1;
1429 m_caretAtLineStart
= false;
1433 // We're showing at the end of the line, so keep to
1434 // the same position but indicate that we're to show
1435 // at the start of the next line.
1436 m_caretPosition
= oldPosition
;
1437 m_caretAtLineStart
= true;
1439 SetDefaultStyleToCursorStyle();
1445 SetDefaultStyleToCursorStyle();
1448 /// Move caret one visual step backward: this may mean setting a flag
1449 /// and keeping the same position if we're going from the end of one line
1450 /// to the start of the next, which may be the exact same caret position.
1451 void wxRichTextCtrl::MoveCaretBack(long oldPosition
)
1453 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(oldPosition
);
1455 // Only do the check if we're not at the start of the paragraph (where things work OK
1457 if (para
&& (oldPosition
!= para
->GetRange().GetStart()))
1459 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(oldPosition
);
1463 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1465 // We're at the start of a line. See whether we need to
1466 // stay at the same actual caret position but change visual
1467 // position, or not.
1468 if (oldPosition
== lineRange
.GetStart())
1470 m_caretPosition
= oldPosition
-1;
1471 m_caretAtLineStart
= true;
1474 else if (oldPosition
== lineRange
.GetEnd())
1476 if (m_caretAtLineStart
)
1478 // We're at the start of the line, so keep the same caret position
1479 // but clear the start-of-line flag.
1480 m_caretPosition
= oldPosition
;
1481 m_caretAtLineStart
= false;
1485 // We're showing at the end of the line, so go back
1486 // to the previous character position.
1487 m_caretPosition
= oldPosition
- 1;
1489 SetDefaultStyleToCursorStyle();
1495 SetDefaultStyleToCursorStyle();
1499 bool wxRichTextCtrl::MoveRight(int noPositions
, int flags
)
1501 long endPos
= GetBuffer().GetRange().GetEnd();
1503 if (m_caretPosition
+ noPositions
< endPos
)
1505 long oldPos
= m_caretPosition
;
1506 long newPos
= m_caretPosition
+ noPositions
;
1508 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1512 // Determine by looking at oldPos and m_caretPosition whether
1513 // we moved from the end of a line to the start of the next line, in which case
1514 // we want to adjust the caret position such that it is positioned at the
1515 // start of the next line, rather than jumping past the first character of the
1517 if (noPositions
== 1 && !extendSel
)
1518 MoveCaretForward(oldPos
);
1520 SetCaretPosition(newPos
);
1523 SetDefaultStyleToCursorStyle();
1532 bool wxRichTextCtrl::MoveLeft(int noPositions
, int flags
)
1536 if (m_caretPosition
> startPos
- noPositions
+ 1)
1538 long oldPos
= m_caretPosition
;
1539 long newPos
= m_caretPosition
- noPositions
;
1540 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1544 if (noPositions
== 1 && !extendSel
)
1545 MoveCaretBack(oldPos
);
1547 SetCaretPosition(newPos
);
1550 SetDefaultStyleToCursorStyle();
1559 bool wxRichTextCtrl::MoveUp(int noLines
, int flags
)
1561 return MoveDown(- noLines
, flags
);
1565 bool wxRichTextCtrl::MoveDown(int noLines
, int flags
)
1570 long lineNumber
= GetBuffer().GetVisibleLineNumber(m_caretPosition
, true, m_caretAtLineStart
);
1571 wxPoint pt
= GetCaret()->GetPosition();
1572 long newLine
= lineNumber
+ noLines
;
1574 if (lineNumber
!= -1)
1578 long lastLine
= GetBuffer().GetVisibleLineNumber(GetBuffer().GetRange().GetEnd());
1580 if (newLine
> lastLine
)
1590 wxRichTextLine
* lineObj
= GetBuffer().GetLineForVisibleLineNumber(newLine
);
1593 pt
.y
= lineObj
->GetAbsolutePosition().y
+ 2;
1599 wxClientDC
dc(this);
1601 dc
.SetFont(GetFont());
1603 int hitTest
= GetBuffer().HitTest(dc
, pt
, newPos
);
1605 if (hitTest
!= wxRICHTEXT_HITTEST_NONE
)
1607 // If end of previous line, and hitTest is wxRICHTEXT_HITTEST_BEFORE,
1608 // we want to be at the end of the last line but with m_caretAtLineStart set to true,
1609 // so we view the caret at the start of the line.
1610 bool caretLineStart
= false;
1611 if (hitTest
& wxRICHTEXT_HITTEST_BEFORE
)
1613 wxRichTextLine
* thisLine
= GetBuffer().GetLineAtPosition(newPos
-1);
1614 wxRichTextRange lineRange
;
1616 lineRange
= thisLine
->GetAbsoluteRange();
1618 if (thisLine
&& (newPos
-1) == lineRange
.GetEnd())
1621 caretLineStart
= true;
1625 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(newPos
);
1626 if (para
&& para
->GetRange().GetStart() == newPos
)
1631 long newSelEnd
= newPos
;
1633 bool extendSel
= ExtendSelection(m_caretPosition
, newSelEnd
, flags
);
1637 SetCaretPosition(newPos
, caretLineStart
);
1639 SetDefaultStyleToCursorStyle();
1647 /// Move to the end of the paragraph
1648 bool wxRichTextCtrl::MoveToParagraphEnd(int flags
)
1650 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(m_caretPosition
, true);
1653 long newPos
= para
->GetRange().GetEnd() - 1;
1654 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1658 SetCaretPosition(newPos
);
1660 SetDefaultStyleToCursorStyle();
1668 /// Move to the start of the paragraph
1669 bool wxRichTextCtrl::MoveToParagraphStart(int flags
)
1671 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(m_caretPosition
, true);
1674 long newPos
= para
->GetRange().GetStart() - 1;
1675 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1679 SetCaretPosition(newPos
);
1681 SetDefaultStyleToCursorStyle();
1689 /// Move to the end of the line
1690 bool wxRichTextCtrl::MoveToLineEnd(int flags
)
1692 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1696 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1697 long newPos
= lineRange
.GetEnd();
1698 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1702 SetCaretPosition(newPos
);
1704 SetDefaultStyleToCursorStyle();
1712 /// Move to the start of the line
1713 bool wxRichTextCtrl::MoveToLineStart(int flags
)
1715 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1718 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1719 long newPos
= lineRange
.GetStart()-1;
1721 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1725 wxRichTextParagraph
* para
= GetBuffer().GetParagraphForLine(line
);
1727 SetCaretPosition(newPos
, para
->GetRange().GetStart() != lineRange
.GetStart());
1729 SetDefaultStyleToCursorStyle();
1737 /// Move to the start of the buffer
1738 bool wxRichTextCtrl::MoveHome(int flags
)
1740 if (m_caretPosition
!= -1)
1742 bool extendSel
= ExtendSelection(m_caretPosition
, -1, flags
);
1746 SetCaretPosition(-1);
1748 SetDefaultStyleToCursorStyle();
1756 /// Move to the end of the buffer
1757 bool wxRichTextCtrl::MoveEnd(int flags
)
1759 long endPos
= GetBuffer().GetRange().GetEnd()-1;
1761 if (m_caretPosition
!= endPos
)
1763 bool extendSel
= ExtendSelection(m_caretPosition
, endPos
, flags
);
1767 SetCaretPosition(endPos
);
1769 SetDefaultStyleToCursorStyle();
1777 /// Move noPages pages up
1778 bool wxRichTextCtrl::PageUp(int noPages
, int flags
)
1780 return PageDown(- noPages
, flags
);
1783 /// Move noPages pages down
1784 bool wxRichTextCtrl::PageDown(int noPages
, int flags
)
1786 // Calculate which line occurs noPages * screen height further down.
1787 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1790 wxSize clientSize
= GetClientSize();
1791 int newY
= line
->GetAbsolutePosition().y
+ noPages
*clientSize
.y
;
1793 wxRichTextLine
* newLine
= GetBuffer().GetLineAtYPosition(newY
);
1796 wxRichTextRange lineRange
= newLine
->GetAbsoluteRange();
1797 long pos
= lineRange
.GetStart()-1;
1798 if (pos
!= m_caretPosition
)
1800 wxRichTextParagraph
* para
= GetBuffer().GetParagraphForLine(newLine
);
1802 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1806 SetCaretPosition(pos
, para
->GetRange().GetStart() != lineRange
.GetStart());
1808 SetDefaultStyleToCursorStyle();
1818 static bool wxRichTextCtrlIsWhitespace(const wxString
& str
)
1820 return str
== wxT(" ") || str
== wxT("\t");
1823 // Finds the caret position for the next word
1824 long wxRichTextCtrl::FindNextWordPosition(int direction
) const
1826 long endPos
= GetBuffer().GetRange().GetEnd();
1830 long i
= m_caretPosition
+1+direction
; // +1 for conversion to character pos
1832 // First skip current text to space
1833 while (i
< endPos
&& i
> -1)
1835 // i is in character, not caret positions
1836 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1837 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(i
, false);
1838 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
1842 else if (!wxRichTextCtrlIsWhitespace(text
) && !text
.empty())
1849 while (i
< endPos
&& i
> -1)
1851 // i is in character, not caret positions
1852 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1853 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(i
, false);
1854 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
1855 return wxMax(-1, i
);
1857 if (text
.empty()) // End of paragraph, or maybe an image
1858 return wxMax(-1, i
- 1);
1859 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
1863 // Convert to caret position
1864 return wxMax(-1, i
- 1);
1873 long i
= m_caretPosition
;
1875 // First skip white space
1876 while (i
< endPos
&& i
> -1)
1878 // i is in character, not caret positions
1879 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1880 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(i
, false);
1882 if (text
.empty() || (line
&& (i
== line
->GetAbsoluteRange().GetStart()))) // End of paragraph, or maybe an image
1884 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
1889 // Next skip current text to space
1890 while (i
< endPos
&& i
> -1)
1892 // i is in character, not caret positions
1893 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1894 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(i
, false);
1895 if (line
&& line
->GetAbsoluteRange().GetStart() == i
)
1898 if (!wxRichTextCtrlIsWhitespace(text
) /* && !text.empty() */)
1911 /// Move n words left
1912 bool wxRichTextCtrl::WordLeft(int WXUNUSED(n
), int flags
)
1914 long pos
= FindNextWordPosition(-1);
1915 if (pos
!= m_caretPosition
)
1917 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
, true);
1919 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1923 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
1925 SetDefaultStyleToCursorStyle();
1933 /// Move n words right
1934 bool wxRichTextCtrl::WordRight(int WXUNUSED(n
), int flags
)
1936 long pos
= FindNextWordPosition(1);
1937 if (pos
!= m_caretPosition
)
1939 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
, true);
1941 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1945 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
1947 SetDefaultStyleToCursorStyle();
1956 void wxRichTextCtrl::OnSize(wxSizeEvent
& event
)
1958 // Only do sizing optimization for large buffers
1959 if (GetBuffer().GetRange().GetEnd() > m_delayedLayoutThreshold
)
1961 m_fullLayoutRequired
= true;
1962 m_fullLayoutTime
= wxGetLocalTimeMillis();
1963 m_fullLayoutSavedPosition
= GetFirstVisiblePosition();
1964 LayoutContent(true /* onlyVisibleRect */);
1967 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
1969 #if wxRICHTEXT_BUFFERED_PAINTING
1977 /// Idle-time processing
1978 void wxRichTextCtrl::OnIdle(wxIdleEvent
& event
)
1980 #if wxRICHTEXT_USE_OWN_CARET
1981 if (((wxRichTextCaret
*) GetCaret())->GetNeedsUpdate())
1983 ((wxRichTextCaret
*) GetCaret())->SetNeedsUpdate(false);
1989 const int layoutInterval
= wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL
;
1991 if (m_fullLayoutRequired
&& (wxGetLocalTimeMillis() > (m_fullLayoutTime
+ layoutInterval
)))
1993 m_fullLayoutRequired
= false;
1994 m_fullLayoutTime
= 0;
1995 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
1996 ShowPosition(m_fullLayoutSavedPosition
);
2000 if (m_caretPositionForDefaultStyle
!= -2)
2002 // If the caret position has changed, no longer reflect the default style
2004 if (GetCaretPosition() != m_caretPositionForDefaultStyle
)
2005 m_caretPositionForDefaultStyle
= -2;
2012 void wxRichTextCtrl::OnScroll(wxScrollWinEvent
& event
)
2014 #if wxRICHTEXT_USE_OWN_CARET
2015 if (!((wxRichTextCaret
*) GetCaret())->GetNeedsUpdate())
2018 ((wxRichTextCaret
*) GetCaret())->SetNeedsUpdate();
2025 /// Set up scrollbars, e.g. after a resize
2026 void wxRichTextCtrl::SetupScrollbars(bool atTop
)
2031 if (GetBuffer().IsEmpty())
2033 SetScrollbars(0, 0, 0, 0, 0, 0);
2037 // TODO: reimplement scrolling so we scroll by line, not by fixed number
2038 // of pixels. See e.g. wxVScrolledWindow for ideas.
2039 int pixelsPerUnit
= 5;
2040 wxSize clientSize
= GetClientSize();
2042 int maxHeight
= GetBuffer().GetCachedSize().y
+ GetBuffer().GetTopMargin();
2044 // Round up so we have at least maxHeight pixels
2045 int unitsY
= (int) (((float)maxHeight
/(float)pixelsPerUnit
) + 0.5);
2047 int startX
= 0, startY
= 0;
2049 GetViewStart(& startX
, & startY
);
2051 int maxPositionX
= 0;
2052 int maxPositionY
= (int) ((((float)(wxMax((unitsY
*pixelsPerUnit
) - clientSize
.y
, 0)))/((float)pixelsPerUnit
)) + 0.5);
2054 int newStartX
= wxMin(maxPositionX
, startX
);
2055 int newStartY
= wxMin(maxPositionY
, startY
);
2057 int oldPPUX
, oldPPUY
;
2058 int oldStartX
, oldStartY
;
2059 int oldVirtualSizeX
= 0, oldVirtualSizeY
= 0;
2060 GetScrollPixelsPerUnit(& oldPPUX
, & oldPPUY
);
2061 GetViewStart(& oldStartX
, & oldStartY
);
2062 GetVirtualSize(& oldVirtualSizeX
, & oldVirtualSizeY
);
2064 oldVirtualSizeY
/= oldPPUY
;
2066 if (oldPPUX
== 0 && oldPPUY
== pixelsPerUnit
&& oldVirtualSizeY
== unitsY
&& oldStartX
== newStartX
&& oldStartY
== newStartY
)
2069 // Don't set scrollbars if there were none before, and there will be none now.
2070 if (oldPPUY
!= 0 && (oldVirtualSizeY
*oldPPUY
< clientSize
.y
) && (unitsY
*pixelsPerUnit
< clientSize
.y
))
2073 // Move to previous scroll position if
2075 SetScrollbars(0, pixelsPerUnit
, 0, unitsY
, newStartX
, newStartY
);
2078 /// Paint the background
2079 void wxRichTextCtrl::PaintBackground(wxDC
& dc
)
2081 wxColour backgroundColour
= GetBackgroundColour();
2082 if (!backgroundColour
.Ok())
2083 backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
2085 // Clear the background
2086 dc
.SetBrush(wxBrush(backgroundColour
));
2087 dc
.SetPen(*wxTRANSPARENT_PEN
);
2088 wxRect
windowRect(GetClientSize());
2089 windowRect
.x
-= 2; windowRect
.y
-= 2;
2090 windowRect
.width
+= 4; windowRect
.height
+= 4;
2092 // We need to shift the rectangle to take into account
2093 // scrolling. Converting device to logical coordinates.
2094 CalcUnscrolledPosition(windowRect
.x
, windowRect
.y
, & windowRect
.x
, & windowRect
.y
);
2095 dc
.DrawRectangle(windowRect
);
2098 #if wxRICHTEXT_BUFFERED_PAINTING
2099 /// Recreate buffer bitmap if necessary
2100 bool wxRichTextCtrl::RecreateBuffer(const wxSize
& size
)
2103 if (sz
== wxDefaultSize
)
2104 sz
= GetClientSize();
2106 if (sz
.x
< 1 || sz
.y
< 1)
2109 if (!m_bufferBitmap
.Ok() || m_bufferBitmap
.GetWidth() < sz
.x
|| m_bufferBitmap
.GetHeight() < sz
.y
)
2110 m_bufferBitmap
= wxBitmap(sz
.x
, sz
.y
);
2111 return m_bufferBitmap
.Ok();
2115 // ----------------------------------------------------------------------------
2116 // file IO functions
2117 // ----------------------------------------------------------------------------
2119 bool wxRichTextCtrl::DoLoadFile(const wxString
& filename
, int fileType
)
2121 bool success
= GetBuffer().LoadFile(filename
, (wxRichTextFileType
)fileType
);
2123 m_filename
= filename
;
2126 SetInsertionPoint(0);
2129 SetupScrollbars(true);
2131 wxTextCtrl::SendTextUpdatedEvent(this);
2137 wxLogError(_("File couldn't be loaded."));
2143 bool wxRichTextCtrl::DoSaveFile(const wxString
& filename
, int fileType
)
2145 if (GetBuffer().SaveFile(filename
, (wxRichTextFileType
)fileType
))
2147 m_filename
= filename
;
2154 wxLogError(_("The text couldn't be saved."));
2159 // ----------------------------------------------------------------------------
2160 // wxRichTextCtrl specific functionality
2161 // ----------------------------------------------------------------------------
2163 /// Add a new paragraph of text to the end of the buffer
2164 wxRichTextRange
wxRichTextCtrl::AddParagraph(const wxString
& text
)
2166 wxRichTextRange range
= GetBuffer().AddParagraph(text
);
2172 wxRichTextRange
wxRichTextCtrl::AddImage(const wxImage
& image
)
2174 wxRichTextRange range
= GetBuffer().AddImage(image
);
2179 // ----------------------------------------------------------------------------
2180 // selection and ranges
2181 // ----------------------------------------------------------------------------
2183 void wxRichTextCtrl::SelectAll()
2185 SetSelection(-1, -1);
2189 void wxRichTextCtrl::SelectNone()
2191 if (!(GetSelectionRange() == wxRichTextRange(-2, -2)))
2193 wxRichTextRange oldSelection
= m_selectionRange
;
2195 m_selectionRange
= wxRichTextRange(-2, -2);
2197 RefreshForSelectionChange(oldSelection
, m_selectionRange
);
2199 m_selectionAnchor
= -2;
2202 static bool wxIsWordDelimiter(const wxString
& text
)
2204 return !text
.IsEmpty() && !wxIsalnum(text
[0]);
2207 /// Select the word at the given character position
2208 bool wxRichTextCtrl::SelectWord(long position
)
2210 if (position
< 0 || position
> GetBuffer().GetRange().GetEnd())
2213 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
2217 if (position
== para
->GetRange().GetEnd())
2220 long positionStart
= position
;
2221 long positionEnd
= position
;
2223 for (positionStart
= position
; positionStart
>= para
->GetRange().GetStart(); positionStart
--)
2225 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(positionStart
, positionStart
));
2226 if (wxIsWordDelimiter(text
))
2232 if (positionStart
< para
->GetRange().GetStart())
2233 positionStart
= para
->GetRange().GetStart();
2235 for (positionEnd
= position
; positionEnd
< para
->GetRange().GetEnd(); positionEnd
++)
2237 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(positionEnd
, positionEnd
));
2238 if (wxIsWordDelimiter(text
))
2244 if (positionEnd
>= para
->GetRange().GetEnd())
2245 positionEnd
= para
->GetRange().GetEnd();
2247 if (positionEnd
< positionStart
)
2250 SetSelection(positionStart
, positionEnd
+1);
2252 if (positionStart
>= 0)
2254 MoveCaret(positionStart
-1, true);
2255 SetDefaultStyleToCursorStyle();
2261 wxString
wxRichTextCtrl::GetStringSelection() const
2264 GetSelection(&from
, &to
);
2266 return GetRange(from
, to
);
2269 // ----------------------------------------------------------------------------
2271 // ----------------------------------------------------------------------------
2273 wxTextCtrlHitTestResult
2274 wxRichTextCtrl::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
2276 // implement in terms of the other overload as the native ports typically
2277 // can get the position and not (x, y) pair directly (although wxUniv
2278 // directly gets x and y -- and so overrides this method as well)
2280 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
2282 if ( rc
!= wxTE_HT_UNKNOWN
)
2284 PositionToXY(pos
, x
, y
);
2290 wxTextCtrlHitTestResult
2291 wxRichTextCtrl::HitTest(const wxPoint
& pt
,
2294 wxClientDC
dc((wxRichTextCtrl
*) this);
2295 ((wxRichTextCtrl
*)this)->PrepareDC(dc
);
2297 // Buffer uses logical position (relative to start of buffer)
2299 wxPoint pt2
= GetLogicalPoint(pt
);
2301 int hit
= ((wxRichTextCtrl
*)this)->GetBuffer().HitTest(dc
, pt2
, *pos
);
2303 if ((hit
& wxRICHTEXT_HITTEST_BEFORE
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2304 return wxTE_HT_BEFORE
;
2305 else if ((hit
& wxRICHTEXT_HITTEST_AFTER
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2306 return wxTE_HT_BEYOND
;
2307 else if (hit
& (wxRICHTEXT_HITTEST_BEFORE
|wxRICHTEXT_HITTEST_AFTER
))
2308 return wxTE_HT_ON_TEXT
;
2310 return wxTE_HT_UNKNOWN
;
2313 // ----------------------------------------------------------------------------
2314 // set/get the controls text
2315 // ----------------------------------------------------------------------------
2317 wxString
wxRichTextCtrl::DoGetValue() const
2319 return GetBuffer().GetText();
2322 wxString
wxRichTextCtrl::GetRange(long from
, long to
) const
2324 // Public API for range is different from internals
2325 return GetBuffer().GetTextForRange(wxRichTextRange(from
, to
-1));
2328 void wxRichTextCtrl::DoSetValue(const wxString
& value
, int flags
)
2330 // Don't call Clear here, since it always sends a text updated event
2331 m_buffer
.ResetAndClearCommands();
2332 m_buffer
.SetDirty(true);
2333 m_caretPosition
= -1;
2334 m_caretPositionForDefaultStyle
= -2;
2335 m_caretAtLineStart
= false;
2336 m_selectionRange
.SetRange(-2, -2);
2346 if (!value
.IsEmpty())
2348 // Remove empty paragraph
2349 GetBuffer().Clear();
2350 DoWriteText(value
, flags
);
2352 // for compatibility, don't move the cursor when doing SetValue()
2353 SetInsertionPoint(0);
2357 // still send an event for consistency
2358 if (flags
& SetValue_SendEvent
)
2359 wxTextCtrl::SendTextUpdatedEvent(this);
2364 void wxRichTextCtrl::WriteText(const wxString
& value
)
2369 void wxRichTextCtrl::DoWriteText(const wxString
& value
, int flags
)
2371 wxString valueUnix
= wxTextFile::Translate(value
, wxTextFileType_Unix
);
2373 GetBuffer().InsertTextWithUndo(m_caretPosition
+1, valueUnix
, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2375 if ( flags
& SetValue_SendEvent
)
2376 wxTextCtrl::SendTextUpdatedEvent(this);
2379 void wxRichTextCtrl::AppendText(const wxString
& text
)
2381 SetInsertionPointEnd();
2386 /// Write an image at the current insertion point
2387 bool wxRichTextCtrl::WriteImage(const wxImage
& image
, wxBitmapType bitmapType
)
2389 wxRichTextImageBlock imageBlock
;
2391 wxImage image2
= image
;
2392 if (imageBlock
.MakeImageBlock(image2
, bitmapType
))
2393 return WriteImage(imageBlock
);
2398 bool wxRichTextCtrl::WriteImage(const wxString
& filename
, wxBitmapType bitmapType
)
2400 wxRichTextImageBlock imageBlock
;
2403 if (imageBlock
.MakeImageBlock(filename
, bitmapType
, image
, false))
2404 return WriteImage(imageBlock
);
2409 bool wxRichTextCtrl::WriteImage(const wxRichTextImageBlock
& imageBlock
)
2411 return GetBuffer().InsertImageWithUndo(m_caretPosition
+1, imageBlock
, this);
2414 bool wxRichTextCtrl::WriteImage(const wxBitmap
& bitmap
, wxBitmapType bitmapType
)
2418 wxRichTextImageBlock imageBlock
;
2420 wxImage image
= bitmap
.ConvertToImage();
2421 if (image
.Ok() && imageBlock
.MakeImageBlock(image
, bitmapType
))
2422 return WriteImage(imageBlock
);
2428 /// Insert a newline (actually paragraph) at the current insertion point.
2429 bool wxRichTextCtrl::Newline()
2431 return GetBuffer().InsertNewlineWithUndo(m_caretPosition
+1, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2434 /// Insert a line break at the current insertion point.
2435 bool wxRichTextCtrl::LineBreak()
2438 text
= wxRichTextLineBreakChar
;
2439 return GetBuffer().InsertTextWithUndo(m_caretPosition
+1, text
, this);
2442 // ----------------------------------------------------------------------------
2443 // Clipboard operations
2444 // ----------------------------------------------------------------------------
2446 void wxRichTextCtrl::Copy()
2450 wxRichTextRange range
= GetInternalSelectionRange();
2451 GetBuffer().CopyToClipboard(range
);
2455 void wxRichTextCtrl::Cut()
2459 wxRichTextRange range
= GetInternalSelectionRange();
2460 GetBuffer().CopyToClipboard(range
);
2462 DeleteSelectedContent();
2468 void wxRichTextCtrl::Paste()
2472 BeginBatchUndo(_("Paste"));
2474 long newPos
= m_caretPosition
;
2475 DeleteSelectedContent(& newPos
);
2477 GetBuffer().PasteFromClipboard(newPos
);
2483 void wxRichTextCtrl::DeleteSelection()
2485 if (CanDeleteSelection())
2487 DeleteSelectedContent();
2491 bool wxRichTextCtrl::HasSelection() const
2493 return m_selectionRange
.GetStart() != -2 && m_selectionRange
.GetEnd() != -2;
2496 bool wxRichTextCtrl::CanCopy() const
2498 // Can copy if there's a selection
2499 return HasSelection();
2502 bool wxRichTextCtrl::CanCut() const
2504 return HasSelection() && IsEditable();
2507 bool wxRichTextCtrl::CanPaste() const
2509 if ( !IsEditable() )
2512 return GetBuffer().CanPasteFromClipboard();
2515 bool wxRichTextCtrl::CanDeleteSelection() const
2517 return HasSelection() && IsEditable();
2521 // ----------------------------------------------------------------------------
2523 // ----------------------------------------------------------------------------
2525 void wxRichTextCtrl::SetContextMenu(wxMenu
* menu
)
2527 if (m_contextMenu
&& m_contextMenu
!= menu
)
2528 delete m_contextMenu
;
2529 m_contextMenu
= menu
;
2532 void wxRichTextCtrl::SetEditable(bool editable
)
2534 m_editable
= editable
;
2537 void wxRichTextCtrl::SetInsertionPoint(long pos
)
2541 m_caretPosition
= pos
- 1;
2545 SetDefaultStyleToCursorStyle();
2548 void wxRichTextCtrl::SetInsertionPointEnd()
2550 long pos
= GetLastPosition();
2551 SetInsertionPoint(pos
);
2554 long wxRichTextCtrl::GetInsertionPoint() const
2556 return m_caretPosition
+1;
2559 wxTextPos
wxRichTextCtrl::GetLastPosition() const
2561 return GetBuffer().GetRange().GetEnd();
2564 // If the return values from and to are the same, there is no
2566 void wxRichTextCtrl::GetSelection(long* from
, long* to
) const
2568 *from
= m_selectionRange
.GetStart();
2569 *to
= m_selectionRange
.GetEnd();
2570 if ((*to
) != -1 && (*to
) != -2)
2574 bool wxRichTextCtrl::IsEditable() const
2579 // ----------------------------------------------------------------------------
2581 // ----------------------------------------------------------------------------
2583 void wxRichTextCtrl::SetSelection(long from
, long to
)
2585 // if from and to are both -1, it means (in wxWidgets) that all text should
2587 if ( (from
== -1) && (to
== -1) )
2590 to
= GetLastPosition()+1;
2599 wxRichTextRange oldSelection
= m_selectionRange
;
2600 m_selectionAnchor
= from
-1;
2601 m_selectionRange
.SetRange(from
, to
-1);
2603 m_caretPosition
= wxMax(-1, to
-2);
2605 RefreshForSelectionChange(oldSelection
, m_selectionRange
);
2610 // ----------------------------------------------------------------------------
2612 // ----------------------------------------------------------------------------
2614 void wxRichTextCtrl::Replace(long WXUNUSED(from
), long WXUNUSED(to
),
2615 const wxString
& value
)
2617 BeginBatchUndo(_("Replace"));
2619 DeleteSelectedContent();
2621 DoWriteText(value
, SetValue_SelectionOnly
);
2626 void wxRichTextCtrl::Remove(long from
, long to
)
2630 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(from
, to
-1), this);
2637 bool wxRichTextCtrl::IsModified() const
2639 return m_buffer
.IsModified();
2642 void wxRichTextCtrl::MarkDirty()
2644 m_buffer
.Modify(true);
2647 void wxRichTextCtrl::DiscardEdits()
2649 m_caretPositionForDefaultStyle
= -2;
2650 m_buffer
.Modify(false);
2651 m_buffer
.GetCommandProcessor()->ClearCommands();
2654 int wxRichTextCtrl::GetNumberOfLines() const
2656 return GetBuffer().GetParagraphCount();
2659 // ----------------------------------------------------------------------------
2660 // Positions <-> coords
2661 // ----------------------------------------------------------------------------
2663 long wxRichTextCtrl::XYToPosition(long x
, long y
) const
2665 return GetBuffer().XYToPosition(x
, y
);
2668 bool wxRichTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
2670 return GetBuffer().PositionToXY(pos
, x
, y
);
2673 // ----------------------------------------------------------------------------
2675 // ----------------------------------------------------------------------------
2677 void wxRichTextCtrl::ShowPosition(long pos
)
2679 if (!IsPositionVisible(pos
))
2680 ScrollIntoView(pos
-1, WXK_DOWN
);
2683 int wxRichTextCtrl::GetLineLength(long lineNo
) const
2685 return GetBuffer().GetParagraphLength(lineNo
);
2688 wxString
wxRichTextCtrl::GetLineText(long lineNo
) const
2690 return GetBuffer().GetParagraphText(lineNo
);
2693 // ----------------------------------------------------------------------------
2695 // ----------------------------------------------------------------------------
2697 void wxRichTextCtrl::Undo()
2701 GetCommandProcessor()->Undo();
2705 void wxRichTextCtrl::Redo()
2709 GetCommandProcessor()->Redo();
2713 bool wxRichTextCtrl::CanUndo() const
2715 return GetCommandProcessor()->CanUndo();
2718 bool wxRichTextCtrl::CanRedo() const
2720 return GetCommandProcessor()->CanRedo();
2723 // ----------------------------------------------------------------------------
2724 // implementation details
2725 // ----------------------------------------------------------------------------
2727 void wxRichTextCtrl::Command(wxCommandEvent
& event
)
2729 SetValue(event
.GetString());
2730 GetEventHandler()->ProcessEvent(event
);
2733 void wxRichTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
2735 // By default, load the first file into the text window.
2736 if (event
.GetNumberOfFiles() > 0)
2738 LoadFile(event
.GetFiles()[0]);
2742 wxSize
wxRichTextCtrl::DoGetBestSize() const
2744 return wxSize(10, 10);
2747 // ----------------------------------------------------------------------------
2748 // standard handlers for standard edit menu events
2749 // ----------------------------------------------------------------------------
2751 void wxRichTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
2756 void wxRichTextCtrl::OnClear(wxCommandEvent
& WXUNUSED(event
))
2761 void wxRichTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
2766 void wxRichTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
2771 void wxRichTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
2776 void wxRichTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
2781 void wxRichTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
2783 event
.Enable( CanCut() );
2786 void wxRichTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
2788 event
.Enable( CanCopy() );
2791 void wxRichTextCtrl::OnUpdateClear(wxUpdateUIEvent
& event
)
2793 event
.Enable( CanDeleteSelection() );
2796 void wxRichTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
2798 event
.Enable( CanPaste() );
2801 void wxRichTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
2803 event
.Enable( CanUndo() );
2804 event
.SetText( GetCommandProcessor()->GetUndoMenuLabel() );
2807 void wxRichTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
2809 event
.Enable( CanRedo() );
2810 event
.SetText( GetCommandProcessor()->GetRedoMenuLabel() );
2813 void wxRichTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
2815 if (GetLastPosition() > 0)
2819 void wxRichTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
2821 event
.Enable(GetLastPosition() > 0);
2824 void wxRichTextCtrl::OnContextMenu(wxContextMenuEvent
& event
)
2826 if (event
.GetEventObject() != this)
2833 PopupMenu(m_contextMenu
);
2837 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
2839 return GetBuffer().SetStyle(wxRichTextRange(start
, end
-1), wxTextAttr(style
));
2842 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
)
2844 return GetBuffer().SetStyle(range
.ToInternal(), style
);
2847 // extended style setting operation with flags including:
2848 // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY.
2849 // see richtextbuffer.h for more details.
2851 bool wxRichTextCtrl::SetStyleEx(const wxRichTextRange
& range
, const wxTextAttr
& style
, int flags
)
2853 return GetBuffer().SetStyle(range
.ToInternal(), style
, flags
);
2856 bool wxRichTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
2858 return GetBuffer().SetDefaultStyle(wxTextAttr(style
));
2861 const wxTextAttr
& wxRichTextCtrl::GetDefaultStyle() const
2863 return GetBuffer().GetDefaultStyle();
2866 bool wxRichTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
2868 return GetBuffer().GetStyle(position
, style
);
2871 // get the common set of styles for the range
2872 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
)
2874 return GetBuffer().GetStyleForRange(range
.ToInternal(), style
);
2877 /// Get the content (uncombined) attributes for this position.
2878 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxTextAttr
& style
)
2880 return GetBuffer().GetUncombinedStyle(position
, style
);
2883 /// Set font, and also the buffer attributes
2884 bool wxRichTextCtrl::SetFont(const wxFont
& font
)
2886 wxTextCtrlBase::SetFont(font
);
2888 wxTextAttr attr
= GetBuffer().GetAttributes();
2890 GetBuffer().SetBasicStyle(attr
);
2892 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2898 /// Transform logical to physical
2899 wxPoint
wxRichTextCtrl::GetPhysicalPoint(const wxPoint
& ptLogical
) const
2902 CalcScrolledPosition(ptLogical
.x
, ptLogical
.y
, & pt
.x
, & pt
.y
);
2907 /// Transform physical to logical
2908 wxPoint
wxRichTextCtrl::GetLogicalPoint(const wxPoint
& ptPhysical
) const
2911 CalcUnscrolledPosition(ptPhysical
.x
, ptPhysical
.y
, & pt
.x
, & pt
.y
);
2916 /// Position the caret
2917 void wxRichTextCtrl::PositionCaret()
2922 //wxLogDebug(wxT("PositionCaret"));
2925 if (GetCaretPositionForIndex(GetCaretPosition(), caretRect
))
2927 wxPoint newPt
= caretRect
.GetPosition();
2928 wxSize newSz
= caretRect
.GetSize();
2929 wxPoint pt
= GetPhysicalPoint(newPt
);
2930 if (GetCaret()->GetPosition() != pt
|| GetCaret()->GetSize() != newSz
)
2933 if (GetCaret()->GetSize() != newSz
)
2934 GetCaret()->SetSize(newSz
);
2936 int halfSize
= newSz
.y
/2;
2937 // If the caret is beyond the margin, hide it by moving it out of the way
2938 if (((pt
.y
+ halfSize
) < GetBuffer().GetTopMargin()) || ((pt
.y
+ halfSize
) > (GetClientSize().y
- GetBuffer().GetBottomMargin())))
2941 GetCaret()->Move(pt
);
2947 /// Get the caret height and position for the given character position
2948 bool wxRichTextCtrl::GetCaretPositionForIndex(long position
, wxRect
& rect
)
2950 wxClientDC
dc(this);
2951 dc
.SetFont(GetFont());
2958 if (GetBuffer().FindPosition(dc
, position
, pt
, & height
, m_caretAtLineStart
))
2960 // Caret height can't be zero
2962 height
= dc
.GetCharHeight();
2964 rect
= wxRect(pt
, wxSize(wxRICHTEXT_DEFAULT_CARET_WIDTH
, height
));
2971 /// Gets the line for the visible caret position. If the caret is
2972 /// shown at the very end of the line, it means the next character is actually
2973 /// on the following line. So let's get the line we're expecting to find
2974 /// if this is the case.
2975 wxRichTextLine
* wxRichTextCtrl::GetVisibleLineForCaretPosition(long caretPosition
) const
2977 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(caretPosition
, true);
2978 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(caretPosition
, true);
2981 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
2982 if (caretPosition
== lineRange
.GetStart()-1 &&
2983 (para
->GetRange().GetStart() != lineRange
.GetStart()))
2985 if (!m_caretAtLineStart
)
2986 line
= GetBuffer().GetLineAtPosition(caretPosition
-1, true);
2993 /// Move the caret to the given character position
2994 bool wxRichTextCtrl::MoveCaret(long pos
, bool showAtLineStart
)
2996 if (GetBuffer().GetDirty())
2999 if (pos
<= GetBuffer().GetRange().GetEnd())
3001 SetCaretPosition(pos
, showAtLineStart
);
3011 /// Layout the buffer: which we must do before certain operations, such as
3012 /// setting the caret position.
3013 bool wxRichTextCtrl::LayoutContent(bool onlyVisibleRect
)
3015 if (GetBuffer().GetDirty() || onlyVisibleRect
)
3017 wxRect
availableSpace(GetClientSize());
3018 if (availableSpace
.width
== 0)
3019 availableSpace
.width
= 10;
3020 if (availableSpace
.height
== 0)
3021 availableSpace
.height
= 10;
3023 int flags
= wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
;
3024 if (onlyVisibleRect
)
3026 flags
|= wxRICHTEXT_LAYOUT_SPECIFIED_RECT
;
3027 availableSpace
.SetPosition(GetLogicalPoint(wxPoint(0, 0)));
3030 wxClientDC
dc(this);
3031 dc
.SetFont(GetFont());
3035 GetBuffer().Defragment();
3036 GetBuffer().UpdateRanges(); // If items were deleted, ranges need recalculation
3037 GetBuffer().Layout(dc
, availableSpace
, flags
);
3038 GetBuffer().SetDirty(false);
3047 /// Is all of the selection bold?
3048 bool wxRichTextCtrl::IsSelectionBold()
3053 wxRichTextRange range
= GetSelectionRange();
3054 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3055 attr
.SetFontWeight(wxFONTWEIGHT_BOLD
);
3057 return HasCharacterAttributes(range
, attr
);
3061 // If no selection, then we need to combine current style with default style
3062 // to see what the effect would be if we started typing.
3064 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3066 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3067 if (GetStyle(pos
, attr
))
3069 if (IsDefaultStyleShowing())
3070 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3071 return attr
.GetFontWeight() == wxFONTWEIGHT_BOLD
;
3077 /// Is all of the selection italics?
3078 bool wxRichTextCtrl::IsSelectionItalics()
3082 wxRichTextRange range
= GetSelectionRange();
3084 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3085 attr
.SetFontStyle(wxFONTSTYLE_ITALIC
);
3087 return HasCharacterAttributes(range
, attr
);
3091 // If no selection, then we need to combine current style with default style
3092 // to see what the effect would be if we started typing.
3094 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3096 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3097 if (GetStyle(pos
, attr
))
3099 if (IsDefaultStyleShowing())
3100 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3101 return attr
.GetFontStyle() == wxFONTSTYLE_ITALIC
;
3107 /// Is all of the selection underlined?
3108 bool wxRichTextCtrl::IsSelectionUnderlined()
3112 wxRichTextRange range
= GetSelectionRange();
3114 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3115 attr
.SetFontUnderlined(true);
3117 return HasCharacterAttributes(range
, attr
);
3121 // If no selection, then we need to combine current style with default style
3122 // to see what the effect would be if we started typing.
3124 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3125 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3127 if (GetStyle(pos
, attr
))
3129 if (IsDefaultStyleShowing())
3130 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3131 return attr
.GetFontUnderlined();
3137 /// Apply bold to the selection
3138 bool wxRichTextCtrl::ApplyBoldToSelection()
3141 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3142 attr
.SetFontWeight(IsSelectionBold() ? wxFONTWEIGHT_NORMAL
: wxFONTWEIGHT_BOLD
);
3145 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3148 wxRichTextAttr current
= GetDefaultStyleEx();
3149 current
.Apply(attr
);
3150 SetAndShowDefaultStyle(current
);
3155 /// Apply italic to the selection
3156 bool wxRichTextCtrl::ApplyItalicToSelection()
3159 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3160 attr
.SetFontStyle(IsSelectionItalics() ? wxFONTSTYLE_NORMAL
: wxFONTSTYLE_ITALIC
);
3163 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3166 wxRichTextAttr current
= GetDefaultStyleEx();
3167 current
.Apply(attr
);
3168 SetAndShowDefaultStyle(current
);
3173 /// Apply underline to the selection
3174 bool wxRichTextCtrl::ApplyUnderlineToSelection()
3177 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3178 attr
.SetFontUnderlined(!IsSelectionUnderlined());
3181 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3184 wxRichTextAttr current
= GetDefaultStyleEx();
3185 current
.Apply(attr
);
3186 SetAndShowDefaultStyle(current
);
3191 /// Is all of the selection aligned according to the specified flag?
3192 bool wxRichTextCtrl::IsSelectionAligned(wxTextAttrAlignment alignment
)
3194 wxRichTextRange range
;
3196 range
= GetSelectionRange();
3198 range
= wxRichTextRange(GetCaretPosition()+1, GetCaretPosition()+2);
3201 attr
.SetAlignment(alignment
);
3203 return HasParagraphAttributes(range
, attr
);
3206 /// Apply alignment to the selection
3207 bool wxRichTextCtrl::ApplyAlignmentToSelection(wxTextAttrAlignment alignment
)
3210 attr
.SetAlignment(alignment
);
3212 return SetStyle(GetSelectionRange(), attr
);
3215 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(GetCaretPosition()+1);
3217 return SetStyleEx(para
->GetRange().FromInternal(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
);
3222 /// Apply a named style to the selection
3223 bool wxRichTextCtrl::ApplyStyle(wxRichTextStyleDefinition
* def
)
3225 // Flags are defined within each definition, so only certain
3226 // attributes are applied.
3227 wxTextAttr
attr(GetStyleSheet() ? def
->GetStyleMergedWithBase(GetStyleSheet()) : def
->GetStyle());
3229 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_RESET
;
3231 if (def
->IsKindOf(CLASSINFO(wxRichTextListStyleDefinition
)))
3233 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
3235 wxRichTextRange range
;
3238 range
= GetSelectionRange();
3241 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3242 range
= wxRichTextRange(pos
, pos
+1);
3245 return SetListStyle(range
, (wxRichTextListStyleDefinition
*) def
, flags
);
3248 // Make sure the attr has the style name
3249 if (def
->IsKindOf(CLASSINFO(wxRichTextParagraphStyleDefinition
)))
3251 attr
.SetParagraphStyleName(def
->GetName());
3253 // If applying a paragraph style, we only want the paragraph nodes to adopt these
3254 // attributes, and not the leaf nodes. This will allow the content (e.g. text)
3255 // to change its style independently.
3256 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
3259 attr
.SetCharacterStyleName(def
->GetName());
3262 return SetStyleEx(GetSelectionRange(), attr
, flags
);
3265 wxRichTextAttr current
= GetDefaultStyleEx();
3266 current
.Apply(attr
);
3267 SetAndShowDefaultStyle(current
);
3272 /// Apply the style sheet to the buffer, for example if the styles have changed.
3273 bool wxRichTextCtrl::ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
)
3276 styleSheet
= GetBuffer().GetStyleSheet();
3280 if (GetBuffer().ApplyStyleSheet(styleSheet
))
3282 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
3290 /// Sets the default style to the style under the cursor
3291 bool wxRichTextCtrl::SetDefaultStyleToCursorStyle()
3294 attr
.SetFlags(wxTEXT_ATTR_CHARACTER
);
3296 // If at the start of a paragraph, use the next position.
3297 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3299 if (GetUncombinedStyle(pos
, attr
))
3301 SetDefaultStyle(attr
);
3308 /// Returns the first visible position in the current view
3309 long wxRichTextCtrl::GetFirstVisiblePosition() const
3311 wxRichTextLine
* line
= GetBuffer().GetLineAtYPosition(GetLogicalPoint(wxPoint(0, 0)).y
);
3313 return line
->GetAbsoluteRange().GetStart();
3318 /// Get the first visible point in the window
3319 wxPoint
wxRichTextCtrl::GetFirstVisiblePoint() const
3322 int startXUnits
, startYUnits
;
3324 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
3325 GetViewStart(& startXUnits
, & startYUnits
);
3327 return wxPoint(startXUnits
* ppuX
, startYUnits
* ppuY
);
3330 /// The adjusted caret position is the character position adjusted to take
3331 /// into account whether we're at the start of a paragraph, in which case
3332 /// style information should be taken from the next position, not current one.
3333 long wxRichTextCtrl::GetAdjustedCaretPosition(long caretPos
) const
3335 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(caretPos
+1);
3337 if (para
&& (caretPos
+1 == para
->GetRange().GetStart()))
3342 /// Get/set the selection range in character positions. -1, -1 means no selection.
3343 /// The range is in API convention, i.e. a single character selection is denoted
3345 wxRichTextRange
wxRichTextCtrl::GetSelectionRange() const
3347 wxRichTextRange range
= GetInternalSelectionRange();
3348 if (range
!= wxRichTextRange(-2,-2) && range
!= wxRichTextRange(-1,-1))
3349 range
.SetEnd(range
.GetEnd() + 1);
3353 void wxRichTextCtrl::SetSelectionRange(const wxRichTextRange
& range
)
3355 SetSelection(range
.GetStart(), range
.GetEnd());
3359 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
3361 return GetBuffer().SetListStyle(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
3364 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
3366 return GetBuffer().SetListStyle(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
3369 /// Clear list for given range
3370 bool wxRichTextCtrl::ClearListStyle(const wxRichTextRange
& range
, int flags
)
3372 return GetBuffer().ClearListStyle(range
.ToInternal(), flags
);
3375 /// Number/renumber any list elements in the given range
3376 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
3378 return GetBuffer().NumberList(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
3381 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
3383 return GetBuffer().NumberList(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
3386 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
3387 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int specifiedLevel
)
3389 return GetBuffer().PromoteList(promoteBy
, range
.ToInternal(), def
, flags
, specifiedLevel
);
3392 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int specifiedLevel
)
3394 return GetBuffer().PromoteList(promoteBy
, range
.ToInternal(), defName
, flags
, specifiedLevel
);
3397 /// Deletes the content in the given range
3398 bool wxRichTextCtrl::Delete(const wxRichTextRange
& range
)
3400 return GetBuffer().DeleteRangeWithUndo(range
.ToInternal(), this);
3403 const wxArrayString
& wxRichTextCtrl::GetAvailableFontNames()
3405 if (sm_availableFontNames
.GetCount() == 0)
3407 sm_availableFontNames
= wxFontEnumerator::GetFacenames();
3408 sm_availableFontNames
.Sort();
3410 return sm_availableFontNames
;
3413 void wxRichTextCtrl::ClearAvailableFontNames()
3415 sm_availableFontNames
.Clear();
3418 void wxRichTextCtrl::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
3420 //wxLogDebug(wxT("wxRichTextCtrl::OnSysColourChanged"));
3422 wxTextAttrEx basicStyle
= GetBasicStyle();
3423 basicStyle
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
3424 SetBasicStyle(basicStyle
);
3425 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
3430 // Refresh the area affected by a selection change
3431 bool wxRichTextCtrl::RefreshForSelectionChange(const wxRichTextRange
& oldSelection
, const wxRichTextRange
& newSelection
)
3433 // Calculate the refresh rectangle - just the affected lines
3434 long firstPos
, lastPos
;
3435 if (oldSelection
.GetStart() == -2 && newSelection
.GetStart() != -2)
3437 firstPos
= newSelection
.GetStart();
3438 lastPos
= newSelection
.GetEnd();
3440 else if (oldSelection
.GetStart() != -2 && newSelection
.GetStart() == -2)
3442 firstPos
= oldSelection
.GetStart();
3443 lastPos
= oldSelection
.GetEnd();
3445 else if (oldSelection
.GetStart() == -2 && newSelection
.GetStart() == -2)
3451 firstPos
= wxMin(oldSelection
.GetStart(), newSelection
.GetStart());
3452 lastPos
= wxMax(oldSelection
.GetEnd(), newSelection
.GetEnd());
3455 wxRichTextLine
* firstLine
= GetBuffer().GetLineAtPosition(firstPos
);
3456 wxRichTextLine
* lastLine
= GetBuffer().GetLineAtPosition(lastPos
);
3458 if (firstLine
&& lastLine
)
3460 wxSize clientSize
= GetClientSize();
3461 wxPoint pt1
= GetPhysicalPoint(firstLine
->GetAbsolutePosition());
3462 wxPoint pt2
= GetPhysicalPoint(lastLine
->GetAbsolutePosition()) + wxPoint(0, lastLine
->GetSize().y
);
3465 pt1
.y
= wxMax(0, pt1
.y
);
3467 pt2
.y
= wxMin(clientSize
.y
, pt2
.y
);
3469 wxRect
rect(pt1
, wxSize(clientSize
.x
, pt2
.y
- pt1
.y
));
3470 RefreshRect(rect
, false);
3478 #if wxRICHTEXT_USE_OWN_CARET
3480 // ----------------------------------------------------------------------------
3481 // initialization and destruction
3482 // ----------------------------------------------------------------------------
3484 void wxRichTextCaret::Init()
3490 m_richTextCtrl
= NULL
;
3491 m_needsUpdate
= false;
3495 wxRichTextCaret::~wxRichTextCaret()
3497 if (m_timer
.IsRunning())
3501 // ----------------------------------------------------------------------------
3502 // showing/hiding/moving the caret (base class interface)
3503 // ----------------------------------------------------------------------------
3505 void wxRichTextCaret::DoShow()
3509 if (!m_timer
.IsRunning())
3510 m_timer
.Start(GetBlinkTime());
3515 void wxRichTextCaret::DoHide()
3517 if (m_timer
.IsRunning())
3523 void wxRichTextCaret::DoMove()
3529 if (m_xOld
!= -1 && m_yOld
!= -1)
3533 wxRect
rect(GetPosition(), GetSize());
3534 m_richTextCtrl
->RefreshRect(rect
, false);
3543 void wxRichTextCaret::DoSize()
3545 int countVisible
= m_countVisible
;
3546 if (countVisible
> 0)
3552 if (countVisible
> 0)
3554 m_countVisible
= countVisible
;
3559 // ----------------------------------------------------------------------------
3560 // handling the focus
3561 // ----------------------------------------------------------------------------
3563 void wxRichTextCaret::OnSetFocus()
3571 void wxRichTextCaret::OnKillFocus()
3576 // ----------------------------------------------------------------------------
3577 // drawing the caret
3578 // ----------------------------------------------------------------------------
3580 void wxRichTextCaret::Refresh()
3584 wxRect
rect(GetPosition(), GetSize());
3585 m_richTextCtrl
->RefreshRect(rect
, false);
3589 void wxRichTextCaret::DoDraw(wxDC
*dc
)
3591 dc
->SetPen( *wxBLACK_PEN
);
3593 dc
->SetBrush(*(m_hasFocus
? wxBLACK_BRUSH
: wxTRANSPARENT_BRUSH
));
3594 dc
->SetPen(*wxBLACK_PEN
);
3596 wxPoint
pt(m_x
, m_y
);
3600 pt
= m_richTextCtrl
->GetLogicalPoint(pt
);
3602 if (IsVisible() && m_flashOn
)
3603 dc
->DrawRectangle(pt
.x
, pt
.y
, m_width
, m_height
);
3606 void wxRichTextCaret::Notify()
3608 m_flashOn
= !m_flashOn
;
3612 void wxRichTextCaretTimer::Notify()
3617 // wxRICHTEXT_USE_OWN_CARET