1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/richtext/richtextctrl.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 #if defined (__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__)
39 #define wxHAVE_PRIMARY_SELECTION 1
41 #define wxHAVE_PRIMARY_SELECTION 0
44 #if wxUSE_CLIPBOARD && wxHAVE_PRIMARY_SELECTION
45 #include "wx/clipbrd.h"
48 // DLL options compatibility check:
50 WX_CHECK_BUILD_OPTIONS("wxRichTextCtrl")
52 wxDEFINE_EVENT( wxEVT_RICHTEXT_LEFT_CLICK
, wxRichTextEvent
);
53 wxDEFINE_EVENT( wxEVT_RICHTEXT_MIDDLE_CLICK
, wxRichTextEvent
);
54 wxDEFINE_EVENT( wxEVT_RICHTEXT_RIGHT_CLICK
, wxRichTextEvent
);
55 wxDEFINE_EVENT( wxEVT_RICHTEXT_LEFT_DCLICK
, wxRichTextEvent
);
56 wxDEFINE_EVENT( wxEVT_RICHTEXT_RETURN
, wxRichTextEvent
);
57 wxDEFINE_EVENT( wxEVT_RICHTEXT_CHARACTER
, wxRichTextEvent
);
58 wxDEFINE_EVENT( wxEVT_RICHTEXT_DELETE
, wxRichTextEvent
);
60 wxDEFINE_EVENT( wxEVT_RICHTEXT_STYLESHEET_REPLACING
, wxRichTextEvent
);
61 wxDEFINE_EVENT( wxEVT_RICHTEXT_STYLESHEET_REPLACED
, wxRichTextEvent
);
62 wxDEFINE_EVENT( wxEVT_RICHTEXT_STYLESHEET_CHANGING
, wxRichTextEvent
);
63 wxDEFINE_EVENT( wxEVT_RICHTEXT_STYLESHEET_CHANGED
, wxRichTextEvent
);
65 wxDEFINE_EVENT( wxEVT_RICHTEXT_CONTENT_INSERTED
, wxRichTextEvent
);
66 wxDEFINE_EVENT( wxEVT_RICHTEXT_CONTENT_DELETED
, wxRichTextEvent
);
67 wxDEFINE_EVENT( wxEVT_RICHTEXT_STYLE_CHANGED
, wxRichTextEvent
);
68 wxDEFINE_EVENT( wxEVT_RICHTEXT_PROPERTIES_CHANGED
, wxRichTextEvent
);
69 wxDEFINE_EVENT( wxEVT_RICHTEXT_SELECTION_CHANGED
, wxRichTextEvent
);
70 wxDEFINE_EVENT( wxEVT_RICHTEXT_BUFFER_RESET
, wxRichTextEvent
);
71 wxDEFINE_EVENT( wxEVT_RICHTEXT_FOCUS_OBJECT_CHANGED
, wxRichTextEvent
);
73 #if wxRICHTEXT_USE_OWN_CARET
78 * This implements a non-flashing cursor in case there
79 * are platform-specific problems with the generic caret.
80 * wxRICHTEXT_USE_OWN_CARET is set in richtextbuffer.h.
83 class wxRichTextCaret
;
84 class wxRichTextCaretTimer
: public wxTimer
87 wxRichTextCaretTimer(wxRichTextCaret
* caret
)
91 virtual void Notify();
92 wxRichTextCaret
* m_caret
;
95 class wxRichTextCaret
: public wxCaret
100 // default - use Create()
101 wxRichTextCaret(): m_timer(this) { Init(); }
102 // creates a block caret associated with the given window
103 wxRichTextCaret(wxRichTextCtrl
*window
, int width
, int height
)
104 : wxCaret(window
, width
, height
), m_timer(this) { Init(); m_richTextCtrl
= window
; }
105 wxRichTextCaret(wxRichTextCtrl
*window
, const wxSize
& size
)
106 : wxCaret(window
, size
), m_timer(this) { Init(); m_richTextCtrl
= window
; }
108 virtual ~wxRichTextCaret();
113 // called by wxWindow (not using the event tables)
114 virtual void OnSetFocus();
115 virtual void OnKillFocus();
117 // draw the caret on the given DC
118 void DoDraw(wxDC
*dc
);
120 // get the visible count
121 int GetVisibleCount() const { return m_countVisible
; }
123 // delay repositioning
124 bool GetNeedsUpdate() const { return m_needsUpdate
; }
125 void SetNeedsUpdate(bool needsUpdate
= true ) { m_needsUpdate
= needsUpdate
; }
129 bool GetRefreshEnabled() const { return m_refreshEnabled
; }
130 void EnableRefresh(bool b
) { m_refreshEnabled
= b
; }
133 virtual void DoShow();
134 virtual void DoHide();
135 virtual void DoMove();
136 virtual void DoSize();
146 bool m_hasFocus
; // true => our window has focus
147 bool m_needsUpdate
; // must be repositioned
149 wxRichTextCaretTimer m_timer
;
150 wxRichTextCtrl
* m_richTextCtrl
;
151 bool m_refreshEnabled
;
153 wxBrush m_caretBrush
;
157 IMPLEMENT_DYNAMIC_CLASS( wxRichTextCtrl
, wxControl
)
159 IMPLEMENT_DYNAMIC_CLASS( wxRichTextEvent
, wxNotifyEvent
)
161 BEGIN_EVENT_TABLE( wxRichTextCtrl
, wxControl
)
162 EVT_PAINT(wxRichTextCtrl::OnPaint
)
163 EVT_ERASE_BACKGROUND(wxRichTextCtrl::OnEraseBackground
)
164 EVT_IDLE(wxRichTextCtrl::OnIdle
)
165 EVT_SCROLLWIN(wxRichTextCtrl::OnScroll
)
166 EVT_LEFT_DOWN(wxRichTextCtrl::OnLeftClick
)
167 EVT_MOTION(wxRichTextCtrl::OnMoveMouse
)
168 EVT_LEFT_UP(wxRichTextCtrl::OnLeftUp
)
169 EVT_RIGHT_DOWN(wxRichTextCtrl::OnRightClick
)
170 EVT_MIDDLE_DOWN(wxRichTextCtrl::OnMiddleClick
)
171 EVT_LEFT_DCLICK(wxRichTextCtrl::OnLeftDClick
)
172 EVT_CHAR(wxRichTextCtrl::OnChar
)
173 EVT_KEY_DOWN(wxRichTextCtrl::OnChar
)
174 EVT_SIZE(wxRichTextCtrl::OnSize
)
175 EVT_SET_FOCUS(wxRichTextCtrl::OnSetFocus
)
176 EVT_KILL_FOCUS(wxRichTextCtrl::OnKillFocus
)
177 EVT_MOUSE_CAPTURE_LOST(wxRichTextCtrl::OnCaptureLost
)
178 EVT_CONTEXT_MENU(wxRichTextCtrl::OnContextMenu
)
179 EVT_SYS_COLOUR_CHANGED(wxRichTextCtrl::OnSysColourChanged
)
181 EVT_MENU(wxID_UNDO
, wxRichTextCtrl::OnUndo
)
182 EVT_UPDATE_UI(wxID_UNDO
, wxRichTextCtrl::OnUpdateUndo
)
184 EVT_MENU(wxID_REDO
, wxRichTextCtrl::OnRedo
)
185 EVT_UPDATE_UI(wxID_REDO
, wxRichTextCtrl::OnUpdateRedo
)
187 EVT_MENU(wxID_COPY
, wxRichTextCtrl::OnCopy
)
188 EVT_UPDATE_UI(wxID_COPY
, wxRichTextCtrl::OnUpdateCopy
)
190 EVT_MENU(wxID_PASTE
, wxRichTextCtrl::OnPaste
)
191 EVT_UPDATE_UI(wxID_PASTE
, wxRichTextCtrl::OnUpdatePaste
)
193 EVT_MENU(wxID_CUT
, wxRichTextCtrl::OnCut
)
194 EVT_UPDATE_UI(wxID_CUT
, wxRichTextCtrl::OnUpdateCut
)
196 EVT_MENU(wxID_CLEAR
, wxRichTextCtrl::OnClear
)
197 EVT_UPDATE_UI(wxID_CLEAR
, wxRichTextCtrl::OnUpdateClear
)
199 EVT_MENU(wxID_SELECTALL
, wxRichTextCtrl::OnSelectAll
)
200 EVT_UPDATE_UI(wxID_SELECTALL
, wxRichTextCtrl::OnUpdateSelectAll
)
202 EVT_MENU(wxID_RICHTEXT_PROPERTIES1
, wxRichTextCtrl::OnProperties
)
203 EVT_UPDATE_UI(wxID_RICHTEXT_PROPERTIES1
, wxRichTextCtrl::OnUpdateProperties
)
205 EVT_MENU(wxID_RICHTEXT_PROPERTIES2
, wxRichTextCtrl::OnProperties
)
206 EVT_UPDATE_UI(wxID_RICHTEXT_PROPERTIES2
, wxRichTextCtrl::OnUpdateProperties
)
208 EVT_MENU(wxID_RICHTEXT_PROPERTIES3
, wxRichTextCtrl::OnProperties
)
209 EVT_UPDATE_UI(wxID_RICHTEXT_PROPERTIES3
, wxRichTextCtrl::OnUpdateProperties
)
217 wxArrayString
wxRichTextCtrl::sm_availableFontNames
;
219 wxRichTextCtrl::wxRichTextCtrl()
220 : wxScrollHelper(this)
225 wxRichTextCtrl::wxRichTextCtrl(wxWindow
* parent
,
227 const wxString
& value
,
231 const wxValidator
& validator
,
232 const wxString
& name
)
233 : wxScrollHelper(this)
236 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
240 bool wxRichTextCtrl::Create( wxWindow
* parent
, wxWindowID id
, const wxString
& value
, const wxPoint
& pos
, const wxSize
& size
, long style
,
241 const wxValidator
& validator
, const wxString
& name
)
245 if (!wxControl::Create(parent
, id
, pos
, size
,
246 style
|wxFULL_REPAINT_ON_RESIZE
,
250 if (!GetFont().IsOk())
252 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
255 // No physical scrolling, so we can preserve margins
256 EnableScrolling(false, false);
258 if (style
& wxTE_READONLY
)
261 // The base attributes must all have default values
262 wxRichTextAttr attributes
;
263 attributes
.SetFont(GetFont());
264 attributes
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
265 attributes
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
266 attributes
.SetLineSpacing(10);
267 attributes
.SetParagraphSpacingAfter(10);
268 attributes
.SetParagraphSpacingBefore(0);
269 SetBasicStyle(attributes
);
272 SetMargins(margin
, margin
);
274 // The default attributes will be merged with base attributes, so
275 // can be empty to begin with
276 wxRichTextAttr defaultAttributes
;
277 SetDefaultStyle(defaultAttributes
);
279 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
280 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
283 GetBuffer().SetRichTextCtrl(this);
285 #if wxRICHTEXT_USE_OWN_CARET
286 SetCaret(new wxRichTextCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16));
288 SetCaret(new wxCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16));
291 // Tell the sizers to use the given or best size
292 SetInitialSize(size
);
294 #if wxRICHTEXT_BUFFERED_PAINTING
296 RecreateBuffer(size
);
299 m_textCursor
= wxCursor(wxCURSOR_IBEAM
);
300 m_urlCursor
= wxCursor(wxCURSOR_HAND
);
302 SetCursor(m_textCursor
);
304 if (!value
.IsEmpty())
307 GetBuffer().AddEventHandler(this);
310 wxAcceleratorEntry entries
[6];
312 entries
[0].Set(wxACCEL_CTRL
, (int) 'C', wxID_COPY
);
313 entries
[1].Set(wxACCEL_CTRL
, (int) 'X', wxID_CUT
);
314 entries
[2].Set(wxACCEL_CTRL
, (int) 'V', wxID_PASTE
);
315 entries
[3].Set(wxACCEL_CTRL
, (int) 'A', wxID_SELECTALL
);
316 entries
[4].Set(wxACCEL_CTRL
, (int) 'Z', wxID_UNDO
);
317 entries
[5].Set(wxACCEL_CTRL
, (int) 'Y', wxID_REDO
);
319 wxAcceleratorTable
accel(6, entries
);
320 SetAcceleratorTable(accel
);
322 m_contextMenu
= new wxMenu
;
323 m_contextMenu
->Append(wxID_UNDO
, _("&Undo"));
324 m_contextMenu
->Append(wxID_REDO
, _("&Redo"));
325 m_contextMenu
->AppendSeparator();
326 m_contextMenu
->Append(wxID_CUT
, _("Cu&t"));
327 m_contextMenu
->Append(wxID_COPY
, _("&Copy"));
328 m_contextMenu
->Append(wxID_PASTE
, _("&Paste"));
329 m_contextMenu
->Append(wxID_CLEAR
, _("&Delete"));
330 m_contextMenu
->AppendSeparator();
331 m_contextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
332 m_contextMenu
->AppendSeparator();
333 m_contextMenu
->Append(wxID_RICHTEXT_PROPERTIES1
, _("&Properties"));
335 #if wxUSE_DRAG_AND_DROP
336 SetDropTarget(new wxRichTextDropTarget(this));
342 wxRichTextCtrl::~wxRichTextCtrl()
344 SetFocusObject(& GetBuffer(), false);
345 GetBuffer().RemoveEventHandler(this);
347 delete m_contextMenu
;
350 /// Member initialisation
351 void wxRichTextCtrl::Init()
353 m_contextMenu
= NULL
;
355 m_caretPosition
= -1;
356 m_selectionAnchor
= -2;
357 m_selectionAnchorObject
= NULL
;
358 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
360 m_useVirtualAttributes
= false;
361 m_verticalScrollbarEnabled
= true;
362 m_caretAtLineStart
= false;
364 #if wxUSE_DRAG_AND_DROP
367 m_fullLayoutRequired
= false;
368 m_fullLayoutTime
= 0;
369 m_fullLayoutSavedPosition
= 0;
370 m_delayedLayoutThreshold
= wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD
;
371 m_caretPositionForDefaultStyle
= -2;
372 m_focusObject
= & m_buffer
;
376 void wxRichTextCtrl::DoThaw()
378 if (GetBuffer().IsDirty())
387 void wxRichTextCtrl::Clear()
389 if (GetFocusObject() == & GetBuffer())
391 m_buffer
.ResetAndClearCommands();
392 m_buffer
.Invalidate(wxRICHTEXT_ALL
);
396 GetFocusObject()->Reset();
399 m_caretPosition
= -1;
400 m_caretPositionForDefaultStyle
= -2;
401 m_caretAtLineStart
= false;
403 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
413 wxTextCtrl::SendTextUpdatedEvent(this);
417 void wxRichTextCtrl::OnPaint(wxPaintEvent
& WXUNUSED(event
))
419 #if !wxRICHTEXT_USE_OWN_CARET
420 if (GetCaret() && !IsFrozen())
423 // Stop the caret refreshing the control from within the
426 ((wxRichTextCaret
*) GetCaret())->EnableRefresh(false);
430 #if wxRICHTEXT_BUFFERED_PAINTING
431 wxBufferedPaintDC
dc(this, m_bufferBitmap
);
441 dc
.SetFont(GetFont());
443 wxRect
drawingArea(GetUpdateRegion().GetBox());
444 drawingArea
.SetPosition(GetUnscaledPoint(GetLogicalPoint(drawingArea
.GetPosition())));
445 drawingArea
.SetSize(GetUnscaledSize(drawingArea
.GetSize()));
447 wxRect
availableSpace(GetUnscaledSize(GetClientSize()));
448 wxRichTextDrawingContext
context(& GetBuffer());
449 if (GetBuffer().IsDirty())
451 dc
.SetUserScale(GetScale(), GetScale());
453 GetBuffer().Layout(dc
, context
, availableSpace
, availableSpace
, wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
);
454 GetBuffer().Invalidate(wxRICHTEXT_NONE
);
456 dc
.SetUserScale(1.0, 1.0);
461 // Paint the background
464 wxRect
clipRect(availableSpace
);
465 clipRect
.x
+= GetBuffer().GetLeftMargin();
466 clipRect
.y
+= GetBuffer().GetTopMargin();
467 clipRect
.width
-= (GetBuffer().GetLeftMargin() + GetBuffer().GetRightMargin());
468 clipRect
.height
-= (GetBuffer().GetTopMargin() + GetBuffer().GetBottomMargin());
470 clipRect
= GetScaledRect(clipRect
);
471 clipRect
.SetPosition(GetLogicalPoint(clipRect
.GetPosition()));
473 dc
.SetClippingRegion(clipRect
);
476 if ((GetExtraStyle() & wxRICHTEXT_EX_NO_GUIDELINES
) == 0)
477 flags
|= wxRICHTEXT_DRAW_GUIDELINES
;
479 dc
.SetUserScale(GetScale(), GetScale());
481 GetBuffer().Draw(dc
, context
, GetBuffer().GetOwnRange(), GetSelection(), drawingArea
, 0 /* descent */, flags
);
483 dc
.DestroyClippingRegion();
485 // Other user defined painting after everything else (i.e. all text) is painted
486 PaintAboveContent(dc
);
488 #if wxRICHTEXT_USE_OWN_CARET
489 if (GetCaret()->IsVisible())
492 ((wxRichTextCaret
*) GetCaret())->DoDraw(& dc
);
496 dc
.SetUserScale(1.0, 1.0);
499 #if !wxRICHTEXT_USE_OWN_CARET
505 ((wxRichTextCaret
*) GetCaret())->EnableRefresh(true);
509 // Empty implementation, to prevent flicker
510 void wxRichTextCtrl::OnEraseBackground(wxEraseEvent
& WXUNUSED(event
))
514 void wxRichTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
518 #if !wxRICHTEXT_USE_OWN_CARET
524 #if defined(__WXGTK__) && !wxRICHTEXT_USE_OWN_CARET
525 // Work around dropouts when control is focused
533 void wxRichTextCtrl::OnKillFocus(wxFocusEvent
& WXUNUSED(event
))
538 #if defined(__WXGTK__) && !wxRICHTEXT_USE_OWN_CARET
539 // Work around dropouts when control is focused
547 void wxRichTextCtrl::OnCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
552 // Set up the caret for the given position and container, after a mouse click
553 bool wxRichTextCtrl::SetCaretPositionAfterClick(wxRichTextParagraphLayoutBox
* container
, long position
, int hitTestFlags
, bool extendSelection
)
555 bool caretAtLineStart
= false;
557 if (hitTestFlags
& wxRICHTEXT_HITTEST_BEFORE
)
559 // If we're at the start of a line (but not first in para)
560 // then we should keep the caret showing at the start of the line
561 // by showing the m_caretAtLineStart flag.
562 wxRichTextParagraph
* para
= container
->GetParagraphAtPosition(position
);
563 wxRichTextLine
* line
= container
->GetLineAtPosition(position
);
565 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
566 caretAtLineStart
= true;
570 if (extendSelection
&& (m_caretPosition
!= position
))
571 ExtendSelection(m_caretPosition
, position
, wxRICHTEXT_SHIFT_DOWN
);
573 MoveCaret(position
, caretAtLineStart
);
574 SetDefaultStyleToCursorStyle();
580 void wxRichTextCtrl::OnLeftClick(wxMouseEvent
& event
)
586 dc
.SetFont(GetFont());
588 // TODO: detect change of focus object
590 wxRichTextObject
* hitObj
= NULL
;
591 wxRichTextObject
* contextObj
= NULL
;
592 wxRichTextDrawingContext
context(& GetBuffer());
593 int hit
= GetBuffer().HitTest(dc
, context
, GetUnscaledPoint(event
.GetLogicalPosition(dc
)), position
, & hitObj
, & contextObj
, wxRICHTEXT_HITTEST_HONOUR_ATOMIC
);
595 #if wxUSE_DRAG_AND_DROP
596 // If there's no selection, or we're not inside it, this isn't an attempt to initiate Drag'n'Drop
597 if (IsEditable() && HasSelection() && GetSelectionRange().ToInternal().Contains(position
))
599 // This might be an attempt at initiating Drag'n'Drop. So set the time & flags
601 m_dragStartPoint
= event
.GetPosition(); // No need to worry about logical positions etc, we only care about the distance from the original pt
604 m_dragStartTime
= wxDateTime::UNow();
605 #endif // wxUSE_DATETIME
607 // Preserve behaviour of clicking on an object within the selection
608 if (hit
!= wxRICHTEXT_HITTEST_NONE
&& hitObj
)
611 return; // Don't skip the event, else the selection will be lost
613 #endif // wxUSE_DRAG_AND_DROP
615 if (hit
!= wxRICHTEXT_HITTEST_NONE
&& hitObj
)
617 wxRichTextParagraphLayoutBox
* oldFocusObject
= GetFocusObject();
618 wxRichTextParagraphLayoutBox
* container
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
619 if (container
&& container
!= GetFocusObject() && container
->AcceptsFocus())
621 SetFocusObject(container
, false /* don't set caret position yet */);
627 long oldCaretPos
= m_caretPosition
;
629 SetCaretPositionAfterClick(container
, position
, hit
);
631 // For now, don't handle shift-click when we're selecting multiple objects.
632 if (event
.ShiftDown() && GetFocusObject() == oldFocusObject
&& m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
633 ExtendSelection(oldCaretPos
, m_caretPosition
, wxRICHTEXT_SHIFT_DOWN
);
642 void wxRichTextCtrl::OnLeftUp(wxMouseEvent
& event
)
647 if (GetCapture() == this)
650 // See if we clicked on a URL
653 dc
.SetFont(GetFont());
656 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
657 wxRichTextObject
* hitObj
= NULL
;
658 wxRichTextObject
* contextObj
= NULL
;
659 wxRichTextDrawingContext
context(& GetBuffer());
660 // Only get objects at this level, not nested, because otherwise we couldn't swipe text at a single level.
661 int hit
= GetFocusObject()->HitTest(dc
, context
, GetUnscaledPoint(logicalPt
), position
, & hitObj
, & contextObj
, wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
|wxRICHTEXT_HITTEST_HONOUR_ATOMIC
);
663 #if wxUSE_DRAG_AND_DROP
666 // Preserve the behaviour that would have happened without drag-and-drop detection, in OnLeftClick
667 m_preDrag
= false; // Tell DnD not to happen now: we are processing Left Up ourselves.
669 // Do the actions that would have been done in OnLeftClick if we hadn't tried to drag
671 wxRichTextObject
* hitObj
= NULL
;
672 wxRichTextObject
* contextObj
= NULL
;
673 int hit
= GetBuffer().HitTest(dc
, context
, GetUnscaledPoint(event
.GetLogicalPosition(dc
)), position
, & hitObj
, & contextObj
, wxRICHTEXT_HITTEST_HONOUR_ATOMIC
);
674 wxRichTextParagraphLayoutBox
* oldFocusObject
= GetFocusObject();
675 wxRichTextParagraphLayoutBox
* container
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
676 if (container
&& container
!= GetFocusObject() && container
->AcceptsFocus())
678 SetFocusObject(container
, false /* don't set caret position yet */);
681 long oldCaretPos
= m_caretPosition
;
683 SetCaretPositionAfterClick(container
, position
, hit
);
685 // For now, don't handle shift-click when we're selecting multiple objects.
686 if (event
.ShiftDown() && GetFocusObject() == oldFocusObject
&& m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
687 ExtendSelection(oldCaretPos
, m_caretPosition
, wxRICHTEXT_SHIFT_DOWN
);
693 if ((hit
!= wxRICHTEXT_HITTEST_NONE
) && !(hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
695 wxRichTextEvent
cmdEvent(
696 wxEVT_RICHTEXT_LEFT_CLICK
,
698 cmdEvent
.SetEventObject(this);
699 cmdEvent
.SetPosition(position
);
701 cmdEvent
.SetContainer(hitObj
->GetContainer());
703 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
706 if (GetStyle(position
, attr
))
708 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
710 wxString urlTarget
= attr
.GetURL();
711 if (!urlTarget
.IsEmpty())
713 wxMouseEvent
mouseEvent(event
);
715 long startPos
= 0, endPos
= 0;
716 wxRichTextObject
* obj
= GetFocusObject()->GetLeafObjectAtPosition(position
);
719 startPos
= obj
->GetRange().GetStart();
720 endPos
= obj
->GetRange().GetEnd();
723 wxTextUrlEvent
urlEvent(GetId(), mouseEvent
, startPos
, endPos
);
724 InitCommandEvent(urlEvent
);
726 urlEvent
.SetString(urlTarget
);
728 GetEventHandler()->ProcessEvent(urlEvent
);
736 #if wxUSE_DRAG_AND_DROP
738 #endif // wxUSE_DRAG_AND_DROP
740 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ && wxHAVE_PRIMARY_SELECTION
741 if (HasSelection() && GetFocusObject() && GetFocusObject()->GetBuffer())
743 // Put the selection in PRIMARY, if it exists
744 wxTheClipboard
->UsePrimarySelection(true);
746 wxRichTextRange range
= GetInternalSelectionRange();
747 GetFocusObject()->GetBuffer()->CopyToClipboard(range
);
749 wxTheClipboard
->UsePrimarySelection(false);
755 void wxRichTextCtrl::OnMoveMouse(wxMouseEvent
& event
)
757 if (!event
.Dragging() && m_dragging
)
759 // We may have accidentally lost a mouse-up event, especially on Linux
761 if (GetCapture() == this)
765 #if wxUSE_DRAG_AND_DROP
767 if (m_preDrag
|| m_dragging
)
769 int x
= m_dragStartPoint
.x
- event
.GetPosition().x
;
770 int y
= m_dragStartPoint
.y
- event
.GetPosition().y
;
771 distance
= abs(x
) + abs(y
);
774 // See if we're starting Drag'n'Drop
778 wxTimeSpan diff
= wxDateTime::UNow() - m_dragStartTime
;
782 && (diff
.GetMilliseconds() > 100)
789 wxRichTextRange range
= GetInternalSelectionRange();
790 if (range
== wxRICHTEXT_NONE
)
792 // Don't try to drag an empty range
797 // Cache the current situation, to be restored if Drag'n'Drop is cancelled
798 long oldPos
= GetCaretPosition();
799 wxRichTextParagraphLayoutBox
* oldFocus
= GetFocusObject();
801 wxDataObjectComposite
* compositeObject
= new wxDataObjectComposite();
802 wxString text
= GetFocusObject()->GetTextForRange(range
);
804 text
= wxTextFile::Translate(text
, wxTextFileType_Dos
);
806 compositeObject
->Add(new wxTextDataObject(text
), false /* not preferred */);
808 wxRichTextBuffer
* richTextBuf
= new wxRichTextBuffer
;
809 GetFocusObject()->CopyFragment(range
, *richTextBuf
);
810 compositeObject
->Add(new wxRichTextBufferDataObject(richTextBuf
), true /* preferred */);
812 wxRichTextDropSource
source(*compositeObject
, this);
813 // Use wxDrag_DefaultMove, not because it's the likelier choice but because pressing Ctrl for Copy obeys the principle of least surprise
814 // The alternative, wxDrag_DefaultCopy, requires the user to know that Move needs the Shift key pressed
815 BeginBatchUndo(_("Drag"));
816 switch (source
.DoDragDrop(wxDrag_AllowMove
| wxDrag_DefaultMove
))
819 case wxDragCopy
: break;
822 wxLogError(wxT("An error occurred during drag and drop operation"));
825 Refresh(); // This is needed in wxMSW, otherwise resetting the position doesn't 'take'
826 SetCaretPosition(oldPos
);
827 SetFocusObject(oldFocus
, false);
836 #endif // wxUSE_DRAG_AND_DROP
840 dc
.SetFont(GetFont());
843 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
844 wxRichTextObject
* hitObj
= NULL
;
845 wxRichTextObject
* contextObj
= NULL
;
849 // If we're dragging, let's only consider positions at this level; otherwise
850 // selecting a range is not going to work.
851 wxRichTextParagraphLayoutBox
* container
= & GetBuffer();
854 flags
= wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
;
855 container
= GetFocusObject();
857 wxRichTextDrawingContext
context(& GetBuffer());
858 int hit
= container
->HitTest(dc
, context
, GetUnscaledPoint(logicalPt
), position
, & hitObj
, & contextObj
, flags
);
860 // See if we need to change the cursor
863 if (hit
!= wxRICHTEXT_HITTEST_NONE
&& !(hit
& wxRICHTEXT_HITTEST_OUTSIDE
) && hitObj
)
865 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
867 ProcessMouseMovement(actualContainer
, hitObj
, position
, logicalPt
);
870 SetCursor(m_textCursor
);
873 if (!event
.Dragging())
880 #if wxUSE_DRAG_AND_DROP
886 wxRichTextParagraphLayoutBox
* commonAncestor
= NULL
;
887 wxRichTextParagraphLayoutBox
* otherContainer
= NULL
;
888 wxRichTextParagraphLayoutBox
* firstContainer
= NULL
;
890 // Check for dragging across multiple containers
892 wxRichTextObject
* hitObj2
= NULL
, *contextObj2
= NULL
;
893 int hit2
= GetBuffer().HitTest(dc
, context
, GetUnscaledPoint(logicalPt
), position2
, & hitObj2
, & contextObj2
, 0);
894 if (hit2
!= wxRICHTEXT_HITTEST_NONE
&& !(hit2
& wxRICHTEXT_HITTEST_OUTSIDE
) && hitObj2
&& hitObj
!= hitObj2
)
896 // See if we can find a common ancestor
897 if (m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
899 firstContainer
= GetFocusObject();
900 commonAncestor
= wxDynamicCast(firstContainer
->GetParent(), wxRichTextParagraphLayoutBox
);
904 firstContainer
= wxDynamicCast(m_selectionAnchorObject
, wxRichTextParagraphLayoutBox
);
905 //commonAncestor = GetFocusObject(); // when the selection state is not normal, the focus object (e.g. table)
906 // is the common ancestor.
907 commonAncestor
= wxDynamicCast(firstContainer
->GetParent(), wxRichTextParagraphLayoutBox
);
910 if (commonAncestor
&& commonAncestor
->HandlesChildSelections())
912 wxRichTextObject
* p
= hitObj2
;
915 if (p
->GetParent() == commonAncestor
)
917 otherContainer
= wxDynamicCast(p
, wxRichTextParagraphLayoutBox
);
924 if (commonAncestor
&& firstContainer
&& otherContainer
)
926 // We have now got a second container that shares a parent with the current or anchor object.
927 if (m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
929 // Don't go into common-ancestor selection mode if we still have the same
931 if (otherContainer
!= firstContainer
)
933 m_selectionState
= wxRichTextCtrlSelectionState_CommonAncestor
;
934 m_selectionAnchorObject
= firstContainer
;
935 m_selectionAnchor
= firstContainer
->GetRange().GetStart();
937 // The common ancestor, such as a table, returns the cell selection
938 // between the anchor and current position.
939 m_selection
= commonAncestor
->GetSelection(m_selectionAnchor
, otherContainer
->GetRange().GetStart());
944 m_selection
= commonAncestor
->GetSelection(m_selectionAnchor
, otherContainer
->GetRange().GetStart());
949 if (otherContainer
->AcceptsFocus())
950 SetFocusObject(otherContainer
, false /* don't set caret and clear selection */);
951 MoveCaret(-1, false);
952 SetDefaultStyleToCursorStyle();
957 if (hitObj
&& m_dragging
&& hit
!= wxRICHTEXT_HITTEST_NONE
&& m_selectionState
== wxRichTextCtrlSelectionState_Normal
958 #if wxUSE_DRAG_AND_DROP
964 SetCaretPositionAfterClick(container
, position
, hit
, true /* extend selection */);
969 void wxRichTextCtrl::OnRightClick(wxMouseEvent
& event
)
975 dc
.SetFont(GetFont());
978 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
979 wxRichTextObject
* hitObj
= NULL
;
980 wxRichTextObject
* contextObj
= NULL
;
981 wxRichTextDrawingContext
context(& GetBuffer());
982 int hit
= GetFocusObject()->HitTest(dc
, context
, GetUnscaledPoint(logicalPt
), position
, & hitObj
, & contextObj
, wxRICHTEXT_HITTEST_HONOUR_ATOMIC
);
984 if (hitObj
&& hitObj
->GetContainer() != GetFocusObject())
986 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
987 if (actualContainer
&& actualContainer
->AcceptsFocus())
989 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
990 SetCaretPositionAfterClick(actualContainer
, position
, hit
);
994 wxRichTextEvent
cmdEvent(
995 wxEVT_RICHTEXT_RIGHT_CLICK
,
997 cmdEvent
.SetEventObject(this);
998 cmdEvent
.SetPosition(position
);
1000 cmdEvent
.SetContainer(hitObj
->GetContainer());
1002 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
1006 /// Left-double-click
1007 void wxRichTextCtrl::OnLeftDClick(wxMouseEvent
& WXUNUSED(event
))
1009 wxRichTextEvent
cmdEvent(
1010 wxEVT_RICHTEXT_LEFT_DCLICK
,
1012 cmdEvent
.SetEventObject(this);
1013 cmdEvent
.SetPosition(m_caretPosition
+1);
1014 cmdEvent
.SetContainer(GetFocusObject());
1016 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
1018 SelectWord(GetCaretPosition()+1);
1023 void wxRichTextCtrl::OnMiddleClick(wxMouseEvent
& event
)
1025 wxRichTextEvent
cmdEvent(
1026 wxEVT_RICHTEXT_MIDDLE_CLICK
,
1028 cmdEvent
.SetEventObject(this);
1029 cmdEvent
.SetPosition(m_caretPosition
+1);
1030 cmdEvent
.SetContainer(GetFocusObject());
1032 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
1035 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ && wxHAVE_PRIMARY_SELECTION
1036 // Paste any PRIMARY selection, if it exists
1037 wxTheClipboard
->UsePrimarySelection(true);
1039 wxTheClipboard
->UsePrimarySelection(false);
1044 void wxRichTextCtrl::OnChar(wxKeyEvent
& event
)
1047 if (event
.CmdDown())
1048 flags
|= wxRICHTEXT_CTRL_DOWN
;
1049 if (event
.ShiftDown())
1050 flags
|= wxRICHTEXT_SHIFT_DOWN
;
1051 if (event
.AltDown())
1052 flags
|= wxRICHTEXT_ALT_DOWN
;
1054 if (event
.GetEventType() == wxEVT_KEY_DOWN
)
1056 if (event
.IsKeyInCategory(WXK_CATEGORY_NAVIGATION
))
1058 KeyboardNavigate(event
.GetKeyCode(), flags
);
1062 long keycode
= event
.GetKeyCode();
1122 case WXK_NUMPAD_HOME
:
1123 case WXK_NUMPAD_LEFT
:
1125 case WXK_NUMPAD_RIGHT
:
1126 case WXK_NUMPAD_DOWN
:
1127 case WXK_NUMPAD_PAGEUP
:
1128 case WXK_NUMPAD_PAGEDOWN
:
1129 case WXK_NUMPAD_END
:
1130 case WXK_NUMPAD_BEGIN
:
1131 case WXK_NUMPAD_INSERT
:
1132 case WXK_WINDOWS_LEFT
:
1141 // Must process this before translation, otherwise it's translated into a WXK_DELETE event.
1142 if (event
.CmdDown() && event
.GetKeyCode() == WXK_BACK
)
1144 if (!ProcessBackKey(event
, flags
))
1153 // all the other keys modify the controls contents which shouldn't be
1154 // possible if we're read-only
1155 if ( !IsEditable() )
1161 if (event
.GetKeyCode() == WXK_RETURN
)
1163 if (!CanInsertContent(* GetFocusObject(), m_caretPosition
+1))
1166 long newPos
= m_caretPosition
;
1168 if (HasSelection() && !CanDeleteRange(* GetFocusObject(), GetSelectionRange()))
1173 BeginBatchUndo(_("Insert Text"));
1175 DeleteSelectedContent(& newPos
);
1177 if (event
.ShiftDown())
1180 text
= wxRichTextLineBreakChar
;
1181 GetFocusObject()->InsertTextWithUndo(& GetBuffer(), newPos
+1, text
, this);
1182 m_caretAtLineStart
= true;
1186 GetFocusObject()->InsertNewlineWithUndo(& GetBuffer(), newPos
+1, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
|wxRICHTEXT_INSERT_INTERACTIVE
);
1188 // Automatically renumber list
1189 bool isNumberedList
= false;
1190 wxRichTextRange numberedListRange
= FindRangeForList(newPos
+1, isNumberedList
);
1191 if (isNumberedList
&& numberedListRange
!= wxRichTextRange(-1, -1))
1193 NumberList(numberedListRange
, NULL
, wxRICHTEXT_SETSTYLE_RENUMBER
|wxRICHTEXT_SETSTYLE_WITH_UNDO
);
1197 SetDefaultStyleToCursorStyle();
1199 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
1201 wxRichTextEvent
cmdEvent(
1202 wxEVT_RICHTEXT_RETURN
,
1204 cmdEvent
.SetEventObject(this);
1205 cmdEvent
.SetFlags(flags
);
1206 cmdEvent
.SetPosition(newPos
+1);
1207 cmdEvent
.SetContainer(GetFocusObject());
1209 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
1211 // Generate conventional event
1212 wxCommandEvent
textEvent(wxEVT_TEXT_ENTER
, GetId());
1213 InitCommandEvent(textEvent
);
1215 GetEventHandler()->ProcessEvent(textEvent
);
1219 else if (event
.GetKeyCode() == WXK_BACK
)
1221 ProcessBackKey(event
, flags
);
1223 else if (event
.GetKeyCode() == WXK_DELETE
)
1225 long newPos
= m_caretPosition
;
1227 if (HasSelection() && !CanDeleteRange(* GetFocusObject(), GetSelectionRange()))
1232 BeginBatchUndo(_("Delete Text"));
1234 bool processed
= DeleteSelectedContent(& newPos
);
1240 // Submit range in character positions, which are greater than caret positions,
1241 if (newPos
< GetFocusObject()->GetOwnRange().GetEnd()+1)
1243 if (event
.CmdDown())
1245 long pos
= wxRichTextCtrl::FindNextWordPosition(1);
1246 if (pos
!= -1 && (pos
> newPos
))
1248 wxRichTextRange
range(newPos
+1, pos
);
1249 if (CanDeleteRange(* GetFocusObject(), range
.FromInternal()))
1251 GetFocusObject()->DeleteRangeWithUndo(range
, this, & GetBuffer());
1258 if (!processed
&& newPos
< (GetLastPosition()-1))
1260 wxRichTextRange
range(newPos
+1, newPos
+1);
1261 if (CanDeleteRange(* GetFocusObject(), range
.FromInternal()))
1263 GetFocusObject()->DeleteRangeWithUndo(range
, this, & GetBuffer());
1271 if (GetLastPosition() == -1)
1273 GetFocusObject()->Reset();
1275 m_caretPosition
= -1;
1277 SetDefaultStyleToCursorStyle();
1280 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
1282 // Always send this event; wxEVT_RICHTEXT_CONTENT_DELETED will be sent only if there is an actual deletion.
1284 wxRichTextEvent
cmdEvent(
1285 wxEVT_RICHTEXT_DELETE
,
1287 cmdEvent
.SetEventObject(this);
1288 cmdEvent
.SetFlags(flags
);
1289 cmdEvent
.SetPosition(m_caretPosition
+1);
1290 cmdEvent
.SetContainer(GetFocusObject());
1291 GetEventHandler()->ProcessEvent(cmdEvent
);
1298 long keycode
= event
.GetKeyCode();
1310 if (event
.CmdDown())
1312 // Fixes AltGr+key with European input languages on Windows
1313 if ((event
.CmdDown() && !event
.AltDown()) || (event
.AltDown() && !event
.CmdDown()))
1320 wxRichTextEvent
cmdEvent(
1321 wxEVT_RICHTEXT_CHARACTER
,
1323 cmdEvent
.SetEventObject(this);
1324 cmdEvent
.SetFlags(flags
);
1326 cmdEvent
.SetCharacter(event
.GetUnicodeKey());
1328 cmdEvent
.SetCharacter((wxChar
) keycode
);
1330 cmdEvent
.SetPosition(m_caretPosition
+1);
1331 cmdEvent
.SetContainer(GetFocusObject());
1333 if (keycode
== wxT('\t'))
1335 // See if we need to promote or demote the selection or paragraph at the cursor
1336 // position, instead of inserting a tab.
1337 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
1338 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
);
1339 if (para
&& para
->GetRange().GetStart() == pos
&& para
->GetAttributes().HasListStyleName())
1341 wxRichTextRange range
;
1343 range
= GetSelectionRange();
1345 range
= para
->GetRange().FromInternal();
1347 int promoteBy
= event
.ShiftDown() ? 1 : -1;
1349 PromoteList(promoteBy
, range
, NULL
);
1351 GetEventHandler()->ProcessEvent(cmdEvent
);
1357 if (!CanInsertContent(* GetFocusObject(), m_caretPosition
+1))
1360 if (HasSelection() && !CanDeleteRange(* GetFocusObject(), GetSelectionRange()))
1363 BeginBatchUndo(_("Insert Text"));
1365 long newPos
= m_caretPosition
;
1366 DeleteSelectedContent(& newPos
);
1369 wxString str
= event
.GetUnicodeKey();
1371 wxString str
= (wxChar
) event
.GetKeyCode();
1373 GetFocusObject()->InsertTextWithUndo(& GetBuffer(), newPos
+1, str
, this, 0);
1377 SetDefaultStyleToCursorStyle();
1378 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
1380 cmdEvent
.SetPosition(m_caretPosition
);
1381 GetEventHandler()->ProcessEvent(cmdEvent
);
1389 bool wxRichTextCtrl::ProcessMouseMovement(wxRichTextParagraphLayoutBox
* container
, wxRichTextObject
* WXUNUSED(obj
), long position
, const wxPoint
& WXUNUSED(pos
))
1391 wxRichTextAttr attr
;
1392 if (container
&& GetStyle(position
, attr
, container
))
1394 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
1396 SetCursor(m_urlCursor
);
1398 else if (!attr
.HasFlag(wxTEXT_ATTR_URL
))
1400 SetCursor(m_textCursor
);
1408 // Processes the back key
1409 bool wxRichTextCtrl::ProcessBackKey(wxKeyEvent
& event
, int flags
)
1416 if (HasSelection() && !CanDeleteRange(* GetFocusObject(), GetSelectionRange()))
1421 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(m_caretPosition
, true);
1423 // If we're at the start of a list item with a bullet, let's 'delete' the bullet, i.e.
1424 // make it a continuation paragraph.
1425 if (!HasSelection() && para
&& ((m_caretPosition
+1) == para
->GetRange().GetStart()) &&
1426 para
->GetAttributes().HasBulletStyle() && (para
->GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_CONTINUATION
) == 0)
1428 wxRichTextParagraph
* newPara
= wxDynamicCast(para
->Clone(), wxRichTextParagraph
);
1429 newPara
->GetAttributes().SetBulletStyle(newPara
->GetAttributes().GetBulletStyle() | wxTEXT_ATTR_BULLET_STYLE_CONTINUATION
);
1431 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Remove Bullet"), wxRICHTEXT_CHANGE_STYLE
, & GetBuffer(), GetFocusObject(), this);
1432 action
->SetRange(newPara
->GetRange());
1433 action
->SetPosition(GetCaretPosition());
1434 action
->GetNewParagraphs().AppendChild(newPara
);
1435 // Also store the old ones for Undo
1436 action
->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para
));
1438 GetBuffer().Invalidate(para
->GetRange());
1439 GetBuffer().SubmitAction(action
);
1441 // Automatically renumber list
1442 bool isNumberedList
= false;
1443 wxRichTextRange numberedListRange
= FindRangeForList(m_caretPosition
, isNumberedList
);
1444 if (isNumberedList
&& numberedListRange
!= wxRichTextRange(-1, -1))
1446 NumberList(numberedListRange
, NULL
, wxRICHTEXT_SETSTYLE_RENUMBER
|wxRICHTEXT_SETSTYLE_WITH_UNDO
);
1453 BeginBatchUndo(_("Delete Text"));
1455 long newPos
= m_caretPosition
;
1457 bool processed
= DeleteSelectedContent(& newPos
);
1463 // Submit range in character positions, which are greater than caret positions,
1464 // so subtract 1 for deleted character and add 1 for conversion to character position.
1467 if (event
.CmdDown())
1469 long pos
= wxRichTextCtrl::FindNextWordPosition(-1);
1472 wxRichTextRange
range(pos
+1, newPos
);
1473 if (CanDeleteRange(* GetFocusObject(), range
.FromInternal()))
1475 GetFocusObject()->DeleteRangeWithUndo(range
, this, & GetBuffer());
1484 wxRichTextRange
range(newPos
, newPos
);
1485 if (CanDeleteRange(* GetFocusObject(), range
.FromInternal()))
1487 GetFocusObject()->DeleteRangeWithUndo(range
, this, & GetBuffer());
1495 if (GetLastPosition() == -1)
1497 GetFocusObject()->Reset();
1499 m_caretPosition
= -1;
1501 SetDefaultStyleToCursorStyle();
1504 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
1506 // Always send this event; wxEVT_RICHTEXT_CONTENT_DELETED will be sent only if there is an actual deletion.
1508 wxRichTextEvent
cmdEvent(
1509 wxEVT_RICHTEXT_DELETE
,
1511 cmdEvent
.SetEventObject(this);
1512 cmdEvent
.SetFlags(flags
);
1513 cmdEvent
.SetPosition(m_caretPosition
+1);
1514 cmdEvent
.SetContainer(GetFocusObject());
1515 GetEventHandler()->ProcessEvent(cmdEvent
);
1524 /// Delete content if there is a selection, e.g. when pressing a key.
1525 bool wxRichTextCtrl::DeleteSelectedContent(long* newPos
)
1529 long pos
= m_selection
.GetRange().GetStart();
1530 wxRichTextRange range
= m_selection
.GetRange();
1532 // SelectAll causes more to be selected than doing it interactively,
1533 // and causes a new paragraph to be inserted. So for multiline buffers,
1534 // don't delete the final position.
1535 if (range
.GetEnd() == GetLastPosition() && GetNumberOfLines() > 0)
1536 range
.SetEnd(range
.GetEnd()-1);
1538 GetFocusObject()->DeleteRangeWithUndo(range
, this, & GetBuffer());
1539 m_selection
.Reset();
1540 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
1550 /// Keyboard navigation
1554 Left: left one character
1555 Right: right one character
1558 Ctrl-Left: left one word
1559 Ctrl-Right: right one word
1560 Ctrl-Up: previous paragraph start
1561 Ctrl-Down: next start of paragraph
1564 Ctrl-Home: start of document
1565 Ctrl-End: end of document
1566 Page-Up: Up a screen
1567 Page-Down: Down a screen
1571 Ctrl-Alt-PgUp: Start of window
1572 Ctrl-Alt-PgDn: End of window
1573 F8: Start selection mode
1574 Esc: End selection mode
1576 Adding Shift does the above but starts/extends selection.
1581 bool wxRichTextCtrl::KeyboardNavigate(int keyCode
, int flags
)
1583 bool success
= false;
1585 if (keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
)
1587 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1588 success
= WordRight(1, flags
);
1590 success
= MoveRight(1, flags
);
1592 else if (keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
)
1594 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1595 success
= WordLeft(1, flags
);
1597 success
= MoveLeft(1, flags
);
1599 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
)
1601 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1602 success
= MoveToParagraphStart(flags
);
1604 success
= MoveUp(1, flags
);
1606 else if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
)
1608 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1609 success
= MoveToParagraphEnd(flags
);
1611 success
= MoveDown(1, flags
);
1613 else if (keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1615 success
= PageUp(1, flags
);
1617 else if (keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1619 success
= PageDown(1, flags
);
1621 else if (keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
)
1623 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1624 success
= MoveHome(flags
);
1626 success
= MoveToLineStart(flags
);
1628 else if (keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
)
1630 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1631 success
= MoveEnd(flags
);
1633 success
= MoveToLineEnd(flags
);
1638 ScrollIntoView(m_caretPosition
, keyCode
);
1639 SetDefaultStyleToCursorStyle();
1645 /// Extend the selection. Selections are in caret positions.
1646 bool wxRichTextCtrl::ExtendSelection(long oldPos
, long newPos
, int flags
)
1648 if (flags
& wxRICHTEXT_SHIFT_DOWN
)
1650 if (oldPos
== newPos
)
1653 wxRichTextSelection oldSelection
= m_selection
;
1655 m_selection
.SetContainer(GetFocusObject());
1657 wxRichTextRange oldRange
;
1658 if (m_selection
.IsValid())
1659 oldRange
= m_selection
.GetRange();
1661 oldRange
= wxRICHTEXT_NO_SELECTION
;
1662 wxRichTextRange newRange
;
1664 // If not currently selecting, start selecting
1665 if (oldRange
.GetStart() == -2)
1667 m_selectionAnchor
= oldPos
;
1669 if (oldPos
> newPos
)
1670 newRange
.SetRange(newPos
+1, oldPos
);
1672 newRange
.SetRange(oldPos
+1, newPos
);
1676 // Always ensure that the selection range start is greater than
1678 if (newPos
> m_selectionAnchor
)
1679 newRange
.SetRange(m_selectionAnchor
+1, newPos
);
1680 else if (newPos
== m_selectionAnchor
)
1681 newRange
= wxRichTextRange(-2, -2);
1683 newRange
.SetRange(newPos
+1, m_selectionAnchor
);
1686 m_selection
.SetRange(newRange
);
1688 RefreshForSelectionChange(oldSelection
, m_selection
);
1690 if (newRange
.GetStart() > newRange
.GetEnd())
1692 wxLogDebug(wxT("Strange selection range"));
1701 /// Scroll into view, returning true if we scrolled.
1702 /// This takes a _caret_ position.
1703 bool wxRichTextCtrl::ScrollIntoView(long position
, int keyCode
)
1705 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(position
);
1711 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1713 int startXUnits
, startYUnits
;
1714 GetViewStart(& startXUnits
, & startYUnits
);
1715 int startY
= startYUnits
* ppuY
;
1718 GetVirtualSize(& sx
, & sy
);
1724 wxRect rect
= GetScaledRect(line
->GetRect());
1726 bool scrolled
= false;
1728 wxSize clientSize
= GetClientSize();
1730 int leftMargin
, rightMargin
, topMargin
, bottomMargin
;
1733 wxClientDC
dc(this);
1734 wxRichTextObject::GetTotalMargin(dc
, & GetBuffer(), GetBuffer().GetAttributes(), leftMargin
, rightMargin
,
1735 topMargin
, bottomMargin
);
1737 clientSize
.y
-= (int) (0.5 + bottomMargin
* GetScale());
1739 if (GetWindowStyle() & wxRE_CENTRE_CARET
)
1741 int y
= rect
.y
- GetClientSize().y
/2;
1742 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1743 if (y
>= 0 && (y
+ clientSize
.y
) < (int) (0.5 + GetBuffer().GetCachedSize().y
* GetScale()))
1745 if (startYUnits
!= yUnits
)
1747 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1750 #if !wxRICHTEXT_USE_OWN_CARET
1760 if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
||
1761 keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
||
1762 keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
||
1763 keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1765 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1767 // Make it scroll so this item is at the bottom
1769 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1770 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1772 // If we're still off the screen, scroll another line down
1773 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1776 if (startYUnits
!= yUnits
)
1778 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1782 else if (rect
.y
< (startY
+ (int) (0.5 + GetBuffer().GetTopMargin() * GetScale())))
1784 // Make it scroll so this item is at the top
1786 int y
= rect
.y
- (int) (0.5 + GetBuffer().GetTopMargin() * GetScale());
1787 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1789 if (startYUnits
!= yUnits
)
1791 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1797 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
||
1798 keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
||
1799 keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
||
1800 keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1802 if (rect
.y
< (startY
+ (int) (0.5 + GetBuffer().GetBottomMargin() * GetScale())))
1804 // Make it scroll so this item is at the top
1806 int y
= rect
.y
- (int) (0.5 + GetBuffer().GetTopMargin() * GetScale());
1807 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1809 if (startYUnits
!= yUnits
)
1811 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1815 else if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1817 // Make it scroll so this item is at the bottom
1819 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1820 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1822 // If we're still off the screen, scroll another line down
1823 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1826 if (startYUnits
!= yUnits
)
1828 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1834 #if !wxRICHTEXT_USE_OWN_CARET
1842 /// Is the given position visible on the screen?
1843 bool wxRichTextCtrl::IsPositionVisible(long pos
) const
1845 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(pos
-1);
1851 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1854 GetViewStart(& startX
, & startY
);
1856 startY
= startY
* ppuY
;
1858 wxRect rect
= GetScaledRect(line
->GetRect());
1859 wxSize clientSize
= GetClientSize();
1860 clientSize
.y
-= (int) (0.5 + GetBuffer().GetBottomMargin() * GetScale());
1862 return (rect
.GetTop() >= (startY
+ (int) (0.5 + GetBuffer().GetTopMargin() * GetScale()))) &&
1863 (rect
.GetBottom() <= (startY
+ clientSize
.y
));
1866 void wxRichTextCtrl::SetCaretPosition(long position
, bool showAtLineStart
)
1868 m_caretPosition
= position
;
1869 m_caretAtLineStart
= showAtLineStart
;
1872 /// Move caret one visual step forward: this may mean setting a flag
1873 /// and keeping the same position if we're going from the end of one line
1874 /// to the start of the next, which may be the exact same caret position.
1875 void wxRichTextCtrl::MoveCaretForward(long oldPosition
)
1877 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(oldPosition
);
1879 // Only do the check if we're not at the end of the paragraph (where things work OK
1881 if (para
&& (oldPosition
!= para
->GetRange().GetEnd() - 1))
1883 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(oldPosition
);
1887 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1889 // We're at the end of a line. See whether we need to
1890 // stay at the same actual caret position but change visual
1891 // position, or not.
1892 if (oldPosition
== lineRange
.GetEnd())
1894 if (m_caretAtLineStart
)
1896 // We're already at the start of the line, so actually move on now.
1897 m_caretPosition
= oldPosition
+ 1;
1898 m_caretAtLineStart
= false;
1902 // We're showing at the end of the line, so keep to
1903 // the same position but indicate that we're to show
1904 // at the start of the next line.
1905 m_caretPosition
= oldPosition
;
1906 m_caretAtLineStart
= true;
1908 SetDefaultStyleToCursorStyle();
1914 SetDefaultStyleToCursorStyle();
1917 /// Move caret one visual step backward: this may mean setting a flag
1918 /// and keeping the same position if we're going from the end of one line
1919 /// to the start of the next, which may be the exact same caret position.
1920 void wxRichTextCtrl::MoveCaretBack(long oldPosition
)
1922 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(oldPosition
);
1924 // Only do the check if we're not at the start of the paragraph (where things work OK
1926 if (para
&& (oldPosition
!= para
->GetRange().GetStart()))
1928 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(oldPosition
);
1932 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1934 // We're at the start of a line. See whether we need to
1935 // stay at the same actual caret position but change visual
1936 // position, or not.
1937 if (oldPosition
== lineRange
.GetStart())
1939 m_caretPosition
= oldPosition
-1;
1940 m_caretAtLineStart
= true;
1943 else if (oldPosition
== lineRange
.GetEnd())
1945 if (m_caretAtLineStart
)
1947 // We're at the start of the line, so keep the same caret position
1948 // but clear the start-of-line flag.
1949 m_caretPosition
= oldPosition
;
1950 m_caretAtLineStart
= false;
1954 // We're showing at the end of the line, so go back
1955 // to the previous character position.
1956 m_caretPosition
= oldPosition
- 1;
1958 SetDefaultStyleToCursorStyle();
1964 SetDefaultStyleToCursorStyle();
1968 bool wxRichTextCtrl::MoveRight(int noPositions
, int flags
)
1970 long endPos
= GetFocusObject()->GetOwnRange().GetEnd();
1972 if (m_caretPosition
+ noPositions
< endPos
)
1974 long oldPos
= m_caretPosition
;
1975 long newPos
= m_caretPosition
+ noPositions
;
1977 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1981 // Determine by looking at oldPos and m_caretPosition whether
1982 // we moved from the end of a line to the start of the next line, in which case
1983 // we want to adjust the caret position such that it is positioned at the
1984 // start of the next line, rather than jumping past the first character of the
1986 if (noPositions
== 1)
1987 MoveCaretForward(oldPos
);
1989 SetCaretPosition(newPos
);
1992 SetDefaultStyleToCursorStyle();
2001 bool wxRichTextCtrl::MoveLeft(int noPositions
, int flags
)
2005 if (m_caretPosition
> startPos
- noPositions
+ 1)
2007 long oldPos
= m_caretPosition
;
2008 long newPos
= m_caretPosition
- noPositions
;
2009 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
2013 if (noPositions
== 1)
2014 MoveCaretBack(oldPos
);
2016 SetCaretPosition(newPos
);
2019 SetDefaultStyleToCursorStyle();
2027 // Find the caret position for the combination of hit-test flags and character position.
2028 // Returns the caret position and also an indication of where to place the caret (caretLineStart)
2029 // since this is ambiguous (same position used for end of line and start of next).
2030 long wxRichTextCtrl::FindCaretPositionForCharacterPosition(long position
, int hitTestFlags
, wxRichTextParagraphLayoutBox
* container
,
2031 bool& caretLineStart
)
2033 // If end of previous line, and hitTest is wxRICHTEXT_HITTEST_BEFORE,
2034 // we want to be at the end of the last line but with m_caretAtLineStart set to true,
2035 // so we view the caret at the start of the line.
2036 caretLineStart
= false;
2037 long caretPosition
= position
;
2039 if (hitTestFlags
& wxRICHTEXT_HITTEST_BEFORE
)
2041 wxRichTextLine
* thisLine
= container
->GetLineAtPosition(position
-1);
2042 wxRichTextRange lineRange
;
2044 lineRange
= thisLine
->GetAbsoluteRange();
2046 if (thisLine
&& (position
-1) == lineRange
.GetEnd())
2049 caretLineStart
= true;
2053 wxRichTextParagraph
* para
= container
->GetParagraphAtPosition(position
);
2054 if (para
&& para
->GetRange().GetStart() == position
)
2058 return caretPosition
;
2062 bool wxRichTextCtrl::MoveUp(int noLines
, int flags
)
2064 return MoveDown(- noLines
, flags
);
2068 bool wxRichTextCtrl::MoveDown(int noLines
, int flags
)
2073 long lineNumber
= GetFocusObject()->GetVisibleLineNumber(m_caretPosition
, true, m_caretAtLineStart
);
2074 wxPoint pt
= GetCaret()->GetPosition();
2075 long newLine
= lineNumber
+ noLines
;
2076 bool notInThisObject
= false;
2078 if (lineNumber
!= -1)
2082 long lastLine
= GetFocusObject()->GetVisibleLineNumber(GetFocusObject()->GetOwnRange().GetEnd());
2083 if (newLine
> lastLine
)
2084 notInThisObject
= true;
2089 notInThisObject
= true;
2093 wxRichTextParagraphLayoutBox
* container
= GetFocusObject();
2094 int hitTestFlags
= wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
|wxRICHTEXT_HITTEST_NO_FLOATING_OBJECTS
|wxRICHTEXT_HITTEST_HONOUR_ATOMIC
;
2096 bool lineIsEmpty
= false;
2097 if (notInThisObject
)
2099 // If we know we're navigating out of the current object,
2100 // try to find an object anywhere in the buffer at the new position (up or down a bit)
2101 container
= & GetBuffer();
2102 hitTestFlags
&= ~wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
;
2104 if (noLines
> 0) // going down
2106 pt
.y
= GetFocusObject()->GetPosition().y
+ GetFocusObject()->GetCachedSize().y
+ 2;
2110 pt
.y
= GetFocusObject()->GetPosition().y
- 2;
2115 wxRichTextLine
* lineObj
= GetFocusObject()->GetLineForVisibleLineNumber(newLine
);
2118 pt
.y
= lineObj
->GetAbsolutePosition().y
+ 2;
2119 if (lineObj
->GetRange().GetStart() == lineObj
->GetRange().GetEnd())
2127 wxClientDC
dc(this);
2129 dc
.SetFont(GetFont());
2131 wxRichTextObject
* hitObj
= NULL
;
2132 wxRichTextObject
* contextObj
= NULL
;
2133 wxRichTextDrawingContext
context(& GetBuffer());
2134 int hitTest
= container
->HitTest(dc
, context
, pt
, newPos
, & hitObj
, & contextObj
, hitTestFlags
);
2137 ((hitTest
& wxRICHTEXT_HITTEST_NONE
) == 0) &&
2138 (! (hitObj
== (& m_buffer
) && ((hitTest
& wxRICHTEXT_HITTEST_OUTSIDE
) != 0))) // outside the buffer counts as 'do nothing'
2141 if (notInThisObject
)
2143 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
2144 if (actualContainer
&& actualContainer
!= GetFocusObject() && actualContainer
->AcceptsFocus())
2146 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
2148 container
= actualContainer
;
2152 bool caretLineStart
= true;
2154 // If the line is empty, there is only one possible position for the caret,
2155 // so force the 'before' state so FindCaretPositionForCharacterPosition doesn't
2156 // just return the same position.
2159 hitTest
&= ~wxRICHTEXT_HITTEST_AFTER
;
2160 hitTest
|= wxRICHTEXT_HITTEST_BEFORE
;
2162 long caretPosition
= FindCaretPositionForCharacterPosition(newPos
, hitTest
, container
, caretLineStart
);
2163 long newSelEnd
= caretPosition
;
2166 if (notInThisObject
)
2169 extendSel
= ExtendSelection(m_caretPosition
, newSelEnd
, flags
);
2174 SetCaretPosition(caretPosition
, caretLineStart
);
2176 SetDefaultStyleToCursorStyle();
2184 /// Move to the end of the paragraph
2185 bool wxRichTextCtrl::MoveToParagraphEnd(int flags
)
2187 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(m_caretPosition
, true);
2190 long newPos
= para
->GetRange().GetEnd() - 1;
2191 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
2195 SetCaretPosition(newPos
);
2197 SetDefaultStyleToCursorStyle();
2205 /// Move to the start of the paragraph
2206 bool wxRichTextCtrl::MoveToParagraphStart(int flags
)
2208 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(m_caretPosition
, true);
2211 long newPos
= para
->GetRange().GetStart() - 1;
2212 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
2216 SetCaretPosition(newPos
, true);
2218 SetDefaultStyleToCursorStyle();
2226 /// Move to the end of the line
2227 bool wxRichTextCtrl::MoveToLineEnd(int flags
)
2229 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
2233 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
2234 long newPos
= lineRange
.GetEnd();
2235 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
2239 SetCaretPosition(newPos
);
2241 SetDefaultStyleToCursorStyle();
2249 /// Move to the start of the line
2250 bool wxRichTextCtrl::MoveToLineStart(int flags
)
2252 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
2255 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
2256 long newPos
= lineRange
.GetStart()-1;
2258 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
2262 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphForLine(line
);
2264 SetCaretPosition(newPos
, para
->GetRange().GetStart() != lineRange
.GetStart());
2266 SetDefaultStyleToCursorStyle();
2274 /// Move to the start of the buffer
2275 bool wxRichTextCtrl::MoveHome(int flags
)
2277 if (m_caretPosition
!= -1)
2279 bool extendSel
= ExtendSelection(m_caretPosition
, -1, flags
);
2283 SetCaretPosition(-1);
2285 SetDefaultStyleToCursorStyle();
2293 /// Move to the end of the buffer
2294 bool wxRichTextCtrl::MoveEnd(int flags
)
2296 long endPos
= GetFocusObject()->GetOwnRange().GetEnd()-1;
2298 if (m_caretPosition
!= endPos
)
2300 bool extendSel
= ExtendSelection(m_caretPosition
, endPos
, flags
);
2304 SetCaretPosition(endPos
);
2306 SetDefaultStyleToCursorStyle();
2314 /// Move noPages pages up
2315 bool wxRichTextCtrl::PageUp(int noPages
, int flags
)
2317 return PageDown(- noPages
, flags
);
2320 /// Move noPages pages down
2321 bool wxRichTextCtrl::PageDown(int noPages
, int flags
)
2323 // Calculate which line occurs noPages * screen height further down.
2324 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
2327 wxSize clientSize
= GetClientSize();
2328 int newY
= line
->GetAbsolutePosition().y
+ noPages
*clientSize
.y
;
2330 wxRichTextLine
* newLine
= GetFocusObject()->GetLineAtYPosition(newY
);
2333 wxRichTextRange lineRange
= newLine
->GetAbsoluteRange();
2334 long pos
= lineRange
.GetStart()-1;
2335 if (pos
!= m_caretPosition
)
2337 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphForLine(newLine
);
2339 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2343 SetCaretPosition(pos
, para
->GetRange().GetStart() != lineRange
.GetStart());
2345 SetDefaultStyleToCursorStyle();
2355 static bool wxRichTextCtrlIsWhitespace(const wxString
& str
)
2357 return str
== wxT(" ") || str
== wxT("\t") || (!str
.empty() && (str
[0] == (wxChar
) 160));
2360 // Finds the caret position for the next word
2361 long wxRichTextCtrl::FindNextWordPosition(int direction
) const
2363 long endPos
= GetFocusObject()->GetOwnRange().GetEnd();
2367 long i
= m_caretPosition
+1+direction
; // +1 for conversion to character pos
2369 // First skip current text to space
2370 while (i
< endPos
&& i
> -1)
2372 // i is in character, not caret positions
2373 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2374 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2375 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
2379 else if (!wxRichTextCtrlIsWhitespace(text
) && !text
.empty())
2386 while (i
< endPos
&& i
> -1)
2388 // i is in character, not caret positions
2389 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2390 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2391 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
2392 return wxMax(-1, i
);
2394 if (text
.empty()) // End of paragraph, or maybe an image
2395 return wxMax(-1, i
- 1);
2396 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
2400 // Convert to caret position
2401 return wxMax(-1, i
- 1);
2410 long i
= m_caretPosition
;
2412 // First skip white space
2413 while (i
< endPos
&& i
> -1)
2415 // i is in character, not caret positions
2416 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2417 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2419 if (text
.empty() || (line
&& (i
== line
->GetAbsoluteRange().GetStart()))) // End of paragraph, or maybe an image
2421 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
2426 // Next skip current text to space
2427 while (i
< endPos
&& i
> -1)
2429 // i is in character, not caret positions
2430 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2431 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2432 if (line
&& line
->GetAbsoluteRange().GetStart() == i
)
2435 if (!wxRichTextCtrlIsWhitespace(text
) /* && !text.empty() */)
2448 /// Move n words left
2449 bool wxRichTextCtrl::WordLeft(int WXUNUSED(n
), int flags
)
2451 long pos
= FindNextWordPosition(-1);
2452 if (pos
!= m_caretPosition
)
2454 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
, true);
2456 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2460 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
2462 SetDefaultStyleToCursorStyle();
2470 /// Move n words right
2471 bool wxRichTextCtrl::WordRight(int WXUNUSED(n
), int flags
)
2473 long pos
= FindNextWordPosition(1);
2474 if (pos
!= m_caretPosition
)
2476 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
, true);
2478 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2482 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
2484 SetDefaultStyleToCursorStyle();
2493 void wxRichTextCtrl::OnSize(wxSizeEvent
& event
)
2495 // Only do sizing optimization for large buffers
2496 if (GetBuffer().GetOwnRange().GetEnd() > m_delayedLayoutThreshold
)
2498 m_fullLayoutRequired
= true;
2499 m_fullLayoutTime
= wxGetLocalTimeMillis();
2500 m_fullLayoutSavedPosition
= GetFirstVisiblePosition();
2501 LayoutContent(true /* onlyVisibleRect */);
2504 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2506 #if wxRICHTEXT_BUFFERED_PAINTING
2513 // Force any pending layout due to large buffer
2514 void wxRichTextCtrl::ForceDelayedLayout()
2516 if (m_fullLayoutRequired
)
2518 m_fullLayoutRequired
= false;
2519 m_fullLayoutTime
= 0;
2520 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2521 ShowPosition(m_fullLayoutSavedPosition
);
2527 /// Idle-time processing
2528 void wxRichTextCtrl::OnIdle(wxIdleEvent
& event
)
2530 #if wxRICHTEXT_USE_OWN_CARET
2531 if (((wxRichTextCaret
*) GetCaret())->GetNeedsUpdate())
2533 ((wxRichTextCaret
*) GetCaret())->SetNeedsUpdate(false);
2539 const int layoutInterval
= wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL
;
2541 if (m_fullLayoutRequired
&& (wxGetLocalTimeMillis() > (m_fullLayoutTime
+ layoutInterval
)))
2543 m_fullLayoutRequired
= false;
2544 m_fullLayoutTime
= 0;
2545 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2546 ShowPosition(m_fullLayoutSavedPosition
);
2550 if (m_caretPositionForDefaultStyle
!= -2)
2552 // If the caret position has changed, no longer reflect the default style
2554 if (GetCaretPosition() != m_caretPositionForDefaultStyle
)
2555 m_caretPositionForDefaultStyle
= -2;
2562 void wxRichTextCtrl::OnScroll(wxScrollWinEvent
& event
)
2564 #if wxRICHTEXT_USE_OWN_CARET
2565 if (!((wxRichTextCaret
*) GetCaret())->GetNeedsUpdate())
2568 ((wxRichTextCaret
*) GetCaret())->SetNeedsUpdate();
2575 /// Set up scrollbars, e.g. after a resize
2576 void wxRichTextCtrl::SetupScrollbars(bool atTop
)
2581 if (GetBuffer().IsEmpty() || !m_verticalScrollbarEnabled
)
2583 SetScrollbars(0, 0, 0, 0, 0, 0);
2587 // TODO: reimplement scrolling so we scroll by line, not by fixed number
2588 // of pixels. See e.g. wxVScrolledWindow for ideas.
2589 int pixelsPerUnit
= 5;
2590 wxSize clientSize
= GetClientSize();
2592 int maxHeight
= (int) (0.5 + GetScale() * (GetBuffer().GetCachedSize().y
+ GetBuffer().GetTopMargin()));
2594 // Round up so we have at least maxHeight pixels
2595 int unitsY
= (int) (((float)maxHeight
/(float)pixelsPerUnit
) + 0.5);
2597 int startX
= 0, startY
= 0;
2599 GetViewStart(& startX
, & startY
);
2601 int maxPositionX
= 0;
2602 int maxPositionY
= (int) ((((float)(wxMax((unitsY
*pixelsPerUnit
) - clientSize
.y
, 0)))/((float)pixelsPerUnit
)) + 0.5);
2604 int newStartX
= wxMin(maxPositionX
, startX
);
2605 int newStartY
= wxMin(maxPositionY
, startY
);
2607 int oldPPUX
, oldPPUY
;
2608 int oldStartX
, oldStartY
;
2609 int oldVirtualSizeX
= 0, oldVirtualSizeY
= 0;
2610 GetScrollPixelsPerUnit(& oldPPUX
, & oldPPUY
);
2611 GetViewStart(& oldStartX
, & oldStartY
);
2612 GetVirtualSize(& oldVirtualSizeX
, & oldVirtualSizeY
);
2614 oldVirtualSizeY
/= oldPPUY
;
2616 if (oldPPUX
== 0 && oldPPUY
== pixelsPerUnit
&& oldVirtualSizeY
== unitsY
&& oldStartX
== newStartX
&& oldStartY
== newStartY
)
2619 // Don't set scrollbars if there were none before, and there will be none now.
2620 if (oldPPUY
!= 0 && (oldVirtualSizeY
*oldPPUY
< clientSize
.y
) && (unitsY
*pixelsPerUnit
< clientSize
.y
))
2623 // Move to previous scroll position if
2625 SetScrollbars(0, pixelsPerUnit
, 0, unitsY
, newStartX
, newStartY
);
2628 /// Paint the background
2629 void wxRichTextCtrl::PaintBackground(wxDC
& dc
)
2631 wxColour backgroundColour
= GetBackgroundColour();
2632 if (!backgroundColour
.IsOk())
2633 backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
2635 // Clear the background
2636 dc
.SetBrush(wxBrush(backgroundColour
));
2637 dc
.SetPen(*wxTRANSPARENT_PEN
);
2638 wxRect
windowRect(GetClientSize());
2639 windowRect
.x
-= 2; windowRect
.y
-= 2;
2640 windowRect
.width
+= 4; windowRect
.height
+= 4;
2642 // We need to shift the rectangle to take into account
2643 // scrolling. Converting device to logical coordinates.
2644 CalcUnscrolledPosition(windowRect
.x
, windowRect
.y
, & windowRect
.x
, & windowRect
.y
);
2645 dc
.DrawRectangle(windowRect
);
2648 #if wxRICHTEXT_BUFFERED_PAINTING
2649 /// Recreate buffer bitmap if necessary
2650 bool wxRichTextCtrl::RecreateBuffer(const wxSize
& size
)
2653 if (sz
== wxDefaultSize
)
2654 sz
= GetClientSize();
2656 if (sz
.x
< 1 || sz
.y
< 1)
2659 if (!m_bufferBitmap
.IsOk() || m_bufferBitmap
.GetWidth() < sz
.x
|| m_bufferBitmap
.GetHeight() < sz
.y
)
2660 m_bufferBitmap
= wxBitmap(sz
.x
, sz
.y
);
2661 return m_bufferBitmap
.IsOk();
2665 // ----------------------------------------------------------------------------
2666 // file IO functions
2667 // ----------------------------------------------------------------------------
2668 #if wxUSE_FFILE && wxUSE_STREAMS
2669 bool wxRichTextCtrl::DoLoadFile(const wxString
& filename
, int fileType
)
2671 SetFocusObject(& GetBuffer(), true);
2673 bool success
= GetBuffer().LoadFile(filename
, (wxRichTextFileType
)fileType
);
2675 m_filename
= filename
;
2678 SetInsertionPoint(0);
2681 SetupScrollbars(true);
2683 wxTextCtrl::SendTextUpdatedEvent(this);
2689 wxLogError(_("File couldn't be loaded."));
2695 bool wxRichTextCtrl::DoSaveFile(const wxString
& filename
, int fileType
)
2697 if (GetBuffer().SaveFile(filename
, (wxRichTextFileType
)fileType
))
2699 m_filename
= filename
;
2706 wxLogError(_("The text couldn't be saved."));
2710 #endif // wxUSE_FFILE && wxUSE_STREAMS
2712 // ----------------------------------------------------------------------------
2713 // wxRichTextCtrl specific functionality
2714 // ----------------------------------------------------------------------------
2716 /// Add a new paragraph of text to the end of the buffer
2717 wxRichTextRange
wxRichTextCtrl::AddParagraph(const wxString
& text
)
2719 wxRichTextRange range
= GetFocusObject()->AddParagraph(text
);
2720 GetBuffer().Invalidate();
2726 wxRichTextRange
wxRichTextCtrl::AddImage(const wxImage
& image
)
2728 wxRichTextRange range
= GetFocusObject()->AddImage(image
);
2729 GetBuffer().Invalidate();
2734 // ----------------------------------------------------------------------------
2735 // selection and ranges
2736 // ----------------------------------------------------------------------------
2739 void wxRichTextCtrl::SelectNone()
2741 if (m_selection
.IsValid())
2743 wxRichTextSelection oldSelection
= m_selection
;
2745 m_selection
.Reset();
2747 RefreshForSelectionChange(oldSelection
, m_selection
);
2749 m_selectionAnchor
= -2;
2750 m_selectionAnchorObject
= NULL
;
2751 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
2754 static bool wxIsWordDelimiter(const wxString
& text
)
2756 return !text
.IsEmpty() && !wxIsalnum(text
[0]);
2759 /// Select the word at the given character position
2760 bool wxRichTextCtrl::SelectWord(long position
)
2762 if (position
< 0 || position
> GetFocusObject()->GetOwnRange().GetEnd())
2765 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(position
);
2769 if (position
== para
->GetRange().GetEnd())
2772 long positionStart
= position
;
2773 long positionEnd
= position
;
2775 for (positionStart
= position
; positionStart
>= para
->GetRange().GetStart(); positionStart
--)
2777 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(positionStart
, positionStart
));
2778 if (wxIsWordDelimiter(text
))
2784 if (positionStart
< para
->GetRange().GetStart())
2785 positionStart
= para
->GetRange().GetStart();
2787 for (positionEnd
= position
; positionEnd
< para
->GetRange().GetEnd(); positionEnd
++)
2789 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(positionEnd
, positionEnd
));
2790 if (wxIsWordDelimiter(text
))
2796 if (positionEnd
>= para
->GetRange().GetEnd())
2797 positionEnd
= para
->GetRange().GetEnd();
2799 if (positionEnd
< positionStart
)
2802 SetSelection(positionStart
, positionEnd
+1);
2804 if (positionStart
>= 0)
2806 MoveCaret(positionStart
-1, true);
2807 SetDefaultStyleToCursorStyle();
2813 wxString
wxRichTextCtrl::GetStringSelection() const
2816 GetSelection(&from
, &to
);
2818 return GetRange(from
, to
);
2821 // ----------------------------------------------------------------------------
2823 // ----------------------------------------------------------------------------
2825 wxTextCtrlHitTestResult
2826 wxRichTextCtrl::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
2828 // implement in terms of the other overload as the native ports typically
2829 // can get the position and not (x, y) pair directly (although wxUniv
2830 // directly gets x and y -- and so overrides this method as well)
2832 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
2834 if ( rc
!= wxTE_HT_UNKNOWN
)
2836 PositionToXY(pos
, x
, y
);
2842 wxTextCtrlHitTestResult
2843 wxRichTextCtrl::HitTest(const wxPoint
& pt
,
2846 wxClientDC
dc((wxRichTextCtrl
*) this);
2847 ((wxRichTextCtrl
*)this)->PrepareDC(dc
);
2849 // Buffer uses logical position (relative to start of buffer)
2851 wxPoint pt2
= GetLogicalPoint(pt
);
2853 wxRichTextObject
* hitObj
= NULL
;
2854 wxRichTextObject
* contextObj
= NULL
;
2855 wxRichTextDrawingContext
context((wxRichTextBuffer
*) & GetBuffer());
2856 int hit
= ((wxRichTextCtrl
*)this)->GetFocusObject()->HitTest(dc
, context
, pt2
, *pos
, & hitObj
, & contextObj
, wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
);
2858 if ((hit
& wxRICHTEXT_HITTEST_BEFORE
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2859 return wxTE_HT_BEFORE
;
2860 else if ((hit
& wxRICHTEXT_HITTEST_AFTER
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2861 return wxTE_HT_BEYOND
;
2862 else if (hit
& (wxRICHTEXT_HITTEST_BEFORE
|wxRICHTEXT_HITTEST_AFTER
))
2863 return wxTE_HT_ON_TEXT
;
2865 return wxTE_HT_UNKNOWN
;
2868 wxRichTextParagraphLayoutBox
*
2869 wxRichTextCtrl::FindContainerAtPoint(const wxPoint pt
, long& position
, int& hit
, wxRichTextObject
* hitObj
, int flags
/* = 0*/)
2871 wxClientDC
dc(this);
2873 dc
.SetFont(GetFont());
2875 wxPoint logicalPt
= GetLogicalPoint(pt
);
2877 wxRichTextObject
* contextObj
= NULL
;
2878 wxRichTextDrawingContext
context(& GetBuffer());
2879 hit
= GetBuffer().HitTest(dc
, context
, GetUnscaledPoint(logicalPt
), position
, &hitObj
, &contextObj
, flags
);
2880 wxRichTextParagraphLayoutBox
* container
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
2886 // ----------------------------------------------------------------------------
2887 // set/get the controls text
2888 // ----------------------------------------------------------------------------
2890 wxString
wxRichTextCtrl::DoGetValue() const
2892 return GetBuffer().GetText();
2895 wxString
wxRichTextCtrl::GetRange(long from
, long to
) const
2897 // Public API for range is different from internals
2898 return GetFocusObject()->GetTextForRange(wxRichTextRange(from
, to
-1));
2901 void wxRichTextCtrl::DoSetValue(const wxString
& value
, int flags
)
2903 // Don't call Clear here, since it always sends a text updated event
2904 m_buffer
.ResetAndClearCommands();
2905 m_buffer
.Invalidate(wxRICHTEXT_ALL
);
2906 m_caretPosition
= -1;
2907 m_caretPositionForDefaultStyle
= -2;
2908 m_caretAtLineStart
= false;
2909 m_selection
.Reset();
2910 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
2920 if (!value
.IsEmpty())
2922 // Remove empty paragraph
2923 GetBuffer().Clear();
2924 DoWriteText(value
, flags
);
2926 // for compatibility, don't move the cursor when doing SetValue()
2927 SetInsertionPoint(0);
2931 // still send an event for consistency
2932 if (flags
& SetValue_SendEvent
)
2933 wxTextCtrl::SendTextUpdatedEvent(this);
2938 void wxRichTextCtrl::WriteText(const wxString
& value
)
2943 void wxRichTextCtrl::DoWriteText(const wxString
& value
, int flags
)
2945 wxString valueUnix
= wxTextFile::Translate(value
, wxTextFileType_Unix
);
2947 GetFocusObject()->InsertTextWithUndo(& GetBuffer(), m_caretPosition
+1, valueUnix
, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2948 wxRichTextDrawingContext
context(& GetBuffer());
2949 GetBuffer().Defragment(context
);
2951 if ( flags
& SetValue_SendEvent
)
2952 wxTextCtrl::SendTextUpdatedEvent(this);
2955 void wxRichTextCtrl::AppendText(const wxString
& text
)
2957 SetInsertionPointEnd();
2962 /// Write an image at the current insertion point
2963 bool wxRichTextCtrl::WriteImage(const wxImage
& image
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2965 wxRichTextImageBlock imageBlock
;
2967 wxImage image2
= image
;
2968 if (imageBlock
.MakeImageBlock(image2
, bitmapType
))
2969 return WriteImage(imageBlock
, textAttr
);
2974 bool wxRichTextCtrl::WriteImage(const wxString
& filename
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2976 wxRichTextImageBlock imageBlock
;
2979 if (imageBlock
.MakeImageBlock(filename
, bitmapType
, image
, false))
2980 return WriteImage(imageBlock
, textAttr
);
2985 bool wxRichTextCtrl::WriteImage(const wxRichTextImageBlock
& imageBlock
, const wxRichTextAttr
& textAttr
)
2987 return GetFocusObject()->InsertImageWithUndo(& GetBuffer(), m_caretPosition
+1, imageBlock
, this, 0, textAttr
);
2990 bool wxRichTextCtrl::WriteImage(const wxBitmap
& bitmap
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2994 wxRichTextImageBlock imageBlock
;
2996 wxImage image
= bitmap
.ConvertToImage();
2997 if (image
.IsOk() && imageBlock
.MakeImageBlock(image
, bitmapType
))
2998 return WriteImage(imageBlock
, textAttr
);
3004 // Write a text box at the current insertion point.
3005 wxRichTextBox
* wxRichTextCtrl::WriteTextBox(const wxRichTextAttr
& textAttr
)
3007 wxRichTextBox
* textBox
= new wxRichTextBox
;
3008 textBox
->SetAttributes(textAttr
);
3009 textBox
->SetParent(& GetBuffer()); // set parent temporarily for AddParagraph to use correct style
3010 textBox
->AddParagraph(wxEmptyString
);
3011 textBox
->SetParent(NULL
);
3013 // The object returned is the one actually inserted into the buffer,
3014 // while the original one is deleted.
3015 wxRichTextObject
* obj
= GetFocusObject()->InsertObjectWithUndo(& GetBuffer(), m_caretPosition
+1, textBox
, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
3016 wxRichTextBox
* box
= wxDynamicCast(obj
, wxRichTextBox
);
3020 wxRichTextField
* wxRichTextCtrl::WriteField(const wxString
& fieldType
, const wxRichTextProperties
& properties
,
3021 const wxRichTextAttr
& textAttr
)
3023 return GetFocusObject()->InsertFieldWithUndo(& GetBuffer(), m_caretPosition
+1, fieldType
, properties
,
3024 this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
, textAttr
);
3027 // Write a table at the current insertion point, returning the table.
3028 wxRichTextTable
* wxRichTextCtrl::WriteTable(int rows
, int cols
, const wxRichTextAttr
& tableAttr
, const wxRichTextAttr
& cellAttr
)
3030 wxASSERT(rows
> 0 && cols
> 0);
3032 if (rows
<= 0 || cols
<= 0)
3035 wxRichTextTable
* table
= new wxRichTextTable
;
3036 table
->SetAttributes(tableAttr
);
3037 table
->SetParent(& GetBuffer()); // set parent temporarily for AddParagraph to use correct style
3039 table
->CreateTable(rows
, cols
);
3041 table
->SetParent(NULL
);
3044 for (j
= 0; j
< rows
; j
++)
3046 for (i
= 0; i
< cols
; i
++)
3048 table
->GetCell(j
, i
)->GetAttributes() = cellAttr
;
3052 // The object returned is the one actually inserted into the buffer,
3053 // while the original one is deleted.
3054 wxRichTextObject
* obj
= GetFocusObject()->InsertObjectWithUndo(& GetBuffer(), m_caretPosition
+1, table
, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
3055 wxRichTextTable
* tableResult
= wxDynamicCast(obj
, wxRichTextTable
);
3060 /// Insert a newline (actually paragraph) at the current insertion point.
3061 bool wxRichTextCtrl::Newline()
3063 return GetFocusObject()->InsertNewlineWithUndo(& GetBuffer(), m_caretPosition
+1, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
3066 /// Insert a line break at the current insertion point.
3067 bool wxRichTextCtrl::LineBreak()
3070 text
= wxRichTextLineBreakChar
;
3071 return GetFocusObject()->InsertTextWithUndo(& GetBuffer(), m_caretPosition
+1, text
, this);
3074 // ----------------------------------------------------------------------------
3075 // Clipboard operations
3076 // ----------------------------------------------------------------------------
3078 void wxRichTextCtrl::Copy()
3082 wxRichTextRange range
= GetInternalSelectionRange();
3083 GetBuffer().CopyToClipboard(range
);
3087 void wxRichTextCtrl::Cut()
3091 wxRichTextRange range
= GetInternalSelectionRange();
3092 GetBuffer().CopyToClipboard(range
);
3094 DeleteSelectedContent();
3100 void wxRichTextCtrl::Paste()
3104 BeginBatchUndo(_("Paste"));
3106 long newPos
= m_caretPosition
;
3107 DeleteSelectedContent(& newPos
);
3109 GetBuffer().PasteFromClipboard(newPos
);
3115 void wxRichTextCtrl::DeleteSelection()
3117 if (CanDeleteSelection())
3119 DeleteSelectedContent();
3123 bool wxRichTextCtrl::HasSelection() const
3125 return (m_selection
.IsValid() && m_selection
.GetContainer() == GetFocusObject());
3128 bool wxRichTextCtrl::HasUnfocusedSelection() const
3130 return m_selection
.IsValid();
3133 bool wxRichTextCtrl::CanCopy() const
3135 // Can copy if there's a selection
3136 return HasSelection();
3139 bool wxRichTextCtrl::CanCut() const
3141 return CanDeleteSelection();
3144 bool wxRichTextCtrl::CanPaste() const
3146 if ( !IsEditable() || !GetFocusObject() || !CanInsertContent(* GetFocusObject(), m_caretPosition
+1))
3149 return GetBuffer().CanPasteFromClipboard();
3152 bool wxRichTextCtrl::CanDeleteSelection() const
3154 return HasSelection() && IsEditable() && CanDeleteRange(* GetFocusObject(), GetSelectionRange());
3158 // ----------------------------------------------------------------------------
3160 // ----------------------------------------------------------------------------
3162 void wxRichTextCtrl::SetContextMenu(wxMenu
* menu
)
3164 if (m_contextMenu
&& m_contextMenu
!= menu
)
3165 delete m_contextMenu
;
3166 m_contextMenu
= menu
;
3169 void wxRichTextCtrl::SetEditable(bool editable
)
3171 m_editable
= editable
;
3174 void wxRichTextCtrl::SetInsertionPoint(long pos
)
3178 m_caretPosition
= pos
- 1;
3179 m_caretAtLineStart
= true;
3183 SetDefaultStyleToCursorStyle();
3186 void wxRichTextCtrl::SetInsertionPointEnd()
3188 long pos
= GetLastPosition();
3189 SetInsertionPoint(pos
);
3192 long wxRichTextCtrl::GetInsertionPoint() const
3194 return m_caretPosition
+1;
3197 wxTextPos
wxRichTextCtrl::GetLastPosition() const
3199 return GetFocusObject()->GetOwnRange().GetEnd();
3202 // If the return values from and to are the same, there is no
3204 void wxRichTextCtrl::GetSelection(long* from
, long* to
) const
3206 if (m_selection
.IsValid())
3208 *from
= m_selection
.GetRange().GetStart();
3209 *to
= m_selection
.GetRange().GetEnd();
3219 bool wxRichTextCtrl::IsEditable() const
3224 // ----------------------------------------------------------------------------
3226 // ----------------------------------------------------------------------------
3228 void wxRichTextCtrl::SetSelection(long from
, long to
)
3230 // if from and to are both -1, it means (in wxWidgets) that all text should
3232 if ( (from
== -1) && (to
== -1) )
3235 to
= GetLastPosition()+1;
3244 wxRichTextSelection oldSelection
= m_selection
;
3246 m_selectionAnchor
= from
-1;
3247 m_selectionAnchorObject
= NULL
;
3248 m_selection
.Set(wxRichTextRange(from
, to
-1), GetFocusObject());
3250 m_caretPosition
= wxMax(-1, to
-1);
3252 RefreshForSelectionChange(oldSelection
, m_selection
);
3257 // ----------------------------------------------------------------------------
3259 // ----------------------------------------------------------------------------
3261 void wxRichTextCtrl::Replace(long from
, long to
,
3262 const wxString
& value
)
3264 BeginBatchUndo(_("Replace"));
3266 SetSelection(from
, to
);
3268 wxRichTextAttr
attr(GetDefaultStyle());
3270 DeleteSelectedContent();
3272 SetDefaultStyle(attr
);
3274 if (!value
.IsEmpty())
3275 DoWriteText(value
, SetValue_SelectionOnly
);
3280 void wxRichTextCtrl::Remove(long from
, long to
)
3284 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(from
, to
-1), this, & GetBuffer());
3291 bool wxRichTextCtrl::IsModified() const
3293 return m_buffer
.IsModified();
3296 void wxRichTextCtrl::MarkDirty()
3298 m_buffer
.Modify(true);
3301 void wxRichTextCtrl::DiscardEdits()
3303 m_caretPositionForDefaultStyle
= -2;
3304 m_buffer
.Modify(false);
3305 m_buffer
.GetCommandProcessor()->ClearCommands();
3308 int wxRichTextCtrl::GetNumberOfLines() const
3310 return GetFocusObject()->GetParagraphCount();
3313 // ----------------------------------------------------------------------------
3314 // Positions <-> coords
3315 // ----------------------------------------------------------------------------
3317 long wxRichTextCtrl::XYToPosition(long x
, long y
) const
3319 return GetFocusObject()->XYToPosition(x
, y
);
3322 bool wxRichTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
3324 return GetFocusObject()->PositionToXY(pos
, x
, y
);
3327 // ----------------------------------------------------------------------------
3329 // ----------------------------------------------------------------------------
3331 void wxRichTextCtrl::ShowPosition(long pos
)
3333 if (!IsPositionVisible(pos
))
3334 ScrollIntoView(pos
-1, WXK_DOWN
);
3337 int wxRichTextCtrl::GetLineLength(long lineNo
) const
3339 return GetFocusObject()->GetParagraphLength(lineNo
);
3342 wxString
wxRichTextCtrl::GetLineText(long lineNo
) const
3344 return GetFocusObject()->GetParagraphText(lineNo
);
3347 // ----------------------------------------------------------------------------
3349 // ----------------------------------------------------------------------------
3351 void wxRichTextCtrl::Undo()
3355 GetCommandProcessor()->Undo();
3359 void wxRichTextCtrl::Redo()
3363 GetCommandProcessor()->Redo();
3367 bool wxRichTextCtrl::CanUndo() const
3369 return GetCommandProcessor()->CanUndo() && IsEditable();
3372 bool wxRichTextCtrl::CanRedo() const
3374 return GetCommandProcessor()->CanRedo() && IsEditable();
3377 // ----------------------------------------------------------------------------
3378 // implementation details
3379 // ----------------------------------------------------------------------------
3381 void wxRichTextCtrl::Command(wxCommandEvent
& event
)
3383 SetValue(event
.GetString());
3384 GetEventHandler()->ProcessEvent(event
);
3387 void wxRichTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
3389 // By default, load the first file into the text window.
3390 if (event
.GetNumberOfFiles() > 0)
3392 LoadFile(event
.GetFiles()[0]);
3396 wxSize
wxRichTextCtrl::DoGetBestSize() const
3398 return wxSize(10, 10);
3401 // ----------------------------------------------------------------------------
3402 // standard handlers for standard edit menu events
3403 // ----------------------------------------------------------------------------
3405 void wxRichTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
3410 void wxRichTextCtrl::OnClear(wxCommandEvent
& WXUNUSED(event
))
3415 void wxRichTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
3420 void wxRichTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
3425 void wxRichTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
3430 void wxRichTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
3435 void wxRichTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
3437 event
.Enable( CanCut() );
3440 void wxRichTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
3442 event
.Enable( CanCopy() );
3445 void wxRichTextCtrl::OnUpdateClear(wxUpdateUIEvent
& event
)
3447 event
.Enable( CanDeleteSelection() );
3450 void wxRichTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
3452 event
.Enable( CanPaste() );
3455 void wxRichTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
3457 event
.Enable( CanUndo() );
3458 event
.SetText( GetCommandProcessor()->GetUndoMenuLabel() );
3461 void wxRichTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
3463 event
.Enable( CanRedo() );
3464 event
.SetText( GetCommandProcessor()->GetRedoMenuLabel() );
3467 void wxRichTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
3469 if (GetLastPosition() > 0)
3473 void wxRichTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
3475 event
.Enable(GetLastPosition() > 0);
3478 void wxRichTextCtrl::OnProperties(wxCommandEvent
& event
)
3480 int idx
= event
.GetId() - wxID_RICHTEXT_PROPERTIES1
;
3481 if (idx
>= 0 && idx
< m_contextMenuPropertiesInfo
.GetCount())
3483 wxRichTextObject
* obj
= m_contextMenuPropertiesInfo
.GetObject(idx
);
3484 if (obj
&& CanEditProperties(obj
))
3485 EditProperties(obj
, this);
3487 m_contextMenuPropertiesInfo
.Clear();
3491 void wxRichTextCtrl::OnUpdateProperties(wxUpdateUIEvent
& event
)
3493 int idx
= event
.GetId() - wxID_RICHTEXT_PROPERTIES1
;
3494 event
.Enable(idx
>= 0 && idx
< m_contextMenuPropertiesInfo
.GetCount());
3497 void wxRichTextCtrl::OnContextMenu(wxContextMenuEvent
& event
)
3499 if (event
.GetEventObject() != this)
3505 ShowContextMenu(m_contextMenu
, event
.GetPosition());
3508 // Prepares the context menu, adding appropriate property-editing commands.
3509 // Returns the number of property commands added.
3510 int wxRichTextCtrl::PrepareContextMenu(wxMenu
* menu
, const wxPoint
& pt
, bool addPropertyCommands
)
3512 wxClientDC
dc(this);
3514 dc
.SetFont(GetFont());
3516 m_contextMenuPropertiesInfo
.Clear();
3519 wxRichTextObject
* hitObj
= NULL
;
3520 wxRichTextObject
* contextObj
= NULL
;
3521 if (pt
!= wxDefaultPosition
)
3523 wxPoint logicalPt
= GetLogicalPoint(ScreenToClient(pt
));
3524 wxRichTextDrawingContext
context(& GetBuffer());
3525 int hit
= GetBuffer().HitTest(dc
, context
, GetUnscaledPoint(logicalPt
), position
, & hitObj
, & contextObj
);
3527 if (hit
== wxRICHTEXT_HITTEST_ON
|| hit
== wxRICHTEXT_HITTEST_BEFORE
|| hit
== wxRICHTEXT_HITTEST_AFTER
)
3529 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
3530 if (hitObj
&& actualContainer
)
3532 if (actualContainer
->AcceptsFocus())
3534 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
3535 SetCaretPositionAfterClick(actualContainer
, position
, hit
);
3538 if (addPropertyCommands
)
3539 m_contextMenuPropertiesInfo
.AddItems(this, actualContainer
, hitObj
);
3543 if (addPropertyCommands
)
3544 m_contextMenuPropertiesInfo
.AddItems(this, GetFocusObject(), NULL
);
3549 if (addPropertyCommands
)
3550 m_contextMenuPropertiesInfo
.AddItems(this, GetFocusObject(), NULL
);
3555 // Invoked from the keyboard, so don't set the caret position and don't use the event
3557 hitObj
= GetFocusObject()->GetLeafObjectAtPosition(m_caretPosition
+1);
3559 contextObj
= hitObj
->GetParentContainer();
3561 contextObj
= GetFocusObject();
3563 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
3564 if (hitObj
&& actualContainer
)
3566 if (addPropertyCommands
)
3567 m_contextMenuPropertiesInfo
.AddItems(this, actualContainer
, hitObj
);
3571 if (addPropertyCommands
)
3572 m_contextMenuPropertiesInfo
.AddItems(this, GetFocusObject(), NULL
);
3578 if (addPropertyCommands
)
3579 m_contextMenuPropertiesInfo
.AddMenuItems(menu
);
3580 return m_contextMenuPropertiesInfo
.GetCount();
3586 // Shows the context menu, adding appropriate property-editing commands
3587 bool wxRichTextCtrl::ShowContextMenu(wxMenu
* menu
, const wxPoint
& pt
, bool addPropertyCommands
)
3591 PrepareContextMenu(menu
, pt
, addPropertyCommands
);
3599 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
3601 return GetFocusObject()->SetStyle(wxRichTextRange(start
, end
-1), wxRichTextAttr(style
));
3604 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxRichTextAttr
& style
)
3606 return GetFocusObject()->SetStyle(wxRichTextRange(start
, end
-1), style
);
3609 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
)
3611 return GetFocusObject()->SetStyle(range
.ToInternal(), wxRichTextAttr(style
));
3614 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
)
3616 return GetFocusObject()->SetStyle(range
.ToInternal(), style
);
3619 void wxRichTextCtrl::SetStyle(wxRichTextObject
*obj
, const wxRichTextAttr
& textAttr
, int flags
)
3621 GetFocusObject()->SetStyle(obj
, textAttr
, flags
);
3624 // extended style setting operation with flags including:
3625 // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY.
3626 // see richtextbuffer.h for more details.
3628 bool wxRichTextCtrl::SetStyleEx(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
)
3630 return GetFocusObject()->SetStyle(range
.ToInternal(), style
, flags
);
3633 bool wxRichTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
3635 return GetBuffer().SetDefaultStyle(style
);
3638 bool wxRichTextCtrl::SetDefaultStyle(const wxRichTextAttr
& style
)
3640 wxRichTextAttr
attr1(style
);
3641 attr1
.GetTextBoxAttr().Reset();
3642 return GetBuffer().SetDefaultStyle(attr1
);
3645 const wxRichTextAttr
& wxRichTextCtrl::GetDefaultStyleEx() const
3647 return GetBuffer().GetDefaultStyle();
3650 bool wxRichTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
3652 wxRichTextAttr attr
;
3653 if (GetFocusObject()->GetStyle(position
, attr
))
3662 bool wxRichTextCtrl::GetStyle(long position
, wxRichTextAttr
& style
)
3664 return GetFocusObject()->GetStyle(position
, style
);
3667 bool wxRichTextCtrl::GetStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3669 wxRichTextAttr attr
;
3670 if (container
->GetStyle(position
, attr
))
3679 // get the common set of styles for the range
3680 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
)
3682 wxRichTextAttr attr
;
3683 if (GetFocusObject()->GetStyleForRange(range
.ToInternal(), attr
))
3692 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
)
3694 return GetFocusObject()->GetStyleForRange(range
.ToInternal(), style
);
3697 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3699 return container
->GetStyleForRange(range
.ToInternal(), style
);
3702 /// Get the content (uncombined) attributes for this position.
3703 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxRichTextAttr
& style
)
3705 return GetFocusObject()->GetUncombinedStyle(position
, style
);
3708 /// Get the content (uncombined) attributes for this position.
3709 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3711 return container
->GetUncombinedStyle(position
, style
);
3714 bool wxRichTextCtrl::SetProperties(const wxRichTextRange
& range
, const wxRichTextProperties
& properties
, int flags
)
3716 return GetFocusObject()->SetProperties(range
.ToInternal(), properties
, flags
);
3719 /// Set font, and also the buffer attributes
3720 bool wxRichTextCtrl::SetFont(const wxFont
& font
)
3722 wxControl::SetFont(font
);
3724 wxRichTextAttr attr
= GetBuffer().GetAttributes();
3726 GetBuffer().SetBasicStyle(attr
);
3728 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
3734 /// Transform logical to physical
3735 wxPoint
wxRichTextCtrl::GetPhysicalPoint(const wxPoint
& ptLogical
) const
3738 CalcScrolledPosition(ptLogical
.x
, ptLogical
.y
, & pt
.x
, & pt
.y
);
3743 /// Transform physical to logical
3744 wxPoint
wxRichTextCtrl::GetLogicalPoint(const wxPoint
& ptPhysical
) const
3747 CalcUnscrolledPosition(ptPhysical
.x
, ptPhysical
.y
, & pt
.x
, & pt
.y
);
3752 /// Position the caret
3753 void wxRichTextCtrl::PositionCaret(wxRichTextParagraphLayoutBox
* container
)
3758 //wxLogDebug(wxT("PositionCaret"));
3761 if (GetCaretPositionForIndex(GetCaretPosition(), caretRect
, container
))
3763 #if !wxRICHTEXT_USE_OWN_CARET
3764 caretRect
= GetScaledRect(caretRect
);
3766 int topMargin
= (int) (0.5 + GetScale()*GetBuffer().GetTopMargin());
3767 int bottomMargin
= (int) (0.5 + GetScale()*GetBuffer().GetBottomMargin());
3768 wxPoint newPt
= caretRect
.GetPosition();
3769 wxSize newSz
= caretRect
.GetSize();
3770 wxPoint pt
= GetPhysicalPoint(newPt
);
3771 if (GetCaret()->GetPosition() != pt
|| GetCaret()->GetSize() != newSz
)
3774 if (GetCaret()->GetSize() != newSz
)
3775 GetCaret()->SetSize(newSz
);
3777 // Adjust size so the caret size and position doesn't appear in the margins
3778 if (((pt
.y
+ newSz
.y
) <= topMargin
) || (pt
.y
>= (GetClientSize().y
- bottomMargin
)))
3783 else if (pt
.y
< topMargin
&& (pt
.y
+ newSz
.y
) > topMargin
)
3785 newSz
.y
-= (topMargin
- pt
.y
);
3789 GetCaret()->SetSize(newSz
);
3792 else if (pt
.y
< (GetClientSize().y
- bottomMargin
) && (pt
.y
+ newSz
.y
) > (GetClientSize().y
- bottomMargin
))
3794 newSz
.y
= GetClientSize().y
- bottomMargin
- pt
.y
;
3795 GetCaret()->SetSize(newSz
);
3798 GetCaret()->Move(pt
);
3804 /// Get the caret height and position for the given character position
3805 bool wxRichTextCtrl::GetCaretPositionForIndex(long position
, wxRect
& rect
, wxRichTextParagraphLayoutBox
* container
)
3807 wxClientDC
dc(this);
3809 dc
.SetUserScale(GetScale(), GetScale());
3810 dc
.SetFont(GetFont());
3816 container
= GetFocusObject();
3818 wxRichTextDrawingContext
context(& GetBuffer());
3819 if (container
->FindPosition(dc
, context
, position
, pt
, & height
, m_caretAtLineStart
))
3821 // Caret height can't be zero
3823 height
= dc
.GetCharHeight();
3825 rect
= wxRect(pt
, wxSize(wxRICHTEXT_DEFAULT_CARET_WIDTH
, height
));
3832 /// Gets the line for the visible caret position. If the caret is
3833 /// shown at the very end of the line, it means the next character is actually
3834 /// on the following line. So let's get the line we're expecting to find
3835 /// if this is the case.
3836 wxRichTextLine
* wxRichTextCtrl::GetVisibleLineForCaretPosition(long caretPosition
) const
3838 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(caretPosition
, true);
3839 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(caretPosition
, true);
3842 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3843 if (caretPosition
== lineRange
.GetStart()-1 &&
3844 (para
->GetRange().GetStart() != lineRange
.GetStart()))
3846 if (!m_caretAtLineStart
)
3847 line
= GetFocusObject()->GetLineAtPosition(caretPosition
-1, true);
3854 /// Move the caret to the given character position
3855 bool wxRichTextCtrl::MoveCaret(long pos
, bool showAtLineStart
, wxRichTextParagraphLayoutBox
* container
)
3857 if (GetBuffer().IsDirty())
3861 container
= GetFocusObject();
3863 if (pos
<= container
->GetOwnRange().GetEnd())
3865 SetCaretPosition(pos
, showAtLineStart
);
3867 PositionCaret(container
);
3875 /// Layout the buffer: which we must do before certain operations, such as
3876 /// setting the caret position.
3877 bool wxRichTextCtrl::LayoutContent(bool onlyVisibleRect
)
3879 if (GetBuffer().IsDirty() || onlyVisibleRect
)
3881 wxRect
availableSpace(GetUnscaledSize(GetClientSize()));
3882 if (availableSpace
.width
== 0)
3883 availableSpace
.width
= 10;
3884 if (availableSpace
.height
== 0)
3885 availableSpace
.height
= 10;
3887 int flags
= wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
;
3888 if (onlyVisibleRect
)
3890 flags
|= wxRICHTEXT_LAYOUT_SPECIFIED_RECT
;
3891 availableSpace
.SetPosition(GetUnscaledPoint(GetLogicalPoint(wxPoint(0, 0))));
3894 wxClientDC
dc(this);
3897 dc
.SetFont(GetFont());
3898 dc
.SetUserScale(GetScale(), GetScale());
3900 wxRichTextDrawingContext
context(& GetBuffer());
3901 GetBuffer().Defragment(context
);
3902 GetBuffer().UpdateRanges(); // If items were deleted, ranges need recalculation
3903 GetBuffer().Layout(dc
, context
, availableSpace
, availableSpace
, flags
);
3904 GetBuffer().Invalidate(wxRICHTEXT_NONE
);
3906 dc
.SetUserScale(1.0, 1.0);
3908 if (!IsFrozen() && !onlyVisibleRect
)
3915 /// Is all of the selection, or the current caret position, bold?
3916 bool wxRichTextCtrl::IsSelectionBold()
3920 wxRichTextAttr attr
;
3921 wxRichTextRange range
= GetSelectionRange();
3922 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3923 attr
.SetFontWeight(wxFONTWEIGHT_BOLD
);
3925 return HasCharacterAttributes(range
, attr
);
3929 // If no selection, then we need to combine current style with default style
3930 // to see what the effect would be if we started typing.
3931 wxRichTextAttr attr
;
3932 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3934 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3935 if (GetStyle(pos
, attr
))
3937 if (IsDefaultStyleShowing())
3938 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3939 return attr
.GetFontWeight() == wxFONTWEIGHT_BOLD
;
3945 /// Is all of the selection, or the current caret position, italics?
3946 bool wxRichTextCtrl::IsSelectionItalics()
3950 wxRichTextRange range
= GetSelectionRange();
3951 wxRichTextAttr attr
;
3952 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3953 attr
.SetFontStyle(wxFONTSTYLE_ITALIC
);
3955 return HasCharacterAttributes(range
, attr
);
3959 // If no selection, then we need to combine current style with default style
3960 // to see what the effect would be if we started typing.
3961 wxRichTextAttr attr
;
3962 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3964 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3965 if (GetStyle(pos
, attr
))
3967 if (IsDefaultStyleShowing())
3968 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3969 return attr
.GetFontStyle() == wxFONTSTYLE_ITALIC
;
3975 /// Is all of the selection, or the current caret position, underlined?
3976 bool wxRichTextCtrl::IsSelectionUnderlined()
3980 wxRichTextRange range
= GetSelectionRange();
3981 wxRichTextAttr attr
;
3982 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3983 attr
.SetFontUnderlined(true);
3985 return HasCharacterAttributes(range
, attr
);
3989 // If no selection, then we need to combine current style with default style
3990 // to see what the effect would be if we started typing.
3991 wxRichTextAttr attr
;
3992 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3993 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3995 if (GetStyle(pos
, attr
))
3997 if (IsDefaultStyleShowing())
3998 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3999 return attr
.GetFontUnderlined();
4005 /// Does all of the selection, or the current caret position, have this wxTextAttrEffects flag(s)?
4006 bool wxRichTextCtrl::DoesSelectionHaveTextEffectFlag(int flag
)
4008 wxRichTextAttr attr
;
4009 attr
.SetFlags(wxTEXT_ATTR_EFFECTS
);
4010 attr
.SetTextEffectFlags(flag
);
4011 attr
.SetTextEffects(flag
);
4015 return HasCharacterAttributes(GetSelectionRange(), attr
);
4019 // If no selection, then we need to combine current style with default style
4020 // to see what the effect would be if we started typing.
4021 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
4022 if (GetStyle(pos
, attr
))
4024 if (IsDefaultStyleShowing())
4025 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
4026 return (attr
.GetTextEffectFlags() & flag
) != 0;
4032 /// Apply bold to the selection
4033 bool wxRichTextCtrl::ApplyBoldToSelection()
4035 wxRichTextAttr attr
;
4036 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
4037 attr
.SetFontWeight(IsSelectionBold() ? wxFONTWEIGHT_NORMAL
: wxFONTWEIGHT_BOLD
);
4040 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
4043 wxRichTextAttr current
= GetDefaultStyleEx();
4044 current
.Apply(attr
);
4045 SetAndShowDefaultStyle(current
);
4050 /// Apply italic to the selection
4051 bool wxRichTextCtrl::ApplyItalicToSelection()
4053 wxRichTextAttr attr
;
4054 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
4055 attr
.SetFontStyle(IsSelectionItalics() ? wxFONTSTYLE_NORMAL
: wxFONTSTYLE_ITALIC
);
4058 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
4061 wxRichTextAttr current
= GetDefaultStyleEx();
4062 current
.Apply(attr
);
4063 SetAndShowDefaultStyle(current
);
4068 /// Apply underline to the selection
4069 bool wxRichTextCtrl::ApplyUnderlineToSelection()
4071 wxRichTextAttr attr
;
4072 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
4073 attr
.SetFontUnderlined(!IsSelectionUnderlined());
4076 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
4079 wxRichTextAttr current
= GetDefaultStyleEx();
4080 current
.Apply(attr
);
4081 SetAndShowDefaultStyle(current
);
4086 /// Apply the wxTextAttrEffects flag(s) to the selection, or the current caret position if there's no selection
4087 bool wxRichTextCtrl::ApplyTextEffectToSelection(int flags
)
4089 wxRichTextAttr attr
;
4090 attr
.SetFlags(wxTEXT_ATTR_EFFECTS
);
4091 attr
.SetTextEffectFlags(flags
);
4092 if (!DoesSelectionHaveTextEffectFlag(flags
))
4093 attr
.SetTextEffects(flags
);
4095 attr
.SetTextEffects(attr
.GetTextEffectFlags() & ~flags
);
4098 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
4101 wxRichTextAttr current
= GetDefaultStyleEx();
4102 current
.Apply(attr
);
4103 SetAndShowDefaultStyle(current
);
4108 /// Is all of the selection aligned according to the specified flag?
4109 bool wxRichTextCtrl::IsSelectionAligned(wxTextAttrAlignment alignment
)
4111 wxRichTextRange range
;
4113 range
= GetSelectionRange();
4115 range
= wxRichTextRange(GetCaretPosition()+1, GetCaretPosition()+2);
4117 wxRichTextAttr attr
;
4118 attr
.SetAlignment(alignment
);
4120 return HasParagraphAttributes(range
, attr
);
4123 /// Apply alignment to the selection
4124 bool wxRichTextCtrl::ApplyAlignmentToSelection(wxTextAttrAlignment alignment
)
4126 wxRichTextAttr attr
;
4127 attr
.SetAlignment(alignment
);
4129 return SetStyle(GetSelectionRange(), attr
);
4132 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(GetCaretPosition()+1);
4134 return SetStyleEx(para
->GetRange().FromInternal(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
);
4139 /// Apply a named style to the selection
4140 bool wxRichTextCtrl::ApplyStyle(wxRichTextStyleDefinition
* def
)
4142 // Flags are defined within each definition, so only certain
4143 // attributes are applied.
4144 wxRichTextAttr
attr(GetStyleSheet() ? def
->GetStyleMergedWithBase(GetStyleSheet()) : def
->GetStyle());
4146 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_RESET
;
4148 if (wxDynamicCast(def
, wxRichTextListStyleDefinition
))
4150 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
4152 wxRichTextRange range
;
4155 range
= GetSelectionRange();
4158 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
4159 range
= wxRichTextRange(pos
, pos
+1);
4162 return SetListStyle(range
, (wxRichTextListStyleDefinition
*) def
, flags
);
4165 bool isPara
= false;
4167 // Make sure the attr has the style name
4168 if (wxDynamicCast(def
, wxRichTextParagraphStyleDefinition
))
4171 attr
.SetParagraphStyleName(def
->GetName());
4173 // If applying a paragraph style, we only want the paragraph nodes to adopt these
4174 // attributes, and not the leaf nodes. This will allow the content (e.g. text)
4175 // to change its style independently.
4176 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
4178 else if (wxDynamicCast(def
, wxRichTextCharacterStyleDefinition
))
4179 attr
.SetCharacterStyleName(def
->GetName());
4180 else if (wxDynamicCast(def
, wxRichTextBoxStyleDefinition
))
4181 attr
.GetTextBoxAttr().SetBoxStyleName(def
->GetName());
4183 if (wxDynamicCast(def
, wxRichTextBoxStyleDefinition
))
4185 if (GetFocusObject() && (GetFocusObject() != & GetBuffer()))
4187 SetStyle(GetFocusObject(), attr
);
4193 else if (HasSelection())
4194 return SetStyleEx(GetSelectionRange(), attr
, flags
);
4197 wxRichTextAttr current
= GetDefaultStyleEx();
4198 wxRichTextAttr
defaultStyle(attr
);
4201 // Don't apply extra character styles since they are already implied
4202 // in the paragraph style
4203 defaultStyle
.SetFlags(defaultStyle
.GetFlags() & ~wxTEXT_ATTR_CHARACTER
);
4205 current
.Apply(defaultStyle
);
4206 SetAndShowDefaultStyle(current
);
4208 // If it's a paragraph style, we want to apply the style to the
4209 // current paragraph even if we didn't select any text.
4212 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
4213 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
);
4216 return SetStyleEx(para
->GetRange().FromInternal(), attr
, flags
);
4223 /// Apply the style sheet to the buffer, for example if the styles have changed.
4224 bool wxRichTextCtrl::ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
)
4227 styleSheet
= GetBuffer().GetStyleSheet();
4231 if (GetBuffer().ApplyStyleSheet(styleSheet
))
4233 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
4241 /// Sets the default style to the style under the cursor
4242 bool wxRichTextCtrl::SetDefaultStyleToCursorStyle()
4244 wxRichTextAttr attr
;
4245 attr
.SetFlags(wxTEXT_ATTR_CHARACTER
);
4247 // If at the start of a paragraph, use the next position.
4248 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
4250 wxRichTextObject
* obj
= GetFocusObject()->GetLeafObjectAtPosition(pos
);
4251 if (obj
&& obj
->IsTopLevel())
4253 // Don't use the attributes of a top-level object, since they might apply
4254 // to content of the object, e.g. background colour.
4255 SetDefaultStyle(wxRichTextAttr());
4258 else if (GetUncombinedStyle(pos
, attr
))
4260 SetDefaultStyle(attr
);
4267 /// Returns the first visible position in the current view
4268 long wxRichTextCtrl::GetFirstVisiblePosition() const
4270 wxRichTextLine
* line
= GetFocusObject()->GetLineAtYPosition(GetUnscaledPoint(GetLogicalPoint(wxPoint(0, 0))).y
);
4272 return line
->GetAbsoluteRange().GetStart();
4277 /// Get the first visible point in the window
4278 wxPoint
wxRichTextCtrl::GetFirstVisiblePoint() const
4281 int startXUnits
, startYUnits
;
4283 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
4284 GetViewStart(& startXUnits
, & startYUnits
);
4286 return wxPoint(startXUnits
* ppuX
, startYUnits
* ppuY
);
4289 /// The adjusted caret position is the character position adjusted to take
4290 /// into account whether we're at the start of a paragraph, in which case
4291 /// style information should be taken from the next position, not current one.
4292 long wxRichTextCtrl::GetAdjustedCaretPosition(long caretPos
) const
4294 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(caretPos
+1);
4296 if (para
&& (caretPos
+1 == para
->GetRange().GetStart()))
4301 /// Get/set the selection range in character positions. -1, -1 means no selection.
4302 /// The range is in API convention, i.e. a single character selection is denoted
4304 wxRichTextRange
wxRichTextCtrl::GetSelectionRange() const
4306 wxRichTextRange range
= GetInternalSelectionRange();
4307 if (range
!= wxRichTextRange(-2,-2) && range
!= wxRichTextRange(-1,-1))
4308 range
.SetEnd(range
.GetEnd() + 1);
4312 void wxRichTextCtrl::SetSelectionRange(const wxRichTextRange
& range
)
4314 SetSelection(range
.GetStart(), range
.GetEnd());
4318 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
4320 return GetFocusObject()->SetListStyle(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
4323 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
4325 return GetFocusObject()->SetListStyle(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
4328 /// Clear list for given range
4329 bool wxRichTextCtrl::ClearListStyle(const wxRichTextRange
& range
, int flags
)
4331 return GetFocusObject()->ClearListStyle(range
.ToInternal(), flags
);
4334 /// Number/renumber any list elements in the given range
4335 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
4337 return GetFocusObject()->NumberList(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
4340 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
4342 return GetFocusObject()->NumberList(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
4345 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
4346 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int specifiedLevel
)
4348 return GetFocusObject()->PromoteList(promoteBy
, range
.ToInternal(), def
, flags
, specifiedLevel
);
4351 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int specifiedLevel
)
4353 return GetFocusObject()->PromoteList(promoteBy
, range
.ToInternal(), defName
, flags
, specifiedLevel
);
4356 // Given a character position at which there is a list style, find the range
4357 // encompassing the same list style by looking backwards and forwards.
4358 wxRichTextRange
wxRichTextCtrl::FindRangeForList(long pos
, bool& isNumberedList
)
4360 wxRichTextParagraphLayoutBox
* focusObject
= GetFocusObject();
4361 wxRichTextRange range
= wxRichTextRange(-1, -1);
4362 wxRichTextParagraph
* para
= focusObject
->GetParagraphAtPosition(pos
);
4363 if (!para
|| !para
->GetAttributes().HasListStyleName())
4367 wxString listStyle
= para
->GetAttributes().GetListStyleName();
4368 range
= para
->GetRange();
4370 isNumberedList
= para
->GetAttributes().HasBulletNumber();
4373 wxRichTextObjectList::compatibility_iterator initialNode
= focusObject
->GetChildren().Find(para
);
4376 wxRichTextObjectList::compatibility_iterator startNode
= initialNode
->GetPrevious();
4379 wxRichTextParagraph
* p
= wxDynamicCast(startNode
->GetData(), wxRichTextParagraph
);
4382 if (!p
->GetAttributes().HasListStyleName() || p
->GetAttributes().GetListStyleName() != listStyle
)
4385 range
.SetStart(p
->GetRange().GetStart());
4388 startNode
= startNode
->GetPrevious();
4392 wxRichTextObjectList::compatibility_iterator endNode
= initialNode
->GetNext();
4395 wxRichTextParagraph
* p
= wxDynamicCast(endNode
->GetData(), wxRichTextParagraph
);
4398 if (!p
->GetAttributes().HasListStyleName() || p
->GetAttributes().GetListStyleName() != listStyle
)
4401 range
.SetEnd(p
->GetRange().GetEnd());
4404 endNode
= endNode
->GetNext();
4411 /// Deletes the content in the given range
4412 bool wxRichTextCtrl::Delete(const wxRichTextRange
& range
)
4414 return GetFocusObject()->DeleteRangeWithUndo(range
.ToInternal(), this, & GetBuffer());
4417 const wxArrayString
& wxRichTextCtrl::GetAvailableFontNames()
4419 if (sm_availableFontNames
.GetCount() == 0)
4421 sm_availableFontNames
= wxFontEnumerator::GetFacenames();
4422 sm_availableFontNames
.Sort();
4424 return sm_availableFontNames
;
4427 void wxRichTextCtrl::ClearAvailableFontNames()
4429 sm_availableFontNames
.Clear();
4432 void wxRichTextCtrl::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
4434 //wxLogDebug(wxT("wxRichTextCtrl::OnSysColourChanged"));
4436 wxTextAttrEx basicStyle
= GetBasicStyle();
4437 basicStyle
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
4438 SetBasicStyle(basicStyle
);
4439 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
4444 // Refresh the area affected by a selection change
4445 bool wxRichTextCtrl::RefreshForSelectionChange(const wxRichTextSelection
& oldSelection
, const wxRichTextSelection
& newSelection
)
4447 // If the selection is not part of the focus object, or we have multiple ranges, then the chances are that
4448 // the selection contains whole containers rather than just text, so refresh everything
4449 // for now as it would be hard to compute the rectangle bounding all selections.
4450 // TODO: improve on this.
4451 if ((oldSelection
.IsValid() && (oldSelection
.GetContainer() != GetFocusObject() || oldSelection
.GetCount() > 1)) ||
4452 (newSelection
.IsValid() && (newSelection
.GetContainer() != GetFocusObject() || newSelection
.GetCount() > 1)))
4458 wxRichTextRange oldRange
, newRange
;
4459 if (oldSelection
.IsValid())
4460 oldRange
= oldSelection
.GetRange();
4462 oldRange
= wxRICHTEXT_NO_SELECTION
;
4463 if (newSelection
.IsValid())
4464 newRange
= newSelection
.GetRange();
4466 newRange
= wxRICHTEXT_NO_SELECTION
;
4468 // Calculate the refresh rectangle - just the affected lines
4469 long firstPos
, lastPos
;
4470 if (oldRange
.GetStart() == -2 && newRange
.GetStart() != -2)
4472 firstPos
= newRange
.GetStart();
4473 lastPos
= newRange
.GetEnd();
4475 else if (oldRange
.GetStart() != -2 && newRange
.GetStart() == -2)
4477 firstPos
= oldRange
.GetStart();
4478 lastPos
= oldRange
.GetEnd();
4480 else if (oldRange
.GetStart() == -2 && newRange
.GetStart() == -2)
4486 firstPos
= wxMin(oldRange
.GetStart(), newRange
.GetStart());
4487 lastPos
= wxMax(oldRange
.GetEnd(), newRange
.GetEnd());
4490 wxRichTextLine
* firstLine
= GetFocusObject()->GetLineAtPosition(firstPos
);
4491 wxRichTextLine
* lastLine
= GetFocusObject()->GetLineAtPosition(lastPos
);
4493 if (firstLine
&& lastLine
)
4495 wxSize clientSize
= GetClientSize();
4496 wxPoint pt1
= GetPhysicalPoint(GetScaledPoint(firstLine
->GetAbsolutePosition()));
4497 wxPoint pt2
= GetPhysicalPoint(GetScaledPoint(lastLine
->GetAbsolutePosition())) + wxPoint(0, (int) (0.5 + lastLine
->GetSize().y
* GetScale()));
4500 pt1
.y
= wxMax(0, pt1
.y
);
4502 pt2
.y
= wxMin(clientSize
.y
, pt2
.y
);
4504 wxRect
rect(pt1
, wxSize(clientSize
.x
, pt2
.y
- pt1
.y
));
4505 RefreshRect(rect
, false);
4513 // margins functions
4514 bool wxRichTextCtrl::DoSetMargins(const wxPoint
& pt
)
4516 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetLeft().SetValue(pt
.x
, wxTEXT_ATTR_UNITS_PIXELS
);
4517 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetRight().SetValue(pt
.x
, wxTEXT_ATTR_UNITS_PIXELS
);
4518 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetTop().SetValue(pt
.y
, wxTEXT_ATTR_UNITS_PIXELS
);
4519 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetBottom().SetValue(pt
.y
, wxTEXT_ATTR_UNITS_PIXELS
);
4524 wxPoint
wxRichTextCtrl::DoGetMargins() const
4526 return wxPoint(GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetLeft().GetValue(),
4527 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetTop().GetValue());
4530 bool wxRichTextCtrl::SetFocusObject(wxRichTextParagraphLayoutBox
* obj
, bool setCaretPosition
)
4532 if (obj
&& !obj
->AcceptsFocus())
4535 wxRichTextParagraphLayoutBox
* oldContainer
= GetFocusObject();
4536 bool changingContainer
= (m_focusObject
!= obj
);
4538 if (changingContainer
&& HasSelection())
4541 m_focusObject
= obj
;
4544 m_focusObject
= & m_buffer
;
4546 if (setCaretPosition
&& changingContainer
)
4548 m_selection
.Reset();
4549 m_selectionAnchor
= -2;
4550 m_selectionAnchorObject
= NULL
;
4551 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
4555 m_caretAtLineStart
= false;
4556 MoveCaret(pos
, m_caretAtLineStart
);
4557 SetDefaultStyleToCursorStyle();
4559 wxRichTextEvent
cmdEvent(
4560 wxEVT_RICHTEXT_FOCUS_OBJECT_CHANGED
,
4562 cmdEvent
.SetEventObject(this);
4563 cmdEvent
.SetPosition(m_caretPosition
+1);
4564 cmdEvent
.SetOldContainer(oldContainer
);
4565 cmdEvent
.SetContainer(m_focusObject
);
4567 GetEventHandler()->ProcessEvent(cmdEvent
);
4572 #if wxUSE_DRAG_AND_DROP
4573 void wxRichTextCtrl::OnDrop(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
), wxDragResult def
, wxDataObject
* DataObj
)
4577 if ((def
!= wxDragCopy
) && (def
!= wxDragMove
))
4582 if (!GetSelection().IsValid())
4587 wxRichTextParagraphLayoutBox
* originContainer
= GetSelection().GetContainer();
4588 wxRichTextParagraphLayoutBox
* destContainer
= GetFocusObject(); // This will be the drop container, not necessarily the same as the origin one
4590 wxRichTextBuffer
* richTextBuffer
= ((wxRichTextBufferDataObject
*)DataObj
)->GetRichTextBuffer();
4593 long position
= GetCaretPosition();
4594 wxRichTextRange selectionrange
= GetInternalSelectionRange();
4595 if (selectionrange
.Contains(position
) && (def
== wxDragMove
))
4597 // It doesn't make sense to move onto itself
4601 // If we're moving, and the data is being moved forward, we need to drop first, then delete the selection
4602 // If moving backwards, we need to delete then drop. If we're copying (or doing nothing) we don't delete anyway
4603 bool DeleteAfter
= (def
== wxDragMove
) && (position
> selectionrange
.GetEnd());
4604 if ((def
== wxDragMove
) && !DeleteAfter
)
4606 // We can't use e.g. DeleteSelectedContent() as it uses the focus container
4607 originContainer
->DeleteRangeWithUndo(selectionrange
, this, &GetBuffer());
4610 destContainer
->InsertParagraphsWithUndo(&GetBuffer(), position
+1, *richTextBuffer
, this, 0);
4611 ShowPosition(position
+ richTextBuffer
->GetOwnRange().GetEnd());
4613 delete richTextBuffer
;
4617 // We can't use e.g. DeleteSelectedContent() as it uses the focus container
4618 originContainer
->DeleteRangeWithUndo(selectionrange
, this, &GetBuffer());
4625 #endif // wxUSE_DRAG_AND_DROP
4628 #if wxUSE_DRAG_AND_DROP
4629 bool wxRichTextDropSource::GiveFeedback(wxDragResult
WXUNUSED(effect
))
4631 wxCHECK_MSG(m_rtc
, false, wxT("NULL m_rtc"));
4635 wxRichTextObject
* hitObj
= NULL
;
4636 wxRichTextParagraphLayoutBox
* container
= m_rtc
->FindContainerAtPoint(m_rtc
->GetUnscaledPoint(m_rtc
->ScreenToClient(wxGetMousePosition())), position
, hit
, hitObj
);
4638 if (!(hit
& wxRICHTEXT_HITTEST_NONE
) && container
&& container
->AcceptsFocus())
4640 m_rtc
->StoreFocusObject(container
);
4641 m_rtc
->SetCaretPositionAfterClick(container
, position
, hit
);
4644 return false; // so that the base-class sets a cursor
4646 #endif // wxUSE_DRAG_AND_DROP
4648 bool wxRichTextCtrl::CanDeleteRange(wxRichTextParagraphLayoutBox
& WXUNUSED(container
), const wxRichTextRange
& WXUNUSED(range
)) const
4653 bool wxRichTextCtrl::CanInsertContent(wxRichTextParagraphLayoutBox
& WXUNUSED(container
), long WXUNUSED(pos
)) const
4658 void wxRichTextCtrl::EnableVerticalScrollbar(bool enable
)
4660 m_verticalScrollbarEnabled
= enable
;
4664 void wxRichTextCtrl::SetFontScale(double fontScale
, bool refresh
)
4666 GetBuffer().SetFontScale(fontScale
);
4669 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
4674 void wxRichTextCtrl::SetDimensionScale(double dimScale
, bool refresh
)
4676 GetBuffer().SetDimensionScale(dimScale
);
4679 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
4684 // Sets an overall scale factor for displaying and editing the content.
4685 void wxRichTextCtrl::SetScale(double scale
, bool refresh
)
4690 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
4695 // Get an unscaled point
4696 wxPoint
wxRichTextCtrl::GetUnscaledPoint(const wxPoint
& pt
) const
4698 if (GetScale() == 1.0)
4701 return wxPoint((int) (0.5 + double(pt
.x
) / GetScale()), (int) (0.5 + double(pt
.y
) / GetScale()));
4704 // Get a scaled point
4705 wxPoint
wxRichTextCtrl::GetScaledPoint(const wxPoint
& pt
) const
4707 if (GetScale() == 1.0)
4710 return wxPoint((int) (0.5 + double(pt
.x
) * GetScale()), (int) (0.5 + double(pt
.y
) * GetScale()));
4713 // Get an unscaled size
4714 wxSize
wxRichTextCtrl::GetUnscaledSize(const wxSize
& sz
) const
4716 if (GetScale() == 1.0)
4719 return wxSize((int) (0.5 + double(sz
.x
) / GetScale()), (int) (0.5 + double(sz
.y
) / GetScale()));
4722 // Get a scaled size
4723 wxSize
wxRichTextCtrl::GetScaledSize(const wxSize
& sz
) const
4725 if (GetScale() == 1.0)
4728 return wxSize((int) (0.5 + double(sz
.x
) * GetScale()), (int) (0.5 + double(sz
.y
) * GetScale()));
4731 // Get an unscaled rect
4732 wxRect
wxRichTextCtrl::GetUnscaledRect(const wxRect
& rect
) const
4734 if (GetScale() == 1.0)
4737 return wxRect((int) (0.5 + double(rect
.x
) / GetScale()), (int) (0.5 + double(rect
.y
) / GetScale()),
4738 (int) (0.5 + double(rect
.width
) / GetScale()), (int) (0.5 + double(rect
.height
) / GetScale()));
4741 // Get a scaled rect
4742 wxRect
wxRichTextCtrl::GetScaledRect(const wxRect
& rect
) const
4744 if (GetScale() == 1.0)
4747 return wxRect((int) (0.5 + double(rect
.x
) * GetScale()), (int) (0.5 + double(rect
.y
) * GetScale()),
4748 (int) (0.5 + double(rect
.width
) * GetScale()), (int) (0.5 + double(rect
.height
) * GetScale()));
4751 #if wxRICHTEXT_USE_OWN_CARET
4753 // ----------------------------------------------------------------------------
4754 // initialization and destruction
4755 // ----------------------------------------------------------------------------
4757 void wxRichTextCaret::Init()
4760 m_refreshEnabled
= true;
4764 m_richTextCtrl
= NULL
;
4765 m_needsUpdate
= false;
4769 wxRichTextCaret::~wxRichTextCaret()
4771 if (m_timer
.IsRunning())
4775 // ----------------------------------------------------------------------------
4776 // showing/hiding/moving the caret (base class interface)
4777 // ----------------------------------------------------------------------------
4779 void wxRichTextCaret::DoShow()
4783 if (!m_timer
.IsRunning() && GetBlinkTime() > 0)
4784 m_timer
.Start(GetBlinkTime());
4789 void wxRichTextCaret::DoHide()
4791 if (m_timer
.IsRunning())
4797 void wxRichTextCaret::DoMove()
4803 if (m_xOld
!= -1 && m_yOld
!= -1)
4805 if (m_richTextCtrl
&& m_refreshEnabled
)
4807 wxRect
rect(wxPoint(m_xOld
, m_yOld
), GetSize());
4808 wxRect scaledRect
= m_richTextCtrl
->GetScaledRect(rect
);
4809 m_richTextCtrl
->RefreshRect(scaledRect
, false);
4818 void wxRichTextCaret::DoSize()
4820 int countVisible
= m_countVisible
;
4821 if (countVisible
> 0)
4827 if (countVisible
> 0)
4829 m_countVisible
= countVisible
;
4834 // ----------------------------------------------------------------------------
4835 // handling the focus
4836 // ----------------------------------------------------------------------------
4838 void wxRichTextCaret::OnSetFocus()
4846 void wxRichTextCaret::OnKillFocus()
4851 // ----------------------------------------------------------------------------
4852 // drawing the caret
4853 // ----------------------------------------------------------------------------
4855 void wxRichTextCaret::Refresh()
4857 if (m_richTextCtrl
&& m_refreshEnabled
)
4859 wxRect
rect(GetPosition(), GetSize());
4860 wxRect rectScaled
= m_richTextCtrl
->GetScaledRect(rect
);
4861 m_richTextCtrl
->RefreshRect(rectScaled
, false);
4865 void wxRichTextCaret::DoDraw(wxDC
*dc
)
4867 wxBrush
brush(m_caretBrush
);
4868 wxPen
pen(m_caretPen
);
4869 if (m_richTextCtrl
&& m_richTextCtrl
->GetBasicStyle().HasTextColour())
4871 brush
= wxBrush(m_richTextCtrl
->GetBasicStyle().GetTextColour());
4872 pen
= wxPen(m_richTextCtrl
->GetBasicStyle().GetTextColour());
4874 dc
->SetBrush((m_hasFocus
? brush
: *wxTRANSPARENT_BRUSH
));
4877 wxPoint
pt(m_x
, m_y
);
4881 pt
= m_richTextCtrl
->GetLogicalPoint(pt
);
4883 if (IsVisible() && m_flashOn
)
4884 dc
->DrawRectangle(pt
.x
, pt
.y
, m_width
, m_height
);
4887 void wxRichTextCaret::Notify()
4889 m_flashOn
= !m_flashOn
;
4893 void wxRichTextCaretTimer::Notify()
4898 // wxRICHTEXT_USE_OWN_CARET
4901 bool wxRichTextContextMenuPropertiesInfo::AddItem(const wxString
& label
, wxRichTextObject
* obj
)
4905 m_labels
.Add(label
);
4913 // Returns number of menu items were added.
4914 int wxRichTextContextMenuPropertiesInfo::AddMenuItems(wxMenu
* menu
, int startCmd
) const
4916 wxMenuItem
* item
= menu
->FindItem(startCmd
);
4917 // If none of the standard properties identifiers are in the menu, add them if necessary.
4918 // If no items to add, just set the text to something generic
4919 if (GetCount() == 0)
4923 menu
->SetLabel(startCmd
, _("&Properties"));
4925 // Delete the others if necessary
4927 for (i
= startCmd
+1; i
< startCmd
+3; i
++)
4929 if (menu
->FindItem(i
))
4940 // Find the position of the first properties item
4941 for (i
= 0; i
< (int) menu
->GetMenuItemCount(); i
++)
4943 wxMenuItem
* item
= menu
->FindItemByPosition(i
);
4944 if (item
&& item
->GetId() == startCmd
)
4953 int insertBefore
= pos
+1;
4954 for (i
= startCmd
; i
< startCmd
+GetCount(); i
++)
4956 if (menu
->FindItem(i
))
4958 menu
->SetLabel(i
, m_labels
[i
- startCmd
]);
4962 if (insertBefore
>= (int) menu
->GetMenuItemCount())
4963 menu
->Append(i
, m_labels
[i
- startCmd
]);
4965 menu
->Insert(insertBefore
, i
, m_labels
[i
- startCmd
]);
4970 // Delete any old items still left on the menu
4971 for (i
= startCmd
+ GetCount(); i
< startCmd
+3; i
++)
4973 if (menu
->FindItem(i
))
4981 // No existing property identifiers were found, so append to the end of the menu.
4982 menu
->AppendSeparator();
4983 for (i
= startCmd
; i
< startCmd
+GetCount(); i
++)
4985 menu
->Append(i
, m_labels
[i
- startCmd
]);
4993 // Add appropriate menu items for the current container and clicked on object
4994 // (and container's parent, if appropriate).
4995 int wxRichTextContextMenuPropertiesInfo::AddItems(wxRichTextCtrl
* ctrl
, wxRichTextObject
* container
, wxRichTextObject
* obj
)
4998 if (obj
&& ctrl
->CanEditProperties(obj
))
4999 AddItem(ctrl
->GetPropertiesMenuLabel(obj
), obj
);
5001 if (container
&& container
!= obj
&& ctrl
->CanEditProperties(container
) && m_labels
.Index(ctrl
->GetPropertiesMenuLabel(container
)) == wxNOT_FOUND
)
5002 AddItem(ctrl
->GetPropertiesMenuLabel(container
), container
);
5004 if (container
&& container
->GetParent() && ctrl
->CanEditProperties(container
->GetParent()) && m_labels
.Index(ctrl
->GetPropertiesMenuLabel(container
->GetParent())) == wxNOT_FOUND
)
5005 AddItem(ctrl
->GetPropertiesMenuLabel(container
->GetParent()), container
->GetParent());