1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/richtext/richeditctrl.cpp
3 // Purpose: A rich edit control
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/richtext/richtextctrl.h"
22 #include "wx/richtext/richtextstyles.h"
26 #include "wx/settings.h"
30 #include "wx/textfile.h"
32 #include "wx/filename.h"
33 #include "wx/dcbuffer.h"
34 #include "wx/arrimpl.cpp"
35 #include "wx/fontenum.h"
38 // DLL options compatibility check:
40 WX_CHECK_BUILD_OPTIONS("wxRichTextCtrl")
42 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
, wxRichTextEvent
);
43 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
, wxRichTextEvent
);
44 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
, wxRichTextEvent
);
45 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
, wxRichTextEvent
);
46 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_RETURN
, wxRichTextEvent
);
47 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_CHARACTER
, wxRichTextEvent
);
48 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_DELETE
, wxRichTextEvent
);
50 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING
, wxRichTextEvent
);
51 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED
, wxRichTextEvent
);
52 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING
, wxRichTextEvent
);
53 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED
, wxRichTextEvent
);
55 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED
, wxRichTextEvent
);
56 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED
, wxRichTextEvent
);
57 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED
, wxRichTextEvent
);
58 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED
, wxRichTextEvent
);
59 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_BUFFER_RESET
, wxRichTextEvent
);
60 wxDEFINE_EVENT( wxEVT_COMMAND_RICHTEXT_FOCUS_OBJECT_CHANGED
, wxRichTextEvent
);
62 #if wxRICHTEXT_USE_OWN_CARET
67 * This implements a non-flashing cursor in case there
68 * are platform-specific problems with the generic caret.
69 * wxRICHTEXT_USE_OWN_CARET is set in richtextbuffer.h.
72 class wxRichTextCaret
;
73 class wxRichTextCaretTimer
: public wxTimer
76 wxRichTextCaretTimer(wxRichTextCaret
* caret
)
80 virtual void Notify();
81 wxRichTextCaret
* m_caret
;
84 class wxRichTextCaret
: public wxCaret
89 // default - use Create()
90 wxRichTextCaret(): m_timer(this) { Init(); }
91 // creates a block caret associated with the given window
92 wxRichTextCaret(wxRichTextCtrl
*window
, int width
, int height
)
93 : wxCaret(window
, width
, height
), m_timer(this) { Init(); m_richTextCtrl
= window
; }
94 wxRichTextCaret(wxRichTextCtrl
*window
, const wxSize
& size
)
95 : wxCaret(window
, size
), m_timer(this) { Init(); m_richTextCtrl
= window
; }
97 virtual ~wxRichTextCaret();
102 // called by wxWindow (not using the event tables)
103 virtual void OnSetFocus();
104 virtual void OnKillFocus();
106 // draw the caret on the given DC
107 void DoDraw(wxDC
*dc
);
109 // get the visible count
110 int GetVisibleCount() const { return m_countVisible
; }
112 // delay repositioning
113 bool GetNeedsUpdate() const { return m_needsUpdate
; }
114 void SetNeedsUpdate(bool needsUpdate
= true ) { m_needsUpdate
= needsUpdate
; }
119 virtual void DoShow();
120 virtual void DoHide();
121 virtual void DoMove();
122 virtual void DoSize();
132 bool m_hasFocus
; // true => our window has focus
133 bool m_needsUpdate
; // must be repositioned
135 wxRichTextCaretTimer m_timer
;
136 wxRichTextCtrl
* m_richTextCtrl
;
140 IMPLEMENT_DYNAMIC_CLASS( wxRichTextCtrl
, wxControl
)
142 IMPLEMENT_DYNAMIC_CLASS( wxRichTextEvent
, wxNotifyEvent
)
144 BEGIN_EVENT_TABLE( wxRichTextCtrl
, wxControl
)
145 EVT_PAINT(wxRichTextCtrl::OnPaint
)
146 EVT_ERASE_BACKGROUND(wxRichTextCtrl::OnEraseBackground
)
147 EVT_IDLE(wxRichTextCtrl::OnIdle
)
148 EVT_SCROLLWIN(wxRichTextCtrl::OnScroll
)
149 EVT_LEFT_DOWN(wxRichTextCtrl::OnLeftClick
)
150 EVT_MOTION(wxRichTextCtrl::OnMoveMouse
)
151 EVT_LEFT_UP(wxRichTextCtrl::OnLeftUp
)
152 EVT_RIGHT_DOWN(wxRichTextCtrl::OnRightClick
)
153 EVT_MIDDLE_DOWN(wxRichTextCtrl::OnMiddleClick
)
154 EVT_LEFT_DCLICK(wxRichTextCtrl::OnLeftDClick
)
155 EVT_CHAR(wxRichTextCtrl::OnChar
)
156 EVT_KEY_DOWN(wxRichTextCtrl::OnChar
)
157 EVT_SIZE(wxRichTextCtrl::OnSize
)
158 EVT_SET_FOCUS(wxRichTextCtrl::OnSetFocus
)
159 EVT_KILL_FOCUS(wxRichTextCtrl::OnKillFocus
)
160 EVT_MOUSE_CAPTURE_LOST(wxRichTextCtrl::OnCaptureLost
)
161 EVT_CONTEXT_MENU(wxRichTextCtrl::OnContextMenu
)
162 EVT_SYS_COLOUR_CHANGED(wxRichTextCtrl::OnSysColourChanged
)
164 EVT_MENU(wxID_UNDO
, wxRichTextCtrl::OnUndo
)
165 EVT_UPDATE_UI(wxID_UNDO
, wxRichTextCtrl::OnUpdateUndo
)
167 EVT_MENU(wxID_REDO
, wxRichTextCtrl::OnRedo
)
168 EVT_UPDATE_UI(wxID_REDO
, wxRichTextCtrl::OnUpdateRedo
)
170 EVT_MENU(wxID_COPY
, wxRichTextCtrl::OnCopy
)
171 EVT_UPDATE_UI(wxID_COPY
, wxRichTextCtrl::OnUpdateCopy
)
173 EVT_MENU(wxID_PASTE
, wxRichTextCtrl::OnPaste
)
174 EVT_UPDATE_UI(wxID_PASTE
, wxRichTextCtrl::OnUpdatePaste
)
176 EVT_MENU(wxID_CUT
, wxRichTextCtrl::OnCut
)
177 EVT_UPDATE_UI(wxID_CUT
, wxRichTextCtrl::OnUpdateCut
)
179 EVT_MENU(wxID_CLEAR
, wxRichTextCtrl::OnClear
)
180 EVT_UPDATE_UI(wxID_CLEAR
, wxRichTextCtrl::OnUpdateClear
)
182 EVT_MENU(wxID_SELECTALL
, wxRichTextCtrl::OnSelectAll
)
183 EVT_UPDATE_UI(wxID_SELECTALL
, wxRichTextCtrl::OnUpdateSelectAll
)
185 EVT_MENU(wxID_RICHTEXT_PROPERTIES1
, wxRichTextCtrl::OnProperties
)
186 EVT_UPDATE_UI(wxID_RICHTEXT_PROPERTIES1
, wxRichTextCtrl::OnUpdateProperties
)
188 EVT_MENU(wxID_RICHTEXT_PROPERTIES2
, wxRichTextCtrl::OnProperties
)
189 EVT_UPDATE_UI(wxID_RICHTEXT_PROPERTIES2
, wxRichTextCtrl::OnUpdateProperties
)
191 EVT_MENU(wxID_RICHTEXT_PROPERTIES3
, wxRichTextCtrl::OnProperties
)
192 EVT_UPDATE_UI(wxID_RICHTEXT_PROPERTIES3
, wxRichTextCtrl::OnUpdateProperties
)
200 wxArrayString
wxRichTextCtrl::sm_availableFontNames
;
202 wxRichTextCtrl::wxRichTextCtrl()
203 : wxScrollHelper(this)
208 wxRichTextCtrl::wxRichTextCtrl(wxWindow
* parent
,
210 const wxString
& value
,
214 const wxValidator
& validator
,
215 const wxString
& name
)
216 : wxScrollHelper(this)
219 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
223 bool wxRichTextCtrl::Create( wxWindow
* parent
, wxWindowID id
, const wxString
& value
, const wxPoint
& pos
, const wxSize
& size
, long style
,
224 const wxValidator
& validator
, const wxString
& name
)
228 if (!wxControl::Create(parent
, id
, pos
, size
,
229 style
|wxFULL_REPAINT_ON_RESIZE
,
235 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
238 // No physical scrolling, so we can preserve margins
239 EnableScrolling(false, false);
241 if (style
& wxTE_READONLY
)
244 // The base attributes must all have default values
245 wxRichTextAttr attributes
;
246 attributes
.SetFont(GetFont());
247 attributes
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
248 attributes
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
249 attributes
.SetLineSpacing(10);
250 attributes
.SetParagraphSpacingAfter(10);
251 attributes
.SetParagraphSpacingBefore(0);
253 SetBasicStyle(attributes
);
256 SetMargins(margin
, margin
);
258 // The default attributes will be merged with base attributes, so
259 // can be empty to begin with
260 wxRichTextAttr defaultAttributes
;
261 SetDefaultStyle(defaultAttributes
);
263 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
264 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
267 GetBuffer().SetRichTextCtrl(this);
269 #if wxRICHTEXT_USE_OWN_CARET
270 SetCaret(new wxRichTextCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16));
272 SetCaret(new wxCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16));
275 // Tell the sizers to use the given or best size
276 SetInitialSize(size
);
278 #if wxRICHTEXT_BUFFERED_PAINTING
280 RecreateBuffer(size
);
283 m_textCursor
= wxCursor(wxCURSOR_IBEAM
);
284 m_urlCursor
= wxCursor(wxCURSOR_HAND
);
286 SetCursor(m_textCursor
);
288 if (!value
.IsEmpty())
291 GetBuffer().AddEventHandler(this);
294 wxAcceleratorEntry entries
[6];
296 entries
[0].Set(wxACCEL_CMD
, (int) 'C', wxID_COPY
);
297 entries
[1].Set(wxACCEL_CMD
, (int) 'X', wxID_CUT
);
298 entries
[2].Set(wxACCEL_CMD
, (int) 'V', wxID_PASTE
);
299 entries
[3].Set(wxACCEL_CMD
, (int) 'A', wxID_SELECTALL
);
300 entries
[4].Set(wxACCEL_CMD
, (int) 'Z', wxID_UNDO
);
301 entries
[5].Set(wxACCEL_CMD
, (int) 'Y', wxID_REDO
);
303 wxAcceleratorTable
accel(6, entries
);
304 SetAcceleratorTable(accel
);
306 m_contextMenu
= new wxMenu
;
307 m_contextMenu
->Append(wxID_UNDO
, _("&Undo"));
308 m_contextMenu
->Append(wxID_REDO
, _("&Redo"));
309 m_contextMenu
->AppendSeparator();
310 m_contextMenu
->Append(wxID_CUT
, _("Cu&t"));
311 m_contextMenu
->Append(wxID_COPY
, _("&Copy"));
312 m_contextMenu
->Append(wxID_PASTE
, _("&Paste"));
313 m_contextMenu
->Append(wxID_CLEAR
, _("&Delete"));
314 m_contextMenu
->AppendSeparator();
315 m_contextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
316 m_contextMenu
->AppendSeparator();
317 m_contextMenu
->Append(wxID_RICHTEXT_PROPERTIES1
, _("&Properties"));
322 wxRichTextCtrl::~wxRichTextCtrl()
324 SetFocusObject(& GetBuffer(), false);
325 GetBuffer().RemoveEventHandler(this);
327 delete m_contextMenu
;
330 /// Member initialisation
331 void wxRichTextCtrl::Init()
333 m_contextMenu
= NULL
;
335 m_caretPosition
= -1;
336 m_selectionAnchor
= -2;
337 m_selectionAnchorObject
= NULL
;
338 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
340 m_caretAtLineStart
= false;
342 m_fullLayoutRequired
= false;
343 m_fullLayoutTime
= 0;
344 m_fullLayoutSavedPosition
= 0;
345 m_delayedLayoutThreshold
= wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD
;
346 m_caretPositionForDefaultStyle
= -2;
347 m_focusObject
= & m_buffer
;
350 void wxRichTextCtrl::DoThaw()
352 if (GetBuffer().IsDirty())
361 void wxRichTextCtrl::Clear()
363 if (GetFocusObject() == & GetBuffer())
365 m_buffer
.ResetAndClearCommands();
366 m_buffer
.Invalidate(wxRICHTEXT_ALL
);
370 GetFocusObject()->Reset();
373 m_caretPosition
= -1;
374 m_caretPositionForDefaultStyle
= -2;
375 m_caretAtLineStart
= false;
377 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
387 wxTextCtrl::SendTextUpdatedEvent(this);
391 void wxRichTextCtrl::OnPaint(wxPaintEvent
& WXUNUSED(event
))
393 #if !wxRICHTEXT_USE_OWN_CARET
394 if (GetCaret() && !IsFrozen())
399 #if wxRICHTEXT_BUFFERED_PAINTING
400 wxBufferedPaintDC
dc(this, m_bufferBitmap
);
410 dc
.SetFont(GetFont());
412 // Paint the background
415 // wxRect drawingArea(GetLogicalPoint(wxPoint(0, 0)), GetClientSize());
417 wxRect
drawingArea(GetUpdateRegion().GetBox());
418 drawingArea
.SetPosition(GetLogicalPoint(drawingArea
.GetPosition()));
420 wxRect
availableSpace(GetClientSize());
421 if (GetBuffer().IsDirty())
423 GetBuffer().Layout(dc
, availableSpace
, wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
);
424 GetBuffer().Invalidate(wxRICHTEXT_NONE
);
428 wxRect
clipRect(availableSpace
);
429 clipRect
.x
+= GetBuffer().GetLeftMargin();
430 clipRect
.y
+= GetBuffer().GetTopMargin();
431 clipRect
.width
-= (GetBuffer().GetLeftMargin() + GetBuffer().GetRightMargin());
432 clipRect
.height
-= (GetBuffer().GetTopMargin() + GetBuffer().GetBottomMargin());
433 clipRect
.SetPosition(GetLogicalPoint(clipRect
.GetPosition()));
434 dc
.SetClippingRegion(clipRect
);
437 if ((GetExtraStyle() & wxRICHTEXT_EX_NO_GUIDELINES
) == 0)
438 flags
|= wxRICHTEXT_DRAW_GUIDELINES
;
440 GetBuffer().Draw(dc
, GetBuffer().GetOwnRange(), GetSelection(), drawingArea
, 0 /* descent */, flags
);
442 dc
.DestroyClippingRegion();
444 // Other user defined painting after everything else (i.e. all text) is painted
445 PaintAboveContent(dc
);
447 #if wxRICHTEXT_USE_OWN_CARET
448 if (GetCaret()->IsVisible())
450 ((wxRichTextCaret
*) GetCaret())->DoDraw(& dc
);
455 #if !wxRICHTEXT_USE_OWN_CARET
462 // Empty implementation, to prevent flicker
463 void wxRichTextCtrl::OnEraseBackground(wxEraseEvent
& WXUNUSED(event
))
467 void wxRichTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
471 #if !wxRICHTEXT_USE_OWN_CARET
477 #if defined(__WXGTK__) && !wxRICHTEXT_USE_OWN_CARET
478 // Work around dropouts when control is focused
486 void wxRichTextCtrl::OnKillFocus(wxFocusEvent
& WXUNUSED(event
))
491 #if defined(__WXGTK__) && !wxRICHTEXT_USE_OWN_CARET
492 // Work around dropouts when control is focused
500 void wxRichTextCtrl::OnCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
505 // Set up the caret for the given position and container, after a mouse click
506 bool wxRichTextCtrl::SetCaretPositionAfterClick(wxRichTextParagraphLayoutBox
* container
, long position
, int hitTestFlags
, bool extendSelection
)
508 bool caretAtLineStart
= false;
510 if (hitTestFlags
& wxRICHTEXT_HITTEST_BEFORE
)
512 // If we're at the start of a line (but not first in para)
513 // then we should keep the caret showing at the start of the line
514 // by showing the m_caretAtLineStart flag.
515 wxRichTextParagraph
* para
= container
->GetParagraphAtPosition(position
);
516 wxRichTextLine
* line
= container
->GetLineAtPosition(position
);
518 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
519 caretAtLineStart
= true;
523 if (extendSelection
&& (m_caretPosition
!= position
))
524 ExtendSelection(m_caretPosition
, position
, wxRICHTEXT_SHIFT_DOWN
);
526 MoveCaret(position
, caretAtLineStart
);
527 SetDefaultStyleToCursorStyle();
533 void wxRichTextCtrl::OnLeftClick(wxMouseEvent
& event
)
539 dc
.SetFont(GetFont());
541 // TODO: detect change of focus object
543 wxRichTextObject
* hitObj
= NULL
;
544 wxRichTextObject
* contextObj
= NULL
;
545 int hit
= GetBuffer().HitTest(dc
, event
.GetLogicalPosition(dc
), position
, & hitObj
, & contextObj
);
547 if (hit
!= wxRICHTEXT_HITTEST_NONE
&& hitObj
)
549 wxRichTextParagraphLayoutBox
* oldFocusObject
= GetFocusObject();
550 wxRichTextParagraphLayoutBox
* container
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
551 if (container
&& container
!= GetFocusObject() && container
->AcceptsFocus())
553 SetFocusObject(container
, false /* don't set caret position yet */);
556 m_dragStart
= event
.GetLogicalPosition(dc
);
560 long oldCaretPos
= m_caretPosition
;
562 SetCaretPositionAfterClick(container
, position
, hit
);
564 // For now, don't handle shift-click when we're selecting multiple objects.
565 if (event
.ShiftDown() && GetFocusObject() == oldFocusObject
&& m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
567 if (!m_selection
.IsValid())
568 ExtendSelection(oldCaretPos
, m_caretPosition
, wxRICHTEXT_SHIFT_DOWN
);
570 ExtendSelection(m_caretPosition
, m_caretPosition
, wxRICHTEXT_SHIFT_DOWN
);
580 void wxRichTextCtrl::OnLeftUp(wxMouseEvent
& event
)
585 if (GetCapture() == this)
588 // See if we clicked on a URL
591 dc
.SetFont(GetFont());
594 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
595 wxRichTextObject
* hitObj
= NULL
;
596 wxRichTextObject
* contextObj
= NULL
;
597 // Only get objects at this level, not nested, because otherwise we couldn't swipe text at a single level.
598 int hit
= GetFocusObject()->HitTest(dc
, logicalPt
, position
, & hitObj
, & contextObj
, wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
);
600 if ((hit
!= wxRICHTEXT_HITTEST_NONE
) && !(hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
602 wxRichTextEvent
cmdEvent(
603 wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
,
605 cmdEvent
.SetEventObject(this);
606 cmdEvent
.SetPosition(position
);
608 cmdEvent
.SetContainer(hitObj
->GetContainer());
610 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
613 if (GetStyle(position
, attr
))
615 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
617 wxString urlTarget
= attr
.GetURL();
618 if (!urlTarget
.IsEmpty())
620 wxMouseEvent
mouseEvent(event
);
622 long startPos
= 0, endPos
= 0;
623 wxRichTextObject
* obj
= GetFocusObject()->GetLeafObjectAtPosition(position
);
626 startPos
= obj
->GetRange().GetStart();
627 endPos
= obj
->GetRange().GetEnd();
630 wxTextUrlEvent
urlEvent(GetId(), mouseEvent
, startPos
, endPos
);
631 InitCommandEvent(urlEvent
);
633 urlEvent
.SetString(urlTarget
);
635 GetEventHandler()->ProcessEvent(urlEvent
);
645 void wxRichTextCtrl::OnMoveMouse(wxMouseEvent
& event
)
649 dc
.SetFont(GetFont());
652 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
653 wxRichTextObject
* hitObj
= NULL
;
654 wxRichTextObject
* contextObj
= NULL
;
658 // If we're dragging, let's only consider positions at this level; otherwise
659 // selecting a range is not going to work.
660 wxRichTextParagraphLayoutBox
* container
= & GetBuffer();
663 flags
= wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
;
664 container
= GetFocusObject();
666 int hit
= container
->HitTest(dc
, logicalPt
, position
, & hitObj
, & contextObj
, flags
);
668 // See if we need to change the cursor
671 if (hit
!= wxRICHTEXT_HITTEST_NONE
&& !(hit
& wxRICHTEXT_HITTEST_OUTSIDE
) && hitObj
)
673 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
675 if (actualContainer
&& GetStyle(position
, attr
, actualContainer
))
677 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
679 SetCursor(m_urlCursor
);
681 else if (!attr
.HasFlag(wxTEXT_ATTR_URL
))
683 SetCursor(m_textCursor
);
688 SetCursor(m_textCursor
);
691 if (!event
.Dragging())
699 wxRichTextParagraphLayoutBox
* commonAncestor
= NULL
;
700 wxRichTextParagraphLayoutBox
* otherContainer
= NULL
;
701 wxRichTextParagraphLayoutBox
* firstContainer
= NULL
;
703 // Check for dragging across multiple containers
705 wxRichTextObject
* hitObj2
= NULL
, *contextObj2
= NULL
;
706 int hit2
= GetBuffer().HitTest(dc
, logicalPt
, position2
, & hitObj2
, & contextObj2
, 0);
707 if (hit2
!= wxRICHTEXT_HITTEST_NONE
&& !(hit2
& wxRICHTEXT_HITTEST_OUTSIDE
) && hitObj2
&& hitObj
!= hitObj2
)
709 // See if we can find a common ancestor
710 if (m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
712 firstContainer
= GetFocusObject();
713 commonAncestor
= wxDynamicCast(firstContainer
->GetParent(), wxRichTextParagraphLayoutBox
);
717 firstContainer
= wxDynamicCast(m_selectionAnchorObject
, wxRichTextParagraphLayoutBox
);
718 //commonAncestor = GetFocusObject(); // when the selection state is not normal, the focus object (e.g. table)
719 // is the common ancestor.
720 commonAncestor
= wxDynamicCast(firstContainer
->GetParent(), wxRichTextParagraphLayoutBox
);
723 if (commonAncestor
&& commonAncestor
->HandlesChildSelections())
725 wxRichTextObject
* p
= hitObj2
;
728 if (p
->GetParent() == commonAncestor
)
730 otherContainer
= wxDynamicCast(p
, wxRichTextParagraphLayoutBox
);
737 if (commonAncestor
&& firstContainer
&& otherContainer
)
739 // We have now got a second container that shares a parent with the current or anchor object.
740 if (m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
742 // Don't go into common-ancestor selection mode if we still have the same
744 if (otherContainer
!= firstContainer
)
746 m_selectionState
= wxRichTextCtrlSelectionState_CommonAncestor
;
747 m_selectionAnchorObject
= firstContainer
;
748 m_selectionAnchor
= firstContainer
->GetRange().GetStart();
750 // The common ancestor, such as a table, returns the cell selection
751 // between the anchor and current position.
752 m_selection
= commonAncestor
->GetSelection(m_selectionAnchor
, otherContainer
->GetRange().GetStart());
757 m_selection
= commonAncestor
->GetSelection(m_selectionAnchor
, otherContainer
->GetRange().GetStart());
762 if (otherContainer
->AcceptsFocus())
763 SetFocusObject(otherContainer
, false /* don't set caret and clear selection */);
764 MoveCaret(-1, false);
765 SetDefaultStyleToCursorStyle();
770 if (hitObj
&& m_dragging
&& hit
!= wxRICHTEXT_HITTEST_NONE
&& m_selectionState
== wxRichTextCtrlSelectionState_Normal
)
772 // TODO: test closeness
773 SetCaretPositionAfterClick(container
, position
, hit
, true /* extend selection */);
778 void wxRichTextCtrl::OnRightClick(wxMouseEvent
& event
)
784 dc
.SetFont(GetFont());
787 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
788 wxRichTextObject
* hitObj
= NULL
;
789 wxRichTextObject
* contextObj
= NULL
;
790 int hit
= GetFocusObject()->HitTest(dc
, logicalPt
, position
, & hitObj
, & contextObj
);
792 if (hitObj
&& hitObj
->GetContainer() != GetFocusObject())
794 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
795 if (actualContainer
&& actualContainer
->AcceptsFocus())
797 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
798 SetCaretPositionAfterClick(actualContainer
, position
, hit
);
802 wxRichTextEvent
cmdEvent(
803 wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
,
805 cmdEvent
.SetEventObject(this);
806 cmdEvent
.SetPosition(position
);
808 cmdEvent
.SetContainer(hitObj
->GetContainer());
810 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
814 /// Left-double-click
815 void wxRichTextCtrl::OnLeftDClick(wxMouseEvent
& WXUNUSED(event
))
817 wxRichTextEvent
cmdEvent(
818 wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
,
820 cmdEvent
.SetEventObject(this);
821 cmdEvent
.SetPosition(m_caretPosition
+1);
822 cmdEvent
.SetContainer(GetFocusObject());
824 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
826 SelectWord(GetCaretPosition()+1);
831 void wxRichTextCtrl::OnMiddleClick(wxMouseEvent
& event
)
833 wxRichTextEvent
cmdEvent(
834 wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
,
836 cmdEvent
.SetEventObject(this);
837 cmdEvent
.SetPosition(m_caretPosition
+1);
838 cmdEvent
.SetContainer(GetFocusObject());
840 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
845 void wxRichTextCtrl::OnChar(wxKeyEvent
& event
)
849 flags
|= wxRICHTEXT_CTRL_DOWN
;
850 if (event
.ShiftDown())
851 flags
|= wxRICHTEXT_SHIFT_DOWN
;
853 flags
|= wxRICHTEXT_ALT_DOWN
;
855 if (event
.GetEventType() == wxEVT_KEY_DOWN
)
857 if (event
.IsKeyInCategory(WXK_CATEGORY_NAVIGATION
))
859 KeyboardNavigate(event
.GetKeyCode(), flags
);
863 long keycode
= event
.GetKeyCode();
923 case WXK_NUMPAD_HOME
:
924 case WXK_NUMPAD_LEFT
:
926 case WXK_NUMPAD_RIGHT
:
927 case WXK_NUMPAD_DOWN
:
928 case WXK_NUMPAD_PAGEUP
:
929 case WXK_NUMPAD_PAGEDOWN
:
931 case WXK_NUMPAD_BEGIN
:
932 case WXK_NUMPAD_INSERT
:
933 case WXK_WINDOWS_LEFT
:
942 // Must process this before translation, otherwise it's translated into a WXK_DELETE event.
943 if (event
.CmdDown() && event
.GetKeyCode() == WXK_BACK
)
945 BeginBatchUndo(_("Delete Text"));
947 long newPos
= m_caretPosition
;
949 bool processed
= DeleteSelectedContent(& newPos
);
951 // Submit range in character positions, which are greater than caret positions,
952 // so subtract 1 for deleted character and add 1 for conversion to character position.
957 long pos
= wxRichTextCtrl::FindNextWordPosition(-1);
960 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(pos
+1, newPos
), this, & GetBuffer());
966 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(newPos
, newPos
), this, & GetBuffer());
971 if (GetLastPosition() == -1)
973 GetFocusObject()->Reset();
975 m_caretPosition
= -1;
977 SetDefaultStyleToCursorStyle();
980 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
982 wxRichTextEvent
cmdEvent(
983 wxEVT_COMMAND_RICHTEXT_DELETE
,
985 cmdEvent
.SetEventObject(this);
986 cmdEvent
.SetFlags(flags
);
987 cmdEvent
.SetPosition(m_caretPosition
+1);
988 cmdEvent
.SetContainer(GetFocusObject());
989 GetEventHandler()->ProcessEvent(cmdEvent
);
999 // all the other keys modify the controls contents which shouldn't be
1000 // possible if we're read-only
1001 if ( !IsEditable() )
1007 if (event
.GetKeyCode() == WXK_RETURN
)
1009 BeginBatchUndo(_("Insert Text"));
1011 long newPos
= m_caretPosition
;
1013 DeleteSelectedContent(& newPos
);
1015 if (event
.ShiftDown())
1018 text
= wxRichTextLineBreakChar
;
1019 GetFocusObject()->InsertTextWithUndo(newPos
+1, text
, this, & GetBuffer());
1020 m_caretAtLineStart
= true;
1024 GetFocusObject()->InsertNewlineWithUndo(newPos
+1, this, & GetBuffer(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
|wxRICHTEXT_INSERT_INTERACTIVE
);
1027 SetDefaultStyleToCursorStyle();
1029 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
1031 wxRichTextEvent
cmdEvent(
1032 wxEVT_COMMAND_RICHTEXT_RETURN
,
1034 cmdEvent
.SetEventObject(this);
1035 cmdEvent
.SetFlags(flags
);
1036 cmdEvent
.SetPosition(newPos
+1);
1037 cmdEvent
.SetContainer(GetFocusObject());
1039 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
1041 // Generate conventional event
1042 wxCommandEvent
textEvent(wxEVT_COMMAND_TEXT_ENTER
, GetId());
1043 InitCommandEvent(textEvent
);
1045 GetEventHandler()->ProcessEvent(textEvent
);
1049 else if (event
.GetKeyCode() == WXK_BACK
)
1051 BeginBatchUndo(_("Delete Text"));
1053 long newPos
= m_caretPosition
;
1055 bool processed
= DeleteSelectedContent(& newPos
);
1057 // Submit range in character positions, which are greater than caret positions,
1058 // so subtract 1 for deleted character and add 1 for conversion to character position.
1061 if (event
.CmdDown())
1063 long pos
= wxRichTextCtrl::FindNextWordPosition(-1);
1066 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(pos
+1, newPos
), this, & GetBuffer());
1072 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(newPos
, newPos
), this, & GetBuffer());
1077 if (GetLastPosition() == -1)
1079 GetFocusObject()->Reset();
1081 m_caretPosition
= -1;
1083 SetDefaultStyleToCursorStyle();
1086 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
1088 wxRichTextEvent
cmdEvent(
1089 wxEVT_COMMAND_RICHTEXT_DELETE
,
1091 cmdEvent
.SetEventObject(this);
1092 cmdEvent
.SetFlags(flags
);
1093 cmdEvent
.SetPosition(m_caretPosition
+1);
1094 cmdEvent
.SetContainer(GetFocusObject());
1095 GetEventHandler()->ProcessEvent(cmdEvent
);
1099 else if (event
.GetKeyCode() == WXK_DELETE
)
1101 BeginBatchUndo(_("Delete Text"));
1103 long newPos
= m_caretPosition
;
1105 bool processed
= DeleteSelectedContent(& newPos
);
1107 // Submit range in character positions, which are greater than caret positions,
1108 if (newPos
< GetFocusObject()->GetOwnRange().GetEnd()+1)
1110 if (event
.CmdDown())
1112 long pos
= wxRichTextCtrl::FindNextWordPosition(1);
1113 if (pos
!= -1 && (pos
> newPos
))
1115 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(newPos
+1, pos
), this, & GetBuffer());
1120 if (!processed
&& newPos
< (GetLastPosition()-1))
1121 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(newPos
+1, newPos
+1), this, & GetBuffer());
1126 if (GetLastPosition() == -1)
1128 GetFocusObject()->Reset();
1130 m_caretPosition
= -1;
1132 SetDefaultStyleToCursorStyle();
1135 wxRichTextEvent
cmdEvent(
1136 wxEVT_COMMAND_RICHTEXT_DELETE
,
1138 cmdEvent
.SetEventObject(this);
1139 cmdEvent
.SetFlags(flags
);
1140 cmdEvent
.SetPosition(m_caretPosition
+1);
1141 cmdEvent
.SetContainer(GetFocusObject());
1142 GetEventHandler()->ProcessEvent(cmdEvent
);
1148 long keycode
= event
.GetKeyCode();
1160 if (event
.CmdDown())
1162 // Fixes AltGr+key with European input languages on Windows
1163 if ((event
.CmdDown() && !event
.AltDown()) || (event
.AltDown() && !event
.CmdDown()))
1170 wxRichTextEvent
cmdEvent(
1171 wxEVT_COMMAND_RICHTEXT_CHARACTER
,
1173 cmdEvent
.SetEventObject(this);
1174 cmdEvent
.SetFlags(flags
);
1176 cmdEvent
.SetCharacter(event
.GetUnicodeKey());
1178 cmdEvent
.SetCharacter((wxChar
) keycode
);
1180 cmdEvent
.SetPosition(m_caretPosition
+1);
1181 cmdEvent
.SetContainer(GetFocusObject());
1183 if (keycode
== wxT('\t'))
1185 // See if we need to promote or demote the selection or paragraph at the cursor
1186 // position, instead of inserting a tab.
1187 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
1188 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
);
1189 if (para
&& para
->GetRange().GetStart() == pos
&& para
->GetAttributes().HasListStyleName())
1191 wxRichTextRange range
;
1193 range
= GetSelectionRange();
1195 range
= para
->GetRange().FromInternal();
1197 int promoteBy
= event
.ShiftDown() ? 1 : -1;
1199 PromoteList(promoteBy
, range
, NULL
);
1201 GetEventHandler()->ProcessEvent(cmdEvent
);
1207 BeginBatchUndo(_("Insert Text"));
1209 long newPos
= m_caretPosition
;
1210 DeleteSelectedContent(& newPos
);
1213 wxString str
= event
.GetUnicodeKey();
1215 wxString str
= (wxChar
) event
.GetKeyCode();
1217 GetFocusObject()->InsertTextWithUndo(newPos
+1, str
, this, & GetBuffer(), 0);
1221 SetDefaultStyleToCursorStyle();
1222 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
1224 GetEventHandler()->ProcessEvent(cmdEvent
);
1232 /// Delete content if there is a selection, e.g. when pressing a key.
1233 bool wxRichTextCtrl::DeleteSelectedContent(long* newPos
)
1237 long pos
= m_selection
.GetRange().GetStart();
1238 wxRichTextRange range
= m_selection
.GetRange();
1240 // SelectAll causes more to be selected than doing it interactively,
1241 // and causes a new paragraph to be inserted. So for multiline buffers,
1242 // don't delete the final position.
1243 if (range
.GetEnd() == GetLastPosition() && GetNumberOfLines() > 0)
1244 range
.SetEnd(range
.GetEnd()-1);
1246 GetFocusObject()->DeleteRangeWithUndo(range
, this, & GetBuffer());
1247 m_selection
.Reset();
1248 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
1258 /// Keyboard navigation
1262 Left: left one character
1263 Right: right one character
1266 Ctrl-Left: left one word
1267 Ctrl-Right: right one word
1268 Ctrl-Up: previous paragraph start
1269 Ctrl-Down: next start of paragraph
1272 Ctrl-Home: start of document
1273 Ctrl-End: end of document
1274 Page-Up: Up a screen
1275 Page-Down: Down a screen
1279 Ctrl-Alt-PgUp: Start of window
1280 Ctrl-Alt-PgDn: End of window
1281 F8: Start selection mode
1282 Esc: End selection mode
1284 Adding Shift does the above but starts/extends selection.
1289 bool wxRichTextCtrl::KeyboardNavigate(int keyCode
, int flags
)
1291 bool success
= false;
1293 if (keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
)
1295 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1296 success
= WordRight(1, flags
);
1298 success
= MoveRight(1, flags
);
1300 else if (keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
)
1302 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1303 success
= WordLeft(1, flags
);
1305 success
= MoveLeft(1, flags
);
1307 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
)
1309 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1310 success
= MoveToParagraphStart(flags
);
1312 success
= MoveUp(1, flags
);
1314 else if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
)
1316 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1317 success
= MoveToParagraphEnd(flags
);
1319 success
= MoveDown(1, flags
);
1321 else if (keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1323 success
= PageUp(1, flags
);
1325 else if (keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1327 success
= PageDown(1, flags
);
1329 else if (keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
)
1331 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1332 success
= MoveHome(flags
);
1334 success
= MoveToLineStart(flags
);
1336 else if (keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
)
1338 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1339 success
= MoveEnd(flags
);
1341 success
= MoveToLineEnd(flags
);
1346 ScrollIntoView(m_caretPosition
, keyCode
);
1347 SetDefaultStyleToCursorStyle();
1353 /// Extend the selection. Selections are in caret positions.
1354 bool wxRichTextCtrl::ExtendSelection(long oldPos
, long newPos
, int flags
)
1356 if (flags
& wxRICHTEXT_SHIFT_DOWN
)
1358 if (oldPos
== newPos
)
1361 wxRichTextSelection oldSelection
= m_selection
;
1363 m_selection
.SetContainer(GetFocusObject());
1365 wxRichTextRange oldRange
;
1366 if (m_selection
.IsValid())
1367 oldRange
= m_selection
.GetRange();
1369 oldRange
= wxRICHTEXT_NO_SELECTION
;
1370 wxRichTextRange newRange
;
1372 // If not currently selecting, start selecting
1373 if (oldRange
.GetStart() == -2)
1375 m_selectionAnchor
= oldPos
;
1377 if (oldPos
> newPos
)
1378 newRange
.SetRange(newPos
+1, oldPos
);
1380 newRange
.SetRange(oldPos
+1, newPos
);
1384 // Always ensure that the selection range start is greater than
1386 if (newPos
> m_selectionAnchor
)
1387 newRange
.SetRange(m_selectionAnchor
+1, newPos
);
1388 else if (newPos
== m_selectionAnchor
)
1389 newRange
= wxRichTextRange(-2, -2);
1391 newRange
.SetRange(newPos
+1, m_selectionAnchor
);
1394 m_selection
.SetRange(newRange
);
1396 RefreshForSelectionChange(oldSelection
, m_selection
);
1398 if (newRange
.GetStart() > newRange
.GetEnd())
1400 wxLogDebug(wxT("Strange selection range"));
1409 /// Scroll into view, returning true if we scrolled.
1410 /// This takes a _caret_ position.
1411 bool wxRichTextCtrl::ScrollIntoView(long position
, int keyCode
)
1413 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(position
);
1419 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1421 int startXUnits
, startYUnits
;
1422 GetViewStart(& startXUnits
, & startYUnits
);
1423 int startY
= startYUnits
* ppuY
;
1426 GetVirtualSize(& sx
, & sy
);
1432 wxRect rect
= line
->GetRect();
1434 bool scrolled
= false;
1436 wxSize clientSize
= GetClientSize();
1438 int leftMargin
, rightMargin
, topMargin
, bottomMargin
;
1441 wxClientDC
dc(this);
1442 wxRichTextObject::GetTotalMargin(dc
, & GetBuffer(), GetBuffer().GetAttributes(), leftMargin
, rightMargin
,
1443 topMargin
, bottomMargin
);
1445 // clientSize.y -= GetBuffer().GetBottomMargin();
1446 clientSize
.y
-= bottomMargin
;
1448 if (GetWindowStyle() & wxRE_CENTRE_CARET
)
1450 int y
= rect
.y
- GetClientSize().y
/2;
1451 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1452 if (y
>= 0 && (y
+ clientSize
.y
) < GetBuffer().GetCachedSize().y
)
1454 if (startYUnits
!= yUnits
)
1456 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1459 #if !wxRICHTEXT_USE_OWN_CARET
1469 if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
||
1470 keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
||
1471 keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
||
1472 keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1474 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1476 // Make it scroll so this item is at the bottom
1478 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1479 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1481 // If we're still off the screen, scroll another line down
1482 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1485 if (startYUnits
!= yUnits
)
1487 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1491 else if (rect
.y
< (startY
+ GetBuffer().GetTopMargin()))
1493 // Make it scroll so this item is at the top
1495 int y
= rect
.y
- GetBuffer().GetTopMargin();
1496 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1498 if (startYUnits
!= yUnits
)
1500 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1506 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
||
1507 keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
||
1508 keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
||
1509 keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1511 if (rect
.y
< (startY
+ GetBuffer().GetBottomMargin()))
1513 // Make it scroll so this item is at the top
1515 int y
= rect
.y
- GetBuffer().GetTopMargin();
1516 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1518 if (startYUnits
!= yUnits
)
1520 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1524 else if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1526 // Make it scroll so this item is at the bottom
1528 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1529 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1531 // If we're still off the screen, scroll another line down
1532 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1535 if (startYUnits
!= yUnits
)
1537 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1543 #if !wxRICHTEXT_USE_OWN_CARET
1551 /// Is the given position visible on the screen?
1552 bool wxRichTextCtrl::IsPositionVisible(long pos
) const
1554 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(pos
-1);
1560 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1563 GetViewStart(& startX
, & startY
);
1565 startY
= startY
* ppuY
;
1567 wxRect rect
= line
->GetRect();
1568 wxSize clientSize
= GetClientSize();
1569 clientSize
.y
-= GetBuffer().GetBottomMargin();
1571 return (rect
.GetBottom() > (startY
+ GetBuffer().GetTopMargin())) && (rect
.GetTop() < (startY
+ clientSize
.y
));
1574 void wxRichTextCtrl::SetCaretPosition(long position
, bool showAtLineStart
)
1576 m_caretPosition
= position
;
1577 m_caretAtLineStart
= showAtLineStart
;
1580 /// Move caret one visual step forward: this may mean setting a flag
1581 /// and keeping the same position if we're going from the end of one line
1582 /// to the start of the next, which may be the exact same caret position.
1583 void wxRichTextCtrl::MoveCaretForward(long oldPosition
)
1585 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(oldPosition
);
1587 // Only do the check if we're not at the end of the paragraph (where things work OK
1589 if (para
&& (oldPosition
!= para
->GetRange().GetEnd() - 1))
1591 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(oldPosition
);
1595 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1597 // We're at the end of a line. See whether we need to
1598 // stay at the same actual caret position but change visual
1599 // position, or not.
1600 if (oldPosition
== lineRange
.GetEnd())
1602 if (m_caretAtLineStart
)
1604 // We're already at the start of the line, so actually move on now.
1605 m_caretPosition
= oldPosition
+ 1;
1606 m_caretAtLineStart
= false;
1610 // We're showing at the end of the line, so keep to
1611 // the same position but indicate that we're to show
1612 // at the start of the next line.
1613 m_caretPosition
= oldPosition
;
1614 m_caretAtLineStart
= true;
1616 SetDefaultStyleToCursorStyle();
1622 SetDefaultStyleToCursorStyle();
1625 /// Move caret one visual step backward: this may mean setting a flag
1626 /// and keeping the same position if we're going from the end of one line
1627 /// to the start of the next, which may be the exact same caret position.
1628 void wxRichTextCtrl::MoveCaretBack(long oldPosition
)
1630 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(oldPosition
);
1632 // Only do the check if we're not at the start of the paragraph (where things work OK
1634 if (para
&& (oldPosition
!= para
->GetRange().GetStart()))
1636 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(oldPosition
);
1640 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1642 // We're at the start of a line. See whether we need to
1643 // stay at the same actual caret position but change visual
1644 // position, or not.
1645 if (oldPosition
== lineRange
.GetStart())
1647 m_caretPosition
= oldPosition
-1;
1648 m_caretAtLineStart
= true;
1651 else if (oldPosition
== lineRange
.GetEnd())
1653 if (m_caretAtLineStart
)
1655 // We're at the start of the line, so keep the same caret position
1656 // but clear the start-of-line flag.
1657 m_caretPosition
= oldPosition
;
1658 m_caretAtLineStart
= false;
1662 // We're showing at the end of the line, so go back
1663 // to the previous character position.
1664 m_caretPosition
= oldPosition
- 1;
1666 SetDefaultStyleToCursorStyle();
1672 SetDefaultStyleToCursorStyle();
1676 bool wxRichTextCtrl::MoveRight(int noPositions
, int flags
)
1678 long endPos
= GetFocusObject()->GetOwnRange().GetEnd();
1680 if (m_caretPosition
+ noPositions
< endPos
)
1682 long oldPos
= m_caretPosition
;
1683 long newPos
= m_caretPosition
+ noPositions
;
1685 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1689 // Determine by looking at oldPos and m_caretPosition whether
1690 // we moved from the end of a line to the start of the next line, in which case
1691 // we want to adjust the caret position such that it is positioned at the
1692 // start of the next line, rather than jumping past the first character of the
1694 if (noPositions
== 1 && !extendSel
)
1695 MoveCaretForward(oldPos
);
1697 SetCaretPosition(newPos
);
1700 SetDefaultStyleToCursorStyle();
1709 bool wxRichTextCtrl::MoveLeft(int noPositions
, int flags
)
1713 if (m_caretPosition
> startPos
- noPositions
+ 1)
1715 long oldPos
= m_caretPosition
;
1716 long newPos
= m_caretPosition
- noPositions
;
1717 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1721 if (noPositions
== 1 && !extendSel
)
1722 MoveCaretBack(oldPos
);
1724 SetCaretPosition(newPos
);
1727 SetDefaultStyleToCursorStyle();
1735 // Find the caret position for the combination of hit-test flags and character position.
1736 // Returns the caret position and also an indication of where to place the caret (caretLineStart)
1737 // since this is ambiguous (same position used for end of line and start of next).
1738 long wxRichTextCtrl::FindCaretPositionForCharacterPosition(long position
, int hitTestFlags
, wxRichTextParagraphLayoutBox
* container
,
1739 bool& caretLineStart
)
1741 // If end of previous line, and hitTest is wxRICHTEXT_HITTEST_BEFORE,
1742 // we want to be at the end of the last line but with m_caretAtLineStart set to true,
1743 // so we view the caret at the start of the line.
1744 caretLineStart
= false;
1745 long caretPosition
= position
;
1747 if (hitTestFlags
& wxRICHTEXT_HITTEST_BEFORE
)
1749 wxRichTextLine
* thisLine
= container
->GetLineAtPosition(position
-1);
1750 wxRichTextRange lineRange
;
1752 lineRange
= thisLine
->GetAbsoluteRange();
1754 if (thisLine
&& (position
-1) == lineRange
.GetEnd())
1757 caretLineStart
= true;
1761 wxRichTextParagraph
* para
= container
->GetParagraphAtPosition(position
);
1762 if (para
&& para
->GetRange().GetStart() == position
)
1766 return caretPosition
;
1770 bool wxRichTextCtrl::MoveUp(int noLines
, int flags
)
1772 return MoveDown(- noLines
, flags
);
1776 bool wxRichTextCtrl::MoveDown(int noLines
, int flags
)
1781 long lineNumber
= GetFocusObject()->GetVisibleLineNumber(m_caretPosition
, true, m_caretAtLineStart
);
1782 wxPoint pt
= GetCaret()->GetPosition();
1783 long newLine
= lineNumber
+ noLines
;
1784 bool notInThisObject
= false;
1786 if (lineNumber
!= -1)
1790 long lastLine
= GetFocusObject()->GetVisibleLineNumber(GetFocusObject()->GetOwnRange().GetEnd());
1791 if (newLine
> lastLine
)
1792 notInThisObject
= true;
1797 notInThisObject
= true;
1801 wxRichTextParagraphLayoutBox
* container
= GetFocusObject();
1802 int hitTestFlags
= wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
;
1804 if (notInThisObject
)
1806 // If we know we're navigating out of the current object,
1807 // try to find an object anywhere in the buffer at the new position (up or down a bit)
1808 container
= & GetBuffer();
1811 if (noLines
> 0) // going down
1813 pt
.y
= GetFocusObject()->GetPosition().y
+ GetFocusObject()->GetCachedSize().y
+ 2;
1817 pt
.y
= GetFocusObject()->GetPosition().y
- 2;
1822 wxRichTextLine
* lineObj
= GetFocusObject()->GetLineForVisibleLineNumber(newLine
);
1824 pt
.y
= lineObj
->GetAbsolutePosition().y
+ 2;
1830 wxClientDC
dc(this);
1832 dc
.SetFont(GetFont());
1834 wxRichTextObject
* hitObj
= NULL
;
1835 wxRichTextObject
* contextObj
= NULL
;
1836 int hitTest
= container
->HitTest(dc
, pt
, newPos
, & hitObj
, & contextObj
, hitTestFlags
);
1838 if (hitTest
!= wxRICHTEXT_HITTEST_NONE
&& hitObj
)
1840 if (notInThisObject
)
1842 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
1843 if (actualContainer
&& actualContainer
!= GetFocusObject() && actualContainer
->AcceptsFocus())
1845 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
1847 container
= actualContainer
;
1851 bool caretLineStart
= true;
1852 long caretPosition
= FindCaretPositionForCharacterPosition(newPos
, hitTest
, container
, caretLineStart
);
1853 long newSelEnd
= caretPosition
;
1856 if (notInThisObject
)
1859 extendSel
= ExtendSelection(m_caretPosition
, newSelEnd
, flags
);
1864 SetCaretPosition(caretPosition
, caretLineStart
);
1866 SetDefaultStyleToCursorStyle();
1874 /// Move to the end of the paragraph
1875 bool wxRichTextCtrl::MoveToParagraphEnd(int flags
)
1877 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(m_caretPosition
, true);
1880 long newPos
= para
->GetRange().GetEnd() - 1;
1881 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1885 SetCaretPosition(newPos
);
1887 SetDefaultStyleToCursorStyle();
1895 /// Move to the start of the paragraph
1896 bool wxRichTextCtrl::MoveToParagraphStart(int flags
)
1898 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(m_caretPosition
, true);
1901 long newPos
= para
->GetRange().GetStart() - 1;
1902 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1906 SetCaretPosition(newPos
);
1908 SetDefaultStyleToCursorStyle();
1916 /// Move to the end of the line
1917 bool wxRichTextCtrl::MoveToLineEnd(int flags
)
1919 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1923 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1924 long newPos
= lineRange
.GetEnd();
1925 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1929 SetCaretPosition(newPos
);
1931 SetDefaultStyleToCursorStyle();
1939 /// Move to the start of the line
1940 bool wxRichTextCtrl::MoveToLineStart(int flags
)
1942 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1945 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1946 long newPos
= lineRange
.GetStart()-1;
1948 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1952 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphForLine(line
);
1954 SetCaretPosition(newPos
, para
->GetRange().GetStart() != lineRange
.GetStart());
1956 SetDefaultStyleToCursorStyle();
1964 /// Move to the start of the buffer
1965 bool wxRichTextCtrl::MoveHome(int flags
)
1967 if (m_caretPosition
!= -1)
1969 bool extendSel
= ExtendSelection(m_caretPosition
, -1, flags
);
1973 SetCaretPosition(-1);
1975 SetDefaultStyleToCursorStyle();
1983 /// Move to the end of the buffer
1984 bool wxRichTextCtrl::MoveEnd(int flags
)
1986 long endPos
= GetFocusObject()->GetOwnRange().GetEnd()-1;
1988 if (m_caretPosition
!= endPos
)
1990 bool extendSel
= ExtendSelection(m_caretPosition
, endPos
, flags
);
1994 SetCaretPosition(endPos
);
1996 SetDefaultStyleToCursorStyle();
2004 /// Move noPages pages up
2005 bool wxRichTextCtrl::PageUp(int noPages
, int flags
)
2007 return PageDown(- noPages
, flags
);
2010 /// Move noPages pages down
2011 bool wxRichTextCtrl::PageDown(int noPages
, int flags
)
2013 // Calculate which line occurs noPages * screen height further down.
2014 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
2017 wxSize clientSize
= GetClientSize();
2018 int newY
= line
->GetAbsolutePosition().y
+ noPages
*clientSize
.y
;
2020 wxRichTextLine
* newLine
= GetFocusObject()->GetLineAtYPosition(newY
);
2023 wxRichTextRange lineRange
= newLine
->GetAbsoluteRange();
2024 long pos
= lineRange
.GetStart()-1;
2025 if (pos
!= m_caretPosition
)
2027 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphForLine(newLine
);
2029 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2033 SetCaretPosition(pos
, para
->GetRange().GetStart() != lineRange
.GetStart());
2035 SetDefaultStyleToCursorStyle();
2045 static bool wxRichTextCtrlIsWhitespace(const wxString
& str
)
2047 return str
== wxT(" ") || str
== wxT("\t");
2050 // Finds the caret position for the next word
2051 long wxRichTextCtrl::FindNextWordPosition(int direction
) const
2053 long endPos
= GetFocusObject()->GetOwnRange().GetEnd();
2057 long i
= m_caretPosition
+1+direction
; // +1 for conversion to character pos
2059 // First skip current text to space
2060 while (i
< endPos
&& i
> -1)
2062 // i is in character, not caret positions
2063 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2064 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2065 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
2069 else if (!wxRichTextCtrlIsWhitespace(text
) && !text
.empty())
2076 while (i
< endPos
&& i
> -1)
2078 // i is in character, not caret positions
2079 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2080 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2081 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
2082 return wxMax(-1, i
);
2084 if (text
.empty()) // End of paragraph, or maybe an image
2085 return wxMax(-1, i
- 1);
2086 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
2090 // Convert to caret position
2091 return wxMax(-1, i
- 1);
2100 long i
= m_caretPosition
;
2102 // First skip white space
2103 while (i
< endPos
&& i
> -1)
2105 // i is in character, not caret positions
2106 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2107 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2109 if (text
.empty() || (line
&& (i
== line
->GetAbsoluteRange().GetStart()))) // End of paragraph, or maybe an image
2111 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
2116 // Next skip current text to space
2117 while (i
< endPos
&& i
> -1)
2119 // i is in character, not caret positions
2120 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2121 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2122 if (line
&& line
->GetAbsoluteRange().GetStart() == i
)
2125 if (!wxRichTextCtrlIsWhitespace(text
) /* && !text.empty() */)
2138 /// Move n words left
2139 bool wxRichTextCtrl::WordLeft(int WXUNUSED(n
), int flags
)
2141 long pos
= FindNextWordPosition(-1);
2142 if (pos
!= m_caretPosition
)
2144 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
, true);
2146 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2150 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
2152 SetDefaultStyleToCursorStyle();
2160 /// Move n words right
2161 bool wxRichTextCtrl::WordRight(int WXUNUSED(n
), int flags
)
2163 long pos
= FindNextWordPosition(1);
2164 if (pos
!= m_caretPosition
)
2166 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
, true);
2168 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2172 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
2174 SetDefaultStyleToCursorStyle();
2183 void wxRichTextCtrl::OnSize(wxSizeEvent
& event
)
2185 // Only do sizing optimization for large buffers
2186 if (GetBuffer().GetOwnRange().GetEnd() > m_delayedLayoutThreshold
)
2188 m_fullLayoutRequired
= true;
2189 m_fullLayoutTime
= wxGetLocalTimeMillis();
2190 m_fullLayoutSavedPosition
= GetFirstVisiblePosition();
2191 LayoutContent(true /* onlyVisibleRect */);
2194 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2196 #if wxRICHTEXT_BUFFERED_PAINTING
2204 /// Idle-time processing
2205 void wxRichTextCtrl::OnIdle(wxIdleEvent
& event
)
2207 #if wxRICHTEXT_USE_OWN_CARET
2208 if (((wxRichTextCaret
*) GetCaret())->GetNeedsUpdate())
2210 ((wxRichTextCaret
*) GetCaret())->SetNeedsUpdate(false);
2216 const int layoutInterval
= wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL
;
2218 if (m_fullLayoutRequired
&& (wxGetLocalTimeMillis() > (m_fullLayoutTime
+ layoutInterval
)))
2220 m_fullLayoutRequired
= false;
2221 m_fullLayoutTime
= 0;
2222 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2223 ShowPosition(m_fullLayoutSavedPosition
);
2227 if (m_caretPositionForDefaultStyle
!= -2)
2229 // If the caret position has changed, no longer reflect the default style
2231 if (GetCaretPosition() != m_caretPositionForDefaultStyle
)
2232 m_caretPositionForDefaultStyle
= -2;
2239 void wxRichTextCtrl::OnScroll(wxScrollWinEvent
& event
)
2241 #if wxRICHTEXT_USE_OWN_CARET
2242 if (!((wxRichTextCaret
*) GetCaret())->GetNeedsUpdate())
2245 ((wxRichTextCaret
*) GetCaret())->SetNeedsUpdate();
2252 /// Set up scrollbars, e.g. after a resize
2253 void wxRichTextCtrl::SetupScrollbars(bool atTop
)
2258 if (GetBuffer().IsEmpty())
2260 SetScrollbars(0, 0, 0, 0, 0, 0);
2264 // TODO: reimplement scrolling so we scroll by line, not by fixed number
2265 // of pixels. See e.g. wxVScrolledWindow for ideas.
2266 int pixelsPerUnit
= 5;
2267 wxSize clientSize
= GetClientSize();
2269 int maxHeight
= GetBuffer().GetCachedSize().y
+ GetBuffer().GetTopMargin();
2271 // Round up so we have at least maxHeight pixels
2272 int unitsY
= (int) (((float)maxHeight
/(float)pixelsPerUnit
) + 0.5);
2274 int startX
= 0, startY
= 0;
2276 GetViewStart(& startX
, & startY
);
2278 int maxPositionX
= 0;
2279 int maxPositionY
= (int) ((((float)(wxMax((unitsY
*pixelsPerUnit
) - clientSize
.y
, 0)))/((float)pixelsPerUnit
)) + 0.5);
2281 int newStartX
= wxMin(maxPositionX
, startX
);
2282 int newStartY
= wxMin(maxPositionY
, startY
);
2284 int oldPPUX
, oldPPUY
;
2285 int oldStartX
, oldStartY
;
2286 int oldVirtualSizeX
= 0, oldVirtualSizeY
= 0;
2287 GetScrollPixelsPerUnit(& oldPPUX
, & oldPPUY
);
2288 GetViewStart(& oldStartX
, & oldStartY
);
2289 GetVirtualSize(& oldVirtualSizeX
, & oldVirtualSizeY
);
2291 oldVirtualSizeY
/= oldPPUY
;
2293 if (oldPPUX
== 0 && oldPPUY
== pixelsPerUnit
&& oldVirtualSizeY
== unitsY
&& oldStartX
== newStartX
&& oldStartY
== newStartY
)
2296 // Don't set scrollbars if there were none before, and there will be none now.
2297 if (oldPPUY
!= 0 && (oldVirtualSizeY
*oldPPUY
< clientSize
.y
) && (unitsY
*pixelsPerUnit
< clientSize
.y
))
2300 // Move to previous scroll position if
2302 SetScrollbars(0, pixelsPerUnit
, 0, unitsY
, newStartX
, newStartY
);
2305 /// Paint the background
2306 void wxRichTextCtrl::PaintBackground(wxDC
& dc
)
2308 wxColour backgroundColour
= GetBackgroundColour();
2309 if (!backgroundColour
.Ok())
2310 backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
2312 // Clear the background
2313 dc
.SetBrush(wxBrush(backgroundColour
));
2314 dc
.SetPen(*wxTRANSPARENT_PEN
);
2315 wxRect
windowRect(GetClientSize());
2316 windowRect
.x
-= 2; windowRect
.y
-= 2;
2317 windowRect
.width
+= 4; windowRect
.height
+= 4;
2319 // We need to shift the rectangle to take into account
2320 // scrolling. Converting device to logical coordinates.
2321 CalcUnscrolledPosition(windowRect
.x
, windowRect
.y
, & windowRect
.x
, & windowRect
.y
);
2322 dc
.DrawRectangle(windowRect
);
2325 #if wxRICHTEXT_BUFFERED_PAINTING
2326 /// Recreate buffer bitmap if necessary
2327 bool wxRichTextCtrl::RecreateBuffer(const wxSize
& size
)
2330 if (sz
== wxDefaultSize
)
2331 sz
= GetClientSize();
2333 if (sz
.x
< 1 || sz
.y
< 1)
2336 if (!m_bufferBitmap
.Ok() || m_bufferBitmap
.GetWidth() < sz
.x
|| m_bufferBitmap
.GetHeight() < sz
.y
)
2337 m_bufferBitmap
= wxBitmap(sz
.x
, sz
.y
);
2338 return m_bufferBitmap
.Ok();
2342 // ----------------------------------------------------------------------------
2343 // file IO functions
2344 // ----------------------------------------------------------------------------
2346 bool wxRichTextCtrl::DoLoadFile(const wxString
& filename
, int fileType
)
2348 bool success
= GetBuffer().LoadFile(filename
, (wxRichTextFileType
)fileType
);
2350 m_filename
= filename
;
2353 SetInsertionPoint(0);
2356 SetupScrollbars(true);
2358 wxTextCtrl::SendTextUpdatedEvent(this);
2364 wxLogError(_("File couldn't be loaded."));
2370 bool wxRichTextCtrl::DoSaveFile(const wxString
& filename
, int fileType
)
2372 if (GetBuffer().SaveFile(filename
, (wxRichTextFileType
)fileType
))
2374 m_filename
= filename
;
2381 wxLogError(_("The text couldn't be saved."));
2386 // ----------------------------------------------------------------------------
2387 // wxRichTextCtrl specific functionality
2388 // ----------------------------------------------------------------------------
2390 /// Add a new paragraph of text to the end of the buffer
2391 wxRichTextRange
wxRichTextCtrl::AddParagraph(const wxString
& text
)
2393 wxRichTextRange range
= GetFocusObject()->AddParagraph(text
);
2394 GetBuffer().Invalidate();
2400 wxRichTextRange
wxRichTextCtrl::AddImage(const wxImage
& image
)
2402 wxRichTextRange range
= GetFocusObject()->AddImage(image
);
2403 GetBuffer().Invalidate();
2408 // ----------------------------------------------------------------------------
2409 // selection and ranges
2410 // ----------------------------------------------------------------------------
2412 void wxRichTextCtrl::SelectAll()
2414 SetSelection(-1, -1);
2418 void wxRichTextCtrl::SelectNone()
2420 if (m_selection
.IsValid())
2422 wxRichTextSelection oldSelection
= m_selection
;
2424 m_selection
.Reset();
2426 RefreshForSelectionChange(oldSelection
, m_selection
);
2428 m_selectionAnchor
= -2;
2429 m_selectionAnchorObject
= NULL
;
2430 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
2433 static bool wxIsWordDelimiter(const wxString
& text
)
2435 return !text
.IsEmpty() && !wxIsalnum(text
[0]);
2438 /// Select the word at the given character position
2439 bool wxRichTextCtrl::SelectWord(long position
)
2441 if (position
< 0 || position
> GetFocusObject()->GetOwnRange().GetEnd())
2444 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(position
);
2448 if (position
== para
->GetRange().GetEnd())
2451 long positionStart
= position
;
2452 long positionEnd
= position
;
2454 for (positionStart
= position
; positionStart
>= para
->GetRange().GetStart(); positionStart
--)
2456 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(positionStart
, positionStart
));
2457 if (wxIsWordDelimiter(text
))
2463 if (positionStart
< para
->GetRange().GetStart())
2464 positionStart
= para
->GetRange().GetStart();
2466 for (positionEnd
= position
; positionEnd
< para
->GetRange().GetEnd(); positionEnd
++)
2468 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(positionEnd
, positionEnd
));
2469 if (wxIsWordDelimiter(text
))
2475 if (positionEnd
>= para
->GetRange().GetEnd())
2476 positionEnd
= para
->GetRange().GetEnd();
2478 if (positionEnd
< positionStart
)
2481 SetSelection(positionStart
, positionEnd
+1);
2483 if (positionStart
>= 0)
2485 MoveCaret(positionStart
-1, true);
2486 SetDefaultStyleToCursorStyle();
2492 wxString
wxRichTextCtrl::GetStringSelection() const
2495 GetSelection(&from
, &to
);
2497 return GetRange(from
, to
);
2500 // ----------------------------------------------------------------------------
2502 // ----------------------------------------------------------------------------
2504 wxTextCtrlHitTestResult
2505 wxRichTextCtrl::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
2507 // implement in terms of the other overload as the native ports typically
2508 // can get the position and not (x, y) pair directly (although wxUniv
2509 // directly gets x and y -- and so overrides this method as well)
2511 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
2513 if ( rc
!= wxTE_HT_UNKNOWN
)
2515 PositionToXY(pos
, x
, y
);
2521 wxTextCtrlHitTestResult
2522 wxRichTextCtrl::HitTest(const wxPoint
& pt
,
2525 wxClientDC
dc((wxRichTextCtrl
*) this);
2526 ((wxRichTextCtrl
*)this)->PrepareDC(dc
);
2528 // Buffer uses logical position (relative to start of buffer)
2530 wxPoint pt2
= GetLogicalPoint(pt
);
2532 wxRichTextObject
* hitObj
= NULL
;
2533 wxRichTextObject
* contextObj
= NULL
;
2534 int hit
= ((wxRichTextCtrl
*)this)->GetFocusObject()->HitTest(dc
, pt2
, *pos
, & hitObj
, & contextObj
, wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
);
2536 if ((hit
& wxRICHTEXT_HITTEST_BEFORE
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2537 return wxTE_HT_BEFORE
;
2538 else if ((hit
& wxRICHTEXT_HITTEST_AFTER
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2539 return wxTE_HT_BEYOND
;
2540 else if (hit
& (wxRICHTEXT_HITTEST_BEFORE
|wxRICHTEXT_HITTEST_AFTER
))
2541 return wxTE_HT_ON_TEXT
;
2543 return wxTE_HT_UNKNOWN
;
2546 // ----------------------------------------------------------------------------
2547 // set/get the controls text
2548 // ----------------------------------------------------------------------------
2550 wxString
wxRichTextCtrl::DoGetValue() const
2552 return GetBuffer().GetText();
2555 wxString
wxRichTextCtrl::GetRange(long from
, long to
) const
2557 // Public API for range is different from internals
2558 return GetFocusObject()->GetTextForRange(wxRichTextRange(from
, to
-1));
2561 void wxRichTextCtrl::DoSetValue(const wxString
& value
, int flags
)
2563 // Don't call Clear here, since it always sends a text updated event
2564 m_buffer
.ResetAndClearCommands();
2565 m_buffer
.Invalidate(wxRICHTEXT_ALL
);
2566 m_caretPosition
= -1;
2567 m_caretPositionForDefaultStyle
= -2;
2568 m_caretAtLineStart
= false;
2569 m_selection
.Reset();
2570 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
2580 if (!value
.IsEmpty())
2582 // Remove empty paragraph
2583 GetBuffer().Clear();
2584 DoWriteText(value
, flags
);
2586 // for compatibility, don't move the cursor when doing SetValue()
2587 SetInsertionPoint(0);
2591 // still send an event for consistency
2592 if (flags
& SetValue_SendEvent
)
2593 wxTextCtrl::SendTextUpdatedEvent(this);
2598 void wxRichTextCtrl::WriteText(const wxString
& value
)
2603 void wxRichTextCtrl::DoWriteText(const wxString
& value
, int flags
)
2605 wxString valueUnix
= wxTextFile::Translate(value
, wxTextFileType_Unix
);
2607 GetFocusObject()->InsertTextWithUndo(m_caretPosition
+1, valueUnix
, this, & GetBuffer(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2609 if ( flags
& SetValue_SendEvent
)
2610 wxTextCtrl::SendTextUpdatedEvent(this);
2613 void wxRichTextCtrl::AppendText(const wxString
& text
)
2615 SetInsertionPointEnd();
2620 /// Write an image at the current insertion point
2621 bool wxRichTextCtrl::WriteImage(const wxImage
& image
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2623 wxRichTextImageBlock imageBlock
;
2625 wxImage image2
= image
;
2626 if (imageBlock
.MakeImageBlock(image2
, bitmapType
))
2627 return WriteImage(imageBlock
, textAttr
);
2632 bool wxRichTextCtrl::WriteImage(const wxString
& filename
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2634 wxRichTextImageBlock imageBlock
;
2637 if (imageBlock
.MakeImageBlock(filename
, bitmapType
, image
, false))
2638 return WriteImage(imageBlock
, textAttr
);
2643 bool wxRichTextCtrl::WriteImage(const wxRichTextImageBlock
& imageBlock
, const wxRichTextAttr
& textAttr
)
2645 return GetFocusObject()->InsertImageWithUndo(m_caretPosition
+1, imageBlock
, this, & GetBuffer(), 0, textAttr
);
2648 bool wxRichTextCtrl::WriteImage(const wxBitmap
& bitmap
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2652 wxRichTextImageBlock imageBlock
;
2654 wxImage image
= bitmap
.ConvertToImage();
2655 if (image
.Ok() && imageBlock
.MakeImageBlock(image
, bitmapType
))
2656 return WriteImage(imageBlock
, textAttr
);
2662 // Write a text box at the current insertion point.
2663 wxRichTextBox
* wxRichTextCtrl::WriteTextBox(const wxRichTextAttr
& textAttr
)
2665 wxRichTextBox
* textBox
= new wxRichTextBox
;
2666 textBox
->SetAttributes(textAttr
);
2667 textBox
->SetParent(& GetBuffer()); // set parent temporarily for AddParagraph to use correct style
2668 textBox
->AddParagraph(wxEmptyString
);
2669 textBox
->SetParent(NULL
);
2671 // The object returned is the one actually inserted into the buffer,
2672 // while the original one is deleted.
2673 wxRichTextObject
* obj
= GetFocusObject()->InsertObjectWithUndo(m_caretPosition
+1, textBox
, this, & GetBuffer(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2674 wxRichTextBox
* box
= wxDynamicCast(obj
, wxRichTextBox
);
2678 // Write a table at the current insertion point, returning the table.
2679 wxRichTextTable
* wxRichTextCtrl::WriteTable(int rows
, int cols
, const wxRichTextAttr
& tableAttr
, const wxRichTextAttr
& cellAttr
)
2681 wxASSERT(rows
> 0 && cols
> 0);
2683 if (rows
<= 0 || cols
<= 0)
2686 wxRichTextTable
* table
= new wxRichTextTable
;
2687 table
->SetAttributes(tableAttr
);
2688 table
->SetParent(& GetBuffer()); // set parent temporarily for AddParagraph to use correct style
2690 table
->CreateTable(rows
, cols
);
2692 table
->SetParent(NULL
);
2695 for (j
= 0; j
< rows
; j
++)
2697 for (i
= 0; i
< cols
; i
++)
2699 table
->GetCell(j
, i
)->GetAttributes() = cellAttr
;
2703 // The object returned is the one actually inserted into the buffer,
2704 // while the original one is deleted.
2705 wxRichTextObject
* obj
= GetFocusObject()->InsertObjectWithUndo(m_caretPosition
+1, table
, this, & GetBuffer(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2706 wxRichTextTable
* tableResult
= wxDynamicCast(obj
, wxRichTextTable
);
2711 /// Insert a newline (actually paragraph) at the current insertion point.
2712 bool wxRichTextCtrl::Newline()
2714 return GetFocusObject()->InsertNewlineWithUndo(m_caretPosition
+1, this, & GetBuffer(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2717 /// Insert a line break at the current insertion point.
2718 bool wxRichTextCtrl::LineBreak()
2721 text
= wxRichTextLineBreakChar
;
2722 return GetFocusObject()->InsertTextWithUndo(m_caretPosition
+1, text
, this, & GetBuffer());
2725 // ----------------------------------------------------------------------------
2726 // Clipboard operations
2727 // ----------------------------------------------------------------------------
2729 void wxRichTextCtrl::Copy()
2733 wxRichTextRange range
= GetInternalSelectionRange();
2734 GetBuffer().CopyToClipboard(range
);
2738 void wxRichTextCtrl::Cut()
2742 wxRichTextRange range
= GetInternalSelectionRange();
2743 GetBuffer().CopyToClipboard(range
);
2745 DeleteSelectedContent();
2751 void wxRichTextCtrl::Paste()
2755 BeginBatchUndo(_("Paste"));
2757 long newPos
= m_caretPosition
;
2758 DeleteSelectedContent(& newPos
);
2760 GetBuffer().PasteFromClipboard(newPos
);
2766 void wxRichTextCtrl::DeleteSelection()
2768 if (CanDeleteSelection())
2770 DeleteSelectedContent();
2774 bool wxRichTextCtrl::HasSelection() const
2776 return (m_selection
.IsValid() && m_selection
.GetContainer() == GetFocusObject());
2779 bool wxRichTextCtrl::HasUnfocusedSelection() const
2781 return m_selection
.IsValid();
2784 bool wxRichTextCtrl::CanCopy() const
2786 // Can copy if there's a selection
2787 return HasSelection();
2790 bool wxRichTextCtrl::CanCut() const
2792 return HasSelection() && IsEditable();
2795 bool wxRichTextCtrl::CanPaste() const
2797 if ( !IsEditable() )
2800 return GetBuffer().CanPasteFromClipboard();
2803 bool wxRichTextCtrl::CanDeleteSelection() const
2805 return HasSelection() && IsEditable();
2809 // ----------------------------------------------------------------------------
2811 // ----------------------------------------------------------------------------
2813 void wxRichTextCtrl::SetContextMenu(wxMenu
* menu
)
2815 if (m_contextMenu
&& m_contextMenu
!= menu
)
2816 delete m_contextMenu
;
2817 m_contextMenu
= menu
;
2820 void wxRichTextCtrl::SetEditable(bool editable
)
2822 m_editable
= editable
;
2825 void wxRichTextCtrl::SetInsertionPoint(long pos
)
2829 m_caretPosition
= pos
- 1;
2833 SetDefaultStyleToCursorStyle();
2836 void wxRichTextCtrl::SetInsertionPointEnd()
2838 long pos
= GetLastPosition();
2839 SetInsertionPoint(pos
);
2842 long wxRichTextCtrl::GetInsertionPoint() const
2844 return m_caretPosition
+1;
2847 wxTextPos
wxRichTextCtrl::GetLastPosition() const
2849 return GetFocusObject()->GetOwnRange().GetEnd();
2852 // If the return values from and to are the same, there is no
2854 void wxRichTextCtrl::GetSelection(long* from
, long* to
) const
2856 if (m_selection
.IsValid())
2858 *from
= m_selection
.GetRange().GetStart();
2859 *to
= m_selection
.GetRange().GetEnd();
2869 bool wxRichTextCtrl::IsEditable() const
2874 // ----------------------------------------------------------------------------
2876 // ----------------------------------------------------------------------------
2878 void wxRichTextCtrl::SetSelection(long from
, long to
)
2880 // if from and to are both -1, it means (in wxWidgets) that all text should
2882 if ( (from
== -1) && (to
== -1) )
2885 to
= GetLastPosition()+1;
2894 wxRichTextSelection oldSelection
= m_selection
;
2896 m_selectionAnchor
= from
-1;
2897 m_selectionAnchorObject
= NULL
;
2898 m_selection
.Set(wxRichTextRange(from
, to
-1), GetFocusObject());
2900 m_caretPosition
= wxMax(-1, to
-1);
2902 RefreshForSelectionChange(oldSelection
, m_selection
);
2907 // ----------------------------------------------------------------------------
2909 // ----------------------------------------------------------------------------
2911 void wxRichTextCtrl::Replace(long WXUNUSED(from
), long WXUNUSED(to
),
2912 const wxString
& value
)
2914 BeginBatchUndo(_("Replace"));
2916 DeleteSelectedContent();
2918 DoWriteText(value
, SetValue_SelectionOnly
);
2923 void wxRichTextCtrl::Remove(long from
, long to
)
2927 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(from
, to
-1), this, & GetBuffer());
2934 bool wxRichTextCtrl::IsModified() const
2936 return m_buffer
.IsModified();
2939 void wxRichTextCtrl::MarkDirty()
2941 m_buffer
.Modify(true);
2944 void wxRichTextCtrl::DiscardEdits()
2946 m_caretPositionForDefaultStyle
= -2;
2947 m_buffer
.Modify(false);
2948 m_buffer
.GetCommandProcessor()->ClearCommands();
2951 int wxRichTextCtrl::GetNumberOfLines() const
2953 return GetFocusObject()->GetParagraphCount();
2956 // ----------------------------------------------------------------------------
2957 // Positions <-> coords
2958 // ----------------------------------------------------------------------------
2960 long wxRichTextCtrl::XYToPosition(long x
, long y
) const
2962 return GetFocusObject()->XYToPosition(x
, y
);
2965 bool wxRichTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
2967 return GetFocusObject()->PositionToXY(pos
, x
, y
);
2970 // ----------------------------------------------------------------------------
2972 // ----------------------------------------------------------------------------
2974 void wxRichTextCtrl::ShowPosition(long pos
)
2976 if (!IsPositionVisible(pos
))
2977 ScrollIntoView(pos
-1, WXK_DOWN
);
2980 int wxRichTextCtrl::GetLineLength(long lineNo
) const
2982 return GetFocusObject()->GetParagraphLength(lineNo
);
2985 wxString
wxRichTextCtrl::GetLineText(long lineNo
) const
2987 return GetFocusObject()->GetParagraphText(lineNo
);
2990 // ----------------------------------------------------------------------------
2992 // ----------------------------------------------------------------------------
2994 void wxRichTextCtrl::Undo()
2998 GetCommandProcessor()->Undo();
3002 void wxRichTextCtrl::Redo()
3006 GetCommandProcessor()->Redo();
3010 bool wxRichTextCtrl::CanUndo() const
3012 return GetCommandProcessor()->CanUndo();
3015 bool wxRichTextCtrl::CanRedo() const
3017 return GetCommandProcessor()->CanRedo();
3020 // ----------------------------------------------------------------------------
3021 // implementation details
3022 // ----------------------------------------------------------------------------
3024 void wxRichTextCtrl::Command(wxCommandEvent
& event
)
3026 SetValue(event
.GetString());
3027 GetEventHandler()->ProcessEvent(event
);
3030 void wxRichTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
3032 // By default, load the first file into the text window.
3033 if (event
.GetNumberOfFiles() > 0)
3035 LoadFile(event
.GetFiles()[0]);
3039 wxSize
wxRichTextCtrl::DoGetBestSize() const
3041 return wxSize(10, 10);
3044 // ----------------------------------------------------------------------------
3045 // standard handlers for standard edit menu events
3046 // ----------------------------------------------------------------------------
3048 void wxRichTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
3053 void wxRichTextCtrl::OnClear(wxCommandEvent
& WXUNUSED(event
))
3058 void wxRichTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
3063 void wxRichTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
3068 void wxRichTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
3073 void wxRichTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
3078 void wxRichTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
3080 event
.Enable( CanCut() );
3083 void wxRichTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
3085 event
.Enable( CanCopy() );
3088 void wxRichTextCtrl::OnUpdateClear(wxUpdateUIEvent
& event
)
3090 event
.Enable( CanDeleteSelection() );
3093 void wxRichTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
3095 event
.Enable( CanPaste() );
3098 void wxRichTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
3100 event
.Enable( CanUndo() );
3101 event
.SetText( GetCommandProcessor()->GetUndoMenuLabel() );
3104 void wxRichTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
3106 event
.Enable( CanRedo() );
3107 event
.SetText( GetCommandProcessor()->GetRedoMenuLabel() );
3110 void wxRichTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
3112 if (GetLastPosition() > 0)
3116 void wxRichTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
3118 event
.Enable(GetLastPosition() > 0);
3121 void wxRichTextCtrl::OnProperties(wxCommandEvent
& event
)
3123 int idx
= event
.GetId() - wxID_RICHTEXT_PROPERTIES1
;
3124 if (idx
>= 0 && idx
< m_contextMenuPropertiesInfo
.GetCount())
3126 wxRichTextObject
* obj
= m_contextMenuPropertiesInfo
.GetObject(idx
);
3127 if (obj
&& obj
->CanEditProperties())
3128 obj
->EditProperties(this, & GetBuffer());
3130 m_contextMenuPropertiesInfo
.Clear();
3134 void wxRichTextCtrl::OnUpdateProperties(wxUpdateUIEvent
& event
)
3136 int idx
= event
.GetId() - wxID_RICHTEXT_PROPERTIES1
;
3137 event
.Enable(idx
>= 0 && idx
< m_contextMenuPropertiesInfo
.GetCount());
3140 void wxRichTextCtrl::OnContextMenu(wxContextMenuEvent
& event
)
3142 if (event
.GetEventObject() != this)
3148 wxClientDC
dc(this);
3150 dc
.SetFont(GetFont());
3153 wxPoint pt
= event
.GetPosition();
3154 wxPoint logicalPt
= GetLogicalPoint(ScreenToClient(pt
));
3155 wxRichTextObject
* hitObj
= NULL
;
3156 wxRichTextObject
* contextObj
= NULL
;
3157 int hit
= GetFocusObject()->HitTest(dc
, logicalPt
, position
, & hitObj
, & contextObj
);
3159 m_contextMenuPropertiesInfo
.Clear();
3161 if (hit
== wxRICHTEXT_HITTEST_ON
|| hit
== wxRICHTEXT_HITTEST_BEFORE
|| hit
== wxRICHTEXT_HITTEST_AFTER
)
3163 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
3164 if (hitObj
&& actualContainer
)
3166 if (actualContainer
->AcceptsFocus())
3168 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
3169 SetCaretPositionAfterClick(actualContainer
, position
, hit
);
3172 m_contextMenuPropertiesInfo
.AddItems(actualContainer
, hitObj
);
3175 m_contextMenuPropertiesInfo
.AddItems(GetFocusObject(), NULL
);
3179 m_contextMenuPropertiesInfo
.AddItems(GetFocusObject(), NULL
);
3184 m_contextMenuPropertiesInfo
.AddMenuItems(m_contextMenu
);
3185 PopupMenu(m_contextMenu
);
3189 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
3191 return GetFocusObject()->SetStyle(wxRichTextRange(start
, end
-1), wxRichTextAttr(style
));
3194 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxRichTextAttr
& style
)
3196 return GetFocusObject()->SetStyle(wxRichTextRange(start
, end
-1), style
);
3199 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
)
3201 return GetFocusObject()->SetStyle(range
.ToInternal(), wxRichTextAttr(style
));
3204 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
)
3206 return GetFocusObject()->SetStyle(range
.ToInternal(), style
);
3209 void wxRichTextCtrl::SetStyle(wxRichTextObject
*obj
, const wxRichTextAttr
& textAttr
)
3211 GetFocusObject()->SetStyle(obj
, textAttr
);
3214 // extended style setting operation with flags including:
3215 // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY.
3216 // see richtextbuffer.h for more details.
3218 bool wxRichTextCtrl::SetStyleEx(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
)
3220 return GetFocusObject()->SetStyle(range
.ToInternal(), style
, flags
);
3223 bool wxRichTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
3225 return GetBuffer().SetDefaultStyle(style
);
3228 bool wxRichTextCtrl::SetDefaultStyle(const wxRichTextAttr
& style
)
3230 wxRichTextAttr
attr1(style
);
3231 attr1
.GetTextBoxAttr().Reset();
3232 return GetBuffer().SetDefaultStyle(attr1
);
3235 const wxRichTextAttr
& wxRichTextCtrl::GetDefaultStyleEx() const
3237 return GetBuffer().GetDefaultStyle();
3240 bool wxRichTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
3242 wxRichTextAttr attr
;
3243 if (GetFocusObject()->GetStyle(position
, attr
))
3252 bool wxRichTextCtrl::GetStyle(long position
, wxRichTextAttr
& style
)
3254 return GetFocusObject()->GetStyle(position
, style
);
3257 bool wxRichTextCtrl::GetStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3259 wxRichTextAttr attr
;
3260 if (container
->GetStyle(position
, attr
))
3269 // get the common set of styles for the range
3270 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
)
3272 wxRichTextAttr attr
;
3273 if (GetFocusObject()->GetStyleForRange(range
.ToInternal(), attr
))
3282 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
)
3284 return GetFocusObject()->GetStyleForRange(range
.ToInternal(), style
);
3287 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3289 return container
->GetStyleForRange(range
.ToInternal(), style
);
3292 /// Get the content (uncombined) attributes for this position.
3293 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxRichTextAttr
& style
)
3295 return GetFocusObject()->GetUncombinedStyle(position
, style
);
3298 /// Get the content (uncombined) attributes for this position.
3299 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3301 return container
->GetUncombinedStyle(position
, style
);
3304 /// Set font, and also the buffer attributes
3305 bool wxRichTextCtrl::SetFont(const wxFont
& font
)
3307 wxControl::SetFont(font
);
3309 wxRichTextAttr attr
= GetBuffer().GetAttributes();
3311 GetBuffer().SetBasicStyle(attr
);
3313 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
3319 /// Transform logical to physical
3320 wxPoint
wxRichTextCtrl::GetPhysicalPoint(const wxPoint
& ptLogical
) const
3323 CalcScrolledPosition(ptLogical
.x
, ptLogical
.y
, & pt
.x
, & pt
.y
);
3328 /// Transform physical to logical
3329 wxPoint
wxRichTextCtrl::GetLogicalPoint(const wxPoint
& ptPhysical
) const
3332 CalcUnscrolledPosition(ptPhysical
.x
, ptPhysical
.y
, & pt
.x
, & pt
.y
);
3337 /// Position the caret
3338 void wxRichTextCtrl::PositionCaret(wxRichTextParagraphLayoutBox
* container
)
3343 //wxLogDebug(wxT("PositionCaret"));
3346 if (GetCaretPositionForIndex(GetCaretPosition(), caretRect
, container
))
3348 wxPoint newPt
= caretRect
.GetPosition();
3349 wxSize newSz
= caretRect
.GetSize();
3350 wxPoint pt
= GetPhysicalPoint(newPt
);
3351 if (GetCaret()->GetPosition() != pt
|| GetCaret()->GetSize() != newSz
)
3354 if (GetCaret()->GetSize() != newSz
)
3355 GetCaret()->SetSize(newSz
);
3357 int halfSize
= newSz
.y
/2;
3358 // If the caret is beyond the margin, hide it by moving it out of the way
3359 if (((pt
.y
+ halfSize
) < GetBuffer().GetTopMargin()) || ((pt
.y
+ halfSize
) > (GetClientSize().y
- GetBuffer().GetBottomMargin())))
3365 GetCaret()->Move(pt
);
3371 /// Get the caret height and position for the given character position
3372 bool wxRichTextCtrl::GetCaretPositionForIndex(long position
, wxRect
& rect
, wxRichTextParagraphLayoutBox
* container
)
3374 wxClientDC
dc(this);
3375 dc
.SetFont(GetFont());
3383 container
= GetFocusObject();
3385 if (container
->FindPosition(dc
, position
, pt
, & height
, m_caretAtLineStart
))
3387 // Caret height can't be zero
3389 height
= dc
.GetCharHeight();
3391 rect
= wxRect(pt
, wxSize(wxRICHTEXT_DEFAULT_CARET_WIDTH
, height
));
3398 /// Gets the line for the visible caret position. If the caret is
3399 /// shown at the very end of the line, it means the next character is actually
3400 /// on the following line. So let's get the line we're expecting to find
3401 /// if this is the case.
3402 wxRichTextLine
* wxRichTextCtrl::GetVisibleLineForCaretPosition(long caretPosition
) const
3404 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(caretPosition
, true);
3405 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(caretPosition
, true);
3408 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3409 if (caretPosition
== lineRange
.GetStart()-1 &&
3410 (para
->GetRange().GetStart() != lineRange
.GetStart()))
3412 if (!m_caretAtLineStart
)
3413 line
= GetFocusObject()->GetLineAtPosition(caretPosition
-1, true);
3420 /// Move the caret to the given character position
3421 bool wxRichTextCtrl::MoveCaret(long pos
, bool showAtLineStart
, wxRichTextParagraphLayoutBox
* container
)
3423 if (GetBuffer().IsDirty())
3427 container
= GetFocusObject();
3429 if (pos
<= container
->GetOwnRange().GetEnd())
3431 SetCaretPosition(pos
, showAtLineStart
);
3433 PositionCaret(container
);
3441 /// Layout the buffer: which we must do before certain operations, such as
3442 /// setting the caret position.
3443 bool wxRichTextCtrl::LayoutContent(bool onlyVisibleRect
)
3445 if (GetBuffer().IsDirty() || onlyVisibleRect
)
3447 wxRect
availableSpace(GetClientSize());
3448 if (availableSpace
.width
== 0)
3449 availableSpace
.width
= 10;
3450 if (availableSpace
.height
== 0)
3451 availableSpace
.height
= 10;
3453 int flags
= wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
;
3454 if (onlyVisibleRect
)
3456 flags
|= wxRICHTEXT_LAYOUT_SPECIFIED_RECT
;
3457 availableSpace
.SetPosition(GetLogicalPoint(wxPoint(0, 0)));
3460 wxClientDC
dc(this);
3461 dc
.SetFont(GetFont());
3465 GetBuffer().Defragment();
3466 GetBuffer().UpdateRanges(); // If items were deleted, ranges need recalculation
3467 GetBuffer().Layout(dc
, availableSpace
, flags
);
3468 GetBuffer().Invalidate(wxRICHTEXT_NONE
);
3477 /// Is all of the selection bold?
3478 bool wxRichTextCtrl::IsSelectionBold()
3482 wxRichTextAttr attr
;
3483 wxRichTextRange range
= GetSelectionRange();
3484 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3485 attr
.SetFontWeight(wxFONTWEIGHT_BOLD
);
3487 return HasCharacterAttributes(range
, attr
);
3491 // If no selection, then we need to combine current style with default style
3492 // to see what the effect would be if we started typing.
3493 wxRichTextAttr attr
;
3494 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3496 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3497 if (GetStyle(pos
, attr
))
3499 if (IsDefaultStyleShowing())
3500 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3501 return attr
.GetFontWeight() == wxFONTWEIGHT_BOLD
;
3507 /// Is all of the selection italics?
3508 bool wxRichTextCtrl::IsSelectionItalics()
3512 wxRichTextRange range
= GetSelectionRange();
3513 wxRichTextAttr attr
;
3514 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3515 attr
.SetFontStyle(wxFONTSTYLE_ITALIC
);
3517 return HasCharacterAttributes(range
, attr
);
3521 // If no selection, then we need to combine current style with default style
3522 // to see what the effect would be if we started typing.
3523 wxRichTextAttr attr
;
3524 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3526 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3527 if (GetStyle(pos
, attr
))
3529 if (IsDefaultStyleShowing())
3530 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3531 return attr
.GetFontStyle() == wxFONTSTYLE_ITALIC
;
3537 /// Is all of the selection underlined?
3538 bool wxRichTextCtrl::IsSelectionUnderlined()
3542 wxRichTextRange range
= GetSelectionRange();
3543 wxRichTextAttr attr
;
3544 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3545 attr
.SetFontUnderlined(true);
3547 return HasCharacterAttributes(range
, attr
);
3551 // If no selection, then we need to combine current style with default style
3552 // to see what the effect would be if we started typing.
3553 wxRichTextAttr attr
;
3554 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3555 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3557 if (GetStyle(pos
, attr
))
3559 if (IsDefaultStyleShowing())
3560 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3561 return attr
.GetFontUnderlined();
3567 /// Apply bold to the selection
3568 bool wxRichTextCtrl::ApplyBoldToSelection()
3570 wxRichTextAttr attr
;
3571 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3572 attr
.SetFontWeight(IsSelectionBold() ? wxFONTWEIGHT_NORMAL
: wxFONTWEIGHT_BOLD
);
3575 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3578 wxRichTextAttr current
= GetDefaultStyleEx();
3579 current
.Apply(attr
);
3580 SetAndShowDefaultStyle(current
);
3585 /// Apply italic to the selection
3586 bool wxRichTextCtrl::ApplyItalicToSelection()
3588 wxRichTextAttr attr
;
3589 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3590 attr
.SetFontStyle(IsSelectionItalics() ? wxFONTSTYLE_NORMAL
: wxFONTSTYLE_ITALIC
);
3593 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3596 wxRichTextAttr current
= GetDefaultStyleEx();
3597 current
.Apply(attr
);
3598 SetAndShowDefaultStyle(current
);
3603 /// Apply underline to the selection
3604 bool wxRichTextCtrl::ApplyUnderlineToSelection()
3606 wxRichTextAttr attr
;
3607 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3608 attr
.SetFontUnderlined(!IsSelectionUnderlined());
3611 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3614 wxRichTextAttr current
= GetDefaultStyleEx();
3615 current
.Apply(attr
);
3616 SetAndShowDefaultStyle(current
);
3621 /// Is all of the selection aligned according to the specified flag?
3622 bool wxRichTextCtrl::IsSelectionAligned(wxTextAttrAlignment alignment
)
3624 wxRichTextRange range
;
3626 range
= GetSelectionRange();
3628 range
= wxRichTextRange(GetCaretPosition()+1, GetCaretPosition()+2);
3630 wxRichTextAttr attr
;
3631 attr
.SetAlignment(alignment
);
3633 return HasParagraphAttributes(range
, attr
);
3636 /// Apply alignment to the selection
3637 bool wxRichTextCtrl::ApplyAlignmentToSelection(wxTextAttrAlignment alignment
)
3639 wxRichTextAttr attr
;
3640 attr
.SetAlignment(alignment
);
3642 return SetStyle(GetSelectionRange(), attr
);
3645 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(GetCaretPosition()+1);
3647 return SetStyleEx(para
->GetRange().FromInternal(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
);
3652 /// Apply a named style to the selection
3653 bool wxRichTextCtrl::ApplyStyle(wxRichTextStyleDefinition
* def
)
3655 // Flags are defined within each definition, so only certain
3656 // attributes are applied.
3657 wxRichTextAttr
attr(GetStyleSheet() ? def
->GetStyleMergedWithBase(GetStyleSheet()) : def
->GetStyle());
3659 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_RESET
;
3661 if (def
->IsKindOf(CLASSINFO(wxRichTextListStyleDefinition
)))
3663 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
3665 wxRichTextRange range
;
3668 range
= GetSelectionRange();
3671 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3672 range
= wxRichTextRange(pos
, pos
+1);
3675 return SetListStyle(range
, (wxRichTextListStyleDefinition
*) def
, flags
);
3678 bool isPara
= false;
3680 // Make sure the attr has the style name
3681 if (def
->IsKindOf(CLASSINFO(wxRichTextParagraphStyleDefinition
)))
3684 attr
.SetParagraphStyleName(def
->GetName());
3686 // If applying a paragraph style, we only want the paragraph nodes to adopt these
3687 // attributes, and not the leaf nodes. This will allow the content (e.g. text)
3688 // to change its style independently.
3689 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
3692 attr
.SetCharacterStyleName(def
->GetName());
3695 return SetStyleEx(GetSelectionRange(), attr
, flags
);
3698 wxRichTextAttr current
= GetDefaultStyleEx();
3699 wxRichTextAttr
defaultStyle(attr
);
3702 // Don't apply extra character styles since they are already implied
3703 // in the paragraph style
3704 defaultStyle
.SetFlags(defaultStyle
.GetFlags() & ~wxTEXT_ATTR_CHARACTER
);
3706 current
.Apply(defaultStyle
);
3707 SetAndShowDefaultStyle(current
);
3709 // If it's a paragraph style, we want to apply the style to the
3710 // current paragraph even if we didn't select any text.
3713 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3714 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
);
3717 return SetStyleEx(para
->GetRange().FromInternal(), attr
, flags
);
3724 /// Apply the style sheet to the buffer, for example if the styles have changed.
3725 bool wxRichTextCtrl::ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
)
3728 styleSheet
= GetBuffer().GetStyleSheet();
3732 if (GetBuffer().ApplyStyleSheet(styleSheet
))
3734 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
3742 /// Sets the default style to the style under the cursor
3743 bool wxRichTextCtrl::SetDefaultStyleToCursorStyle()
3745 wxRichTextAttr attr
;
3746 attr
.SetFlags(wxTEXT_ATTR_CHARACTER
);
3748 // If at the start of a paragraph, use the next position.
3749 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3751 if (GetUncombinedStyle(pos
, attr
))
3753 SetDefaultStyle(attr
);
3760 /// Returns the first visible position in the current view
3761 long wxRichTextCtrl::GetFirstVisiblePosition() const
3763 wxRichTextLine
* line
= GetFocusObject()->GetLineAtYPosition(GetLogicalPoint(wxPoint(0, 0)).y
);
3765 return line
->GetAbsoluteRange().GetStart();
3770 /// Get the first visible point in the window
3771 wxPoint
wxRichTextCtrl::GetFirstVisiblePoint() const
3774 int startXUnits
, startYUnits
;
3776 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
3777 GetViewStart(& startXUnits
, & startYUnits
);
3779 return wxPoint(startXUnits
* ppuX
, startYUnits
* ppuY
);
3782 /// The adjusted caret position is the character position adjusted to take
3783 /// into account whether we're at the start of a paragraph, in which case
3784 /// style information should be taken from the next position, not current one.
3785 long wxRichTextCtrl::GetAdjustedCaretPosition(long caretPos
) const
3787 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(caretPos
+1);
3789 if (para
&& (caretPos
+1 == para
->GetRange().GetStart()))
3794 /// Get/set the selection range in character positions. -1, -1 means no selection.
3795 /// The range is in API convention, i.e. a single character selection is denoted
3797 wxRichTextRange
wxRichTextCtrl::GetSelectionRange() const
3799 wxRichTextRange range
= GetInternalSelectionRange();
3800 if (range
!= wxRichTextRange(-2,-2) && range
!= wxRichTextRange(-1,-1))
3801 range
.SetEnd(range
.GetEnd() + 1);
3805 void wxRichTextCtrl::SetSelectionRange(const wxRichTextRange
& range
)
3807 SetSelection(range
.GetStart(), range
.GetEnd());
3811 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
3813 return GetFocusObject()->SetListStyle(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
3816 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
3818 return GetFocusObject()->SetListStyle(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
3821 /// Clear list for given range
3822 bool wxRichTextCtrl::ClearListStyle(const wxRichTextRange
& range
, int flags
)
3824 return GetFocusObject()->ClearListStyle(range
.ToInternal(), flags
);
3827 /// Number/renumber any list elements in the given range
3828 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
3830 return GetFocusObject()->NumberList(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
3833 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
3835 return GetFocusObject()->NumberList(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
3838 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
3839 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int specifiedLevel
)
3841 return GetFocusObject()->PromoteList(promoteBy
, range
.ToInternal(), def
, flags
, specifiedLevel
);
3844 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int specifiedLevel
)
3846 return GetFocusObject()->PromoteList(promoteBy
, range
.ToInternal(), defName
, flags
, specifiedLevel
);
3849 /// Deletes the content in the given range
3850 bool wxRichTextCtrl::Delete(const wxRichTextRange
& range
)
3852 return GetFocusObject()->DeleteRangeWithUndo(range
.ToInternal(), this, & GetBuffer());
3855 const wxArrayString
& wxRichTextCtrl::GetAvailableFontNames()
3857 if (sm_availableFontNames
.GetCount() == 0)
3859 sm_availableFontNames
= wxFontEnumerator::GetFacenames();
3860 sm_availableFontNames
.Sort();
3862 return sm_availableFontNames
;
3865 void wxRichTextCtrl::ClearAvailableFontNames()
3867 sm_availableFontNames
.Clear();
3870 void wxRichTextCtrl::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
3872 //wxLogDebug(wxT("wxRichTextCtrl::OnSysColourChanged"));
3874 wxTextAttrEx basicStyle
= GetBasicStyle();
3875 basicStyle
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
3876 SetBasicStyle(basicStyle
);
3877 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
3882 // Refresh the area affected by a selection change
3883 bool wxRichTextCtrl::RefreshForSelectionChange(const wxRichTextSelection
& oldSelection
, const wxRichTextSelection
& newSelection
)
3885 // If the selection is not part of the focus object, or we have multiple ranges, then the chances are that
3886 // the selection contains whole containers rather than just text, so refresh everything
3887 // for now as it would be hard to compute the rectangle bounding all selections.
3888 // TODO: improve on this.
3889 if ((oldSelection
.IsValid() && (oldSelection
.GetContainer() != GetFocusObject() || oldSelection
.GetCount() > 1)) ||
3890 (newSelection
.IsValid() && (newSelection
.GetContainer() != GetFocusObject() || newSelection
.GetCount() > 1)))
3896 wxRichTextRange oldRange
, newRange
;
3897 if (oldSelection
.IsValid())
3898 oldRange
= oldSelection
.GetRange();
3900 oldRange
= wxRICHTEXT_NO_SELECTION
;
3901 if (newSelection
.IsValid())
3902 newRange
= newSelection
.GetRange();
3904 newRange
= wxRICHTEXT_NO_SELECTION
;
3906 // Calculate the refresh rectangle - just the affected lines
3907 long firstPos
, lastPos
;
3908 if (oldRange
.GetStart() == -2 && newRange
.GetStart() != -2)
3910 firstPos
= newRange
.GetStart();
3911 lastPos
= newRange
.GetEnd();
3913 else if (oldRange
.GetStart() != -2 && newRange
.GetStart() == -2)
3915 firstPos
= oldRange
.GetStart();
3916 lastPos
= oldRange
.GetEnd();
3918 else if (oldRange
.GetStart() == -2 && newRange
.GetStart() == -2)
3924 firstPos
= wxMin(oldRange
.GetStart(), newRange
.GetStart());
3925 lastPos
= wxMax(oldRange
.GetEnd(), newRange
.GetEnd());
3928 wxRichTextLine
* firstLine
= GetFocusObject()->GetLineAtPosition(firstPos
);
3929 wxRichTextLine
* lastLine
= GetFocusObject()->GetLineAtPosition(lastPos
);
3931 if (firstLine
&& lastLine
)
3933 wxSize clientSize
= GetClientSize();
3934 wxPoint pt1
= GetPhysicalPoint(firstLine
->GetAbsolutePosition());
3935 wxPoint pt2
= GetPhysicalPoint(lastLine
->GetAbsolutePosition()) + wxPoint(0, lastLine
->GetSize().y
);
3938 pt1
.y
= wxMax(0, pt1
.y
);
3940 pt2
.y
= wxMin(clientSize
.y
, pt2
.y
);
3942 wxRect
rect(pt1
, wxSize(clientSize
.x
, pt2
.y
- pt1
.y
));
3943 RefreshRect(rect
, false);
3951 // margins functions
3952 bool wxRichTextCtrl::DoSetMargins(const wxPoint
& pt
)
3954 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetLeft().SetValue(pt
.x
, wxTEXT_ATTR_UNITS_PIXELS
);
3955 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetRight().SetValue(pt
.x
, wxTEXT_ATTR_UNITS_PIXELS
);
3956 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetTop().SetValue(pt
.y
, wxTEXT_ATTR_UNITS_PIXELS
);
3957 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetBottom().SetValue(pt
.y
, wxTEXT_ATTR_UNITS_PIXELS
);
3962 wxPoint
wxRichTextCtrl::DoGetMargins() const
3964 return wxPoint(GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetLeft().GetValue(),
3965 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetTop().GetValue());
3968 bool wxRichTextCtrl::SetFocusObject(wxRichTextParagraphLayoutBox
* obj
, bool setCaretPosition
)
3970 if (obj
&& !obj
->AcceptsFocus())
3973 wxRichTextParagraphLayoutBox
* oldContainer
= GetFocusObject();
3974 bool changingContainer
= (m_focusObject
!= obj
);
3976 m_focusObject
= obj
;
3979 m_focusObject
= & m_buffer
;
3981 if (setCaretPosition
&& changingContainer
)
3983 m_selection
.Reset();
3984 m_selectionAnchor
= -2;
3985 m_selectionAnchorObject
= NULL
;
3986 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
3990 m_caretAtLineStart
= false;
3991 MoveCaret(pos
, m_caretAtLineStart
);
3992 SetDefaultStyleToCursorStyle();
3994 wxRichTextEvent
cmdEvent(
3995 wxEVT_COMMAND_RICHTEXT_FOCUS_OBJECT_CHANGED
,
3997 cmdEvent
.SetEventObject(this);
3998 cmdEvent
.SetPosition(m_caretPosition
+1);
3999 cmdEvent
.SetOldContainer(oldContainer
);
4000 cmdEvent
.SetContainer(m_focusObject
);
4002 GetEventHandler()->ProcessEvent(cmdEvent
);
4007 #if wxRICHTEXT_USE_OWN_CARET
4009 // ----------------------------------------------------------------------------
4010 // initialization and destruction
4011 // ----------------------------------------------------------------------------
4013 void wxRichTextCaret::Init()
4019 m_richTextCtrl
= NULL
;
4020 m_needsUpdate
= false;
4024 wxRichTextCaret::~wxRichTextCaret()
4026 if (m_timer
.IsRunning())
4030 // ----------------------------------------------------------------------------
4031 // showing/hiding/moving the caret (base class interface)
4032 // ----------------------------------------------------------------------------
4034 void wxRichTextCaret::DoShow()
4038 if (!m_timer
.IsRunning())
4039 m_timer
.Start(GetBlinkTime());
4044 void wxRichTextCaret::DoHide()
4046 if (m_timer
.IsRunning())
4052 void wxRichTextCaret::DoMove()
4058 if (m_xOld
!= -1 && m_yOld
!= -1)
4062 wxRect
rect(GetPosition(), GetSize());
4063 m_richTextCtrl
->RefreshRect(rect
, false);
4072 void wxRichTextCaret::DoSize()
4074 int countVisible
= m_countVisible
;
4075 if (countVisible
> 0)
4081 if (countVisible
> 0)
4083 m_countVisible
= countVisible
;
4088 // ----------------------------------------------------------------------------
4089 // handling the focus
4090 // ----------------------------------------------------------------------------
4092 void wxRichTextCaret::OnSetFocus()
4100 void wxRichTextCaret::OnKillFocus()
4105 // ----------------------------------------------------------------------------
4106 // drawing the caret
4107 // ----------------------------------------------------------------------------
4109 void wxRichTextCaret::Refresh()
4113 wxRect
rect(GetPosition(), GetSize());
4114 m_richTextCtrl
->RefreshRect(rect
, false);
4118 void wxRichTextCaret::DoDraw(wxDC
*dc
)
4120 dc
->SetPen( *wxBLACK_PEN
);
4122 dc
->SetBrush(*(m_hasFocus
? wxBLACK_BRUSH
: wxTRANSPARENT_BRUSH
));
4123 dc
->SetPen(*wxBLACK_PEN
);
4125 wxPoint
pt(m_x
, m_y
);
4129 pt
= m_richTextCtrl
->GetLogicalPoint(pt
);
4131 if (IsVisible() && m_flashOn
)
4132 dc
->DrawRectangle(pt
.x
, pt
.y
, m_width
, m_height
);
4135 void wxRichTextCaret::Notify()
4137 m_flashOn
= !m_flashOn
;
4141 void wxRichTextCaretTimer::Notify()
4146 // wxRICHTEXT_USE_OWN_CARET
4149 bool wxRichTextContextMenuPropertiesInfo::AddItem(const wxString
& label
, wxRichTextObject
* obj
)
4153 m_labels
.Add(label
);
4161 // Returns number of menu items were added.
4162 int wxRichTextContextMenuPropertiesInfo::AddMenuItems(wxMenu
* menu
, int startCmd
) const
4164 wxMenuItem
* item
= menu
->FindItem(startCmd
);
4165 // If none of the standard properties identifiers are in the menu, assume it's
4166 // a custom menu without properties commands, and don't add them.
4169 // If no items, to add just set the text to something generic
4170 if (GetCount() == 0)
4172 menu
->SetLabel(startCmd
, _("&Properties"));
4174 // Delete the others if necessary
4176 for (i
= startCmd
+1; i
< startCmd
+3; i
++)
4178 if (menu
->FindItem(i
))
4188 // Find the position of the first properties item
4189 for (i
= 0; i
< (int) menu
->GetMenuItemCount(); i
++)
4191 wxMenuItem
* item
= menu
->FindItemByPosition(i
);
4192 if (item
&& item
->GetId() == startCmd
)
4201 int insertBefore
= pos
+1;
4202 for (i
= startCmd
; i
< startCmd
+GetCount(); i
++)
4204 if (menu
->FindItem(i
))
4206 menu
->SetLabel(i
, m_labels
[i
- startCmd
]);
4210 if (insertBefore
>= (int) menu
->GetMenuItemCount())
4211 menu
->Append(i
, m_labels
[i
- startCmd
]);
4213 menu
->Insert(insertBefore
, i
, m_labels
[i
- startCmd
]);
4218 // Delete any old items still left on the menu
4219 for (i
= startCmd
+ GetCount(); i
< startCmd
+3; i
++)
4221 if (menu
->FindItem(i
))
4233 // Add appropriate menu items for the current container and clicked on object
4234 // (and container's parent, if appropriate).
4235 int wxRichTextContextMenuPropertiesInfo::AddItems(wxRichTextObject
* container
, wxRichTextObject
* obj
)
4238 if (obj
&& obj
->CanEditProperties())
4239 AddItem(obj
->GetPropertiesMenuLabel(), obj
);
4241 if (container
&& container
!= obj
&& container
->CanEditProperties() && m_labels
.Index(container
->GetPropertiesMenuLabel()) == wxNOT_FOUND
)
4242 AddItem(container
->GetPropertiesMenuLabel(), container
);
4244 if (container
&& container
->GetParent() && container
->GetParent()->CanEditProperties() && m_labels
.Index(container
->GetParent()->GetPropertiesMenuLabel()) == wxNOT_FOUND
)
4245 AddItem(container
->GetParent()->GetPropertiesMenuLabel(), container
->GetParent());