1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/richtext/richtextctrl.cpp
3 // Purpose: A rich edit control
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/richtext/richtextctrl.h"
22 #include "wx/richtext/richtextstyles.h"
26 #include "wx/settings.h"
30 #include "wx/textfile.h"
32 #include "wx/filename.h"
33 #include "wx/dcbuffer.h"
34 #include "wx/arrimpl.cpp"
35 #include "wx/fontenum.h"
38 // 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 cmdEvent
.SetPosition(m_caretPosition
);
1225 GetEventHandler()->ProcessEvent(cmdEvent
);
1233 /// Delete content if there is a selection, e.g. when pressing a key.
1234 bool wxRichTextCtrl::DeleteSelectedContent(long* newPos
)
1238 long pos
= m_selection
.GetRange().GetStart();
1239 wxRichTextRange range
= m_selection
.GetRange();
1241 // SelectAll causes more to be selected than doing it interactively,
1242 // and causes a new paragraph to be inserted. So for multiline buffers,
1243 // don't delete the final position.
1244 if (range
.GetEnd() == GetLastPosition() && GetNumberOfLines() > 0)
1245 range
.SetEnd(range
.GetEnd()-1);
1247 GetFocusObject()->DeleteRangeWithUndo(range
, this, & GetBuffer());
1248 m_selection
.Reset();
1249 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
1259 /// Keyboard navigation
1263 Left: left one character
1264 Right: right one character
1267 Ctrl-Left: left one word
1268 Ctrl-Right: right one word
1269 Ctrl-Up: previous paragraph start
1270 Ctrl-Down: next start of paragraph
1273 Ctrl-Home: start of document
1274 Ctrl-End: end of document
1275 Page-Up: Up a screen
1276 Page-Down: Down a screen
1280 Ctrl-Alt-PgUp: Start of window
1281 Ctrl-Alt-PgDn: End of window
1282 F8: Start selection mode
1283 Esc: End selection mode
1285 Adding Shift does the above but starts/extends selection.
1290 bool wxRichTextCtrl::KeyboardNavigate(int keyCode
, int flags
)
1292 bool success
= false;
1294 if (keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
)
1296 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1297 success
= WordRight(1, flags
);
1299 success
= MoveRight(1, flags
);
1301 else if (keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
)
1303 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1304 success
= WordLeft(1, flags
);
1306 success
= MoveLeft(1, flags
);
1308 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
)
1310 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1311 success
= MoveToParagraphStart(flags
);
1313 success
= MoveUp(1, flags
);
1315 else if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
)
1317 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1318 success
= MoveToParagraphEnd(flags
);
1320 success
= MoveDown(1, flags
);
1322 else if (keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1324 success
= PageUp(1, flags
);
1326 else if (keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1328 success
= PageDown(1, flags
);
1330 else if (keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
)
1332 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1333 success
= MoveHome(flags
);
1335 success
= MoveToLineStart(flags
);
1337 else if (keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
)
1339 if (flags
& wxRICHTEXT_CTRL_DOWN
)
1340 success
= MoveEnd(flags
);
1342 success
= MoveToLineEnd(flags
);
1347 ScrollIntoView(m_caretPosition
, keyCode
);
1348 SetDefaultStyleToCursorStyle();
1354 /// Extend the selection. Selections are in caret positions.
1355 bool wxRichTextCtrl::ExtendSelection(long oldPos
, long newPos
, int flags
)
1357 if (flags
& wxRICHTEXT_SHIFT_DOWN
)
1359 if (oldPos
== newPos
)
1362 wxRichTextSelection oldSelection
= m_selection
;
1364 m_selection
.SetContainer(GetFocusObject());
1366 wxRichTextRange oldRange
;
1367 if (m_selection
.IsValid())
1368 oldRange
= m_selection
.GetRange();
1370 oldRange
= wxRICHTEXT_NO_SELECTION
;
1371 wxRichTextRange newRange
;
1373 // If not currently selecting, start selecting
1374 if (oldRange
.GetStart() == -2)
1376 m_selectionAnchor
= oldPos
;
1378 if (oldPos
> newPos
)
1379 newRange
.SetRange(newPos
+1, oldPos
);
1381 newRange
.SetRange(oldPos
+1, newPos
);
1385 // Always ensure that the selection range start is greater than
1387 if (newPos
> m_selectionAnchor
)
1388 newRange
.SetRange(m_selectionAnchor
+1, newPos
);
1389 else if (newPos
== m_selectionAnchor
)
1390 newRange
= wxRichTextRange(-2, -2);
1392 newRange
.SetRange(newPos
+1, m_selectionAnchor
);
1395 m_selection
.SetRange(newRange
);
1397 RefreshForSelectionChange(oldSelection
, m_selection
);
1399 if (newRange
.GetStart() > newRange
.GetEnd())
1401 wxLogDebug(wxT("Strange selection range"));
1410 /// Scroll into view, returning true if we scrolled.
1411 /// This takes a _caret_ position.
1412 bool wxRichTextCtrl::ScrollIntoView(long position
, int keyCode
)
1414 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(position
);
1420 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1422 int startXUnits
, startYUnits
;
1423 GetViewStart(& startXUnits
, & startYUnits
);
1424 int startY
= startYUnits
* ppuY
;
1427 GetVirtualSize(& sx
, & sy
);
1433 wxRect rect
= line
->GetRect();
1435 bool scrolled
= false;
1437 wxSize clientSize
= GetClientSize();
1439 int leftMargin
, rightMargin
, topMargin
, bottomMargin
;
1442 wxClientDC
dc(this);
1443 wxRichTextObject::GetTotalMargin(dc
, & GetBuffer(), GetBuffer().GetAttributes(), leftMargin
, rightMargin
,
1444 topMargin
, bottomMargin
);
1446 // clientSize.y -= GetBuffer().GetBottomMargin();
1447 clientSize
.y
-= bottomMargin
;
1449 if (GetWindowStyle() & wxRE_CENTRE_CARET
)
1451 int y
= rect
.y
- GetClientSize().y
/2;
1452 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1453 if (y
>= 0 && (y
+ clientSize
.y
) < GetBuffer().GetCachedSize().y
)
1455 if (startYUnits
!= yUnits
)
1457 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1460 #if !wxRICHTEXT_USE_OWN_CARET
1470 if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
||
1471 keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
||
1472 keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
||
1473 keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1475 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1477 // Make it scroll so this item is at the bottom
1479 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1480 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1482 // If we're still off the screen, scroll another line down
1483 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1486 if (startYUnits
!= yUnits
)
1488 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1492 else if (rect
.y
< (startY
+ GetBuffer().GetTopMargin()))
1494 // Make it scroll so this item is at the top
1496 int y
= rect
.y
- GetBuffer().GetTopMargin();
1497 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1499 if (startYUnits
!= yUnits
)
1501 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1507 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
||
1508 keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
||
1509 keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
||
1510 keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1512 if (rect
.y
< (startY
+ GetBuffer().GetBottomMargin()))
1514 // Make it scroll so this item is at the top
1516 int y
= rect
.y
- GetBuffer().GetTopMargin();
1517 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1519 if (startYUnits
!= yUnits
)
1521 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1525 else if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1527 // Make it scroll so this item is at the bottom
1529 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1530 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1532 // If we're still off the screen, scroll another line down
1533 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1536 if (startYUnits
!= yUnits
)
1538 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1544 #if !wxRICHTEXT_USE_OWN_CARET
1552 /// Is the given position visible on the screen?
1553 bool wxRichTextCtrl::IsPositionVisible(long pos
) const
1555 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(pos
-1);
1561 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1564 GetViewStart(& startX
, & startY
);
1566 startY
= startY
* ppuY
;
1568 wxRect rect
= line
->GetRect();
1569 wxSize clientSize
= GetClientSize();
1570 clientSize
.y
-= GetBuffer().GetBottomMargin();
1572 return (rect
.GetTop() >= (startY
+ GetBuffer().GetTopMargin())) && (rect
.GetBottom() <= (startY
+ clientSize
.y
));
1575 void wxRichTextCtrl::SetCaretPosition(long position
, bool showAtLineStart
)
1577 m_caretPosition
= position
;
1578 m_caretAtLineStart
= showAtLineStart
;
1581 /// Move caret one visual step forward: this may mean setting a flag
1582 /// and keeping the same position if we're going from the end of one line
1583 /// to the start of the next, which may be the exact same caret position.
1584 void wxRichTextCtrl::MoveCaretForward(long oldPosition
)
1586 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(oldPosition
);
1588 // Only do the check if we're not at the end of the paragraph (where things work OK
1590 if (para
&& (oldPosition
!= para
->GetRange().GetEnd() - 1))
1592 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(oldPosition
);
1596 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1598 // We're at the end of a line. See whether we need to
1599 // stay at the same actual caret position but change visual
1600 // position, or not.
1601 if (oldPosition
== lineRange
.GetEnd())
1603 if (m_caretAtLineStart
)
1605 // We're already at the start of the line, so actually move on now.
1606 m_caretPosition
= oldPosition
+ 1;
1607 m_caretAtLineStart
= false;
1611 // We're showing at the end of the line, so keep to
1612 // the same position but indicate that we're to show
1613 // at the start of the next line.
1614 m_caretPosition
= oldPosition
;
1615 m_caretAtLineStart
= true;
1617 SetDefaultStyleToCursorStyle();
1623 SetDefaultStyleToCursorStyle();
1626 /// Move caret one visual step backward: this may mean setting a flag
1627 /// and keeping the same position if we're going from the end of one line
1628 /// to the start of the next, which may be the exact same caret position.
1629 void wxRichTextCtrl::MoveCaretBack(long oldPosition
)
1631 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(oldPosition
);
1633 // Only do the check if we're not at the start of the paragraph (where things work OK
1635 if (para
&& (oldPosition
!= para
->GetRange().GetStart()))
1637 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(oldPosition
);
1641 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1643 // We're at the start of a line. See whether we need to
1644 // stay at the same actual caret position but change visual
1645 // position, or not.
1646 if (oldPosition
== lineRange
.GetStart())
1648 m_caretPosition
= oldPosition
-1;
1649 m_caretAtLineStart
= true;
1652 else if (oldPosition
== lineRange
.GetEnd())
1654 if (m_caretAtLineStart
)
1656 // We're at the start of the line, so keep the same caret position
1657 // but clear the start-of-line flag.
1658 m_caretPosition
= oldPosition
;
1659 m_caretAtLineStart
= false;
1663 // We're showing at the end of the line, so go back
1664 // to the previous character position.
1665 m_caretPosition
= oldPosition
- 1;
1667 SetDefaultStyleToCursorStyle();
1673 SetDefaultStyleToCursorStyle();
1677 bool wxRichTextCtrl::MoveRight(int noPositions
, int flags
)
1679 long endPos
= GetFocusObject()->GetOwnRange().GetEnd();
1681 if (m_caretPosition
+ noPositions
< endPos
)
1683 long oldPos
= m_caretPosition
;
1684 long newPos
= m_caretPosition
+ noPositions
;
1686 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1690 // Determine by looking at oldPos and m_caretPosition whether
1691 // we moved from the end of a line to the start of the next line, in which case
1692 // we want to adjust the caret position such that it is positioned at the
1693 // start of the next line, rather than jumping past the first character of the
1695 if (noPositions
== 1 && !extendSel
)
1696 MoveCaretForward(oldPos
);
1698 SetCaretPosition(newPos
);
1701 SetDefaultStyleToCursorStyle();
1710 bool wxRichTextCtrl::MoveLeft(int noPositions
, int flags
)
1714 if (m_caretPosition
> startPos
- noPositions
+ 1)
1716 long oldPos
= m_caretPosition
;
1717 long newPos
= m_caretPosition
- noPositions
;
1718 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1722 if (noPositions
== 1 && !extendSel
)
1723 MoveCaretBack(oldPos
);
1725 SetCaretPosition(newPos
);
1728 SetDefaultStyleToCursorStyle();
1736 // Find the caret position for the combination of hit-test flags and character position.
1737 // Returns the caret position and also an indication of where to place the caret (caretLineStart)
1738 // since this is ambiguous (same position used for end of line and start of next).
1739 long wxRichTextCtrl::FindCaretPositionForCharacterPosition(long position
, int hitTestFlags
, wxRichTextParagraphLayoutBox
* container
,
1740 bool& caretLineStart
)
1742 // If end of previous line, and hitTest is wxRICHTEXT_HITTEST_BEFORE,
1743 // we want to be at the end of the last line but with m_caretAtLineStart set to true,
1744 // so we view the caret at the start of the line.
1745 caretLineStart
= false;
1746 long caretPosition
= position
;
1748 if (hitTestFlags
& wxRICHTEXT_HITTEST_BEFORE
)
1750 wxRichTextLine
* thisLine
= container
->GetLineAtPosition(position
-1);
1751 wxRichTextRange lineRange
;
1753 lineRange
= thisLine
->GetAbsoluteRange();
1755 if (thisLine
&& (position
-1) == lineRange
.GetEnd())
1758 caretLineStart
= true;
1762 wxRichTextParagraph
* para
= container
->GetParagraphAtPosition(position
);
1763 if (para
&& para
->GetRange().GetStart() == position
)
1767 return caretPosition
;
1771 bool wxRichTextCtrl::MoveUp(int noLines
, int flags
)
1773 return MoveDown(- noLines
, flags
);
1777 bool wxRichTextCtrl::MoveDown(int noLines
, int flags
)
1782 long lineNumber
= GetFocusObject()->GetVisibleLineNumber(m_caretPosition
, true, m_caretAtLineStart
);
1783 wxPoint pt
= GetCaret()->GetPosition();
1784 long newLine
= lineNumber
+ noLines
;
1785 bool notInThisObject
= false;
1787 if (lineNumber
!= -1)
1791 long lastLine
= GetFocusObject()->GetVisibleLineNumber(GetFocusObject()->GetOwnRange().GetEnd());
1792 if (newLine
> lastLine
)
1793 notInThisObject
= true;
1798 notInThisObject
= true;
1802 wxRichTextParagraphLayoutBox
* container
= GetFocusObject();
1803 int hitTestFlags
= wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
|wxRICHTEXT_HITTEST_NO_FLOATING_OBJECTS
;
1805 if (notInThisObject
)
1807 // If we know we're navigating out of the current object,
1808 // try to find an object anywhere in the buffer at the new position (up or down a bit)
1809 container
= & GetBuffer();
1810 hitTestFlags
&= ~wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
;
1812 if (noLines
> 0) // going down
1814 pt
.y
= GetFocusObject()->GetPosition().y
+ GetFocusObject()->GetCachedSize().y
+ 2;
1818 pt
.y
= GetFocusObject()->GetPosition().y
- 2;
1823 wxRichTextLine
* lineObj
= GetFocusObject()->GetLineForVisibleLineNumber(newLine
);
1825 pt
.y
= lineObj
->GetAbsolutePosition().y
+ 2;
1831 wxClientDC
dc(this);
1833 dc
.SetFont(GetFont());
1835 wxRichTextObject
* hitObj
= NULL
;
1836 wxRichTextObject
* contextObj
= NULL
;
1837 int hitTest
= container
->HitTest(dc
, pt
, newPos
, & hitObj
, & contextObj
, hitTestFlags
);
1840 ((hitTest
& wxRICHTEXT_HITTEST_NONE
) == 0) &&
1841 (! (hitObj
== (& m_buffer
) && ((hitTest
& wxRICHTEXT_HITTEST_OUTSIDE
) != 0))) // outside the buffer counts as 'do nothing'
1844 if (notInThisObject
)
1846 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
1847 if (actualContainer
&& actualContainer
!= GetFocusObject() && actualContainer
->AcceptsFocus())
1849 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
1851 container
= actualContainer
;
1855 bool caretLineStart
= true;
1856 long caretPosition
= FindCaretPositionForCharacterPosition(newPos
, hitTest
, container
, caretLineStart
);
1857 long newSelEnd
= caretPosition
;
1860 if (notInThisObject
)
1863 extendSel
= ExtendSelection(m_caretPosition
, newSelEnd
, flags
);
1868 SetCaretPosition(caretPosition
, caretLineStart
);
1870 SetDefaultStyleToCursorStyle();
1878 /// Move to the end of the paragraph
1879 bool wxRichTextCtrl::MoveToParagraphEnd(int flags
)
1881 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(m_caretPosition
, true);
1884 long newPos
= para
->GetRange().GetEnd() - 1;
1885 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1889 SetCaretPosition(newPos
);
1891 SetDefaultStyleToCursorStyle();
1899 /// Move to the start of the paragraph
1900 bool wxRichTextCtrl::MoveToParagraphStart(int flags
)
1902 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(m_caretPosition
, true);
1905 long newPos
= para
->GetRange().GetStart() - 1;
1906 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1910 SetCaretPosition(newPos
);
1912 SetDefaultStyleToCursorStyle();
1920 /// Move to the end of the line
1921 bool wxRichTextCtrl::MoveToLineEnd(int flags
)
1923 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1927 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1928 long newPos
= lineRange
.GetEnd();
1929 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1933 SetCaretPosition(newPos
);
1935 SetDefaultStyleToCursorStyle();
1943 /// Move to the start of the line
1944 bool wxRichTextCtrl::MoveToLineStart(int flags
)
1946 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1949 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1950 long newPos
= lineRange
.GetStart()-1;
1952 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1956 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphForLine(line
);
1958 SetCaretPosition(newPos
, para
->GetRange().GetStart() != lineRange
.GetStart());
1960 SetDefaultStyleToCursorStyle();
1968 /// Move to the start of the buffer
1969 bool wxRichTextCtrl::MoveHome(int flags
)
1971 if (m_caretPosition
!= -1)
1973 bool extendSel
= ExtendSelection(m_caretPosition
, -1, flags
);
1977 SetCaretPosition(-1);
1979 SetDefaultStyleToCursorStyle();
1987 /// Move to the end of the buffer
1988 bool wxRichTextCtrl::MoveEnd(int flags
)
1990 long endPos
= GetFocusObject()->GetOwnRange().GetEnd()-1;
1992 if (m_caretPosition
!= endPos
)
1994 bool extendSel
= ExtendSelection(m_caretPosition
, endPos
, flags
);
1998 SetCaretPosition(endPos
);
2000 SetDefaultStyleToCursorStyle();
2008 /// Move noPages pages up
2009 bool wxRichTextCtrl::PageUp(int noPages
, int flags
)
2011 return PageDown(- noPages
, flags
);
2014 /// Move noPages pages down
2015 bool wxRichTextCtrl::PageDown(int noPages
, int flags
)
2017 // Calculate which line occurs noPages * screen height further down.
2018 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
2021 wxSize clientSize
= GetClientSize();
2022 int newY
= line
->GetAbsolutePosition().y
+ noPages
*clientSize
.y
;
2024 wxRichTextLine
* newLine
= GetFocusObject()->GetLineAtYPosition(newY
);
2027 wxRichTextRange lineRange
= newLine
->GetAbsoluteRange();
2028 long pos
= lineRange
.GetStart()-1;
2029 if (pos
!= m_caretPosition
)
2031 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphForLine(newLine
);
2033 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2037 SetCaretPosition(pos
, para
->GetRange().GetStart() != lineRange
.GetStart());
2039 SetDefaultStyleToCursorStyle();
2049 static bool wxRichTextCtrlIsWhitespace(const wxString
& str
)
2051 return str
== wxT(" ") || str
== wxT("\t");
2054 // Finds the caret position for the next word
2055 long wxRichTextCtrl::FindNextWordPosition(int direction
) const
2057 long endPos
= GetFocusObject()->GetOwnRange().GetEnd();
2061 long i
= m_caretPosition
+1+direction
; // +1 for conversion to character pos
2063 // First skip current text to space
2064 while (i
< endPos
&& i
> -1)
2066 // i is in character, not caret positions
2067 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2068 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2069 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
2073 else if (!wxRichTextCtrlIsWhitespace(text
) && !text
.empty())
2080 while (i
< endPos
&& i
> -1)
2082 // i is in character, not caret positions
2083 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2084 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2085 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
2086 return wxMax(-1, i
);
2088 if (text
.empty()) // End of paragraph, or maybe an image
2089 return wxMax(-1, i
- 1);
2090 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
2094 // Convert to caret position
2095 return wxMax(-1, i
- 1);
2104 long i
= m_caretPosition
;
2106 // First skip white space
2107 while (i
< endPos
&& i
> -1)
2109 // i is in character, not caret positions
2110 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2111 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2113 if (text
.empty() || (line
&& (i
== line
->GetAbsoluteRange().GetStart()))) // End of paragraph, or maybe an image
2115 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
2120 // Next skip current text to space
2121 while (i
< endPos
&& i
> -1)
2123 // i is in character, not caret positions
2124 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(i
, i
));
2125 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(i
, false);
2126 if (line
&& line
->GetAbsoluteRange().GetStart() == i
)
2129 if (!wxRichTextCtrlIsWhitespace(text
) /* && !text.empty() */)
2142 /// Move n words left
2143 bool wxRichTextCtrl::WordLeft(int WXUNUSED(n
), int flags
)
2145 long pos
= FindNextWordPosition(-1);
2146 if (pos
!= m_caretPosition
)
2148 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
, true);
2150 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2154 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
2156 SetDefaultStyleToCursorStyle();
2164 /// Move n words right
2165 bool wxRichTextCtrl::WordRight(int WXUNUSED(n
), int flags
)
2167 long pos
= FindNextWordPosition(1);
2168 if (pos
!= m_caretPosition
)
2170 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
, true);
2172 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
2176 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
2178 SetDefaultStyleToCursorStyle();
2187 void wxRichTextCtrl::OnSize(wxSizeEvent
& event
)
2189 // Only do sizing optimization for large buffers
2190 if (GetBuffer().GetOwnRange().GetEnd() > m_delayedLayoutThreshold
)
2192 m_fullLayoutRequired
= true;
2193 m_fullLayoutTime
= wxGetLocalTimeMillis();
2194 m_fullLayoutSavedPosition
= GetFirstVisiblePosition();
2195 LayoutContent(true /* onlyVisibleRect */);
2198 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2200 #if wxRICHTEXT_BUFFERED_PAINTING
2207 // Force any pending layout due to large buffer
2208 void wxRichTextCtrl::ForceDelayedLayout()
2210 if (m_fullLayoutRequired
)
2212 m_fullLayoutRequired
= false;
2213 m_fullLayoutTime
= 0;
2214 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2215 ShowPosition(m_fullLayoutSavedPosition
);
2221 /// Idle-time processing
2222 void wxRichTextCtrl::OnIdle(wxIdleEvent
& event
)
2224 #if wxRICHTEXT_USE_OWN_CARET
2225 if (((wxRichTextCaret
*) GetCaret())->GetNeedsUpdate())
2227 ((wxRichTextCaret
*) GetCaret())->SetNeedsUpdate(false);
2233 const int layoutInterval
= wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL
;
2235 if (m_fullLayoutRequired
&& (wxGetLocalTimeMillis() > (m_fullLayoutTime
+ layoutInterval
)))
2237 m_fullLayoutRequired
= false;
2238 m_fullLayoutTime
= 0;
2239 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2240 ShowPosition(m_fullLayoutSavedPosition
);
2244 if (m_caretPositionForDefaultStyle
!= -2)
2246 // If the caret position has changed, no longer reflect the default style
2248 if (GetCaretPosition() != m_caretPositionForDefaultStyle
)
2249 m_caretPositionForDefaultStyle
= -2;
2256 void wxRichTextCtrl::OnScroll(wxScrollWinEvent
& event
)
2258 #if wxRICHTEXT_USE_OWN_CARET
2259 if (!((wxRichTextCaret
*) GetCaret())->GetNeedsUpdate())
2262 ((wxRichTextCaret
*) GetCaret())->SetNeedsUpdate();
2269 /// Set up scrollbars, e.g. after a resize
2270 void wxRichTextCtrl::SetupScrollbars(bool atTop
)
2275 if (GetBuffer().IsEmpty())
2277 SetScrollbars(0, 0, 0, 0, 0, 0);
2281 // TODO: reimplement scrolling so we scroll by line, not by fixed number
2282 // of pixels. See e.g. wxVScrolledWindow for ideas.
2283 int pixelsPerUnit
= 5;
2284 wxSize clientSize
= GetClientSize();
2286 int maxHeight
= GetBuffer().GetCachedSize().y
+ GetBuffer().GetTopMargin();
2288 // Round up so we have at least maxHeight pixels
2289 int unitsY
= (int) (((float)maxHeight
/(float)pixelsPerUnit
) + 0.5);
2291 int startX
= 0, startY
= 0;
2293 GetViewStart(& startX
, & startY
);
2295 int maxPositionX
= 0;
2296 int maxPositionY
= (int) ((((float)(wxMax((unitsY
*pixelsPerUnit
) - clientSize
.y
, 0)))/((float)pixelsPerUnit
)) + 0.5);
2298 int newStartX
= wxMin(maxPositionX
, startX
);
2299 int newStartY
= wxMin(maxPositionY
, startY
);
2301 int oldPPUX
, oldPPUY
;
2302 int oldStartX
, oldStartY
;
2303 int oldVirtualSizeX
= 0, oldVirtualSizeY
= 0;
2304 GetScrollPixelsPerUnit(& oldPPUX
, & oldPPUY
);
2305 GetViewStart(& oldStartX
, & oldStartY
);
2306 GetVirtualSize(& oldVirtualSizeX
, & oldVirtualSizeY
);
2308 oldVirtualSizeY
/= oldPPUY
;
2310 if (oldPPUX
== 0 && oldPPUY
== pixelsPerUnit
&& oldVirtualSizeY
== unitsY
&& oldStartX
== newStartX
&& oldStartY
== newStartY
)
2313 // Don't set scrollbars if there were none before, and there will be none now.
2314 if (oldPPUY
!= 0 && (oldVirtualSizeY
*oldPPUY
< clientSize
.y
) && (unitsY
*pixelsPerUnit
< clientSize
.y
))
2317 // Move to previous scroll position if
2319 SetScrollbars(0, pixelsPerUnit
, 0, unitsY
, newStartX
, newStartY
);
2322 /// Paint the background
2323 void wxRichTextCtrl::PaintBackground(wxDC
& dc
)
2325 wxColour backgroundColour
= GetBackgroundColour();
2326 if (!backgroundColour
.Ok())
2327 backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
2329 // Clear the background
2330 dc
.SetBrush(wxBrush(backgroundColour
));
2331 dc
.SetPen(*wxTRANSPARENT_PEN
);
2332 wxRect
windowRect(GetClientSize());
2333 windowRect
.x
-= 2; windowRect
.y
-= 2;
2334 windowRect
.width
+= 4; windowRect
.height
+= 4;
2336 // We need to shift the rectangle to take into account
2337 // scrolling. Converting device to logical coordinates.
2338 CalcUnscrolledPosition(windowRect
.x
, windowRect
.y
, & windowRect
.x
, & windowRect
.y
);
2339 dc
.DrawRectangle(windowRect
);
2342 #if wxRICHTEXT_BUFFERED_PAINTING
2343 /// Recreate buffer bitmap if necessary
2344 bool wxRichTextCtrl::RecreateBuffer(const wxSize
& size
)
2347 if (sz
== wxDefaultSize
)
2348 sz
= GetClientSize();
2350 if (sz
.x
< 1 || sz
.y
< 1)
2353 if (!m_bufferBitmap
.Ok() || m_bufferBitmap
.GetWidth() < sz
.x
|| m_bufferBitmap
.GetHeight() < sz
.y
)
2354 m_bufferBitmap
= wxBitmap(sz
.x
, sz
.y
);
2355 return m_bufferBitmap
.Ok();
2359 // ----------------------------------------------------------------------------
2360 // file IO functions
2361 // ----------------------------------------------------------------------------
2363 bool wxRichTextCtrl::DoLoadFile(const wxString
& filename
, int fileType
)
2365 bool success
= GetBuffer().LoadFile(filename
, (wxRichTextFileType
)fileType
);
2367 m_filename
= filename
;
2370 SetInsertionPoint(0);
2373 SetupScrollbars(true);
2375 wxTextCtrl::SendTextUpdatedEvent(this);
2381 wxLogError(_("File couldn't be loaded."));
2387 bool wxRichTextCtrl::DoSaveFile(const wxString
& filename
, int fileType
)
2389 if (GetBuffer().SaveFile(filename
, (wxRichTextFileType
)fileType
))
2391 m_filename
= filename
;
2398 wxLogError(_("The text couldn't be saved."));
2403 // ----------------------------------------------------------------------------
2404 // wxRichTextCtrl specific functionality
2405 // ----------------------------------------------------------------------------
2407 /// Add a new paragraph of text to the end of the buffer
2408 wxRichTextRange
wxRichTextCtrl::AddParagraph(const wxString
& text
)
2410 wxRichTextRange range
= GetFocusObject()->AddParagraph(text
);
2411 GetBuffer().Invalidate();
2417 wxRichTextRange
wxRichTextCtrl::AddImage(const wxImage
& image
)
2419 wxRichTextRange range
= GetFocusObject()->AddImage(image
);
2420 GetBuffer().Invalidate();
2425 // ----------------------------------------------------------------------------
2426 // selection and ranges
2427 // ----------------------------------------------------------------------------
2429 void wxRichTextCtrl::SelectAll()
2431 SetSelection(-1, -1);
2435 void wxRichTextCtrl::SelectNone()
2437 if (m_selection
.IsValid())
2439 wxRichTextSelection oldSelection
= m_selection
;
2441 m_selection
.Reset();
2443 RefreshForSelectionChange(oldSelection
, m_selection
);
2445 m_selectionAnchor
= -2;
2446 m_selectionAnchorObject
= NULL
;
2447 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
2450 static bool wxIsWordDelimiter(const wxString
& text
)
2452 return !text
.IsEmpty() && !wxIsalnum(text
[0]);
2455 /// Select the word at the given character position
2456 bool wxRichTextCtrl::SelectWord(long position
)
2458 if (position
< 0 || position
> GetFocusObject()->GetOwnRange().GetEnd())
2461 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(position
);
2465 if (position
== para
->GetRange().GetEnd())
2468 long positionStart
= position
;
2469 long positionEnd
= position
;
2471 for (positionStart
= position
; positionStart
>= para
->GetRange().GetStart(); positionStart
--)
2473 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(positionStart
, positionStart
));
2474 if (wxIsWordDelimiter(text
))
2480 if (positionStart
< para
->GetRange().GetStart())
2481 positionStart
= para
->GetRange().GetStart();
2483 for (positionEnd
= position
; positionEnd
< para
->GetRange().GetEnd(); positionEnd
++)
2485 wxString text
= GetFocusObject()->GetTextForRange(wxRichTextRange(positionEnd
, positionEnd
));
2486 if (wxIsWordDelimiter(text
))
2492 if (positionEnd
>= para
->GetRange().GetEnd())
2493 positionEnd
= para
->GetRange().GetEnd();
2495 if (positionEnd
< positionStart
)
2498 SetSelection(positionStart
, positionEnd
+1);
2500 if (positionStart
>= 0)
2502 MoveCaret(positionStart
-1, true);
2503 SetDefaultStyleToCursorStyle();
2509 wxString
wxRichTextCtrl::GetStringSelection() const
2512 GetSelection(&from
, &to
);
2514 return GetRange(from
, to
);
2517 // ----------------------------------------------------------------------------
2519 // ----------------------------------------------------------------------------
2521 wxTextCtrlHitTestResult
2522 wxRichTextCtrl::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
2524 // implement in terms of the other overload as the native ports typically
2525 // can get the position and not (x, y) pair directly (although wxUniv
2526 // directly gets x and y -- and so overrides this method as well)
2528 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
2530 if ( rc
!= wxTE_HT_UNKNOWN
)
2532 PositionToXY(pos
, x
, y
);
2538 wxTextCtrlHitTestResult
2539 wxRichTextCtrl::HitTest(const wxPoint
& pt
,
2542 wxClientDC
dc((wxRichTextCtrl
*) this);
2543 ((wxRichTextCtrl
*)this)->PrepareDC(dc
);
2545 // Buffer uses logical position (relative to start of buffer)
2547 wxPoint pt2
= GetLogicalPoint(pt
);
2549 wxRichTextObject
* hitObj
= NULL
;
2550 wxRichTextObject
* contextObj
= NULL
;
2551 int hit
= ((wxRichTextCtrl
*)this)->GetFocusObject()->HitTest(dc
, pt2
, *pos
, & hitObj
, & contextObj
, wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS
);
2553 if ((hit
& wxRICHTEXT_HITTEST_BEFORE
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2554 return wxTE_HT_BEFORE
;
2555 else if ((hit
& wxRICHTEXT_HITTEST_AFTER
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2556 return wxTE_HT_BEYOND
;
2557 else if (hit
& (wxRICHTEXT_HITTEST_BEFORE
|wxRICHTEXT_HITTEST_AFTER
))
2558 return wxTE_HT_ON_TEXT
;
2560 return wxTE_HT_UNKNOWN
;
2563 // ----------------------------------------------------------------------------
2564 // set/get the controls text
2565 // ----------------------------------------------------------------------------
2567 wxString
wxRichTextCtrl::DoGetValue() const
2569 return GetBuffer().GetText();
2572 wxString
wxRichTextCtrl::GetRange(long from
, long to
) const
2574 // Public API for range is different from internals
2575 return GetFocusObject()->GetTextForRange(wxRichTextRange(from
, to
-1));
2578 void wxRichTextCtrl::DoSetValue(const wxString
& value
, int flags
)
2580 // Don't call Clear here, since it always sends a text updated event
2581 m_buffer
.ResetAndClearCommands();
2582 m_buffer
.Invalidate(wxRICHTEXT_ALL
);
2583 m_caretPosition
= -1;
2584 m_caretPositionForDefaultStyle
= -2;
2585 m_caretAtLineStart
= false;
2586 m_selection
.Reset();
2587 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
2597 if (!value
.IsEmpty())
2599 // Remove empty paragraph
2600 GetBuffer().Clear();
2601 DoWriteText(value
, flags
);
2603 // for compatibility, don't move the cursor when doing SetValue()
2604 SetInsertionPoint(0);
2608 // still send an event for consistency
2609 if (flags
& SetValue_SendEvent
)
2610 wxTextCtrl::SendTextUpdatedEvent(this);
2615 void wxRichTextCtrl::WriteText(const wxString
& value
)
2620 void wxRichTextCtrl::DoWriteText(const wxString
& value
, int flags
)
2622 wxString valueUnix
= wxTextFile::Translate(value
, wxTextFileType_Unix
);
2624 GetFocusObject()->InsertTextWithUndo(m_caretPosition
+1, valueUnix
, this, & GetBuffer(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2626 if ( flags
& SetValue_SendEvent
)
2627 wxTextCtrl::SendTextUpdatedEvent(this);
2630 void wxRichTextCtrl::AppendText(const wxString
& text
)
2632 SetInsertionPointEnd();
2637 /// Write an image at the current insertion point
2638 bool wxRichTextCtrl::WriteImage(const wxImage
& image
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2640 wxRichTextImageBlock imageBlock
;
2642 wxImage image2
= image
;
2643 if (imageBlock
.MakeImageBlock(image2
, bitmapType
))
2644 return WriteImage(imageBlock
, textAttr
);
2649 bool wxRichTextCtrl::WriteImage(const wxString
& filename
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2651 wxRichTextImageBlock imageBlock
;
2654 if (imageBlock
.MakeImageBlock(filename
, bitmapType
, image
, false))
2655 return WriteImage(imageBlock
, textAttr
);
2660 bool wxRichTextCtrl::WriteImage(const wxRichTextImageBlock
& imageBlock
, const wxRichTextAttr
& textAttr
)
2662 return GetFocusObject()->InsertImageWithUndo(m_caretPosition
+1, imageBlock
, this, & GetBuffer(), 0, textAttr
);
2665 bool wxRichTextCtrl::WriteImage(const wxBitmap
& bitmap
, wxBitmapType bitmapType
, const wxRichTextAttr
& textAttr
)
2669 wxRichTextImageBlock imageBlock
;
2671 wxImage image
= bitmap
.ConvertToImage();
2672 if (image
.Ok() && imageBlock
.MakeImageBlock(image
, bitmapType
))
2673 return WriteImage(imageBlock
, textAttr
);
2679 // Write a text box at the current insertion point.
2680 wxRichTextBox
* wxRichTextCtrl::WriteTextBox(const wxRichTextAttr
& textAttr
)
2682 wxRichTextBox
* textBox
= new wxRichTextBox
;
2683 textBox
->SetAttributes(textAttr
);
2684 textBox
->SetParent(& GetBuffer()); // set parent temporarily for AddParagraph to use correct style
2685 textBox
->AddParagraph(wxEmptyString
);
2686 textBox
->SetParent(NULL
);
2688 // The object returned is the one actually inserted into the buffer,
2689 // while the original one is deleted.
2690 wxRichTextObject
* obj
= GetFocusObject()->InsertObjectWithUndo(m_caretPosition
+1, textBox
, this, & GetBuffer(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2691 wxRichTextBox
* box
= wxDynamicCast(obj
, wxRichTextBox
);
2695 // Write a table at the current insertion point, returning the table.
2696 wxRichTextTable
* wxRichTextCtrl::WriteTable(int rows
, int cols
, const wxRichTextAttr
& tableAttr
, const wxRichTextAttr
& cellAttr
)
2698 wxASSERT(rows
> 0 && cols
> 0);
2700 if (rows
<= 0 || cols
<= 0)
2703 wxRichTextTable
* table
= new wxRichTextTable
;
2704 table
->SetAttributes(tableAttr
);
2705 table
->SetParent(& GetBuffer()); // set parent temporarily for AddParagraph to use correct style
2707 table
->CreateTable(rows
, cols
);
2709 table
->SetParent(NULL
);
2712 for (j
= 0; j
< rows
; j
++)
2714 for (i
= 0; i
< cols
; i
++)
2716 table
->GetCell(j
, i
)->GetAttributes() = cellAttr
;
2720 // The object returned is the one actually inserted into the buffer,
2721 // while the original one is deleted.
2722 wxRichTextObject
* obj
= GetFocusObject()->InsertObjectWithUndo(m_caretPosition
+1, table
, this, & GetBuffer(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2723 wxRichTextTable
* tableResult
= wxDynamicCast(obj
, wxRichTextTable
);
2728 /// Insert a newline (actually paragraph) at the current insertion point.
2729 bool wxRichTextCtrl::Newline()
2731 return GetFocusObject()->InsertNewlineWithUndo(m_caretPosition
+1, this, & GetBuffer(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2734 /// Insert a line break at the current insertion point.
2735 bool wxRichTextCtrl::LineBreak()
2738 text
= wxRichTextLineBreakChar
;
2739 return GetFocusObject()->InsertTextWithUndo(m_caretPosition
+1, text
, this, & GetBuffer());
2742 // ----------------------------------------------------------------------------
2743 // Clipboard operations
2744 // ----------------------------------------------------------------------------
2746 void wxRichTextCtrl::Copy()
2750 wxRichTextRange range
= GetInternalSelectionRange();
2751 GetBuffer().CopyToClipboard(range
);
2755 void wxRichTextCtrl::Cut()
2759 wxRichTextRange range
= GetInternalSelectionRange();
2760 GetBuffer().CopyToClipboard(range
);
2762 DeleteSelectedContent();
2768 void wxRichTextCtrl::Paste()
2772 BeginBatchUndo(_("Paste"));
2774 long newPos
= m_caretPosition
;
2775 DeleteSelectedContent(& newPos
);
2777 GetBuffer().PasteFromClipboard(newPos
);
2783 void wxRichTextCtrl::DeleteSelection()
2785 if (CanDeleteSelection())
2787 DeleteSelectedContent();
2791 bool wxRichTextCtrl::HasSelection() const
2793 return (m_selection
.IsValid() && m_selection
.GetContainer() == GetFocusObject());
2796 bool wxRichTextCtrl::HasUnfocusedSelection() const
2798 return m_selection
.IsValid();
2801 bool wxRichTextCtrl::CanCopy() const
2803 // Can copy if there's a selection
2804 return HasSelection();
2807 bool wxRichTextCtrl::CanCut() const
2809 return HasSelection() && IsEditable();
2812 bool wxRichTextCtrl::CanPaste() const
2814 if ( !IsEditable() )
2817 return GetBuffer().CanPasteFromClipboard();
2820 bool wxRichTextCtrl::CanDeleteSelection() const
2822 return HasSelection() && IsEditable();
2826 // ----------------------------------------------------------------------------
2828 // ----------------------------------------------------------------------------
2830 void wxRichTextCtrl::SetContextMenu(wxMenu
* menu
)
2832 if (m_contextMenu
&& m_contextMenu
!= menu
)
2833 delete m_contextMenu
;
2834 m_contextMenu
= menu
;
2837 void wxRichTextCtrl::SetEditable(bool editable
)
2839 m_editable
= editable
;
2842 void wxRichTextCtrl::SetInsertionPoint(long pos
)
2846 m_caretPosition
= pos
- 1;
2850 SetDefaultStyleToCursorStyle();
2853 void wxRichTextCtrl::SetInsertionPointEnd()
2855 long pos
= GetLastPosition();
2856 SetInsertionPoint(pos
);
2859 long wxRichTextCtrl::GetInsertionPoint() const
2861 return m_caretPosition
+1;
2864 wxTextPos
wxRichTextCtrl::GetLastPosition() const
2866 return GetFocusObject()->GetOwnRange().GetEnd();
2869 // If the return values from and to are the same, there is no
2871 void wxRichTextCtrl::GetSelection(long* from
, long* to
) const
2873 if (m_selection
.IsValid())
2875 *from
= m_selection
.GetRange().GetStart();
2876 *to
= m_selection
.GetRange().GetEnd();
2886 bool wxRichTextCtrl::IsEditable() const
2891 // ----------------------------------------------------------------------------
2893 // ----------------------------------------------------------------------------
2895 void wxRichTextCtrl::SetSelection(long from
, long to
)
2897 // if from and to are both -1, it means (in wxWidgets) that all text should
2899 if ( (from
== -1) && (to
== -1) )
2902 to
= GetLastPosition()+1;
2911 wxRichTextSelection oldSelection
= m_selection
;
2913 m_selectionAnchor
= from
-1;
2914 m_selectionAnchorObject
= NULL
;
2915 m_selection
.Set(wxRichTextRange(from
, to
-1), GetFocusObject());
2917 m_caretPosition
= wxMax(-1, to
-1);
2919 RefreshForSelectionChange(oldSelection
, m_selection
);
2924 // ----------------------------------------------------------------------------
2926 // ----------------------------------------------------------------------------
2928 void wxRichTextCtrl::Replace(long WXUNUSED(from
), long WXUNUSED(to
),
2929 const wxString
& value
)
2931 BeginBatchUndo(_("Replace"));
2933 DeleteSelectedContent();
2935 DoWriteText(value
, SetValue_SelectionOnly
);
2940 void wxRichTextCtrl::Remove(long from
, long to
)
2944 GetFocusObject()->DeleteRangeWithUndo(wxRichTextRange(from
, to
-1), this, & GetBuffer());
2951 bool wxRichTextCtrl::IsModified() const
2953 return m_buffer
.IsModified();
2956 void wxRichTextCtrl::MarkDirty()
2958 m_buffer
.Modify(true);
2961 void wxRichTextCtrl::DiscardEdits()
2963 m_caretPositionForDefaultStyle
= -2;
2964 m_buffer
.Modify(false);
2965 m_buffer
.GetCommandProcessor()->ClearCommands();
2968 int wxRichTextCtrl::GetNumberOfLines() const
2970 return GetFocusObject()->GetParagraphCount();
2973 // ----------------------------------------------------------------------------
2974 // Positions <-> coords
2975 // ----------------------------------------------------------------------------
2977 long wxRichTextCtrl::XYToPosition(long x
, long y
) const
2979 return GetFocusObject()->XYToPosition(x
, y
);
2982 bool wxRichTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
2984 return GetFocusObject()->PositionToXY(pos
, x
, y
);
2987 // ----------------------------------------------------------------------------
2989 // ----------------------------------------------------------------------------
2991 void wxRichTextCtrl::ShowPosition(long pos
)
2993 if (!IsPositionVisible(pos
))
2994 ScrollIntoView(pos
-1, WXK_DOWN
);
2997 int wxRichTextCtrl::GetLineLength(long lineNo
) const
2999 return GetFocusObject()->GetParagraphLength(lineNo
);
3002 wxString
wxRichTextCtrl::GetLineText(long lineNo
) const
3004 return GetFocusObject()->GetParagraphText(lineNo
);
3007 // ----------------------------------------------------------------------------
3009 // ----------------------------------------------------------------------------
3011 void wxRichTextCtrl::Undo()
3015 GetCommandProcessor()->Undo();
3019 void wxRichTextCtrl::Redo()
3023 GetCommandProcessor()->Redo();
3027 bool wxRichTextCtrl::CanUndo() const
3029 return GetCommandProcessor()->CanUndo() && IsEditable();
3032 bool wxRichTextCtrl::CanRedo() const
3034 return GetCommandProcessor()->CanRedo() && IsEditable();
3037 // ----------------------------------------------------------------------------
3038 // implementation details
3039 // ----------------------------------------------------------------------------
3041 void wxRichTextCtrl::Command(wxCommandEvent
& event
)
3043 SetValue(event
.GetString());
3044 GetEventHandler()->ProcessEvent(event
);
3047 void wxRichTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
3049 // By default, load the first file into the text window.
3050 if (event
.GetNumberOfFiles() > 0)
3052 LoadFile(event
.GetFiles()[0]);
3056 wxSize
wxRichTextCtrl::DoGetBestSize() const
3058 return wxSize(10, 10);
3061 // ----------------------------------------------------------------------------
3062 // standard handlers for standard edit menu events
3063 // ----------------------------------------------------------------------------
3065 void wxRichTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
3070 void wxRichTextCtrl::OnClear(wxCommandEvent
& WXUNUSED(event
))
3075 void wxRichTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
3080 void wxRichTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
3085 void wxRichTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
3090 void wxRichTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
3095 void wxRichTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
3097 event
.Enable( CanCut() );
3100 void wxRichTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
3102 event
.Enable( CanCopy() );
3105 void wxRichTextCtrl::OnUpdateClear(wxUpdateUIEvent
& event
)
3107 event
.Enable( CanDeleteSelection() );
3110 void wxRichTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
3112 event
.Enable( CanPaste() );
3115 void wxRichTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
3117 event
.Enable( CanUndo() );
3118 event
.SetText( GetCommandProcessor()->GetUndoMenuLabel() );
3121 void wxRichTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
3123 event
.Enable( CanRedo() );
3124 event
.SetText( GetCommandProcessor()->GetRedoMenuLabel() );
3127 void wxRichTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
3129 if (GetLastPosition() > 0)
3133 void wxRichTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
3135 event
.Enable(GetLastPosition() > 0);
3138 void wxRichTextCtrl::OnProperties(wxCommandEvent
& event
)
3140 int idx
= event
.GetId() - wxID_RICHTEXT_PROPERTIES1
;
3141 if (idx
>= 0 && idx
< m_contextMenuPropertiesInfo
.GetCount())
3143 wxRichTextObject
* obj
= m_contextMenuPropertiesInfo
.GetObject(idx
);
3144 if (obj
&& obj
->CanEditProperties())
3145 obj
->EditProperties(this, & GetBuffer());
3147 m_contextMenuPropertiesInfo
.Clear();
3151 void wxRichTextCtrl::OnUpdateProperties(wxUpdateUIEvent
& event
)
3153 int idx
= event
.GetId() - wxID_RICHTEXT_PROPERTIES1
;
3154 event
.Enable(idx
>= 0 && idx
< m_contextMenuPropertiesInfo
.GetCount());
3157 void wxRichTextCtrl::OnContextMenu(wxContextMenuEvent
& event
)
3159 if (event
.GetEventObject() != this)
3165 wxClientDC
dc(this);
3167 dc
.SetFont(GetFont());
3170 wxPoint pt
= event
.GetPosition();
3171 wxPoint logicalPt
= GetLogicalPoint(ScreenToClient(pt
));
3172 wxRichTextObject
* hitObj
= NULL
;
3173 wxRichTextObject
* contextObj
= NULL
;
3174 int hit
= GetFocusObject()->HitTest(dc
, logicalPt
, position
, & hitObj
, & contextObj
);
3176 m_contextMenuPropertiesInfo
.Clear();
3178 if (hit
== wxRICHTEXT_HITTEST_ON
|| hit
== wxRICHTEXT_HITTEST_BEFORE
|| hit
== wxRICHTEXT_HITTEST_AFTER
)
3180 wxRichTextParagraphLayoutBox
* actualContainer
= wxDynamicCast(contextObj
, wxRichTextParagraphLayoutBox
);
3181 if (hitObj
&& actualContainer
)
3183 if (actualContainer
->AcceptsFocus())
3185 SetFocusObject(actualContainer
, false /* don't set caret position yet */);
3186 SetCaretPositionAfterClick(actualContainer
, position
, hit
);
3189 m_contextMenuPropertiesInfo
.AddItems(actualContainer
, hitObj
);
3192 m_contextMenuPropertiesInfo
.AddItems(GetFocusObject(), NULL
);
3196 m_contextMenuPropertiesInfo
.AddItems(GetFocusObject(), NULL
);
3201 m_contextMenuPropertiesInfo
.AddMenuItems(m_contextMenu
);
3202 PopupMenu(m_contextMenu
);
3206 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
3208 return GetFocusObject()->SetStyle(wxRichTextRange(start
, end
-1), wxRichTextAttr(style
));
3211 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxRichTextAttr
& style
)
3213 return GetFocusObject()->SetStyle(wxRichTextRange(start
, end
-1), style
);
3216 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
)
3218 return GetFocusObject()->SetStyle(range
.ToInternal(), wxRichTextAttr(style
));
3221 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
)
3223 return GetFocusObject()->SetStyle(range
.ToInternal(), style
);
3226 void wxRichTextCtrl::SetStyle(wxRichTextObject
*obj
, const wxRichTextAttr
& textAttr
)
3228 GetFocusObject()->SetStyle(obj
, textAttr
);
3231 // extended style setting operation with flags including:
3232 // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY.
3233 // see richtextbuffer.h for more details.
3235 bool wxRichTextCtrl::SetStyleEx(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
)
3237 return GetFocusObject()->SetStyle(range
.ToInternal(), style
, flags
);
3240 bool wxRichTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
3242 return GetBuffer().SetDefaultStyle(style
);
3245 bool wxRichTextCtrl::SetDefaultStyle(const wxRichTextAttr
& style
)
3247 wxRichTextAttr
attr1(style
);
3248 attr1
.GetTextBoxAttr().Reset();
3249 return GetBuffer().SetDefaultStyle(attr1
);
3252 const wxRichTextAttr
& wxRichTextCtrl::GetDefaultStyleEx() const
3254 return GetBuffer().GetDefaultStyle();
3257 bool wxRichTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
3259 wxRichTextAttr attr
;
3260 if (GetFocusObject()->GetStyle(position
, attr
))
3269 bool wxRichTextCtrl::GetStyle(long position
, wxRichTextAttr
& style
)
3271 return GetFocusObject()->GetStyle(position
, style
);
3274 bool wxRichTextCtrl::GetStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3276 wxRichTextAttr attr
;
3277 if (container
->GetStyle(position
, attr
))
3286 // get the common set of styles for the range
3287 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
)
3289 wxRichTextAttr attr
;
3290 if (GetFocusObject()->GetStyleForRange(range
.ToInternal(), attr
))
3299 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
)
3301 return GetFocusObject()->GetStyleForRange(range
.ToInternal(), style
);
3304 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3306 return container
->GetStyleForRange(range
.ToInternal(), style
);
3309 /// Get the content (uncombined) attributes for this position.
3310 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxRichTextAttr
& style
)
3312 return GetFocusObject()->GetUncombinedStyle(position
, style
);
3315 /// Get the content (uncombined) attributes for this position.
3316 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
)
3318 return container
->GetUncombinedStyle(position
, style
);
3321 /// Set font, and also the buffer attributes
3322 bool wxRichTextCtrl::SetFont(const wxFont
& font
)
3324 wxControl::SetFont(font
);
3326 wxRichTextAttr attr
= GetBuffer().GetAttributes();
3328 GetBuffer().SetBasicStyle(attr
);
3330 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
3336 /// Transform logical to physical
3337 wxPoint
wxRichTextCtrl::GetPhysicalPoint(const wxPoint
& ptLogical
) const
3340 CalcScrolledPosition(ptLogical
.x
, ptLogical
.y
, & pt
.x
, & pt
.y
);
3345 /// Transform physical to logical
3346 wxPoint
wxRichTextCtrl::GetLogicalPoint(const wxPoint
& ptPhysical
) const
3349 CalcUnscrolledPosition(ptPhysical
.x
, ptPhysical
.y
, & pt
.x
, & pt
.y
);
3354 /// Position the caret
3355 void wxRichTextCtrl::PositionCaret(wxRichTextParagraphLayoutBox
* container
)
3360 //wxLogDebug(wxT("PositionCaret"));
3363 if (GetCaretPositionForIndex(GetCaretPosition(), caretRect
, container
))
3365 wxPoint newPt
= caretRect
.GetPosition();
3366 wxSize newSz
= caretRect
.GetSize();
3367 wxPoint pt
= GetPhysicalPoint(newPt
);
3368 if (GetCaret()->GetPosition() != pt
|| GetCaret()->GetSize() != newSz
)
3371 if (GetCaret()->GetSize() != newSz
)
3372 GetCaret()->SetSize(newSz
);
3374 int halfSize
= newSz
.y
/2;
3375 // If the caret is beyond the margin, hide it by moving it out of the way
3376 if (((pt
.y
+ halfSize
) < GetBuffer().GetTopMargin()) || ((pt
.y
+ halfSize
) > (GetClientSize().y
- GetBuffer().GetBottomMargin())))
3382 GetCaret()->Move(pt
);
3388 /// Get the caret height and position for the given character position
3389 bool wxRichTextCtrl::GetCaretPositionForIndex(long position
, wxRect
& rect
, wxRichTextParagraphLayoutBox
* container
)
3391 wxClientDC
dc(this);
3392 dc
.SetFont(GetFont());
3400 container
= GetFocusObject();
3402 if (container
->FindPosition(dc
, position
, pt
, & height
, m_caretAtLineStart
))
3404 // Caret height can't be zero
3406 height
= dc
.GetCharHeight();
3408 rect
= wxRect(pt
, wxSize(wxRICHTEXT_DEFAULT_CARET_WIDTH
, height
));
3415 /// Gets the line for the visible caret position. If the caret is
3416 /// shown at the very end of the line, it means the next character is actually
3417 /// on the following line. So let's get the line we're expecting to find
3418 /// if this is the case.
3419 wxRichTextLine
* wxRichTextCtrl::GetVisibleLineForCaretPosition(long caretPosition
) const
3421 wxRichTextLine
* line
= GetFocusObject()->GetLineAtPosition(caretPosition
, true);
3422 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(caretPosition
, true);
3425 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3426 if (caretPosition
== lineRange
.GetStart()-1 &&
3427 (para
->GetRange().GetStart() != lineRange
.GetStart()))
3429 if (!m_caretAtLineStart
)
3430 line
= GetFocusObject()->GetLineAtPosition(caretPosition
-1, true);
3437 /// Move the caret to the given character position
3438 bool wxRichTextCtrl::MoveCaret(long pos
, bool showAtLineStart
, wxRichTextParagraphLayoutBox
* container
)
3440 if (GetBuffer().IsDirty())
3444 container
= GetFocusObject();
3446 if (pos
<= container
->GetOwnRange().GetEnd())
3448 SetCaretPosition(pos
, showAtLineStart
);
3450 PositionCaret(container
);
3458 /// Layout the buffer: which we must do before certain operations, such as
3459 /// setting the caret position.
3460 bool wxRichTextCtrl::LayoutContent(bool onlyVisibleRect
)
3462 if (GetBuffer().IsDirty() || onlyVisibleRect
)
3464 wxRect
availableSpace(GetClientSize());
3465 if (availableSpace
.width
== 0)
3466 availableSpace
.width
= 10;
3467 if (availableSpace
.height
== 0)
3468 availableSpace
.height
= 10;
3470 int flags
= wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
;
3471 if (onlyVisibleRect
)
3473 flags
|= wxRICHTEXT_LAYOUT_SPECIFIED_RECT
;
3474 availableSpace
.SetPosition(GetLogicalPoint(wxPoint(0, 0)));
3477 wxClientDC
dc(this);
3478 dc
.SetFont(GetFont());
3482 GetBuffer().Defragment();
3483 GetBuffer().UpdateRanges(); // If items were deleted, ranges need recalculation
3484 GetBuffer().Layout(dc
, availableSpace
, flags
);
3485 GetBuffer().Invalidate(wxRICHTEXT_NONE
);
3494 /// Is all of the selection bold?
3495 bool wxRichTextCtrl::IsSelectionBold()
3499 wxRichTextAttr attr
;
3500 wxRichTextRange range
= GetSelectionRange();
3501 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3502 attr
.SetFontWeight(wxFONTWEIGHT_BOLD
);
3504 return HasCharacterAttributes(range
, attr
);
3508 // If no selection, then we need to combine current style with default style
3509 // to see what the effect would be if we started typing.
3510 wxRichTextAttr attr
;
3511 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3513 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3514 if (GetStyle(pos
, attr
))
3516 if (IsDefaultStyleShowing())
3517 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3518 return attr
.GetFontWeight() == wxFONTWEIGHT_BOLD
;
3524 /// Is all of the selection italics?
3525 bool wxRichTextCtrl::IsSelectionItalics()
3529 wxRichTextRange range
= GetSelectionRange();
3530 wxRichTextAttr attr
;
3531 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3532 attr
.SetFontStyle(wxFONTSTYLE_ITALIC
);
3534 return HasCharacterAttributes(range
, attr
);
3538 // If no selection, then we need to combine current style with default style
3539 // to see what the effect would be if we started typing.
3540 wxRichTextAttr attr
;
3541 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3543 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3544 if (GetStyle(pos
, attr
))
3546 if (IsDefaultStyleShowing())
3547 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3548 return attr
.GetFontStyle() == wxFONTSTYLE_ITALIC
;
3554 /// Is all of the selection underlined?
3555 bool wxRichTextCtrl::IsSelectionUnderlined()
3559 wxRichTextRange range
= GetSelectionRange();
3560 wxRichTextAttr attr
;
3561 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3562 attr
.SetFontUnderlined(true);
3564 return HasCharacterAttributes(range
, attr
);
3568 // If no selection, then we need to combine current style with default style
3569 // to see what the effect would be if we started typing.
3570 wxRichTextAttr attr
;
3571 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3572 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3574 if (GetStyle(pos
, attr
))
3576 if (IsDefaultStyleShowing())
3577 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
3578 return attr
.GetFontUnderlined();
3584 /// Apply bold to the selection
3585 bool wxRichTextCtrl::ApplyBoldToSelection()
3587 wxRichTextAttr attr
;
3588 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
3589 attr
.SetFontWeight(IsSelectionBold() ? wxFONTWEIGHT_NORMAL
: wxFONTWEIGHT_BOLD
);
3592 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3595 wxRichTextAttr current
= GetDefaultStyleEx();
3596 current
.Apply(attr
);
3597 SetAndShowDefaultStyle(current
);
3602 /// Apply italic to the selection
3603 bool wxRichTextCtrl::ApplyItalicToSelection()
3605 wxRichTextAttr attr
;
3606 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
3607 attr
.SetFontStyle(IsSelectionItalics() ? wxFONTSTYLE_NORMAL
: wxFONTSTYLE_ITALIC
);
3610 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3613 wxRichTextAttr current
= GetDefaultStyleEx();
3614 current
.Apply(attr
);
3615 SetAndShowDefaultStyle(current
);
3620 /// Apply underline to the selection
3621 bool wxRichTextCtrl::ApplyUnderlineToSelection()
3623 wxRichTextAttr attr
;
3624 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
3625 attr
.SetFontUnderlined(!IsSelectionUnderlined());
3628 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
3631 wxRichTextAttr current
= GetDefaultStyleEx();
3632 current
.Apply(attr
);
3633 SetAndShowDefaultStyle(current
);
3638 /// Is all of the selection aligned according to the specified flag?
3639 bool wxRichTextCtrl::IsSelectionAligned(wxTextAttrAlignment alignment
)
3641 wxRichTextRange range
;
3643 range
= GetSelectionRange();
3645 range
= wxRichTextRange(GetCaretPosition()+1, GetCaretPosition()+2);
3647 wxRichTextAttr attr
;
3648 attr
.SetAlignment(alignment
);
3650 return HasParagraphAttributes(range
, attr
);
3653 /// Apply alignment to the selection
3654 bool wxRichTextCtrl::ApplyAlignmentToSelection(wxTextAttrAlignment alignment
)
3656 wxRichTextAttr attr
;
3657 attr
.SetAlignment(alignment
);
3659 return SetStyle(GetSelectionRange(), attr
);
3662 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(GetCaretPosition()+1);
3664 return SetStyleEx(para
->GetRange().FromInternal(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
);
3669 /// Apply a named style to the selection
3670 bool wxRichTextCtrl::ApplyStyle(wxRichTextStyleDefinition
* def
)
3672 // Flags are defined within each definition, so only certain
3673 // attributes are applied.
3674 wxRichTextAttr
attr(GetStyleSheet() ? def
->GetStyleMergedWithBase(GetStyleSheet()) : def
->GetStyle());
3676 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_RESET
;
3678 if (def
->IsKindOf(CLASSINFO(wxRichTextListStyleDefinition
)))
3680 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
3682 wxRichTextRange range
;
3685 range
= GetSelectionRange();
3688 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3689 range
= wxRichTextRange(pos
, pos
+1);
3692 return SetListStyle(range
, (wxRichTextListStyleDefinition
*) def
, flags
);
3695 bool isPara
= false;
3697 // Make sure the attr has the style name
3698 if (def
->IsKindOf(CLASSINFO(wxRichTextParagraphStyleDefinition
)))
3701 attr
.SetParagraphStyleName(def
->GetName());
3703 // If applying a paragraph style, we only want the paragraph nodes to adopt these
3704 // attributes, and not the leaf nodes. This will allow the content (e.g. text)
3705 // to change its style independently.
3706 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
3709 attr
.SetCharacterStyleName(def
->GetName());
3712 return SetStyleEx(GetSelectionRange(), attr
, flags
);
3715 wxRichTextAttr current
= GetDefaultStyleEx();
3716 wxRichTextAttr
defaultStyle(attr
);
3719 // Don't apply extra character styles since they are already implied
3720 // in the paragraph style
3721 defaultStyle
.SetFlags(defaultStyle
.GetFlags() & ~wxTEXT_ATTR_CHARACTER
);
3723 current
.Apply(defaultStyle
);
3724 SetAndShowDefaultStyle(current
);
3726 // If it's a paragraph style, we want to apply the style to the
3727 // current paragraph even if we didn't select any text.
3730 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3731 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(pos
);
3734 return SetStyleEx(para
->GetRange().FromInternal(), attr
, flags
);
3741 /// Apply the style sheet to the buffer, for example if the styles have changed.
3742 bool wxRichTextCtrl::ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
)
3745 styleSheet
= GetBuffer().GetStyleSheet();
3749 if (GetBuffer().ApplyStyleSheet(styleSheet
))
3751 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
3759 /// Sets the default style to the style under the cursor
3760 bool wxRichTextCtrl::SetDefaultStyleToCursorStyle()
3762 wxRichTextAttr attr
;
3763 attr
.SetFlags(wxTEXT_ATTR_CHARACTER
);
3765 // If at the start of a paragraph, use the next position.
3766 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
3768 if (GetUncombinedStyle(pos
, attr
))
3770 SetDefaultStyle(attr
);
3777 /// Returns the first visible position in the current view
3778 long wxRichTextCtrl::GetFirstVisiblePosition() const
3780 wxRichTextLine
* line
= GetFocusObject()->GetLineAtYPosition(GetLogicalPoint(wxPoint(0, 0)).y
);
3782 return line
->GetAbsoluteRange().GetStart();
3787 /// Get the first visible point in the window
3788 wxPoint
wxRichTextCtrl::GetFirstVisiblePoint() const
3791 int startXUnits
, startYUnits
;
3793 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
3794 GetViewStart(& startXUnits
, & startYUnits
);
3796 return wxPoint(startXUnits
* ppuX
, startYUnits
* ppuY
);
3799 /// The adjusted caret position is the character position adjusted to take
3800 /// into account whether we're at the start of a paragraph, in which case
3801 /// style information should be taken from the next position, not current one.
3802 long wxRichTextCtrl::GetAdjustedCaretPosition(long caretPos
) const
3804 wxRichTextParagraph
* para
= GetFocusObject()->GetParagraphAtPosition(caretPos
+1);
3806 if (para
&& (caretPos
+1 == para
->GetRange().GetStart()))
3811 /// Get/set the selection range in character positions. -1, -1 means no selection.
3812 /// The range is in API convention, i.e. a single character selection is denoted
3814 wxRichTextRange
wxRichTextCtrl::GetSelectionRange() const
3816 wxRichTextRange range
= GetInternalSelectionRange();
3817 if (range
!= wxRichTextRange(-2,-2) && range
!= wxRichTextRange(-1,-1))
3818 range
.SetEnd(range
.GetEnd() + 1);
3822 void wxRichTextCtrl::SetSelectionRange(const wxRichTextRange
& range
)
3824 SetSelection(range
.GetStart(), range
.GetEnd());
3828 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
3830 return GetFocusObject()->SetListStyle(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
3833 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
3835 return GetFocusObject()->SetListStyle(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
3838 /// Clear list for given range
3839 bool wxRichTextCtrl::ClearListStyle(const wxRichTextRange
& range
, int flags
)
3841 return GetFocusObject()->ClearListStyle(range
.ToInternal(), flags
);
3844 /// Number/renumber any list elements in the given range
3845 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
3847 return GetFocusObject()->NumberList(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
3850 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
3852 return GetFocusObject()->NumberList(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
3855 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
3856 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int specifiedLevel
)
3858 return GetFocusObject()->PromoteList(promoteBy
, range
.ToInternal(), def
, flags
, specifiedLevel
);
3861 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int specifiedLevel
)
3863 return GetFocusObject()->PromoteList(promoteBy
, range
.ToInternal(), defName
, flags
, specifiedLevel
);
3866 /// Deletes the content in the given range
3867 bool wxRichTextCtrl::Delete(const wxRichTextRange
& range
)
3869 return GetFocusObject()->DeleteRangeWithUndo(range
.ToInternal(), this, & GetBuffer());
3872 const wxArrayString
& wxRichTextCtrl::GetAvailableFontNames()
3874 if (sm_availableFontNames
.GetCount() == 0)
3876 sm_availableFontNames
= wxFontEnumerator::GetFacenames();
3877 sm_availableFontNames
.Sort();
3879 return sm_availableFontNames
;
3882 void wxRichTextCtrl::ClearAvailableFontNames()
3884 sm_availableFontNames
.Clear();
3887 void wxRichTextCtrl::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
3889 //wxLogDebug(wxT("wxRichTextCtrl::OnSysColourChanged"));
3891 wxTextAttrEx basicStyle
= GetBasicStyle();
3892 basicStyle
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
3893 SetBasicStyle(basicStyle
);
3894 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
3899 // Refresh the area affected by a selection change
3900 bool wxRichTextCtrl::RefreshForSelectionChange(const wxRichTextSelection
& oldSelection
, const wxRichTextSelection
& newSelection
)
3902 // If the selection is not part of the focus object, or we have multiple ranges, then the chances are that
3903 // the selection contains whole containers rather than just text, so refresh everything
3904 // for now as it would be hard to compute the rectangle bounding all selections.
3905 // TODO: improve on this.
3906 if ((oldSelection
.IsValid() && (oldSelection
.GetContainer() != GetFocusObject() || oldSelection
.GetCount() > 1)) ||
3907 (newSelection
.IsValid() && (newSelection
.GetContainer() != GetFocusObject() || newSelection
.GetCount() > 1)))
3913 wxRichTextRange oldRange
, newRange
;
3914 if (oldSelection
.IsValid())
3915 oldRange
= oldSelection
.GetRange();
3917 oldRange
= wxRICHTEXT_NO_SELECTION
;
3918 if (newSelection
.IsValid())
3919 newRange
= newSelection
.GetRange();
3921 newRange
= wxRICHTEXT_NO_SELECTION
;
3923 // Calculate the refresh rectangle - just the affected lines
3924 long firstPos
, lastPos
;
3925 if (oldRange
.GetStart() == -2 && newRange
.GetStart() != -2)
3927 firstPos
= newRange
.GetStart();
3928 lastPos
= newRange
.GetEnd();
3930 else if (oldRange
.GetStart() != -2 && newRange
.GetStart() == -2)
3932 firstPos
= oldRange
.GetStart();
3933 lastPos
= oldRange
.GetEnd();
3935 else if (oldRange
.GetStart() == -2 && newRange
.GetStart() == -2)
3941 firstPos
= wxMin(oldRange
.GetStart(), newRange
.GetStart());
3942 lastPos
= wxMax(oldRange
.GetEnd(), newRange
.GetEnd());
3945 wxRichTextLine
* firstLine
= GetFocusObject()->GetLineAtPosition(firstPos
);
3946 wxRichTextLine
* lastLine
= GetFocusObject()->GetLineAtPosition(lastPos
);
3948 if (firstLine
&& lastLine
)
3950 wxSize clientSize
= GetClientSize();
3951 wxPoint pt1
= GetPhysicalPoint(firstLine
->GetAbsolutePosition());
3952 wxPoint pt2
= GetPhysicalPoint(lastLine
->GetAbsolutePosition()) + wxPoint(0, lastLine
->GetSize().y
);
3955 pt1
.y
= wxMax(0, pt1
.y
);
3957 pt2
.y
= wxMin(clientSize
.y
, pt2
.y
);
3959 wxRect
rect(pt1
, wxSize(clientSize
.x
, pt2
.y
- pt1
.y
));
3960 RefreshRect(rect
, false);
3968 // margins functions
3969 bool wxRichTextCtrl::DoSetMargins(const wxPoint
& pt
)
3971 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetLeft().SetValue(pt
.x
, wxTEXT_ATTR_UNITS_PIXELS
);
3972 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetRight().SetValue(pt
.x
, wxTEXT_ATTR_UNITS_PIXELS
);
3973 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetTop().SetValue(pt
.y
, wxTEXT_ATTR_UNITS_PIXELS
);
3974 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetBottom().SetValue(pt
.y
, wxTEXT_ATTR_UNITS_PIXELS
);
3979 wxPoint
wxRichTextCtrl::DoGetMargins() const
3981 return wxPoint(GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetLeft().GetValue(),
3982 GetBuffer().GetAttributes().GetTextBoxAttr().GetMargins().GetTop().GetValue());
3985 bool wxRichTextCtrl::SetFocusObject(wxRichTextParagraphLayoutBox
* obj
, bool setCaretPosition
)
3987 if (obj
&& !obj
->AcceptsFocus())
3990 wxRichTextParagraphLayoutBox
* oldContainer
= GetFocusObject();
3991 bool changingContainer
= (m_focusObject
!= obj
);
3993 m_focusObject
= obj
;
3996 m_focusObject
= & m_buffer
;
3998 if (setCaretPosition
&& changingContainer
)
4000 m_selection
.Reset();
4001 m_selectionAnchor
= -2;
4002 m_selectionAnchorObject
= NULL
;
4003 m_selectionState
= wxRichTextCtrlSelectionState_Normal
;
4007 m_caretAtLineStart
= false;
4008 MoveCaret(pos
, m_caretAtLineStart
);
4009 SetDefaultStyleToCursorStyle();
4011 wxRichTextEvent
cmdEvent(
4012 wxEVT_COMMAND_RICHTEXT_FOCUS_OBJECT_CHANGED
,
4014 cmdEvent
.SetEventObject(this);
4015 cmdEvent
.SetPosition(m_caretPosition
+1);
4016 cmdEvent
.SetOldContainer(oldContainer
);
4017 cmdEvent
.SetContainer(m_focusObject
);
4019 GetEventHandler()->ProcessEvent(cmdEvent
);
4024 #if wxRICHTEXT_USE_OWN_CARET
4026 // ----------------------------------------------------------------------------
4027 // initialization and destruction
4028 // ----------------------------------------------------------------------------
4030 void wxRichTextCaret::Init()
4036 m_richTextCtrl
= NULL
;
4037 m_needsUpdate
= false;
4041 wxRichTextCaret::~wxRichTextCaret()
4043 if (m_timer
.IsRunning())
4047 // ----------------------------------------------------------------------------
4048 // showing/hiding/moving the caret (base class interface)
4049 // ----------------------------------------------------------------------------
4051 void wxRichTextCaret::DoShow()
4055 if (!m_timer
.IsRunning())
4056 m_timer
.Start(GetBlinkTime());
4061 void wxRichTextCaret::DoHide()
4063 if (m_timer
.IsRunning())
4069 void wxRichTextCaret::DoMove()
4075 if (m_xOld
!= -1 && m_yOld
!= -1)
4079 wxRect
rect(GetPosition(), GetSize());
4080 m_richTextCtrl
->RefreshRect(rect
, false);
4089 void wxRichTextCaret::DoSize()
4091 int countVisible
= m_countVisible
;
4092 if (countVisible
> 0)
4098 if (countVisible
> 0)
4100 m_countVisible
= countVisible
;
4105 // ----------------------------------------------------------------------------
4106 // handling the focus
4107 // ----------------------------------------------------------------------------
4109 void wxRichTextCaret::OnSetFocus()
4117 void wxRichTextCaret::OnKillFocus()
4122 // ----------------------------------------------------------------------------
4123 // drawing the caret
4124 // ----------------------------------------------------------------------------
4126 void wxRichTextCaret::Refresh()
4130 wxRect
rect(GetPosition(), GetSize());
4131 m_richTextCtrl
->RefreshRect(rect
, false);
4135 void wxRichTextCaret::DoDraw(wxDC
*dc
)
4137 dc
->SetPen( *wxBLACK_PEN
);
4139 dc
->SetBrush(*(m_hasFocus
? wxBLACK_BRUSH
: wxTRANSPARENT_BRUSH
));
4140 dc
->SetPen(*wxBLACK_PEN
);
4142 wxPoint
pt(m_x
, m_y
);
4146 pt
= m_richTextCtrl
->GetLogicalPoint(pt
);
4148 if (IsVisible() && m_flashOn
)
4149 dc
->DrawRectangle(pt
.x
, pt
.y
, m_width
, m_height
);
4152 void wxRichTextCaret::Notify()
4154 m_flashOn
= !m_flashOn
;
4158 void wxRichTextCaretTimer::Notify()
4163 // wxRICHTEXT_USE_OWN_CARET
4166 bool wxRichTextContextMenuPropertiesInfo::AddItem(const wxString
& label
, wxRichTextObject
* obj
)
4170 m_labels
.Add(label
);
4178 // Returns number of menu items were added.
4179 int wxRichTextContextMenuPropertiesInfo::AddMenuItems(wxMenu
* menu
, int startCmd
) const
4181 wxMenuItem
* item
= menu
->FindItem(startCmd
);
4182 // If none of the standard properties identifiers are in the menu, assume it's
4183 // a custom menu without properties commands, and don't add them.
4186 // If no items, to add just set the text to something generic
4187 if (GetCount() == 0)
4189 menu
->SetLabel(startCmd
, _("&Properties"));
4191 // Delete the others if necessary
4193 for (i
= startCmd
+1; i
< startCmd
+3; i
++)
4195 if (menu
->FindItem(i
))
4205 // Find the position of the first properties item
4206 for (i
= 0; i
< (int) menu
->GetMenuItemCount(); i
++)
4208 wxMenuItem
* item
= menu
->FindItemByPosition(i
);
4209 if (item
&& item
->GetId() == startCmd
)
4218 int insertBefore
= pos
+1;
4219 for (i
= startCmd
; i
< startCmd
+GetCount(); i
++)
4221 if (menu
->FindItem(i
))
4223 menu
->SetLabel(i
, m_labels
[i
- startCmd
]);
4227 if (insertBefore
>= (int) menu
->GetMenuItemCount())
4228 menu
->Append(i
, m_labels
[i
- startCmd
]);
4230 menu
->Insert(insertBefore
, i
, m_labels
[i
- startCmd
]);
4235 // Delete any old items still left on the menu
4236 for (i
= startCmd
+ GetCount(); i
< startCmd
+3; i
++)
4238 if (menu
->FindItem(i
))
4250 // Add appropriate menu items for the current container and clicked on object
4251 // (and container's parent, if appropriate).
4252 int wxRichTextContextMenuPropertiesInfo::AddItems(wxRichTextObject
* container
, wxRichTextObject
* obj
)
4255 if (obj
&& obj
->CanEditProperties())
4256 AddItem(obj
->GetPropertiesMenuLabel(), obj
);
4258 if (container
&& container
!= obj
&& container
->CanEditProperties() && m_labels
.Index(container
->GetPropertiesMenuLabel()) == wxNOT_FOUND
)
4259 AddItem(container
->GetPropertiesMenuLabel(), container
);
4261 if (container
&& container
->GetParent() && container
->GetParent()->CanEditProperties() && m_labels
.Index(container
->GetParent()->GetPropertiesMenuLabel()) == wxNOT_FOUND
)
4262 AddItem(container
->GetParent()->GetPropertiesMenuLabel(), container
->GetParent());