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_COMMAND_RICHTEXT_LEFT_CLICK
, wxRichTextEvent
);
53 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
, wxRichTextEvent
);
54 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
, wxRichTextEvent
);
55 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
, wxRichTextEvent
);
56 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_RETURN
, wxRichTextEvent
);
57 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_CHARACTER
, wxRichTextEvent
);
58 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_DELETE
, wxRichTextEvent
);
60 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING
, wxRichTextEvent
);
61 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED
, wxRichTextEvent
);
62 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING
, wxRichTextEvent
);
63 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED
, wxRichTextEvent
);
65 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED
, wxRichTextEvent
);
66 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED
, wxRichTextEvent
);
67 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED
, wxRichTextEvent
);
68 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_PROPERTIES_CHANGED
, wxRichTextEvent
);
69 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED
, wxRichTextEvent
);
70 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_BUFFER_RESET
, wxRichTextEvent
);
71 wxDEFINE_EVENT( wxEVT_COMMAND_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
;
155 IMPLEMENT_DYNAMIC_CLASS( wxRichTextCtrl
, wxControl
)
157 IMPLEMENT_DYNAMIC_CLASS( wxRichTextEvent
, wxNotifyEvent
)
159 BEGIN_EVENT_TABLE( wxRichTextCtrl
, wxControl
)
160 EVT_PAINT(wxRichTextCtrl::OnPaint
)
161 EVT_ERASE_BACKGROUND(wxRichTextCtrl::OnEraseBackground
)
162 EVT_IDLE(wxRichTextCtrl::OnIdle
)
163 EVT_SCROLLWIN(wxRichTextCtrl::OnScroll
)
164 EVT_LEFT_DOWN(wxRichTextCtrl::OnLeftClick
)
165 EVT_MOTION(wxRichTextCtrl::OnMoveMouse
)
166 EVT_LEFT_UP(wxRichTextCtrl::OnLeftUp
)
167 EVT_RIGHT_DOWN(wxRichTextCtrl::OnRightClick
)
168 EVT_MIDDLE_DOWN(wxRichTextCtrl::OnMiddleClick
)
169 EVT_LEFT_DCLICK(wxRichTextCtrl::OnLeftDClick
)
170 EVT_CHAR(wxRichTextCtrl::OnChar
)
171 EVT_KEY_DOWN(wxRichTextCtrl::OnChar
)
172 EVT_SIZE(wxRichTextCtrl::OnSize
)
173 EVT_SET_FOCUS(wxRichTextCtrl::OnSetFocus
)
174 EVT_KILL_FOCUS(wxRichTextCtrl::OnKillFocus
)
175 EVT_MOUSE_CAPTURE_LOST(wxRichTextCtrl::OnCaptureLost
)
176 EVT_CONTEXT_MENU(wxRichTextCtrl::OnContextMenu
)
177 EVT_SYS_COLOUR_CHANGED(wxRichTextCtrl::OnSysColourChanged
)
179 EVT_MENU(wxID_UNDO
, wxRichTextCtrl::OnUndo
)
180 EVT_UPDATE_UI(wxID_UNDO
, wxRichTextCtrl::OnUpdateUndo
)
182 EVT_MENU(wxID_REDO
, wxRichTextCtrl::OnRedo
)
183 EVT_UPDATE_UI(wxID_REDO
, wxRichTextCtrl::OnUpdateRedo
)
185 EVT_MENU(wxID_COPY
, wxRichTextCtrl::OnCopy
)
186 EVT_UPDATE_UI(wxID_COPY
, wxRichTextCtrl::OnUpdateCopy
)
188 EVT_MENU(wxID_PASTE
, wxRichTextCtrl::OnPaste
)
189 EVT_UPDATE_UI(wxID_PASTE
, wxRichTextCtrl::OnUpdatePaste
)
191 EVT_MENU(wxID_CUT
, wxRichTextCtrl::OnCut
)
192 EVT_UPDATE_UI(wxID_CUT
, wxRichTextCtrl::OnUpdateCut
)
194 EVT_MENU(wxID_CLEAR
, wxRichTextCtrl::OnClear
)
195 EVT_UPDATE_UI(wxID_CLEAR
, wxRichTextCtrl::OnUpdateClear
)
197 EVT_MENU(wxID_SELECTALL
, wxRichTextCtrl::OnSelectAll
)
198 EVT_UPDATE_UI(wxID_SELECTALL
, wxRichTextCtrl::OnUpdateSelectAll
)
200 EVT_MENU(wxID_RICHTEXT_PROPERTIES1
, wxRichTextCtrl::OnProperties
)
201 EVT_UPDATE_UI(wxID_RICHTEXT_PROPERTIES1
, wxRichTextCtrl::OnUpdateProperties
)
203 EVT_MENU(wxID_RICHTEXT_PROPERTIES2
, wxRichTextCtrl::OnProperties
)
204 EVT_UPDATE_UI(wxID_RICHTEXT_PROPERTIES2
, wxRichTextCtrl::OnUpdateProperties
)
206 EVT_MENU(wxID_RICHTEXT_PROPERTIES3
, wxRichTextCtrl::OnProperties
)
207 EVT_UPDATE_UI(wxID_RICHTEXT_PROPERTIES3
, wxRichTextCtrl::OnUpdateProperties
)
215 wxArrayString
wxRichTextCtrl::sm_availableFontNames
;
217 wxRichTextCtrl::wxRichTextCtrl()
218 : wxScrollHelper(this)
223 wxRichTextCtrl::wxRichTextCtrl(wxWindow
* parent
,
225 const wxString
& value
,
229 const wxValidator
& validator
,
230 const wxString
& name
)
231 : wxScrollHelper(this)
234 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
238 bool wxRichTextCtrl::Create( wxWindow
* parent
, wxWindowID id
, const wxString
& value
, const wxPoint
& pos
, const wxSize
& size
, long style
,
239 const wxValidator
& validator
, const wxString
& name
)
243 if (!wxControl::Create(parent
, id
, pos
, size
,
244 style
|wxFULL_REPAINT_ON_RESIZE
,
248 if (!GetFont().IsOk())
250 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
253 // No physical scrolling, so we can preserve margins
254 EnableScrolling(false, false);
256 if (style
& wxTE_READONLY
)
259 // The base attributes must all have default values
260 wxRichTextAttr attributes
;
261 attributes
.SetFont(GetFont());
262 attributes
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
263 attributes
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
264 attributes
.SetLineSpacing(10);
265 attributes
.SetParagraphSpacingAfter(10);
266 attributes
.SetParagraphSpacingBefore(0);
268 SetBasicStyle(attributes
);
271 SetMargins(margin
, margin
);
273 // The default attributes will be merged with base attributes, so
274 // can be empty to begin with
275 wxRichTextAttr defaultAttributes
;
276 SetDefaultStyle(defaultAttributes
);
278 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
279 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
282 GetBuffer().SetRichTextCtrl(this);
284 #if wxRICHTEXT_USE_OWN_CARET
285 SetCaret(new wxRichTextCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16));
287 SetCaret(new wxCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16));
290 // Tell the sizers to use the given or best size
291 SetInitialSize(size
);
293 #if wxRICHTEXT_BUFFERED_PAINTING
295 RecreateBuffer(size
);
298 m_textCursor
= wxCursor(wxCURSOR_IBEAM
);
299 m_urlCursor
= wxCursor(wxCURSOR_HAND
);
301 SetCursor(m_textCursor
);
303 if (!value
.IsEmpty())
306 GetBuffer().AddEventHandler(this);
309 wxAcceleratorEntry entries
[6];
311 entries
[0].Set(wxACCEL_CTRL
, (int) 'C', wxID_COPY
);
312 entries
[1].Set(wxACCEL_CTRL
, (int) 'X', wxID_CUT
);
313 entries
[2].Set(wxACCEL_CTRL
, (int) 'V', wxID_PASTE
);
314 entries
[3].Set(wxACCEL_CTRL
, (int) 'A', wxID_SELECTALL
);
315 entries
[4].Set(wxACCEL_CTRL
, (int) 'Z', wxID_UNDO
);
316 entries
[5].Set(wxACCEL_CTRL
, (int) 'Y', wxID_REDO
);
318 wxAcceleratorTable
accel(6, entries
);
319 SetAcceleratorTable(accel
);
321 m_contextMenu
= new wxMenu
;
322 m_contextMenu
->Append(wxID_UNDO
, _("&Undo"));
323 m_contextMenu
->Append(wxID_REDO
, _("&Redo"));
324 m_contextMenu
->AppendSeparator();
325 m_contextMenu
->Append(wxID_CUT
, _("Cu&t"));
326 m_contextMenu
->Append(wxID_COPY
, _("&Copy"));
327 m_contextMenu
->Append(wxID_PASTE
, _("&Paste"));
328 m_contextMenu
->Append(wxID_CLEAR
, _("&Delete"));
329 m_contextMenu
->AppendSeparator();
330 m_contextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
331 m_contextMenu
->AppendSeparator();
332 m_contextMenu
->Append(wxID_RICHTEXT_PROPERTIES1
, _("&Properties"));
334 #if wxUSE_DRAG_AND_DROP
335 SetDropTarget(new wxRichTextDropTarget(this));
341 wxRichTextCtrl::~wxRichTextCtrl()
343 SetFocusObject(& GetBuffer(), false);
344 GetBuffer().RemoveEventHandler(this);
346 delete m_contextMenu
;
349 /// Member initialisation
350 void wxRichTextCtrl::Init()
352 m_contextMenu
= NULL
;
354 m_caretPosition
= -1;
355 m_selectionAnchor
= -2;
356 m_selectionAnchorObject
= NULL
;
357 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
359 m_caretAtLineStart
= false;
361 #if wxUSE_DRAG_AND_DROP
364 m_fullLayoutRequired
= false;
365 m_fullLayoutTime
= 0;
366 m_fullLayoutSavedPosition
= 0;
367 m_delayedLayoutThreshold
= wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD
;
368 m_caretPositionForDefaultStyle
= -2;
369 m_focusObject
= & m_buffer
;
372 void wxRichTextCtrl::DoThaw()
374 if (GetBuffer().IsDirty())
383 void wxRichTextCtrl::Clear()
385 if (GetFocusObject() == & GetBuffer())
387 m_buffer
.ResetAndClearCommands();
388 m_buffer
.Invalidate(wxRICHTEXT_ALL
);
392 GetFocusObject()->Reset();
395 m_caretPosition
= -1;
396 m_caretPositionForDefaultStyle
= -2;
397 m_caretAtLineStart
= false;
399 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
409 wxTextCtrl::SendTextUpdatedEvent(this);
413 void wxRichTextCtrl::OnPaint(wxPaintEvent
& WXUNUSED(event
))
415 #if !wxRICHTEXT_USE_OWN_CARET
416 if (GetCaret() && !IsFrozen())
419 // Stop the caret refreshing the control from within the
422 ((wxRichTextCaret
*) GetCaret())->EnableRefresh(false);
426 #if wxRICHTEXT_BUFFERED_PAINTING
427 wxBufferedPaintDC
dc(this, m_bufferBitmap
);
437 dc
.SetFont(GetFont());
439 // Paint the background
442 // wxRect drawingArea(GetLogicalPoint(wxPoint(0, 0)), GetClientSize());
444 wxRect
drawingArea(GetUpdateRegion().GetBox());
445 drawingArea
.SetPosition(GetLogicalPoint(drawingArea
.GetPosition()));
447 wxRect
availableSpace(GetClientSize());
448 if (GetBuffer().IsDirty())
450 GetBuffer().Layout(dc
, availableSpace
, availableSpace
, wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
);
451 GetBuffer().Invalidate(wxRICHTEXT_NONE
);
455 wxRect
clipRect(availableSpace
);
456 clipRect
.x
+= GetBuffer().GetLeftMargin();
457 clipRect
.y
+= GetBuffer().GetTopMargin();
458 clipRect
.width
-= (GetBuffer().GetLeftMargin() + GetBuffer().GetRightMargin());
459 clipRect
.height
-= (GetBuffer().GetTopMargin() + GetBuffer().GetBottomMargin());
460 clipRect
.SetPosition(GetLogicalPoint(clipRect
.GetPosition()));
461 dc
.SetClippingRegion(clipRect
);
464 if ((GetExtraStyle() & wxRICHTEXT_EX_NO_GUIDELINES
) == 0)
465 flags
|= wxRICHTEXT_DRAW_GUIDELINES
;
467 GetBuffer().Draw(dc
, GetBuffer().GetOwnRange(), GetSelection(), drawingArea
, 0 /* descent */, flags
);
469 dc
.DestroyClippingRegion();
471 // Other user defined painting after everything else (i.e. all text) is painted
472 PaintAboveContent(dc
);
474 #if wxRICHTEXT_USE_OWN_CARET
475 if (GetCaret()->IsVisible())
478 ((wxRichTextCaret
*) GetCaret())->DoDraw(& dc
);
483 #if !wxRICHTEXT_USE_OWN_CARET
489 ((wxRichTextCaret
*) GetCaret())->EnableRefresh(true);
493 // Empty implementation, to prevent flicker
494 void wxRichTextCtrl::OnEraseBackground(wxEraseEvent
& WXUNUSED(event
))
498 void wxRichTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
502 #if !wxRICHTEXT_USE_OWN_CARET
508 #if defined(__WXGTK__) && !wxRICHTEXT_USE_OWN_CARET
509 // Work around dropouts when control is focused
517 void wxRichTextCtrl::OnKillFocus(wxFocusEvent
& WXUNUSED(event
))
522 #if defined(__WXGTK__) && !wxRICHTEXT_USE_OWN_CARET
523 // Work around dropouts when control is focused
531 void wxRichTextCtrl::OnCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
536 // Set up the caret for the given position and container, after a mouse click
537 bool wxRichTextCtrl::SetCaretPositionAfterClick(wxRichTextParagraphLayoutBox
* container
, long position
, int hitTestFlags
, bool extendSelection
)
539 bool caretAtLineStart
= false;
541 if (hitTestFlags
& wxRICHTEXT_HITTEST_BEFORE
)
543 // If we're at the start of a line (but not first in para)
544 // then we should keep the caret showing at the start of the line
545 // by showing the m_caretAtLineStart flag.
546 wxRichTextParagraph
* para
= container
->GetParagraphAtPosition(position
);
547 wxRichTextLine
* line
= container
->GetLineAtPosition(position
);
549 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
550 caretAtLineStart
= true;
554 if (extendSelection
&& (m_caretPosition
!= position
))
555 ExtendSelection(m_caretPosition
, position
, wxRICHTEXT_SHIFT_DOWN
);
557 MoveCaret(position
, caretAtLineStart
);
558 SetDefaultStyleToCursorStyle();
564 void wxRichTextCtrl::OnLeftClick(wxMouseEvent
& event
)
570 dc
.SetFont(GetFont());
572 // TODO: detect change of focus object
574 wxRichTextObject
* hitObj
= NULL
;
575 wxRichTextObject
* contextObj
= NULL
;
576 int hit
= GetBuffer().HitTest(dc
, event
.GetLogicalPosition(dc
), position
, & hitObj
, & contextObj
);
578 #if wxUSE_DRAG_AND_DROP
579 // If there's no selection, or we're not inside it, this isn't an attempt to initiate Drag'n'Drop
580 if (IsEditable() && HasSelection() && GetSelectionRange().ToInternal().Contains(position
))
582 // This might be an attempt at initiating Drag'n'Drop. So set the time & flags
584 m_dragStartPoint
= event
.GetPosition(); // No need to worry about logical positions etc, we only care about the distance from the original pt
587 m_dragStartTime
= wxDateTime::UNow();
588 #endif // wxUSE_DATETIME
590 // Preserve behaviour of clicking on an object within the selection
591 if (hit
!= wxRICHTEXT_HITTEST_NONE
&& hitObj
)
594 return; // Don't skip the event, else the selection will be lost
596 #endif // wxUSE_DRAG_AND_DROP
598 if (hit
!= wxRICHTEXT_HITTEST_NONE
&& hitObj
)
600 wxRichTextParagraphLayoutBox
* oldFocusObject
= GetFocusObject();
601 wxRichTextParagraphLayoutBox
* container
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
602 if (container
&& container
!= GetFocusObject() && container
->AcceptsFocus())
604 SetFocusObject(container
, false /* don't set caret position yet */);
610 long oldCaretPos
= m_caretPosition
;
612 SetCaretPositionAfterClick(container
, position
, hit
);
614 // For now, don't handle shift-click when we're selecting multiple objects.
615 if (event
.ShiftDown() && GetFocusObject() == oldFocusObject
&& m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
616 ExtendSelection(oldCaretPos
, m_caretPosition
, wxRICHTEXT_SHIFT_DOWN
);
625 void wxRichTextCtrl::OnLeftUp(wxMouseEvent
& event
)
630 if (GetCapture() == this)
633 // See if we clicked on a URL
636 dc
.SetFont(GetFont());
639 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
640 wxRichTextObject
* hitObj
= NULL
;
641 wxRichTextObject
* contextObj
= NULL
;
642 // Only get objects at this level, not nested, because otherwise we couldn't swipe text at a single level.
643 int hit
= GetFocusObject()->HitTest(dc
, logicalPt
, position
, & hitObj
, & contextObj
, wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
);
645 #if wxUSE_DRAG_AND_DROP
648 // Preserve the behaviour that would have happened without drag-and-drop detection, in OnLeftClick
649 m_preDrag
= false; // Tell DnD not to happen now: we are processing Left Up ourselves.
651 // Do the actions that would have been done in OnLeftClick if we hadn't tried to drag
653 wxRichTextObject
* hitObj
= NULL
;
654 wxRichTextObject
* contextObj
= NULL
;
655 int hit
= GetBuffer().HitTest(dc
, event
.GetLogicalPosition(dc
), position
, & hitObj
, & contextObj
);
656 wxRichTextParagraphLayoutBox
* oldFocusObject
= GetFocusObject();
657 wxRichTextParagraphLayoutBox
* container
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
658 if (container
&& container
!= GetFocusObject() && container
->AcceptsFocus())
660 SetFocusObject(container
, false /* don't set caret position yet */);
663 long oldCaretPos
= m_caretPosition
;
665 SetCaretPositionAfterClick(container
, position
, hit
);
667 // For now, don't handle shift-click when we're selecting multiple objects.
668 if (event
.ShiftDown() && GetFocusObject() == oldFocusObject
&& m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
669 ExtendSelection(oldCaretPos
, m_caretPosition
, wxRICHTEXT_SHIFT_DOWN
);
675 if ((hit
!= wxRICHTEXT_HITTEST_NONE
) && !(hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
677 wxRichTextEvent
cmdEvent(
678 wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
,
680 cmdEvent
.SetEventObject(this);
681 cmdEvent
.SetPosition(position
);
683 cmdEvent
.SetContainer(hitObj
->GetContainer());
685 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
688 if (GetStyle(position
, attr
))
690 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
692 wxString urlTarget
= attr
.GetURL();
693 if (!urlTarget
.IsEmpty())
695 wxMouseEvent
mouseEvent(event
);
697 long startPos
= 0, endPos
= 0;
698 wxRichTextObject
* obj
= GetFocusObject()->GetLeafObjectAtPosition(position
);
701 startPos
= obj
->GetRange().GetStart();
702 endPos
= obj
->GetRange().GetEnd();
705 wxTextUrlEvent
urlEvent(GetId(), mouseEvent
, startPos
, endPos
);
706 InitCommandEvent(urlEvent
);
708 urlEvent
.SetString(urlTarget
);
710 GetEventHandler()->ProcessEvent(urlEvent
);
718 #if wxUSE_DRAG_AND_DROP
720 #endif // wxUSE_DRAG_AND_DROP
722 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ && wxHAVE_PRIMARY_SELECTION
723 if (HasSelection() && GetFocusObject() && GetFocusObject()->GetBuffer())
725 // Put the selection in PRIMARY, if it exists
726 wxTheClipboard
->UsePrimarySelection(true);
728 wxRichTextRange range
= GetInternalSelectionRange();
729 GetFocusObject()->GetBuffer()->CopyToClipboard(range
);
731 wxTheClipboard
->UsePrimarySelection(false);
737 void wxRichTextCtrl::OnMoveMouse(wxMouseEvent
& event
)
739 #if wxUSE_DRAG_AND_DROP
740 // See if we're starting Drag'n'Drop
743 int x
= m_dragStartPoint
.x
- event
.GetPosition().x
;
744 int y
= m_dragStartPoint
.y
- event
.GetPosition().y
;
745 size_t distance
= abs(x
) + abs(y
);
747 wxTimeSpan diff
= wxDateTime::UNow() - m_dragStartTime
;
751 && (diff
.GetMilliseconds() > 100)
758 wxRichTextRange range
= GetInternalSelectionRange();
759 if (range
== wxRICHTEXT_NONE
)
761 // Don't try to drag an empty range
766 // Cache the current situation, to be restored if Drag'n'Drop is cancelled
767 long oldPos
= GetCaretPosition();
768 wxRichTextParagraphLayoutBox
* oldFocus
= GetFocusObject();
770 wxDataObjectComposite
* compositeObject
= new wxDataObjectComposite();
771 wxString text
= GetFocusObject()->GetTextForRange(range
);
773 text
= wxTextFile::Translate(text
, wxTextFileType_Dos
);
775 compositeObject
->Add(new wxTextDataObject(text
), false /* not preferred */);
777 wxRichTextBuffer
* richTextBuf
= new wxRichTextBuffer
;
778 GetFocusObject()->CopyFragment(range
, *richTextBuf
);
779 compositeObject
->Add(new wxRichTextBufferDataObject(richTextBuf
), true /* preferred */);
781 wxRichTextDropSource
source(*compositeObject
, this);
782 // Use wxDrag_DefaultMove, not because it's the likelier choice but because pressing Ctrl for Copy obeys the principle of least surprise
783 // The alternative, wxDrag_DefaultCopy, requires the user to know that Move needs the Shift key pressed
784 BeginBatchUndo(_("Drag"));
785 switch (source
.DoDragDrop(wxDrag_AllowMove
| wxDrag_DefaultMove
))
788 case wxDragCopy
: break;
791 wxLogError(wxT("An error occurred during drag and drop operation"));
794 Refresh(); // This is needed in wxMSW, otherwise resetting the position doesn't 'take'
795 SetCaretPosition(oldPos
);
796 SetFocusObject(oldFocus
, false);
805 #endif // wxUSE_DRAG_AND_DROP
809 dc
.SetFont(GetFont());
812 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
813 wxRichTextObject
* hitObj
= NULL
;
814 wxRichTextObject
* contextObj
= NULL
;
818 // If we're dragging, let's only consider positions at this level; otherwise
819 // selecting a range is not going to work.
820 wxRichTextParagraphLayoutBox
* container
= & GetBuffer();
823 flags
= wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
;
824 container
= GetFocusObject();
826 int hit
= container
->HitTest(dc
, logicalPt
, position
, & hitObj
, & contextObj
, flags
);
828 // See if we need to change the cursor
831 if (hit
!= wxRICHTEXT_HITTEST_NONE
&& !(hit
& wxRICHTEXT_HITTEST_OUTSIDE
) && hitObj
)
833 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
835 ProcessMouseMovement(actualContainer
, hitObj
, position
, logicalPt
);
838 SetCursor(m_textCursor
);
841 if (!event
.Dragging())
848 #if wxUSE_DRAG_AND_DROP
853 wxRichTextParagraphLayoutBox
* commonAncestor
= NULL
;
854 wxRichTextParagraphLayoutBox
* otherContainer
= NULL
;
855 wxRichTextParagraphLayoutBox
* firstContainer
= NULL
;
857 // Check for dragging across multiple containers
859 wxRichTextObject
* hitObj2
= NULL
, *contextObj2
= NULL
;
860 int hit2
= GetBuffer().HitTest(dc
, logicalPt
, position2
, & hitObj2
, & contextObj2
, 0);
861 if (hit2
!= wxRICHTEXT_HITTEST_NONE
&& !(hit2
& wxRICHTEXT_HITTEST_OUTSIDE
) && hitObj2
&& hitObj
!= hitObj2
)
863 // See if we can find a common ancestor
864 if (m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
866 firstContainer
= GetFocusObject();
867 commonAncestor
= wxDynamicCast(firstContainer
->GetParent(), wxRichTextParagraphLayoutBox
);
871 firstContainer
= wxDynamicCast(m_selectionAnchorObject
, wxRichTextParagraphLayoutBox
);
872 //commonAncestor = GetFocusObject(); // when the selection state is not normal, the focus object (e.g. table)
873 // is the common ancestor.
874 commonAncestor
= wxDynamicCast(firstContainer
->GetParent(), wxRichTextParagraphLayoutBox
);
877 if (commonAncestor
&& commonAncestor
->HandlesChildSelections())
879 wxRichTextObject
* p
= hitObj2
;
882 if (p
->GetParent() == commonAncestor
)
884 otherContainer
= wxDynamicCast(p
, wxRichTextParagraphLayoutBox
);
891 if (commonAncestor
&& firstContainer
&& otherContainer
)
893 // We have now got a second container that shares a parent with the current or anchor object.
894 if (m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
896 // Don't go into common-ancestor selection mode if we still have the same
898 if (otherContainer
!= firstContainer
)
900 m_selectionState
= wxRichTextCtrlSelectionState_CommonAncestor
;
901 m_selectionAnchorObject
= firstContainer
;
902 m_selectionAnchor
= firstContainer
->GetRange().GetStart();
904 // The common ancestor, such as a table, returns the cell selection
905 // between the anchor and current position.
906 m_selection
= commonAncestor
->GetSelection(m_selectionAnchor
, otherContainer
->GetRange().GetStart());
911 m_selection
= commonAncestor
->GetSelection(m_selectionAnchor
, otherContainer
->GetRange().GetStart());
916 if (otherContainer
->AcceptsFocus())
917 SetFocusObject(otherContainer
, false /* don't set caret and clear selection */);
918 MoveCaret(-1, false);
919 SetDefaultStyleToCursorStyle();
924 if (hitObj
&& m_dragging
&& hit
!= wxRICHTEXT_HITTEST_NONE
&& m_selectionState
== wxRichTextCtrlSelectionState_Normal
925 #if wxUSE_DRAG_AND_DROP
930 // TODO: test closeness
931 SetCaretPositionAfterClick(container
, position
, hit
, true /* extend selection */);
936 void wxRichTextCtrl::OnRightClick(wxMouseEvent
& event
)
942 dc
.SetFont(GetFont());
945 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
946 wxRichTextObject
* hitObj
= NULL
;
947 wxRichTextObject
* contextObj
= NULL
;
948 int hit
= GetFocusObject()->HitTest(dc
, logicalPt
, position
, & hitObj
, & contextObj
);
950 if (hitObj
&& hitObj
->GetContainer() != GetFocusObject())
952 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
953 if (actualContainer
&& actualContainer
->AcceptsFocus())
955 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
956 SetCaretPositionAfterClick(actualContainer
, position
, hit
);
960 wxRichTextEvent
cmdEvent(
961 wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
,
963 cmdEvent
.SetEventObject(this);
964 cmdEvent
.SetPosition(position
);
966 cmdEvent
.SetContainer(hitObj
->GetContainer());
968 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
972 /// Left-double-click
973 void wxRichTextCtrl::OnLeftDClick(wxMouseEvent
& WXUNUSED(event
))
975 wxRichTextEvent
cmdEvent(
976 wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
,
978 cmdEvent
.SetEventObject(this);
979 cmdEvent
.SetPosition(m_caretPosition
+1);
980 cmdEvent
.SetContainer(GetFocusObject());
982 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
984 SelectWord(GetCaretPosition()+1);
989 void wxRichTextCtrl::OnMiddleClick(wxMouseEvent
& event
)
991 wxRichTextEvent
cmdEvent(
992 wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
,
994 cmdEvent
.SetEventObject(this);
995 cmdEvent
.SetPosition(m_caretPosition
+1);
996 cmdEvent
.SetContainer(GetFocusObject());
998 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
1001 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ && wxHAVE_PRIMARY_SELECTION
1002 // Paste any PRIMARY selection, if it exists
1003 wxTheClipboard
->UsePrimarySelection(true);
1005 wxTheClipboard
->UsePrimarySelection(false);
1010 void wxRichTextCtrl::OnChar(wxKeyEvent
& event
)
1013 if (event
.CmdDown())
1014 flags
|= wxRICHTEXT_CTRL_DOWN
;
1015 if (event
.ShiftDown())
1016 flags
|= wxRICHTEXT_SHIFT_DOWN
;
1017 if (event
.AltDown())
1018 flags
|= wxRICHTEXT_ALT_DOWN
;
1020 if (event
.GetEventType() == wxEVT_KEY_DOWN
)
1022 if (event
.IsKeyInCategory(WXK_CATEGORY_NAVIGATION
))
1024 KeyboardNavigate(event
.GetKeyCode(), flags
);
1028 long keycode
= event
.GetKeyCode();
1088 case WXK_NUMPAD_HOME
:
1089 case WXK_NUMPAD_LEFT
:
1091 case WXK_NUMPAD_RIGHT
:
1092 case WXK_NUMPAD_DOWN
:
1093 case WXK_NUMPAD_PAGEUP
:
1094 case WXK_NUMPAD_PAGEDOWN
:
1095 case WXK_NUMPAD_END
:
1096 case WXK_NUMPAD_BEGIN
:
1097 case WXK_NUMPAD_INSERT
:
1098 case WXK_WINDOWS_LEFT
:
1107 // Must process this before translation, otherwise it's translated into a WXK_DELETE event.
1108 if (event
.CmdDown() && event
.GetKeyCode() == WXK_BACK
)
1110 BeginBatchUndo(_("Delete Text"));
1112 long newPos
= m_caretPosition
;
1114 bool processed
= DeleteSelectedContent(& newPos
);
1116 // Submit range in character positions, which are greater than caret positions,
1117 // so subtract 1 for deleted character and add 1 for conversion to character position.
1120 if (event
.CmdDown())
1122 long pos
= wxRichTextCtrl::FindNextWordPosition(-1);
1125 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(pos
+1, newPos
), this, & GetBuffer());
1131 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(newPos
, newPos
), this, & GetBuffer());
1136 if (GetLastPosition() == -1)
1138 GetFocusObject()->Reset();
1140 m_caretPosition
= -1;
1142 SetDefaultStyleToCursorStyle();
1145 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
1147 wxRichTextEvent
cmdEvent(
1148 wxEVT_COMMAND_RICHTEXT_DELETE
,
1150 cmdEvent
.SetEventObject(this);
1151 cmdEvent
.SetFlags(flags
);
1152 cmdEvent
.SetPosition(m_caretPosition
+1);
1153 cmdEvent
.SetContainer(GetFocusObject());
1154 GetEventHandler()->ProcessEvent(cmdEvent
);
1164 // all the other keys modify the controls contents which shouldn't be
1165 // possible if we're read-only
1166 if ( !IsEditable() )
1172 if (event
.GetKeyCode() == WXK_RETURN
)
1174 BeginBatchUndo(_("Insert Text"));
1176 long newPos
= m_caretPosition
;
1178 DeleteSelectedContent(& newPos
);
1180 if (event
.ShiftDown())
1183 text
= wxRichTextLineBreakChar
;
1184 GetFocusObject()->InsertTextWithUndo(& GetBuffer(), newPos
+1, text
, this);
1185 m_caretAtLineStart
= true;
1189 GetFocusObject()->InsertNewlineWithUndo(& GetBuffer(), newPos
+1, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
|wxRICHTEXT_INSERT_INTERACTIVE
);
1192 SetDefaultStyleToCursorStyle();
1194 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
1196 wxRichTextEvent
cmdEvent(
1197 wxEVT_COMMAND_RICHTEXT_RETURN
,
1199 cmdEvent
.SetEventObject(this);
1200 cmdEvent
.SetFlags(flags
);
1201 cmdEvent
.SetPosition(newPos
+1);
1202 cmdEvent
.SetContainer(GetFocusObject());
1204 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
1206 // Generate conventional event
1207 wxCommandEvent
textEvent(wxEVT_COMMAND_TEXT_ENTER
, GetId());
1208 InitCommandEvent(textEvent
);
1210 GetEventHandler()->ProcessEvent(textEvent
);
1214 else if (event
.GetKeyCode() == WXK_BACK
)
1216 BeginBatchUndo(_("Delete Text"));
1218 long newPos
= m_caretPosition
;
1220 bool processed
= DeleteSelectedContent(& newPos
);
1222 // Submit range in character positions, which are greater than caret positions,
1223 // so subtract 1 for deleted character and add 1 for conversion to character position.
1226 if (event
.CmdDown())
1228 long pos
= wxRichTextCtrl::FindNextWordPosition(-1);
1231 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(pos
+1, newPos
), this, & GetBuffer());
1237 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(newPos
, newPos
), this, & GetBuffer());
1242 if (GetLastPosition() == -1)
1244 GetFocusObject()->Reset();
1246 m_caretPosition
= -1;
1248 SetDefaultStyleToCursorStyle();
1251 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
1253 wxRichTextEvent
cmdEvent(
1254 wxEVT_COMMAND_RICHTEXT_DELETE
,
1256 cmdEvent
.SetEventObject(this);
1257 cmdEvent
.SetFlags(flags
);
1258 cmdEvent
.SetPosition(m_caretPosition
+1);
1259 cmdEvent
.SetContainer(GetFocusObject());
1260 GetEventHandler()->ProcessEvent(cmdEvent
);
1264 else if (event
.GetKeyCode() == WXK_DELETE
)
1266 BeginBatchUndo(_("Delete Text"));
1268 long newPos
= m_caretPosition
;
1270 bool processed
= DeleteSelectedContent(& newPos
);
1272 // Submit range in character positions, which are greater than caret positions,
1273 if (newPos
< GetFocusObject()->GetOwnRange().GetEnd()+1)
1275 if (event
.CmdDown())
1277 long pos
= wxRichTextCtrl::FindNextWordPosition(1);
1278 if (pos
!= -1 && (pos
> newPos
))
1280 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(newPos
+1, pos
), this, & GetBuffer());
1285 if (!processed
&& newPos
< (GetLastPosition()-1))
1286 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(newPos
+1, newPos
+1), this, & GetBuffer());
1291 if (GetLastPosition() == -1)
1293 GetFocusObject()->Reset();
1295 m_caretPosition
= -1;
1297 SetDefaultStyleToCursorStyle();
1300 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
1302 wxRichTextEvent
cmdEvent(
1303 wxEVT_COMMAND_RICHTEXT_DELETE
,
1305 cmdEvent
.SetEventObject(this);
1306 cmdEvent
.SetFlags(flags
);
1307 cmdEvent
.SetPosition(m_caretPosition
+1);
1308 cmdEvent
.SetContainer(GetFocusObject());
1309 GetEventHandler()->ProcessEvent(cmdEvent
);
1315 long keycode
= event
.GetKeyCode();
1327 if (event
.CmdDown())
1329 // Fixes AltGr+key with European input languages on Windows
1330 if ((event
.CmdDown() && !event
.AltDown()) || (event
.AltDown() && !event
.CmdDown()))
1337 wxRichTextEvent
cmdEvent(
1338 wxEVT_COMMAND_RICHTEXT_CHARACTER
,
1340 cmdEvent
.SetEventObject(this);
1341 cmdEvent
.SetFlags(flags
);
1343 cmdEvent
.SetCharacter(event
.GetUnicodeKey());
1345 cmdEvent
.SetCharacter((wxChar
) keycode
);
1347 cmdEvent
.SetPosition(m_caretPosition
+1);
1348 cmdEvent
.SetContainer(GetFocusObject());
1350 if (keycode
== wxT('\t'))
1352 // See if we need to promote or demote the selection or paragraph at the cursor
1353 // position, instead of inserting a tab.
1354 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
1355 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
);
1356 if (para
&& para
->GetRange().GetStart() == pos
&& para
->GetAttributes().HasListStyleName())
1358 wxRichTextRange range
;
1360 range
= GetSelectionRange();
1362 range
= para
->GetRange().FromInternal();
1364 int promoteBy
= event
.ShiftDown() ? 1 : -1;
1366 PromoteList(promoteBy
, range
, NULL
);
1368 GetEventHandler()->ProcessEvent(cmdEvent
);
1374 BeginBatchUndo(_("Insert Text"));
1376 long newPos
= m_caretPosition
;
1377 DeleteSelectedContent(& newPos
);
1380 wxString str
= event
.GetUnicodeKey();
1382 wxString str
= (wxChar
) event
.GetKeyCode();
1384 GetFocusObject()->InsertTextWithUndo(& GetBuffer(), newPos
+1, str
, this, 0);
1388 SetDefaultStyleToCursorStyle();
1389 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
1391 cmdEvent
.SetPosition(m_caretPosition
);
1392 GetEventHandler()->ProcessEvent(cmdEvent
);
1400 bool wxRichTextCtrl::ProcessMouseMovement(wxRichTextParagraphLayoutBox
* container
, wxRichTextObject
* obj
, long position
, const wxPoint
& pos
)
1402 wxRichTextAttr attr
;
1403 if (container
&& GetStyle(position
, attr
, container
))
1405 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
1407 SetCursor(m_urlCursor
);
1409 else if (!attr
.HasFlag(wxTEXT_ATTR_URL
))
1411 SetCursor(m_textCursor
);
1419 /// Delete content if there is a selection, e.g. when pressing a key.
1420 bool wxRichTextCtrl::DeleteSelectedContent(long* newPos
)
1424 long pos
= m_selection
.GetRange().GetStart();
1425 wxRichTextRange range
= m_selection
.GetRange();
1427 // SelectAll causes more to be selected than doing it interactively,
1428 // and causes a new paragraph to be inserted. So for multiline buffers,
1429 // don't delete the final position.
1430 if (range
.GetEnd() == GetLastPosition() && GetNumberOfLines() > 0)
1431 range
.SetEnd(range
.GetEnd()-1);
1433 GetFocusObject()->DeleteRangeWithUndo(range
, this, & GetBuffer());
1434 m_selection
.Reset();
1435 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
1445 /// Keyboard navigation
1449 Left: left one character
1450 Right: right one character
1453 Ctrl-Left: left one word
1454 Ctrl-Right: right one word
1455 Ctrl-Up: previous paragraph start
1456 Ctrl-Down: next start of paragraph
1459 Ctrl-Home: start of document
1460 Ctrl-End: end of document
1461 Page-Up: Up a screen
1462 Page-Down: Down a screen
1466 Ctrl-Alt-PgUp: Start of window
1467 Ctrl-Alt-PgDn: End of window
1468 F8: Start selection mode
1469 Esc: End selection mode
1471 Adding Shift does the above but starts/extends selection.
1476 bool wxRichTextCtrl::KeyboardNavigate(int keyCode
, int flags
)
1478 bool success
= false;
1480 if (keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
)
1482 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1483 success
= WordRight(1, flags
);
1485 success
= MoveRight(1, flags
);
1487 else if (keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
)
1489 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1490 success
= WordLeft(1, flags
);
1492 success
= MoveLeft(1, flags
);
1494 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
)
1496 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1497 success
= MoveToParagraphStart(flags
);
1499 success
= MoveUp(1, flags
);
1501 else if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
)
1503 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1504 success
= MoveToParagraphEnd(flags
);
1506 success
= MoveDown(1, flags
);
1508 else if (keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1510 success
= PageUp(1, flags
);
1512 else if (keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1514 success
= PageDown(1, flags
);
1516 else if (keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
)
1518 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1519 success
= MoveHome(flags
);
1521 success
= MoveToLineStart(flags
);
1523 else if (keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
)
1525 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1526 success
= MoveEnd(flags
);
1528 success
= MoveToLineEnd(flags
);
1533 ScrollIntoView(m_caretPosition
, keyCode
);
1534 SetDefaultStyleToCursorStyle();
1540 /// Extend the selection. Selections are in caret positions.
1541 bool wxRichTextCtrl::ExtendSelection(long oldPos
, long newPos
, int flags
)
1543 if (flags
& wxRICHTEXT_SHIFT_DOWN
)
1545 if (oldPos
== newPos
)
1548 wxRichTextSelection oldSelection
= m_selection
;
1550 m_selection
.SetContainer(GetFocusObject());
1552 wxRichTextRange oldRange
;
1553 if (m_selection
.IsValid())
1554 oldRange
= m_selection
.GetRange();
1556 oldRange
= wxRICHTEXT_NO_SELECTION
;
1557 wxRichTextRange newRange
;
1559 // If not currently selecting, start selecting
1560 if (oldRange
.GetStart() == -2)
1562 m_selectionAnchor
= oldPos
;
1564 if (oldPos
> newPos
)
1565 newRange
.SetRange(newPos
+1, oldPos
);
1567 newRange
.SetRange(oldPos
+1, newPos
);
1571 // Always ensure that the selection range start is greater than
1573 if (newPos
> m_selectionAnchor
)
1574 newRange
.SetRange(m_selectionAnchor
+1, newPos
);
1575 else if (newPos
== m_selectionAnchor
)
1576 newRange
= wxRichTextRange(-2, -2);
1578 newRange
.SetRange(newPos
+1, m_selectionAnchor
);
1581 m_selection
.SetRange(newRange
);
1583 RefreshForSelectionChange(oldSelection
, m_selection
);
1585 if (newRange
.GetStart() > newRange
.GetEnd())
1587 wxLogDebug(wxT("Strange selection range"));
1596 /// Scroll into view, returning true if we scrolled.
1597 /// This takes a _caret_ position.
1598 bool wxRichTextCtrl::ScrollIntoView(long position
, int keyCode
)
1600 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(position
);
1606 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1608 int startXUnits
, startYUnits
;
1609 GetViewStart(& startXUnits
, & startYUnits
);
1610 int startY
= startYUnits
* ppuY
;
1613 GetVirtualSize(& sx
, & sy
);
1619 wxRect rect
= line
->GetRect();
1621 bool scrolled
= false;
1623 wxSize clientSize
= GetClientSize();
1625 int leftMargin
, rightMargin
, topMargin
, bottomMargin
;
1628 wxClientDC
dc(this);
1629 wxRichTextObject::GetTotalMargin(dc
, & GetBuffer(), GetBuffer().GetAttributes(), leftMargin
, rightMargin
,
1630 topMargin
, bottomMargin
);
1632 // clientSize.y -= GetBuffer().GetBottomMargin();
1633 clientSize
.y
-= bottomMargin
;
1635 if (GetWindowStyle() & wxRE_CENTRE_CARET
)
1637 int y
= rect
.y
- GetClientSize().y
/2;
1638 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1639 if (y
>= 0 && (y
+ clientSize
.y
) < GetBuffer().GetCachedSize().y
)
1641 if (startYUnits
!= yUnits
)
1643 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1646 #if !wxRICHTEXT_USE_OWN_CARET
1656 if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
||
1657 keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
||
1658 keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
||
1659 keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1661 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1663 // Make it scroll so this item is at the bottom
1665 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1666 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1668 // If we're still off the screen, scroll another line down
1669 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1672 if (startYUnits
!= yUnits
)
1674 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1678 else if (rect
.y
< (startY
+ GetBuffer().GetTopMargin()))
1680 // Make it scroll so this item is at the top
1682 int y
= rect
.y
- GetBuffer().GetTopMargin();
1683 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1685 if (startYUnits
!= yUnits
)
1687 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1693 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
||
1694 keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
||
1695 keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
||
1696 keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1698 if (rect
.y
< (startY
+ GetBuffer().GetBottomMargin()))
1700 // Make it scroll so this item is at the top
1702 int y
= rect
.y
- GetBuffer().GetTopMargin();
1703 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1705 if (startYUnits
!= yUnits
)
1707 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1711 else if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1713 // Make it scroll so this item is at the bottom
1715 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1716 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1718 // If we're still off the screen, scroll another line down
1719 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1722 if (startYUnits
!= yUnits
)
1724 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1730 #if !wxRICHTEXT_USE_OWN_CARET
1738 /// Is the given position visible on the screen?
1739 bool wxRichTextCtrl::IsPositionVisible(long pos
) const
1741 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(pos
-1);
1747 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1750 GetViewStart(& startX
, & startY
);
1752 startY
= startY
* ppuY
;
1754 wxRect rect
= line
->GetRect();
1755 wxSize clientSize
= GetClientSize();
1756 clientSize
.y
-= GetBuffer().GetBottomMargin();
1758 return (rect
.GetTop() >= (startY
+ GetBuffer().GetTopMargin())) && (rect
.GetBottom() <= (startY
+ clientSize
.y
));
1761 void wxRichTextCtrl::SetCaretPosition(long position
, bool showAtLineStart
)
1763 m_caretPosition
= position
;
1764 m_caretAtLineStart
= showAtLineStart
;
1767 /// Move caret one visual step forward: this may mean setting a flag
1768 /// and keeping the same position if we're going from the end of one line
1769 /// to the start of the next, which may be the exact same caret position.
1770 void wxRichTextCtrl::MoveCaretForward(long oldPosition
)
1772 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(oldPosition
);
1774 // Only do the check if we're not at the end of the paragraph (where things work OK
1776 if (para
&& (oldPosition
!= para
->GetRange().GetEnd() - 1))
1778 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(oldPosition
);
1782 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1784 // We're at the end of a line. See whether we need to
1785 // stay at the same actual caret position but change visual
1786 // position, or not.
1787 if (oldPosition
== lineRange
.GetEnd())
1789 if (m_caretAtLineStart
)
1791 // We're already at the start of the line, so actually move on now.
1792 m_caretPosition
= oldPosition
+ 1;
1793 m_caretAtLineStart
= false;
1797 // We're showing at the end of the line, so keep to
1798 // the same position but indicate that we're to show
1799 // at the start of the next line.
1800 m_caretPosition
= oldPosition
;
1801 m_caretAtLineStart
= true;
1803 SetDefaultStyleToCursorStyle();
1809 SetDefaultStyleToCursorStyle();
1812 /// Move caret one visual step backward: this may mean setting a flag
1813 /// and keeping the same position if we're going from the end of one line
1814 /// to the start of the next, which may be the exact same caret position.
1815 void wxRichTextCtrl::MoveCaretBack(long oldPosition
)
1817 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(oldPosition
);
1819 // Only do the check if we're not at the start of the paragraph (where things work OK
1821 if (para
&& (oldPosition
!= para
->GetRange().GetStart()))
1823 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(oldPosition
);
1827 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1829 // We're at the start of a line. See whether we need to
1830 // stay at the same actual caret position but change visual
1831 // position, or not.
1832 if (oldPosition
== lineRange
.GetStart())
1834 m_caretPosition
= oldPosition
-1;
1835 m_caretAtLineStart
= true;
1838 else if (oldPosition
== lineRange
.GetEnd())
1840 if (m_caretAtLineStart
)
1842 // We're at the start of the line, so keep the same caret position
1843 // but clear the start-of-line flag.
1844 m_caretPosition
= oldPosition
;
1845 m_caretAtLineStart
= false;
1849 // We're showing at the end of the line, so go back
1850 // to the previous character position.
1851 m_caretPosition
= oldPosition
- 1;
1853 SetDefaultStyleToCursorStyle();
1859 SetDefaultStyleToCursorStyle();
1863 bool wxRichTextCtrl::MoveRight(int noPositions
, int flags
)
1865 long endPos
= GetFocusObject()->GetOwnRange().GetEnd();
1867 if (m_caretPosition
+ noPositions
< endPos
)
1869 long oldPos
= m_caretPosition
;
1870 long newPos
= m_caretPosition
+ noPositions
;
1872 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1876 // Determine by looking at oldPos and m_caretPosition whether
1877 // we moved from the end of a line to the start of the next line, in which case
1878 // we want to adjust the caret position such that it is positioned at the
1879 // start of the next line, rather than jumping past the first character of the
1881 if (noPositions
== 1 && !extendSel
)
1882 MoveCaretForward(oldPos
);
1884 SetCaretPosition(newPos
);
1887 SetDefaultStyleToCursorStyle();
1896 bool wxRichTextCtrl::MoveLeft(int noPositions
, int flags
)
1900 if (m_caretPosition
> startPos
- noPositions
+ 1)
1902 long oldPos
= m_caretPosition
;
1903 long newPos
= m_caretPosition
- noPositions
;
1904 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1908 if (noPositions
== 1 && !extendSel
)
1909 MoveCaretBack(oldPos
);
1911 SetCaretPosition(newPos
);
1914 SetDefaultStyleToCursorStyle();
1922 // Find the caret position for the combination of hit-test flags and character position.
1923 // Returns the caret position and also an indication of where to place the caret (caretLineStart)
1924 // since this is ambiguous (same position used for end of line and start of next).
1925 long wxRichTextCtrl::FindCaretPositionForCharacterPosition(long position
, int hitTestFlags
, wxRichTextParagraphLayoutBox
* container
,
1926 bool& caretLineStart
)
1928 // If end of previous line, and hitTest is wxRICHTEXT_HITTEST_BEFORE,
1929 // we want to be at the end of the last line but with m_caretAtLineStart set to true,
1930 // so we view the caret at the start of the line.
1931 caretLineStart
= false;
1932 long caretPosition
= position
;
1934 if (hitTestFlags
& wxRICHTEXT_HITTEST_BEFORE
)
1936 wxRichTextLine
* thisLine
= container
->GetLineAtPosition(position
-1);
1937 wxRichTextRange lineRange
;
1939 lineRange
= thisLine
->GetAbsoluteRange();
1941 if (thisLine
&& (position
-1) == lineRange
.GetEnd())
1944 caretLineStart
= true;
1948 wxRichTextParagraph
* para
= container
->GetParagraphAtPosition(position
);
1949 if (para
&& para
->GetRange().GetStart() == position
)
1953 return caretPosition
;
1957 bool wxRichTextCtrl::MoveUp(int noLines
, int flags
)
1959 return MoveDown(- noLines
, flags
);
1963 bool wxRichTextCtrl::MoveDown(int noLines
, int flags
)
1968 long lineNumber
= GetFocusObject()->GetVisibleLineNumber(m_caretPosition
, true, m_caretAtLineStart
);
1969 wxPoint pt
= GetCaret()->GetPosition();
1970 long newLine
= lineNumber
+ noLines
;
1971 bool notInThisObject
= false;
1973 if (lineNumber
!= -1)
1977 long lastLine
= GetFocusObject()->GetVisibleLineNumber(GetFocusObject()->GetOwnRange().GetEnd());
1978 if (newLine
> lastLine
)
1979 notInThisObject
= true;
1984 notInThisObject
= true;
1988 wxRichTextParagraphLayoutBox
* container
= GetFocusObject();
1989 int hitTestFlags
= wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
|wxRICHTEXT_HITTEST_NO_FLOATING_OBJECTS
;
1991 if (notInThisObject
)
1993 // If we know we're navigating out of the current object,
1994 // try to find an object anywhere in the buffer at the new position (up or down a bit)
1995 container
= & GetBuffer();
1996 hitTestFlags
&= ~wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
;
1998 if (noLines
> 0) // going down
2000 pt
.y
= GetFocusObject()->GetPosition().y
+ GetFocusObject()->GetCachedSize().y
+ 2;
2004 pt
.y
= GetFocusObject()->GetPosition().y
- 2;
2009 wxRichTextLine
* lineObj
= GetFocusObject()->GetLineForVisibleLineNumber(newLine
);
2011 pt
.y
= lineObj
->GetAbsolutePosition().y
+ 2;
2017 wxClientDC
dc(this);
2019 dc
.SetFont(GetFont());
2021 wxRichTextObject
* hitObj
= NULL
;
2022 wxRichTextObject
* contextObj
= NULL
;
2023 int hitTest
= container
->HitTest(dc
, pt
, newPos
, & hitObj
, & contextObj
, hitTestFlags
);
2026 ((hitTest
& wxRICHTEXT_HITTEST_NONE
) == 0) &&
2027 (! (hitObj
== (& m_buffer
) && ((hitTest
& wxRICHTEXT_HITTEST_OUTSIDE
) != 0))) // outside the buffer counts as 'do nothing'
2030 if (notInThisObject
)
2032 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
2033 if (actualContainer
&& actualContainer
!= GetFocusObject() && actualContainer
->AcceptsFocus())
2035 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
2037 container
= actualContainer
;
2041 bool caretLineStart
= true;
2042 long caretPosition
= FindCaretPositionForCharacterPosition(newPos
, hitTest
, container
, caretLineStart
);
2043 long newSelEnd
= caretPosition
;
2046 if (notInThisObject
)
2049 extendSel
= ExtendSelection(m_caretPosition
, newSelEnd
, flags
);
2054 SetCaretPosition(caretPosition
, caretLineStart
);
2056 SetDefaultStyleToCursorStyle();
2064 /// Move to the end of the paragraph
2065 bool wxRichTextCtrl::MoveToParagraphEnd(int flags
)
2067 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(m_caretPosition
, true);
2070 long newPos
= para
->GetRange().GetEnd() - 1;
2071 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
2075 SetCaretPosition(newPos
);
2077 SetDefaultStyleToCursorStyle();
2085 /// Move to the start of the paragraph
2086 bool wxRichTextCtrl::MoveToParagraphStart(int flags
)
2088 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(m_caretPosition
, true);
2091 long newPos
= para
->GetRange().GetStart() - 1;
2092 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
2096 SetCaretPosition(newPos
);
2098 SetDefaultStyleToCursorStyle();
2106 /// Move to the end of the line
2107 bool wxRichTextCtrl::MoveToLineEnd(int flags
)
2109 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
2113 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
2114 long newPos
= lineRange
.GetEnd();
2115 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
2119 SetCaretPosition(newPos
);
2121 SetDefaultStyleToCursorStyle();
2129 /// Move to the start of the line
2130 bool wxRichTextCtrl::MoveToLineStart(int flags
)
2132 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
2135 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
2136 long newPos
= lineRange
.GetStart()-1;
2138 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
2142 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphForLine(line
);
2144 SetCaretPosition(newPos
, para
->GetRange().GetStart() != lineRange
.GetStart());
2146 SetDefaultStyleToCursorStyle();
2154 /// Move to the start of the buffer
2155 bool wxRichTextCtrl::MoveHome(int flags
)
2157 if (m_caretPosition
!= -1)
2159 bool extendSel
= ExtendSelection(m_caretPosition
, -1, flags
);
2163 SetCaretPosition(-1);
2165 SetDefaultStyleToCursorStyle();
2173 /// Move to the end of the buffer
2174 bool wxRichTextCtrl::MoveEnd(int flags
)
2176 long endPos
= GetFocusObject()->GetOwnRange().GetEnd()-1;
2178 if (m_caretPosition
!= endPos
)
2180 bool extendSel
= ExtendSelection(m_caretPosition
, endPos
, flags
);
2184 SetCaretPosition(endPos
);
2186 SetDefaultStyleToCursorStyle();
2194 /// Move noPages pages up
2195 bool wxRichTextCtrl::PageUp(int noPages
, int flags
)
2197 return PageDown(- noPages
, flags
);
2200 /// Move noPages pages down
2201 bool wxRichTextCtrl::PageDown(int noPages
, int flags
)
2203 // Calculate which line occurs noPages * screen height further down.
2204 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
2207 wxSize clientSize
= GetClientSize();
2208 int newY
= line
->GetAbsolutePosition().y
+ noPages
*clientSize
.y
;
2210 wxRichTextLine
* newLine
= GetFocusObject()->GetLineAtYPosition(newY
);
2213 wxRichTextRange lineRange
= newLine
->GetAbsoluteRange();
2214 long pos
= lineRange
.GetStart()-1;
2215 if (pos
!= m_caretPosition
)
2217 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphForLine(newLine
);
2219 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2223 SetCaretPosition(pos
, para
->GetRange().GetStart() != lineRange
.GetStart());
2225 SetDefaultStyleToCursorStyle();
2235 static bool wxRichTextCtrlIsWhitespace(const wxString
& str
)
2237 return str
== wxT(" ") || str
== wxT("\t");
2240 // Finds the caret position for the next word
2241 long wxRichTextCtrl::FindNextWordPosition(int direction
) const
2243 long endPos
= GetFocusObject()->GetOwnRange().GetEnd();
2247 long i
= m_caretPosition
+1+direction
; // +1 for conversion to character pos
2249 // First skip current text to space
2250 while (i
< endPos
&& i
> -1)
2252 // i is in character, not caret positions
2253 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2254 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2255 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
2259 else if (!wxRichTextCtrlIsWhitespace(text
) && !text
.empty())
2266 while (i
< endPos
&& i
> -1)
2268 // i is in character, not caret positions
2269 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2270 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2271 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
2272 return wxMax(-1, i
);
2274 if (text
.empty()) // End of paragraph, or maybe an image
2275 return wxMax(-1, i
- 1);
2276 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
2280 // Convert to caret position
2281 return wxMax(-1, i
- 1);
2290 long i
= m_caretPosition
;
2292 // First skip white space
2293 while (i
< endPos
&& i
> -1)
2295 // i is in character, not caret positions
2296 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2297 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2299 if (text
.empty() || (line
&& (i
== line
->GetAbsoluteRange().GetStart()))) // End of paragraph, or maybe an image
2301 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
2306 // Next skip current text to space
2307 while (i
< endPos
&& i
> -1)
2309 // i is in character, not caret positions
2310 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2311 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2312 if (line
&& line
->GetAbsoluteRange().GetStart() == i
)
2315 if (!wxRichTextCtrlIsWhitespace(text
) /* && !text.empty() */)
2328 /// Move n words left
2329 bool wxRichTextCtrl::WordLeft(int WXUNUSED(n
), int flags
)
2331 long pos
= FindNextWordPosition(-1);
2332 if (pos
!= m_caretPosition
)
2334 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
, true);
2336 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2340 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
2342 SetDefaultStyleToCursorStyle();
2350 /// Move n words right
2351 bool wxRichTextCtrl::WordRight(int WXUNUSED(n
), int flags
)
2353 long pos
= FindNextWordPosition(1);
2354 if (pos
!= m_caretPosition
)
2356 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
, true);
2358 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2362 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
2364 SetDefaultStyleToCursorStyle();
2373 void wxRichTextCtrl::OnSize(wxSizeEvent
& event
)
2375 // Only do sizing optimization for large buffers
2376 if (GetBuffer().GetOwnRange().GetEnd() > m_delayedLayoutThreshold
)
2378 m_fullLayoutRequired
= true;
2379 m_fullLayoutTime
= wxGetLocalTimeMillis();
2380 m_fullLayoutSavedPosition
= GetFirstVisiblePosition();
2381 LayoutContent(true /* onlyVisibleRect */);
2384 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2386 #if wxRICHTEXT_BUFFERED_PAINTING
2393 // Force any pending layout due to large buffer
2394 void wxRichTextCtrl::ForceDelayedLayout()
2396 if (m_fullLayoutRequired
)
2398 m_fullLayoutRequired
= false;
2399 m_fullLayoutTime
= 0;
2400 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2401 ShowPosition(m_fullLayoutSavedPosition
);
2407 /// Idle-time processing
2408 void wxRichTextCtrl::OnIdle(wxIdleEvent
& event
)
2410 #if wxRICHTEXT_USE_OWN_CARET
2411 if (((wxRichTextCaret
*) GetCaret())->GetNeedsUpdate())
2413 ((wxRichTextCaret
*) GetCaret())->SetNeedsUpdate(false);
2419 const int layoutInterval
= wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL
;
2421 if (m_fullLayoutRequired
&& (wxGetLocalTimeMillis() > (m_fullLayoutTime
+ layoutInterval
)))
2423 m_fullLayoutRequired
= false;
2424 m_fullLayoutTime
= 0;
2425 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2426 ShowPosition(m_fullLayoutSavedPosition
);
2430 if (m_caretPositionForDefaultStyle
!= -2)
2432 // If the caret position has changed, no longer reflect the default style
2434 if (GetCaretPosition() != m_caretPositionForDefaultStyle
)
2435 m_caretPositionForDefaultStyle
= -2;
2442 void wxRichTextCtrl::OnScroll(wxScrollWinEvent
& event
)
2444 #if wxRICHTEXT_USE_OWN_CARET
2445 if (!((wxRichTextCaret
*) GetCaret())->GetNeedsUpdate())
2448 ((wxRichTextCaret
*) GetCaret())->SetNeedsUpdate();
2455 /// Set up scrollbars, e.g. after a resize
2456 void wxRichTextCtrl::SetupScrollbars(bool atTop
)
2461 if (GetBuffer().IsEmpty())
2463 SetScrollbars(0, 0, 0, 0, 0, 0);
2467 // TODO: reimplement scrolling so we scroll by line, not by fixed number
2468 // of pixels. See e.g. wxVScrolledWindow for ideas.
2469 int pixelsPerUnit
= 5;
2470 wxSize clientSize
= GetClientSize();
2472 int maxHeight
= GetBuffer().GetCachedSize().y
+ GetBuffer().GetTopMargin();
2474 // Round up so we have at least maxHeight pixels
2475 int unitsY
= (int) (((float)maxHeight
/(float)pixelsPerUnit
) + 0.5);
2477 int startX
= 0, startY
= 0;
2479 GetViewStart(& startX
, & startY
);
2481 int maxPositionX
= 0;
2482 int maxPositionY
= (int) ((((float)(wxMax((unitsY
*pixelsPerUnit
) - clientSize
.y
, 0)))/((float)pixelsPerUnit
)) + 0.5);
2484 int newStartX
= wxMin(maxPositionX
, startX
);
2485 int newStartY
= wxMin(maxPositionY
, startY
);
2487 int oldPPUX
, oldPPUY
;
2488 int oldStartX
, oldStartY
;
2489 int oldVirtualSizeX
= 0, oldVirtualSizeY
= 0;
2490 GetScrollPixelsPerUnit(& oldPPUX
, & oldPPUY
);
2491 GetViewStart(& oldStartX
, & oldStartY
);
2492 GetVirtualSize(& oldVirtualSizeX
, & oldVirtualSizeY
);
2494 oldVirtualSizeY
/= oldPPUY
;
2496 if (oldPPUX
== 0 && oldPPUY
== pixelsPerUnit
&& oldVirtualSizeY
== unitsY
&& oldStartX
== newStartX
&& oldStartY
== newStartY
)
2499 // Don't set scrollbars if there were none before, and there will be none now.
2500 if (oldPPUY
!= 0 && (oldVirtualSizeY
*oldPPUY
< clientSize
.y
) && (unitsY
*pixelsPerUnit
< clientSize
.y
))
2503 // Move to previous scroll position if
2505 SetScrollbars(0, pixelsPerUnit
, 0, unitsY
, newStartX
, newStartY
);
2508 /// Paint the background
2509 void wxRichTextCtrl::PaintBackground(wxDC
& dc
)
2511 wxColour backgroundColour
= GetBackgroundColour();
2512 if (!backgroundColour
.IsOk())
2513 backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
2515 // Clear the background
2516 dc
.SetBrush(wxBrush(backgroundColour
));
2517 dc
.SetPen(*wxTRANSPARENT_PEN
);
2518 wxRect
windowRect(GetClientSize());
2519 windowRect
.x
-= 2; windowRect
.y
-= 2;
2520 windowRect
.width
+= 4; windowRect
.height
+= 4;
2522 // We need to shift the rectangle to take into account
2523 // scrolling. Converting device to logical coordinates.
2524 CalcUnscrolledPosition(windowRect
.x
, windowRect
.y
, & windowRect
.x
, & windowRect
.y
);
2525 dc
.DrawRectangle(windowRect
);
2528 #if wxRICHTEXT_BUFFERED_PAINTING
2529 /// Recreate buffer bitmap if necessary
2530 bool wxRichTextCtrl::RecreateBuffer(const wxSize
& size
)
2533 if (sz
== wxDefaultSize
)
2534 sz
= GetClientSize();
2536 if (sz
.x
< 1 || sz
.y
< 1)
2539 if (!m_bufferBitmap
.IsOk() || m_bufferBitmap
.GetWidth() < sz
.x
|| m_bufferBitmap
.GetHeight() < sz
.y
)
2540 m_bufferBitmap
= wxBitmap(sz
.x
, sz
.y
);
2541 return m_bufferBitmap
.IsOk();
2545 // ----------------------------------------------------------------------------
2546 // file IO functions
2547 // ----------------------------------------------------------------------------
2549 bool wxRichTextCtrl::DoLoadFile(const wxString
& filename
, int fileType
)
2551 bool success
= GetBuffer().LoadFile(filename
, (wxRichTextFileType
)fileType
);
2553 m_filename
= filename
;
2556 SetInsertionPoint(0);
2559 SetupScrollbars(true);
2561 wxTextCtrl::SendTextUpdatedEvent(this);
2567 wxLogError(_("File couldn't be loaded."));
2573 bool wxRichTextCtrl::DoSaveFile(const wxString
& filename
, int fileType
)
2575 if (GetBuffer().SaveFile(filename
, (wxRichTextFileType
)fileType
))
2577 m_filename
= filename
;
2584 wxLogError(_("The text couldn't be saved."));
2589 // ----------------------------------------------------------------------------
2590 // wxRichTextCtrl specific functionality
2591 // ----------------------------------------------------------------------------
2593 /// Add a new paragraph of text to the end of the buffer
2594 wxRichTextRange
wxRichTextCtrl::AddParagraph(const wxString
& text
)
2596 wxRichTextRange range
= GetFocusObject()->AddParagraph(text
);
2597 GetBuffer().Invalidate();
2603 wxRichTextRange
wxRichTextCtrl::AddImage(const wxImage
& image
)
2605 wxRichTextRange range
= GetFocusObject()->AddImage(image
);
2606 GetBuffer().Invalidate();
2611 // ----------------------------------------------------------------------------
2612 // selection and ranges
2613 // ----------------------------------------------------------------------------
2615 void wxRichTextCtrl::SelectAll()
2617 SetSelection(-1, -1);
2621 void wxRichTextCtrl::SelectNone()
2623 if (m_selection
.IsValid())
2625 wxRichTextSelection oldSelection
= m_selection
;
2627 m_selection
.Reset();
2629 RefreshForSelectionChange(oldSelection
, m_selection
);
2631 m_selectionAnchor
= -2;
2632 m_selectionAnchorObject
= NULL
;
2633 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
2636 static bool wxIsWordDelimiter(const wxString
& text
)
2638 return !text
.IsEmpty() && !wxIsalnum(text
[0]);
2641 /// Select the word at the given character position
2642 bool wxRichTextCtrl::SelectWord(long position
)
2644 if (position
< 0 || position
> GetFocusObject()->GetOwnRange().GetEnd())
2647 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(position
);
2651 if (position
== para
->GetRange().GetEnd())
2654 long positionStart
= position
;
2655 long positionEnd
= position
;
2657 for (positionStart
= position
; positionStart
>= para
->GetRange().GetStart(); positionStart
--)
2659 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(positionStart
, positionStart
));
2660 if (wxIsWordDelimiter(text
))
2666 if (positionStart
< para
->GetRange().GetStart())
2667 positionStart
= para
->GetRange().GetStart();
2669 for (positionEnd
= position
; positionEnd
< para
->GetRange().GetEnd(); positionEnd
++)
2671 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(positionEnd
, positionEnd
));
2672 if (wxIsWordDelimiter(text
))
2678 if (positionEnd
>= para
->GetRange().GetEnd())
2679 positionEnd
= para
->GetRange().GetEnd();
2681 if (positionEnd
< positionStart
)
2684 SetSelection(positionStart
, positionEnd
+1);
2686 if (positionStart
>= 0)
2688 MoveCaret(positionStart
-1, true);
2689 SetDefaultStyleToCursorStyle();
2695 wxString
wxRichTextCtrl::GetStringSelection() const
2698 GetSelection(&from
, &to
);
2700 return GetRange(from
, to
);
2703 // ----------------------------------------------------------------------------
2705 // ----------------------------------------------------------------------------
2707 wxTextCtrlHitTestResult
2708 wxRichTextCtrl::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
2710 // implement in terms of the other overload as the native ports typically
2711 // can get the position and not (x, y) pair directly (although wxUniv
2712 // directly gets x and y -- and so overrides this method as well)
2714 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
2716 if ( rc
!= wxTE_HT_UNKNOWN
)
2718 PositionToXY(pos
, x
, y
);
2724 wxTextCtrlHitTestResult
2725 wxRichTextCtrl::HitTest(const wxPoint
& pt
,
2728 wxClientDC
dc((wxRichTextCtrl
*) this);
2729 ((wxRichTextCtrl
*)this)->PrepareDC(dc
);
2731 // Buffer uses logical position (relative to start of buffer)
2733 wxPoint pt2
= GetLogicalPoint(pt
);
2735 wxRichTextObject
* hitObj
= NULL
;
2736 wxRichTextObject
* contextObj
= NULL
;
2737 int hit
= ((wxRichTextCtrl
*)this)->GetFocusObject()->HitTest(dc
, pt2
, *pos
, & hitObj
, & contextObj
, wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
);
2739 if ((hit
& wxRICHTEXT_HITTEST_BEFORE
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2740 return wxTE_HT_BEFORE
;
2741 else if ((hit
& wxRICHTEXT_HITTEST_AFTER
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2742 return wxTE_HT_BEYOND
;
2743 else if (hit
& (wxRICHTEXT_HITTEST_BEFORE
|wxRICHTEXT_HITTEST_AFTER
))
2744 return wxTE_HT_ON_TEXT
;
2746 return wxTE_HT_UNKNOWN
;
2749 wxRichTextParagraphLayoutBox
*
2750 wxRichTextCtrl::FindContainerAtPoint(const wxPoint pt
, long& position
, int& hit
, wxRichTextObject
* hitObj
, int flags
/* = 0*/)
2752 wxClientDC
dc(this);
2754 dc
.SetFont(GetFont());
2756 wxPoint logicalPt
= GetLogicalPoint(pt
);
2758 wxRichTextObject
* contextObj
= NULL
;
2759 hit
= GetBuffer().HitTest(dc
, logicalPt
, position
, &hitObj
, &contextObj
, flags
);
2760 wxRichTextParagraphLayoutBox
* container
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
2766 // ----------------------------------------------------------------------------
2767 // set/get the controls text
2768 // ----------------------------------------------------------------------------
2770 wxString
wxRichTextCtrl::DoGetValue() const
2772 return GetBuffer().GetText();
2775 wxString
wxRichTextCtrl::GetRange(long from
, long to
) const
2777 // Public API for range is different from internals
2778 return GetFocusObject()->GetTextForRange(wxRichTextRange(from
, to
-1));
2781 void wxRichTextCtrl::DoSetValue(const wxString
& value
, int flags
)
2783 // Don't call Clear here, since it always sends a text updated event
2784 m_buffer
.ResetAndClearCommands();
2785 m_buffer
.Invalidate(wxRICHTEXT_ALL
);
2786 m_caretPosition
= -1;
2787 m_caretPositionForDefaultStyle
= -2;
2788 m_caretAtLineStart
= false;
2789 m_selection
.Reset();
2790 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
2800 if (!value
.IsEmpty())
2802 // Remove empty paragraph
2803 GetBuffer().Clear();
2804 DoWriteText(value
, flags
);
2806 // for compatibility, don't move the cursor when doing SetValue()
2807 SetInsertionPoint(0);
2811 // still send an event for consistency
2812 if (flags
& SetValue_SendEvent
)
2813 wxTextCtrl::SendTextUpdatedEvent(this);
2818 void wxRichTextCtrl::WriteText(const wxString
& value
)
2823 void wxRichTextCtrl::DoWriteText(const wxString
& value
, int flags
)
2825 wxString valueUnix
= wxTextFile::Translate(value
, wxTextFileType_Unix
);
2827 GetFocusObject()->InsertTextWithUndo(& GetBuffer(), m_caretPosition
+1, valueUnix
, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2829 if ( flags
& SetValue_SendEvent
)
2830 wxTextCtrl::SendTextUpdatedEvent(this);
2833 void wxRichTextCtrl::AppendText(const wxString
& text
)
2835 SetInsertionPointEnd();
2840 /// Write an image at the current insertion point
2841 bool wxRichTextCtrl::WriteImage(const wxImage
& image
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2843 wxRichTextImageBlock imageBlock
;
2845 wxImage image2
= image
;
2846 if (imageBlock
.MakeImageBlock(image2
, bitmapType
))
2847 return WriteImage(imageBlock
, textAttr
);
2852 bool wxRichTextCtrl::WriteImage(const wxString
& filename
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2854 wxRichTextImageBlock imageBlock
;
2857 if (imageBlock
.MakeImageBlock(filename
, bitmapType
, image
, false))
2858 return WriteImage(imageBlock
, textAttr
);
2863 bool wxRichTextCtrl::WriteImage(const wxRichTextImageBlock
& imageBlock
, const wxRichTextAttr
& textAttr
)
2865 return GetFocusObject()->InsertImageWithUndo(& GetBuffer(), m_caretPosition
+1, imageBlock
, this, 0, textAttr
);
2868 bool wxRichTextCtrl::WriteImage(const wxBitmap
& bitmap
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2872 wxRichTextImageBlock imageBlock
;
2874 wxImage image
= bitmap
.ConvertToImage();
2875 if (image
.IsOk() && imageBlock
.MakeImageBlock(image
, bitmapType
))
2876 return WriteImage(imageBlock
, textAttr
);
2882 // Write a text box at the current insertion point.
2883 wxRichTextBox
* wxRichTextCtrl::WriteTextBox(const wxRichTextAttr
& textAttr
)
2885 wxRichTextBox
* textBox
= new wxRichTextBox
;
2886 textBox
->SetAttributes(textAttr
);
2887 textBox
->SetParent(& GetBuffer()); // set parent temporarily for AddParagraph to use correct style
2888 textBox
->AddParagraph(wxEmptyString
);
2889 textBox
->SetParent(NULL
);
2891 // The object returned is the one actually inserted into the buffer,
2892 // while the original one is deleted.
2893 wxRichTextObject
* obj
= GetFocusObject()->InsertObjectWithUndo(& GetBuffer(), m_caretPosition
+1, textBox
, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2894 wxRichTextBox
* box
= wxDynamicCast(obj
, wxRichTextBox
);
2898 // Write a table at the current insertion point, returning the table.
2899 wxRichTextTable
* wxRichTextCtrl::WriteTable(int rows
, int cols
, const wxRichTextAttr
& tableAttr
, const wxRichTextAttr
& cellAttr
)
2901 wxASSERT(rows
> 0 && cols
> 0);
2903 if (rows
<= 0 || cols
<= 0)
2906 wxRichTextTable
* table
= new wxRichTextTable
;
2907 table
->SetAttributes(tableAttr
);
2908 table
->SetParent(& GetBuffer()); // set parent temporarily for AddParagraph to use correct style
2910 table
->CreateTable(rows
, cols
);
2912 table
->SetParent(NULL
);
2915 for (j
= 0; j
< rows
; j
++)
2917 for (i
= 0; i
< cols
; i
++)
2919 table
->GetCell(j
, i
)->GetAttributes() = cellAttr
;
2923 // The object returned is the one actually inserted into the buffer,
2924 // while the original one is deleted.
2925 wxRichTextObject
* obj
= GetFocusObject()->InsertObjectWithUndo(& GetBuffer(), m_caretPosition
+1, table
, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2926 wxRichTextTable
* tableResult
= wxDynamicCast(obj
, wxRichTextTable
);
2931 /// Insert a newline (actually paragraph) at the current insertion point.
2932 bool wxRichTextCtrl::Newline()
2934 return GetFocusObject()->InsertNewlineWithUndo(& GetBuffer(), m_caretPosition
+1, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2937 /// Insert a line break at the current insertion point.
2938 bool wxRichTextCtrl::LineBreak()
2941 text
= wxRichTextLineBreakChar
;
2942 return GetFocusObject()->InsertTextWithUndo(& GetBuffer(), m_caretPosition
+1, text
, this);
2945 // ----------------------------------------------------------------------------
2946 // Clipboard operations
2947 // ----------------------------------------------------------------------------
2949 void wxRichTextCtrl::Copy()
2953 wxRichTextRange range
= GetInternalSelectionRange();
2954 GetBuffer().CopyToClipboard(range
);
2958 void wxRichTextCtrl::Cut()
2962 wxRichTextRange range
= GetInternalSelectionRange();
2963 GetBuffer().CopyToClipboard(range
);
2965 DeleteSelectedContent();
2971 void wxRichTextCtrl::Paste()
2975 BeginBatchUndo(_("Paste"));
2977 long newPos
= m_caretPosition
;
2978 DeleteSelectedContent(& newPos
);
2980 GetBuffer().PasteFromClipboard(newPos
);
2986 void wxRichTextCtrl::DeleteSelection()
2988 if (CanDeleteSelection())
2990 DeleteSelectedContent();
2994 bool wxRichTextCtrl::HasSelection() const
2996 return (m_selection
.IsValid() && m_selection
.GetContainer() == GetFocusObject());
2999 bool wxRichTextCtrl::HasUnfocusedSelection() const
3001 return m_selection
.IsValid();
3004 bool wxRichTextCtrl::CanCopy() const
3006 // Can copy if there's a selection
3007 return HasSelection();
3010 bool wxRichTextCtrl::CanCut() const
3012 return HasSelection() && IsEditable();
3015 bool wxRichTextCtrl::CanPaste() const
3017 if ( !IsEditable() )
3020 return GetBuffer().CanPasteFromClipboard();
3023 bool wxRichTextCtrl::CanDeleteSelection() const
3025 return HasSelection() && IsEditable();
3029 // ----------------------------------------------------------------------------
3031 // ----------------------------------------------------------------------------
3033 void wxRichTextCtrl::SetContextMenu(wxMenu
* menu
)
3035 if (m_contextMenu
&& m_contextMenu
!= menu
)
3036 delete m_contextMenu
;
3037 m_contextMenu
= menu
;
3040 void wxRichTextCtrl::SetEditable(bool editable
)
3042 m_editable
= editable
;
3045 void wxRichTextCtrl::SetInsertionPoint(long pos
)
3049 m_caretPosition
= pos
- 1;
3053 SetDefaultStyleToCursorStyle();
3056 void wxRichTextCtrl::SetInsertionPointEnd()
3058 long pos
= GetLastPosition();
3059 SetInsertionPoint(pos
);
3062 long wxRichTextCtrl::GetInsertionPoint() const
3064 return m_caretPosition
+1;
3067 wxTextPos
wxRichTextCtrl::GetLastPosition() const
3069 return GetFocusObject()->GetOwnRange().GetEnd();
3072 // If the return values from and to are the same, there is no
3074 void wxRichTextCtrl::GetSelection(long* from
, long* to
) const
3076 if (m_selection
.IsValid())
3078 *from
= m_selection
.GetRange().GetStart();
3079 *to
= m_selection
.GetRange().GetEnd();
3089 bool wxRichTextCtrl::IsEditable() const
3094 // ----------------------------------------------------------------------------
3096 // ----------------------------------------------------------------------------
3098 void wxRichTextCtrl::SetSelection(long from
, long to
)
3100 // if from and to are both -1, it means (in wxWidgets) that all text should
3102 if ( (from
== -1) && (to
== -1) )
3105 to
= GetLastPosition()+1;
3114 wxRichTextSelection oldSelection
= m_selection
;
3116 m_selectionAnchor
= from
-1;
3117 m_selectionAnchorObject
= NULL
;
3118 m_selection
.Set(wxRichTextRange(from
, to
-1), GetFocusObject());
3120 m_caretPosition
= wxMax(-1, to
-1);
3122 RefreshForSelectionChange(oldSelection
, m_selection
);
3127 // ----------------------------------------------------------------------------
3129 // ----------------------------------------------------------------------------
3131 void wxRichTextCtrl::Replace(long from
, long to
,
3132 const wxString
& value
)
3134 BeginBatchUndo(_("Replace"));
3136 SetSelection(from
, to
);
3138 wxRichTextAttr attr
= GetDefaultStyle();
3140 DeleteSelectedContent();
3142 SetDefaultStyle(attr
);
3144 DoWriteText(value
, SetValue_SelectionOnly
);
3149 void wxRichTextCtrl::Remove(long from
, long to
)
3153 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(from
, to
-1), this, & GetBuffer());
3160 bool wxRichTextCtrl::IsModified() const
3162 return m_buffer
.IsModified();
3165 void wxRichTextCtrl::MarkDirty()
3167 m_buffer
.Modify(true);
3170 void wxRichTextCtrl::DiscardEdits()
3172 m_caretPositionForDefaultStyle
= -2;
3173 m_buffer
.Modify(false);
3174 m_buffer
.GetCommandProcessor()->ClearCommands();
3177 int wxRichTextCtrl::GetNumberOfLines() const
3179 return GetFocusObject()->GetParagraphCount();
3182 // ----------------------------------------------------------------------------
3183 // Positions <-> coords
3184 // ----------------------------------------------------------------------------
3186 long wxRichTextCtrl::XYToPosition(long x
, long y
) const
3188 return GetFocusObject()->XYToPosition(x
, y
);
3191 bool wxRichTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
3193 return GetFocusObject()->PositionToXY(pos
, x
, y
);
3196 // ----------------------------------------------------------------------------
3198 // ----------------------------------------------------------------------------
3200 void wxRichTextCtrl::ShowPosition(long pos
)
3202 if (!IsPositionVisible(pos
))
3203 ScrollIntoView(pos
-1, WXK_DOWN
);
3206 int wxRichTextCtrl::GetLineLength(long lineNo
) const
3208 return GetFocusObject()->GetParagraphLength(lineNo
);
3211 wxString
wxRichTextCtrl::GetLineText(long lineNo
) const
3213 return GetFocusObject()->GetParagraphText(lineNo
);
3216 // ----------------------------------------------------------------------------
3218 // ----------------------------------------------------------------------------
3220 void wxRichTextCtrl::Undo()
3224 GetCommandProcessor()->Undo();
3228 void wxRichTextCtrl::Redo()
3232 GetCommandProcessor()->Redo();
3236 bool wxRichTextCtrl::CanUndo() const
3238 return GetCommandProcessor()->CanUndo() && IsEditable();
3241 bool wxRichTextCtrl::CanRedo() const
3243 return GetCommandProcessor()->CanRedo() && IsEditable();
3246 // ----------------------------------------------------------------------------
3247 // implementation details
3248 // ----------------------------------------------------------------------------
3250 void wxRichTextCtrl::Command(wxCommandEvent
& event
)
3252 SetValue(event
.GetString());
3253 GetEventHandler()->ProcessEvent(event
);
3256 void wxRichTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
3258 // By default, load the first file into the text window.
3259 if (event
.GetNumberOfFiles() > 0)
3261 LoadFile(event
.GetFiles()[0]);
3265 wxSize
wxRichTextCtrl::DoGetBestSize() const
3267 return wxSize(10, 10);
3270 // ----------------------------------------------------------------------------
3271 // standard handlers for standard edit menu events
3272 // ----------------------------------------------------------------------------
3274 void wxRichTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
3279 void wxRichTextCtrl::OnClear(wxCommandEvent
& WXUNUSED(event
))
3284 void wxRichTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
3289 void wxRichTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
3294 void wxRichTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
3299 void wxRichTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
3304 void wxRichTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
3306 event
.Enable( CanCut() );
3309 void wxRichTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
3311 event
.Enable( CanCopy() );
3314 void wxRichTextCtrl::OnUpdateClear(wxUpdateUIEvent
& event
)
3316 event
.Enable( CanDeleteSelection() );
3319 void wxRichTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
3321 event
.Enable( CanPaste() );
3324 void wxRichTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
3326 event
.Enable( CanUndo() );
3327 event
.SetText( GetCommandProcessor()->GetUndoMenuLabel() );
3330 void wxRichTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
3332 event
.Enable( CanRedo() );
3333 event
.SetText( GetCommandProcessor()->GetRedoMenuLabel() );
3336 void wxRichTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
3338 if (GetLastPosition() > 0)
3342 void wxRichTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
3344 event
.Enable(GetLastPosition() > 0);
3347 void wxRichTextCtrl::OnProperties(wxCommandEvent
& event
)
3349 int idx
= event
.GetId() - wxID_RICHTEXT_PROPERTIES1
;
3350 if (idx
>= 0 && idx
< m_contextMenuPropertiesInfo
.GetCount())
3352 wxRichTextObject
* obj
= m_contextMenuPropertiesInfo
.GetObject(idx
);
3353 if (obj
&& CanEditProperties(obj
))
3354 EditProperties(obj
, this);
3356 m_contextMenuPropertiesInfo
.Clear();
3360 void wxRichTextCtrl::OnUpdateProperties(wxUpdateUIEvent
& event
)
3362 int idx
= event
.GetId() - wxID_RICHTEXT_PROPERTIES1
;
3363 event
.Enable(idx
>= 0 && idx
< m_contextMenuPropertiesInfo
.GetCount());
3366 void wxRichTextCtrl::OnContextMenu(wxContextMenuEvent
& event
)
3368 if (event
.GetEventObject() != this)
3374 ShowContextMenu(m_contextMenu
, event
.GetPosition());
3377 // Prepares the context menu, adding appropriate property-editing commands.
3378 // Returns the number of property commands added.
3379 int wxRichTextCtrl::PrepareContextMenu(wxMenu
* menu
, const wxPoint
& pt
, bool addPropertyCommands
)
3381 wxClientDC
dc(this);
3383 dc
.SetFont(GetFont());
3385 m_contextMenuPropertiesInfo
.Clear();
3388 wxRichTextObject
* hitObj
= NULL
;
3389 wxRichTextObject
* contextObj
= NULL
;
3390 if (pt
!= wxDefaultPosition
)
3392 wxPoint logicalPt
= GetLogicalPoint(ScreenToClient(pt
));
3393 int hit
= GetBuffer().HitTest(dc
, logicalPt
, position
, & hitObj
, & contextObj
);
3395 if (hit
== wxRICHTEXT_HITTEST_ON
|| hit
== wxRICHTEXT_HITTEST_BEFORE
|| hit
== wxRICHTEXT_HITTEST_AFTER
)
3397 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
3398 if (hitObj
&& actualContainer
)
3400 if (actualContainer
->AcceptsFocus())
3402 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
3403 SetCaretPositionAfterClick(actualContainer
, position
, hit
);
3406 if (addPropertyCommands
)
3407 m_contextMenuPropertiesInfo
.AddItems(this, actualContainer
, hitObj
);
3411 if (addPropertyCommands
)
3412 m_contextMenuPropertiesInfo
.AddItems(this, GetFocusObject(), NULL
);
3417 if (addPropertyCommands
)
3418 m_contextMenuPropertiesInfo
.AddItems(this, GetFocusObject(), NULL
);
3423 // Invoked from the keyboard, so don't set the caret position and don't use the event
3425 hitObj
= GetFocusObject()->GetLeafObjectAtPosition(m_caretPosition
+1);
3427 contextObj
= hitObj
->GetParentContainer();
3429 contextObj
= GetFocusObject();
3431 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
3432 if (hitObj
&& actualContainer
)
3434 if (addPropertyCommands
)
3435 m_contextMenuPropertiesInfo
.AddItems(this, actualContainer
, hitObj
);
3439 if (addPropertyCommands
)
3440 m_contextMenuPropertiesInfo
.AddItems(this, GetFocusObject(), NULL
);
3446 if (addPropertyCommands
)
3447 m_contextMenuPropertiesInfo
.AddMenuItems(menu
);
3448 return m_contextMenuPropertiesInfo
.GetCount();
3454 // Shows the context menu, adding appropriate property-editing commands
3455 bool wxRichTextCtrl::ShowContextMenu(wxMenu
* menu
, const wxPoint
& pt
, bool addPropertyCommands
)
3459 PrepareContextMenu(menu
, pt
, addPropertyCommands
);
3467 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
3469 return GetFocusObject()->SetStyle(wxRichTextRange(start
, end
-1), wxRichTextAttr(style
));
3472 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxRichTextAttr
& style
)
3474 return GetFocusObject()->SetStyle(wxRichTextRange(start
, end
-1), style
);
3477 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
)
3479 return GetFocusObject()->SetStyle(range
.ToInternal(), wxRichTextAttr(style
));
3482 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
)
3484 return GetFocusObject()->SetStyle(range
.ToInternal(), style
);
3487 void wxRichTextCtrl::SetStyle(wxRichTextObject
*obj
, const wxRichTextAttr
& textAttr
)
3489 GetFocusObject()->SetStyle(obj
, textAttr
);
3492 // extended style setting operation with flags including:
3493 // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY.
3494 // see richtextbuffer.h for more details.
3496 bool wxRichTextCtrl::SetStyleEx(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
)
3498 return GetFocusObject()->SetStyle(range
.ToInternal(), style
, flags
);
3501 bool wxRichTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
3503 return GetBuffer().SetDefaultStyle(style
);
3506 bool wxRichTextCtrl::SetDefaultStyle(const wxRichTextAttr
& style
)
3508 wxRichTextAttr
attr1(style
);
3509 attr1
.GetTextBoxAttr().Reset();
3510 return GetBuffer().SetDefaultStyle(attr1
);
3513 const wxRichTextAttr
& wxRichTextCtrl::GetDefaultStyleEx() const
3515 return GetBuffer().GetDefaultStyle();
3518 bool wxRichTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
3520 wxRichTextAttr attr
;
3521 if (GetFocusObject()->GetStyle(position
, attr
))
3530 bool wxRichTextCtrl::GetStyle(long position
, wxRichTextAttr
& style
)
3532 return GetFocusObject()->GetStyle(position
, style
);
3535 bool wxRichTextCtrl::GetStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3537 wxRichTextAttr attr
;
3538 if (container
->GetStyle(position
, attr
))
3547 // get the common set of styles for the range
3548 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
)
3550 wxRichTextAttr attr
;
3551 if (GetFocusObject()->GetStyleForRange(range
.ToInternal(), attr
))
3560 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
)
3562 return GetFocusObject()->GetStyleForRange(range
.ToInternal(), style
);
3565 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3567 return container
->GetStyleForRange(range
.ToInternal(), style
);
3570 /// Get the content (uncombined) attributes for this position.
3571 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxRichTextAttr
& style
)
3573 return GetFocusObject()->GetUncombinedStyle(position
, style
);
3576 /// Get the content (uncombined) attributes for this position.
3577 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3579 return container
->GetUncombinedStyle(position
, style
);
3582 bool wxRichTextCtrl::SetProperties(const wxRichTextRange
& range
, const wxRichTextProperties
& properties
, int flags
)
3584 return GetFocusObject()->SetProperties(range
.ToInternal(), properties
, flags
);
3587 /// Set font, and also the buffer attributes
3588 bool wxRichTextCtrl::SetFont(const wxFont
& font
)
3590 wxControl::SetFont(font
);
3592 wxRichTextAttr attr
= GetBuffer().GetAttributes();
3594 GetBuffer().SetBasicStyle(attr
);
3596 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
3602 /// Transform logical to physical
3603 wxPoint
wxRichTextCtrl::GetPhysicalPoint(const wxPoint
& ptLogical
) const
3606 CalcScrolledPosition(ptLogical
.x
, ptLogical
.y
, & pt
.x
, & pt
.y
);
3611 /// Transform physical to logical
3612 wxPoint
wxRichTextCtrl::GetLogicalPoint(const wxPoint
& ptPhysical
) const
3615 CalcUnscrolledPosition(ptPhysical
.x
, ptPhysical
.y
, & pt
.x
, & pt
.y
);
3620 /// Position the caret
3621 void wxRichTextCtrl::PositionCaret(wxRichTextParagraphLayoutBox
* container
)
3626 //wxLogDebug(wxT("PositionCaret"));
3629 if (GetCaretPositionForIndex(GetCaretPosition(), caretRect
, container
))
3631 wxPoint newPt
= caretRect
.GetPosition();
3632 wxSize newSz
= caretRect
.GetSize();
3633 wxPoint pt
= GetPhysicalPoint(newPt
);
3634 if (GetCaret()->GetPosition() != pt
|| GetCaret()->GetSize() != newSz
)
3637 if (GetCaret()->GetSize() != newSz
)
3638 GetCaret()->SetSize(newSz
);
3640 // Adjust size so the caret size and position doesn't appear in the margins
3641 if (((pt
.y
+ newSz
.y
) <= GetBuffer().GetTopMargin()) || (pt
.y
>= (GetClientSize().y
- GetBuffer().GetBottomMargin())))
3646 else if (pt
.y
< GetBuffer().GetTopMargin() && (pt
.y
+ newSz
.y
) > GetBuffer().GetTopMargin())
3648 newSz
.y
-= (GetBuffer().GetTopMargin() - pt
.y
);
3651 pt
.y
= GetBuffer().GetTopMargin();
3652 GetCaret()->SetSize(newSz
);
3655 else if (pt
.y
< (GetClientSize().y
- GetBuffer().GetBottomMargin()) && (pt
.y
+ newSz
.y
) > (GetClientSize().y
- GetBuffer().GetBottomMargin()))
3657 newSz
.y
= GetClientSize().y
- GetBuffer().GetBottomMargin() - pt
.y
;
3658 GetCaret()->SetSize(newSz
);
3661 GetCaret()->Move(pt
);
3667 /// Get the caret height and position for the given character position
3668 bool wxRichTextCtrl::GetCaretPositionForIndex(long position
, wxRect
& rect
, wxRichTextParagraphLayoutBox
* container
)
3670 wxClientDC
dc(this);
3671 dc
.SetFont(GetFont());
3679 container
= GetFocusObject();
3681 if (container
->FindPosition(dc
, position
, pt
, & height
, m_caretAtLineStart
))
3683 // Caret height can't be zero
3685 height
= dc
.GetCharHeight();
3687 rect
= wxRect(pt
, wxSize(wxRICHTEXT_DEFAULT_CARET_WIDTH
, height
));
3694 /// Gets the line for the visible caret position. If the caret is
3695 /// shown at the very end of the line, it means the next character is actually
3696 /// on the following line. So let's get the line we're expecting to find
3697 /// if this is the case.
3698 wxRichTextLine
* wxRichTextCtrl::GetVisibleLineForCaretPosition(long caretPosition
) const
3700 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(caretPosition
, true);
3701 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(caretPosition
, true);
3704 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3705 if (caretPosition
== lineRange
.GetStart()-1 &&
3706 (para
->GetRange().GetStart() != lineRange
.GetStart()))
3708 if (!m_caretAtLineStart
)
3709 line
= GetFocusObject()->GetLineAtPosition(caretPosition
-1, true);
3716 /// Move the caret to the given character position
3717 bool wxRichTextCtrl::MoveCaret(long pos
, bool showAtLineStart
, wxRichTextParagraphLayoutBox
* container
)
3719 if (GetBuffer().IsDirty())
3723 container
= GetFocusObject();
3725 if (pos
<= container
->GetOwnRange().GetEnd())
3727 SetCaretPosition(pos
, showAtLineStart
);
3729 PositionCaret(container
);
3737 /// Layout the buffer: which we must do before certain operations, such as
3738 /// setting the caret position.
3739 bool wxRichTextCtrl::LayoutContent(bool onlyVisibleRect
)
3741 if (GetBuffer().IsDirty() || onlyVisibleRect
)
3743 wxRect
availableSpace(GetClientSize());
3744 if (availableSpace
.width
== 0)
3745 availableSpace
.width
= 10;
3746 if (availableSpace
.height
== 0)
3747 availableSpace
.height
= 10;
3749 int flags
= wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
;
3750 if (onlyVisibleRect
)
3752 flags
|= wxRICHTEXT_LAYOUT_SPECIFIED_RECT
;
3753 availableSpace
.SetPosition(GetLogicalPoint(wxPoint(0, 0)));
3756 wxClientDC
dc(this);
3757 dc
.SetFont(GetFont());
3761 GetBuffer().Defragment();
3762 GetBuffer().UpdateRanges(); // If items were deleted, ranges need recalculation
3763 GetBuffer().Layout(dc
, availableSpace
, availableSpace
, flags
);
3764 GetBuffer().Invalidate(wxRICHTEXT_NONE
);
3773 /// Is all of the selection, or the current caret position, bold?
3774 bool wxRichTextCtrl::IsSelectionBold()
3778 wxRichTextAttr attr
;
3779 wxRichTextRange range
= GetSelectionRange();
3780 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3781 attr
.SetFontWeight(wxFONTWEIGHT_BOLD
);
3783 return HasCharacterAttributes(range
, attr
);
3787 // If no selection, then we need to combine current style with default style
3788 // to see what the effect would be if we started typing.
3789 wxRichTextAttr attr
;
3790 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3792 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3793 if (GetStyle(pos
, attr
))
3795 if (IsDefaultStyleShowing())
3796 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3797 return attr
.GetFontWeight() == wxFONTWEIGHT_BOLD
;
3803 /// Is all of the selection, or the current caret position, italics?
3804 bool wxRichTextCtrl::IsSelectionItalics()
3808 wxRichTextRange range
= GetSelectionRange();
3809 wxRichTextAttr attr
;
3810 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3811 attr
.SetFontStyle(wxFONTSTYLE_ITALIC
);
3813 return HasCharacterAttributes(range
, attr
);
3817 // If no selection, then we need to combine current style with default style
3818 // to see what the effect would be if we started typing.
3819 wxRichTextAttr attr
;
3820 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3822 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3823 if (GetStyle(pos
, attr
))
3825 if (IsDefaultStyleShowing())
3826 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3827 return attr
.GetFontStyle() == wxFONTSTYLE_ITALIC
;
3833 /// Is all of the selection, or the current caret position, underlined?
3834 bool wxRichTextCtrl::IsSelectionUnderlined()
3838 wxRichTextRange range
= GetSelectionRange();
3839 wxRichTextAttr attr
;
3840 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3841 attr
.SetFontUnderlined(true);
3843 return HasCharacterAttributes(range
, attr
);
3847 // If no selection, then we need to combine current style with default style
3848 // to see what the effect would be if we started typing.
3849 wxRichTextAttr attr
;
3850 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3851 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3853 if (GetStyle(pos
, attr
))
3855 if (IsDefaultStyleShowing())
3856 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3857 return attr
.GetFontUnderlined();
3863 /// Does all of the selection, or the current caret position, have this wxTextAttrEffects flag(s)?
3864 bool wxRichTextCtrl::DoesSelectionHaveTextEffectFlag(int flag
)
3866 wxRichTextAttr attr
;
3867 attr
.SetFlags(wxTEXT_ATTR_EFFECTS
);
3868 attr
.SetTextEffectFlags(flag
);
3869 attr
.SetTextEffects(flag
);
3873 return HasCharacterAttributes(GetSelectionRange(), attr
);
3877 // If no selection, then we need to combine current style with default style
3878 // to see what the effect would be if we started typing.
3879 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3880 if (GetStyle(pos
, attr
))
3882 if (IsDefaultStyleShowing())
3883 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3884 return (attr
.GetTextEffectFlags() & flag
) != 0;
3890 /// Apply bold to the selection
3891 bool wxRichTextCtrl::ApplyBoldToSelection()
3893 wxRichTextAttr attr
;
3894 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3895 attr
.SetFontWeight(IsSelectionBold() ? wxFONTWEIGHT_NORMAL
: wxFONTWEIGHT_BOLD
);
3898 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3901 wxRichTextAttr current
= GetDefaultStyleEx();
3902 current
.Apply(attr
);
3903 SetAndShowDefaultStyle(current
);
3908 /// Apply italic to the selection
3909 bool wxRichTextCtrl::ApplyItalicToSelection()
3911 wxRichTextAttr attr
;
3912 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3913 attr
.SetFontStyle(IsSelectionItalics() ? wxFONTSTYLE_NORMAL
: wxFONTSTYLE_ITALIC
);
3916 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3919 wxRichTextAttr current
= GetDefaultStyleEx();
3920 current
.Apply(attr
);
3921 SetAndShowDefaultStyle(current
);
3926 /// Apply underline to the selection
3927 bool wxRichTextCtrl::ApplyUnderlineToSelection()
3929 wxRichTextAttr attr
;
3930 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3931 attr
.SetFontUnderlined(!IsSelectionUnderlined());
3934 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3937 wxRichTextAttr current
= GetDefaultStyleEx();
3938 current
.Apply(attr
);
3939 SetAndShowDefaultStyle(current
);
3944 /// Apply the wxTextAttrEffects flag(s) to the selection, or the current caret position if there's no selection
3945 bool wxRichTextCtrl::ApplyTextEffectToSelection(int flags
)
3947 wxRichTextAttr attr
;
3948 attr
.SetFlags(wxTEXT_ATTR_EFFECTS
);
3949 attr
.SetTextEffectFlags(flags
);
3950 if (!DoesSelectionHaveTextEffectFlag(flags
))
3951 attr
.SetTextEffects(flags
);
3953 attr
.SetTextEffects(attr
.GetTextEffectFlags() & ~flags
);
3956 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3959 wxRichTextAttr current
= GetDefaultStyleEx();
3960 current
.Apply(attr
);
3961 SetAndShowDefaultStyle(current
);
3966 /// Is all of the selection aligned according to the specified flag?
3967 bool wxRichTextCtrl::IsSelectionAligned(wxTextAttrAlignment alignment
)
3969 wxRichTextRange range
;
3971 range
= GetSelectionRange();
3973 range
= wxRichTextRange(GetCaretPosition()+1, GetCaretPosition()+2);
3975 wxRichTextAttr attr
;
3976 attr
.SetAlignment(alignment
);
3978 return HasParagraphAttributes(range
, attr
);
3981 /// Apply alignment to the selection
3982 bool wxRichTextCtrl::ApplyAlignmentToSelection(wxTextAttrAlignment alignment
)
3984 wxRichTextAttr attr
;
3985 attr
.SetAlignment(alignment
);
3987 return SetStyle(GetSelectionRange(), attr
);
3990 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(GetCaretPosition()+1);
3992 return SetStyleEx(para
->GetRange().FromInternal(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
);
3997 /// Apply a named style to the selection
3998 bool wxRichTextCtrl::ApplyStyle(wxRichTextStyleDefinition
* def
)
4000 // Flags are defined within each definition, so only certain
4001 // attributes are applied.
4002 wxRichTextAttr
attr(GetStyleSheet() ? def
->GetStyleMergedWithBase(GetStyleSheet()) : def
->GetStyle());
4004 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_RESET
;
4006 if (def
->IsKindOf(CLASSINFO(wxRichTextListStyleDefinition
)))
4008 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
4010 wxRichTextRange range
;
4013 range
= GetSelectionRange();
4016 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
4017 range
= wxRichTextRange(pos
, pos
+1);
4020 return SetListStyle(range
, (wxRichTextListStyleDefinition
*) def
, flags
);
4023 bool isPara
= false;
4025 // Make sure the attr has the style name
4026 if (def
->IsKindOf(CLASSINFO(wxRichTextParagraphStyleDefinition
)))
4029 attr
.SetParagraphStyleName(def
->GetName());
4031 // If applying a paragraph style, we only want the paragraph nodes to adopt these
4032 // attributes, and not the leaf nodes. This will allow the content (e.g. text)
4033 // to change its style independently.
4034 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
4036 else if (def
->IsKindOf(CLASSINFO(wxRichTextCharacterStyleDefinition
)))
4037 attr
.SetCharacterStyleName(def
->GetName());
4038 else if (def
->IsKindOf(CLASSINFO(wxRichTextBoxStyleDefinition
)))
4039 attr
.GetTextBoxAttr().SetBoxStyleName(def
->GetName());
4041 if (def
->IsKindOf(CLASSINFO(wxRichTextBoxStyleDefinition
)))
4043 if (GetFocusObject() && (GetFocusObject() != & GetBuffer()))
4045 SetStyle(GetFocusObject(), attr
);
4051 else if (HasSelection())
4052 return SetStyleEx(GetSelectionRange(), attr
, flags
);
4055 wxRichTextAttr current
= GetDefaultStyleEx();
4056 wxRichTextAttr
defaultStyle(attr
);
4059 // Don't apply extra character styles since they are already implied
4060 // in the paragraph style
4061 defaultStyle
.SetFlags(defaultStyle
.GetFlags() & ~wxTEXT_ATTR_CHARACTER
);
4063 current
.Apply(defaultStyle
);
4064 SetAndShowDefaultStyle(current
);
4066 // If it's a paragraph style, we want to apply the style to the
4067 // current paragraph even if we didn't select any text.
4070 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
4071 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
);
4074 return SetStyleEx(para
->GetRange().FromInternal(), attr
, flags
);
4081 /// Apply the style sheet to the buffer, for example if the styles have changed.
4082 bool wxRichTextCtrl::ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
)
4085 styleSheet
= GetBuffer().GetStyleSheet();
4089 if (GetBuffer().ApplyStyleSheet(styleSheet
))
4091 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
4099 /// Sets the default style to the style under the cursor
4100 bool wxRichTextCtrl::SetDefaultStyleToCursorStyle()
4102 wxRichTextAttr attr
;
4103 attr
.SetFlags(wxTEXT_ATTR_CHARACTER
);
4105 // If at the start of a paragraph, use the next position.
4106 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
4108 wxRichTextObject
* obj
= GetFocusObject()->GetLeafObjectAtPosition(pos
);
4109 if (obj
&& obj
->IsTopLevel())
4111 // Don't use the attributes of a top-level object, since they might apply
4112 // to content of the object, e.g. background colour.
4113 SetDefaultStyle(wxRichTextAttr());
4116 else if (GetUncombinedStyle(pos
, attr
))
4118 SetDefaultStyle(attr
);
4125 /// Returns the first visible position in the current view
4126 long wxRichTextCtrl::GetFirstVisiblePosition() const
4128 wxRichTextLine
* line
= GetFocusObject()->GetLineAtYPosition(GetLogicalPoint(wxPoint(0, 0)).y
);
4130 return line
->GetAbsoluteRange().GetStart();
4135 /// Get the first visible point in the window
4136 wxPoint
wxRichTextCtrl::GetFirstVisiblePoint() const
4139 int startXUnits
, startYUnits
;
4141 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
4142 GetViewStart(& startXUnits
, & startYUnits
);
4144 return wxPoint(startXUnits
* ppuX
, startYUnits
* ppuY
);
4147 /// The adjusted caret position is the character position adjusted to take
4148 /// into account whether we're at the start of a paragraph, in which case
4149 /// style information should be taken from the next position, not current one.
4150 long wxRichTextCtrl::GetAdjustedCaretPosition(long caretPos
) const
4152 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(caretPos
+1);
4154 if (para
&& (caretPos
+1 == para
->GetRange().GetStart()))
4159 /// Get/set the selection range in character positions. -1, -1 means no selection.
4160 /// The range is in API convention, i.e. a single character selection is denoted
4162 wxRichTextRange
wxRichTextCtrl::GetSelectionRange() const
4164 wxRichTextRange range
= GetInternalSelectionRange();
4165 if (range
!= wxRichTextRange(-2,-2) && range
!= wxRichTextRange(-1,-1))
4166 range
.SetEnd(range
.GetEnd() + 1);
4170 void wxRichTextCtrl::SetSelectionRange(const wxRichTextRange
& range
)
4172 SetSelection(range
.GetStart(), range
.GetEnd());
4176 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
4178 return GetFocusObject()->SetListStyle(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
4181 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
4183 return GetFocusObject()->SetListStyle(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
4186 /// Clear list for given range
4187 bool wxRichTextCtrl::ClearListStyle(const wxRichTextRange
& range
, int flags
)
4189 return GetFocusObject()->ClearListStyle(range
.ToInternal(), flags
);
4192 /// Number/renumber any list elements in the given range
4193 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
4195 return GetFocusObject()->NumberList(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
4198 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
4200 return GetFocusObject()->NumberList(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
4203 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
4204 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int specifiedLevel
)
4206 return GetFocusObject()->PromoteList(promoteBy
, range
.ToInternal(), def
, flags
, specifiedLevel
);
4209 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int specifiedLevel
)
4211 return GetFocusObject()->PromoteList(promoteBy
, range
.ToInternal(), defName
, flags
, specifiedLevel
);
4214 /// Deletes the content in the given range
4215 bool wxRichTextCtrl::Delete(const wxRichTextRange
& range
)
4217 return GetFocusObject()->DeleteRangeWithUndo(range
.ToInternal(), this, & GetBuffer());
4220 const wxArrayString
& wxRichTextCtrl::GetAvailableFontNames()
4222 if (sm_availableFontNames
.GetCount() == 0)
4224 sm_availableFontNames
= wxFontEnumerator::GetFacenames();
4225 sm_availableFontNames
.Sort();
4227 return sm_availableFontNames
;
4230 void wxRichTextCtrl::ClearAvailableFontNames()
4232 sm_availableFontNames
.Clear();
4235 void wxRichTextCtrl::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
4237 //wxLogDebug(wxT("wxRichTextCtrl::OnSysColourChanged"));
4239 wxTextAttrEx basicStyle
= GetBasicStyle();
4240 basicStyle
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
4241 SetBasicStyle(basicStyle
);
4242 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
4247 // Refresh the area affected by a selection change
4248 bool wxRichTextCtrl::RefreshForSelectionChange(const wxRichTextSelection
& oldSelection
, const wxRichTextSelection
& newSelection
)
4250 // If the selection is not part of the focus object, or we have multiple ranges, then the chances are that
4251 // the selection contains whole containers rather than just text, so refresh everything
4252 // for now as it would be hard to compute the rectangle bounding all selections.
4253 // TODO: improve on this.
4254 if ((oldSelection
.IsValid() && (oldSelection
.GetContainer() != GetFocusObject() || oldSelection
.GetCount() > 1)) ||
4255 (newSelection
.IsValid() && (newSelection
.GetContainer() != GetFocusObject() || newSelection
.GetCount() > 1)))
4261 wxRichTextRange oldRange
, newRange
;
4262 if (oldSelection
.IsValid())
4263 oldRange
= oldSelection
.GetRange();
4265 oldRange
= wxRICHTEXT_NO_SELECTION
;
4266 if (newSelection
.IsValid())
4267 newRange
= newSelection
.GetRange();
4269 newRange
= wxRICHTEXT_NO_SELECTION
;
4271 // Calculate the refresh rectangle - just the affected lines
4272 long firstPos
, lastPos
;
4273 if (oldRange
.GetStart() == -2 && newRange
.GetStart() != -2)
4275 firstPos
= newRange
.GetStart();
4276 lastPos
= newRange
.GetEnd();
4278 else if (oldRange
.GetStart() != -2 && newRange
.GetStart() == -2)
4280 firstPos
= oldRange
.GetStart();
4281 lastPos
= oldRange
.GetEnd();
4283 else if (oldRange
.GetStart() == -2 && newRange
.GetStart() == -2)
4289 firstPos
= wxMin(oldRange
.GetStart(), newRange
.GetStart());
4290 lastPos
= wxMax(oldRange
.GetEnd(), newRange
.GetEnd());
4293 wxRichTextLine
* firstLine
= GetFocusObject()->GetLineAtPosition(firstPos
);
4294 wxRichTextLine
* lastLine
= GetFocusObject()->GetLineAtPosition(lastPos
);
4296 if (firstLine
&& lastLine
)
4298 wxSize clientSize
= GetClientSize();
4299 wxPoint pt1
= GetPhysicalPoint(firstLine
->GetAbsolutePosition());
4300 wxPoint pt2
= GetPhysicalPoint(lastLine
->GetAbsolutePosition()) + wxPoint(0, lastLine
->GetSize().y
);
4303 pt1
.y
= wxMax(0, pt1
.y
);
4305 pt2
.y
= wxMin(clientSize
.y
, pt2
.y
);
4307 wxRect
rect(pt1
, wxSize(clientSize
.x
, pt2
.y
- pt1
.y
));
4308 RefreshRect(rect
, false);
4316 // margins functions
4317 bool wxRichTextCtrl::DoSetMargins(const wxPoint
& pt
)
4319 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetLeft().SetValue(pt
.x
, wxTEXT_ATTR_UNITS_PIXELS
);
4320 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetRight().SetValue(pt
.x
, wxTEXT_ATTR_UNITS_PIXELS
);
4321 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetTop().SetValue(pt
.y
, wxTEXT_ATTR_UNITS_PIXELS
);
4322 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetBottom().SetValue(pt
.y
, wxTEXT_ATTR_UNITS_PIXELS
);
4327 wxPoint
wxRichTextCtrl::DoGetMargins() const
4329 return wxPoint(GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetLeft().GetValue(),
4330 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetTop().GetValue());
4333 bool wxRichTextCtrl::SetFocusObject(wxRichTextParagraphLayoutBox
* obj
, bool setCaretPosition
)
4335 if (obj
&& !obj
->AcceptsFocus())
4338 wxRichTextParagraphLayoutBox
* oldContainer
= GetFocusObject();
4339 bool changingContainer
= (m_focusObject
!= obj
);
4341 if (changingContainer
&& HasSelection())
4344 m_focusObject
= obj
;
4347 m_focusObject
= & m_buffer
;
4349 if (setCaretPosition
&& changingContainer
)
4351 m_selection
.Reset();
4352 m_selectionAnchor
= -2;
4353 m_selectionAnchorObject
= NULL
;
4354 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
4358 m_caretAtLineStart
= false;
4359 MoveCaret(pos
, m_caretAtLineStart
);
4360 SetDefaultStyleToCursorStyle();
4362 wxRichTextEvent
cmdEvent(
4363 wxEVT_COMMAND_RICHTEXT_FOCUS_OBJECT_CHANGED
,
4365 cmdEvent
.SetEventObject(this);
4366 cmdEvent
.SetPosition(m_caretPosition
+1);
4367 cmdEvent
.SetOldContainer(oldContainer
);
4368 cmdEvent
.SetContainer(m_focusObject
);
4370 GetEventHandler()->ProcessEvent(cmdEvent
);
4375 #if wxUSE_DRAG_AND_DROP
4376 void wxRichTextCtrl::OnDrop(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
), wxDragResult def
, wxDataObject
* DataObj
)
4380 if ((def
!= wxDragCopy
) && (def
!= wxDragMove
))
4385 if (!GetSelection().IsValid())
4390 wxRichTextParagraphLayoutBox
* originContainer
= GetSelection().GetContainer();
4391 wxRichTextParagraphLayoutBox
* destContainer
= GetFocusObject(); // This will be the drop container, not necessarily the same as the origin one
4393 wxRichTextBuffer
* richTextBuffer
= ((wxRichTextBufferDataObject
*)DataObj
)->GetRichTextBuffer();
4396 long position
= GetCaretPosition();
4397 wxRichTextRange selectionrange
= GetInternalSelectionRange();
4398 if (selectionrange
.Contains(position
) && (def
== wxDragMove
))
4400 // It doesn't make sense to move onto itself
4404 // If we're moving, and the data is being moved forward, we need to drop first, then delete the selection
4405 // If moving backwards, we need to delete then drop. If we're copying (or doing nothing) we don't delete anyway
4406 bool DeleteAfter
= (def
== wxDragMove
) && (position
> selectionrange
.GetEnd());
4407 if ((def
== wxDragMove
) && !DeleteAfter
)
4409 // We can't use e.g. DeleteSelectedContent() as it uses the focus container
4410 originContainer
->DeleteRangeWithUndo(selectionrange
, this, &GetBuffer());
4413 destContainer
->InsertParagraphsWithUndo(&GetBuffer(), position
+1, *richTextBuffer
, this, 0);
4414 ShowPosition(position
+ richTextBuffer
->GetOwnRange().GetEnd());
4416 delete richTextBuffer
;
4420 // We can't use e.g. DeleteSelectedContent() as it uses the focus container
4421 originContainer
->DeleteRangeWithUndo(selectionrange
, this, &GetBuffer());
4428 #endif // wxUSE_DRAG_AND_DROP
4431 #if wxUSE_DRAG_AND_DROP
4432 bool wxRichTextDropSource::GiveFeedback(wxDragResult
WXUNUSED(effect
))
4434 wxCHECK_MSG(m_rtc
, false, wxT("NULL m_rtc"));
4438 wxRichTextObject
* hitObj
= NULL
;
4439 wxRichTextParagraphLayoutBox
* container
= m_rtc
->FindContainerAtPoint(m_rtc
->ScreenToClient(wxGetMousePosition()), position
, hit
, hitObj
);
4441 if (!(hit
& wxRICHTEXT_HITTEST_NONE
) && container
&& container
->AcceptsFocus())
4443 m_rtc
->StoreFocusObject(container
);
4444 m_rtc
->SetCaretPositionAfterClick(container
, position
, hit
);
4447 return false; // so that the base-class sets a cursor
4449 #endif // wxUSE_DRAG_AND_DROP
4452 #if wxRICHTEXT_USE_OWN_CARET
4454 // ----------------------------------------------------------------------------
4455 // initialization and destruction
4456 // ----------------------------------------------------------------------------
4458 void wxRichTextCaret::Init()
4461 m_refreshEnabled
= true;
4465 m_richTextCtrl
= NULL
;
4466 m_needsUpdate
= false;
4470 wxRichTextCaret::~wxRichTextCaret()
4472 if (m_timer
.IsRunning())
4476 // ----------------------------------------------------------------------------
4477 // showing/hiding/moving the caret (base class interface)
4478 // ----------------------------------------------------------------------------
4480 void wxRichTextCaret::DoShow()
4484 if (!m_timer
.IsRunning())
4485 m_timer
.Start(GetBlinkTime());
4490 void wxRichTextCaret::DoHide()
4492 if (m_timer
.IsRunning())
4498 void wxRichTextCaret::DoMove()
4504 if (m_xOld
!= -1 && m_yOld
!= -1)
4506 if (m_richTextCtrl
&& m_refreshEnabled
)
4508 wxRect
rect(GetPosition(), GetSize());
4509 m_richTextCtrl
->RefreshRect(rect
, false);
4518 void wxRichTextCaret::DoSize()
4520 int countVisible
= m_countVisible
;
4521 if (countVisible
> 0)
4527 if (countVisible
> 0)
4529 m_countVisible
= countVisible
;
4534 // ----------------------------------------------------------------------------
4535 // handling the focus
4536 // ----------------------------------------------------------------------------
4538 void wxRichTextCaret::OnSetFocus()
4546 void wxRichTextCaret::OnKillFocus()
4551 // ----------------------------------------------------------------------------
4552 // drawing the caret
4553 // ----------------------------------------------------------------------------
4555 void wxRichTextCaret::Refresh()
4557 if (m_richTextCtrl
&& m_refreshEnabled
)
4559 wxRect
rect(GetPosition(), GetSize());
4560 m_richTextCtrl
->RefreshRect(rect
, false);
4564 void wxRichTextCaret::DoDraw(wxDC
*dc
)
4566 dc
->SetPen( *wxBLACK_PEN
);
4568 dc
->SetBrush(*(m_hasFocus
? wxBLACK_BRUSH
: wxTRANSPARENT_BRUSH
));
4569 dc
->SetPen(*wxBLACK_PEN
);
4571 wxPoint
pt(m_x
, m_y
);
4575 pt
= m_richTextCtrl
->GetLogicalPoint(pt
);
4577 if (IsVisible() && m_flashOn
)
4578 dc
->DrawRectangle(pt
.x
, pt
.y
, m_width
, m_height
);
4581 void wxRichTextCaret::Notify()
4583 m_flashOn
= !m_flashOn
;
4587 void wxRichTextCaretTimer::Notify()
4592 // wxRICHTEXT_USE_OWN_CARET
4595 bool wxRichTextContextMenuPropertiesInfo::AddItem(const wxString
& label
, wxRichTextObject
* obj
)
4599 m_labels
.Add(label
);
4607 // Returns number of menu items were added.
4608 int wxRichTextContextMenuPropertiesInfo::AddMenuItems(wxMenu
* menu
, int startCmd
) const
4610 wxMenuItem
* item
= menu
->FindItem(startCmd
);
4611 // If none of the standard properties identifiers are in the menu, add them if necessary.
4612 // If no items to add, just set the text to something generic
4613 if (GetCount() == 0)
4617 menu
->SetLabel(startCmd
, _("&Properties"));
4619 // Delete the others if necessary
4621 for (i
= startCmd
+1; i
< startCmd
+3; i
++)
4623 if (menu
->FindItem(i
))
4634 // Find the position of the first properties item
4635 for (i
= 0; i
< (int) menu
->GetMenuItemCount(); i
++)
4637 wxMenuItem
* item
= menu
->FindItemByPosition(i
);
4638 if (item
&& item
->GetId() == startCmd
)
4647 int insertBefore
= pos
+1;
4648 for (i
= startCmd
; i
< startCmd
+GetCount(); i
++)
4650 if (menu
->FindItem(i
))
4652 menu
->SetLabel(i
, m_labels
[i
- startCmd
]);
4656 if (insertBefore
>= (int) menu
->GetMenuItemCount())
4657 menu
->Append(i
, m_labels
[i
- startCmd
]);
4659 menu
->Insert(insertBefore
, i
, m_labels
[i
- startCmd
]);
4664 // Delete any old items still left on the menu
4665 for (i
= startCmd
+ GetCount(); i
< startCmd
+3; i
++)
4667 if (menu
->FindItem(i
))
4675 // No existing property identifiers were found, so append to the end of the menu.
4676 menu
->AppendSeparator();
4677 for (i
= startCmd
; i
< startCmd
+GetCount(); i
++)
4679 menu
->Append(i
, m_labels
[i
- startCmd
]);
4687 // Add appropriate menu items for the current container and clicked on object
4688 // (and container's parent, if appropriate).
4689 int wxRichTextContextMenuPropertiesInfo::AddItems(wxRichTextCtrl
* ctrl
, wxRichTextObject
* container
, wxRichTextObject
* obj
)
4692 if (obj
&& ctrl
->CanEditProperties(obj
))
4693 AddItem(ctrl
->GetPropertiesMenuLabel(obj
), obj
);
4695 if (container
&& container
!= obj
&& ctrl
->CanEditProperties(container
) && m_labels
.Index(ctrl
->GetPropertiesMenuLabel(container
)) == wxNOT_FOUND
)
4696 AddItem(ctrl
->GetPropertiesMenuLabel(container
), container
);
4698 if (container
&& container
->GetParent() && ctrl
->CanEditProperties(container
->GetParent()) && m_labels
.Index(ctrl
->GetPropertiesMenuLabel(container
->GetParent())) == wxNOT_FOUND
)
4699 AddItem(ctrl
->GetPropertiesMenuLabel(container
->GetParent()), container
->GetParent());