1 /////////////////////////////////////////////////////////////////////////////
2 // Name: richtext/richeditctrl.cpp
3 // Purpose: A rich edit control
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
27 #include "wx/textfile.h"
29 #include "wx/settings.h"
30 #include "wx/filename.h"
31 #include "wx/dcbuffer.h"
33 #include "wx/richtext/richtextctrl.h"
34 #include "wx/arrimpl.cpp"
36 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_ITEM_SELECTED
)
37 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_ITEM_DESELECTED
)
38 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
)
39 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
)
40 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
)
41 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
)
42 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_RETURN
)
44 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
45 IMPLEMENT_CLASS( wxRichTextCtrl
, wxControl
)
47 IMPLEMENT_CLASS( wxRichTextCtrl
, wxScrolledWindow
)
50 IMPLEMENT_CLASS( wxRichTextEvent
, wxNotifyEvent
)
52 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
53 BEGIN_EVENT_TABLE( wxRichTextCtrl
, wxControl
)
55 BEGIN_EVENT_TABLE( wxRichTextCtrl
, wxScrolledWindow
)
57 EVT_PAINT(wxRichTextCtrl::OnPaint
)
58 EVT_ERASE_BACKGROUND(wxRichTextCtrl::OnEraseBackground
)
59 EVT_IDLE(wxRichTextCtrl::OnIdle
)
60 EVT_SCROLLWIN(wxRichTextCtrl::OnScroll
)
61 EVT_LEFT_DOWN(wxRichTextCtrl::OnLeftClick
)
62 EVT_MOTION(wxRichTextCtrl::OnMoveMouse
)
63 EVT_LEFT_UP(wxRichTextCtrl::OnLeftUp
)
64 EVT_RIGHT_DOWN(wxRichTextCtrl::OnRightClick
)
65 EVT_MIDDLE_DOWN(wxRichTextCtrl::OnMiddleClick
)
66 EVT_LEFT_DCLICK(wxRichTextCtrl::OnLeftDClick
)
67 EVT_CHAR(wxRichTextCtrl::OnChar
)
68 EVT_SIZE(wxRichTextCtrl::OnSize
)
69 EVT_SET_FOCUS(wxRichTextCtrl::OnSetFocus
)
70 EVT_KILL_FOCUS(wxRichTextCtrl::OnKillFocus
)
71 EVT_CONTEXT_MENU(wxRichTextCtrl::OnContextMenu
)
73 EVT_MENU(wxID_UNDO
, wxRichTextCtrl::OnUndo
)
74 EVT_UPDATE_UI(wxID_UNDO
, wxRichTextCtrl::OnUpdateUndo
)
76 EVT_MENU(wxID_REDO
, wxRichTextCtrl::OnRedo
)
77 EVT_UPDATE_UI(wxID_REDO
, wxRichTextCtrl::OnUpdateRedo
)
79 EVT_MENU(wxID_COPY
, wxRichTextCtrl::OnCopy
)
80 EVT_UPDATE_UI(wxID_COPY
, wxRichTextCtrl::OnUpdateCopy
)
82 EVT_MENU(wxID_PASTE
, wxRichTextCtrl::OnPaste
)
83 EVT_UPDATE_UI(wxID_PASTE
, wxRichTextCtrl::OnUpdatePaste
)
85 EVT_MENU(wxID_CUT
, wxRichTextCtrl::OnCut
)
86 EVT_UPDATE_UI(wxID_CUT
, wxRichTextCtrl::OnUpdateCut
)
88 EVT_MENU(wxID_CLEAR
, wxRichTextCtrl::OnClear
)
89 EVT_UPDATE_UI(wxID_CLEAR
, wxRichTextCtrl::OnUpdateClear
)
91 EVT_MENU(wxID_SELECTALL
, wxRichTextCtrl::OnSelectAll
)
92 EVT_UPDATE_UI(wxID_SELECTALL
, wxRichTextCtrl::OnUpdateSelectAll
)
99 wxRichTextCtrl::wxRichTextCtrl()
100 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
101 : wxScrollHelper(this)
107 wxRichTextCtrl::wxRichTextCtrl( wxWindow
* parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
, long style
)
108 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
109 : wxScrollHelper(this)
113 Create(parent
, id
, pos
, size
, style
);
117 bool wxRichTextCtrl::Create( wxWindow
* parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
, long style
)
119 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
120 if (!wxTextCtrlBase::Create(parent
, id
, pos
, size
, style
|wxFULL_REPAINT_ON_RESIZE
124 if (!wxScrolledWindow::Create(parent
, id
, pos
, size
, style
|wxFULL_REPAINT_ON_RESIZE
131 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
134 GetBuffer().SetRichTextCtrl(this);
136 wxTextAttrEx attributes
;
137 attributes
.SetFont(GetFont());
138 attributes
.SetTextColour(*wxBLACK
);
139 attributes
.SetBackgroundColour(*wxWHITE
);
140 attributes
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
141 attributes
.SetFlags(wxTEXT_ATTR_ALL
);
143 SetDefaultStyle(attributes
);
144 SetBasicStyle(attributes
);
146 SetBackgroundColour(*wxWHITE
);
147 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
149 // Tell the sizers to use the given or best size
150 SetBestFittingSize(size
);
153 RecreateBuffer(size
);
155 SetCursor(wxCursor(wxCURSOR_IBEAM
));
160 wxRichTextCtrl::~wxRichTextCtrl()
162 delete m_contextMenu
;
165 /// Member initialisation
166 void wxRichTextCtrl::Init()
169 m_contextMenu
= NULL
;
171 m_caretPosition
= -1;
172 m_selectionRange
.SetRange(-2, -2);
173 m_selectionAnchor
= -2;
175 m_caretAtLineStart
= false;
177 m_fullLayoutRequired
= false;
178 m_fullLayoutTime
= 0;
179 m_fullLayoutSavedPosition
= 0;
180 m_delayedLayoutThreshold
= wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD
;
183 /// Call Freeze to prevent refresh
184 void wxRichTextCtrl::Freeze()
189 /// Call Thaw to refresh
190 void wxRichTextCtrl::Thaw()
194 if (m_freezeCount
== 0)
202 void wxRichTextCtrl::Clear()
205 m_buffer
.SetDirty(true);
206 m_caretPosition
= -1;
207 m_caretAtLineStart
= false;
208 m_selectionRange
.SetRange(-2, -2);
210 if (m_freezeCount
== 0)
219 void wxRichTextCtrl::OnPaint(wxPaintEvent
& WXUNUSED(event
))
225 wxBufferedPaintDC
dc(this, m_bufferBitmap
);
226 //wxLogDebug(wxT("OnPaint"));
230 if (m_freezeCount
> 0)
233 dc
.SetFont(GetFont());
235 // Paint the background
238 wxRegion dirtyRegion
= GetUpdateRegion();
240 wxRect
drawingArea(GetLogicalPoint(wxPoint(0, 0)), GetClientSize());
241 wxRect
availableSpace(GetClientSize());
242 if (GetBuffer().GetDirty())
244 GetBuffer().Layout(dc
, availableSpace
, wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
);
245 GetBuffer().SetDirty(false);
249 GetBuffer().Draw(dc
, GetBuffer().GetRange(), GetSelectionRange(), drawingArea
, 0 /* descent */, 0 /* flags */);
258 // Empty implementation, to prevent flicker
259 void wxRichTextCtrl::OnEraseBackground(wxEraseEvent
& WXUNUSED(event
))
263 void wxRichTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
265 wxCaret
* caret
= new wxCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16);
274 void wxRichTextCtrl::OnKillFocus(wxFocusEvent
& WXUNUSED(event
))
283 void wxRichTextCtrl::OnLeftClick(wxMouseEvent
& event
)
289 dc
.SetFont(GetFont());
292 int hit
= GetBuffer().HitTest(dc
, event
.GetLogicalPosition(dc
), position
);
294 if (hit
!= wxRICHTEXT_HITTEST_NONE
)
296 m_dragStart
= event
.GetLogicalPosition(dc
);
302 bool caretAtLineStart
= false;
304 if (hit
& wxRICHTEXT_HITTEST_BEFORE
)
306 // If we're at the start of a line (but not first in para)
307 // then we should keep the caret showing at the start of the line
308 // by showing the m_caretAtLineStart flag.
309 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
310 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(position
);
312 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
313 caretAtLineStart
= true;
317 MoveCaret(position
, caretAtLineStart
);
318 SetDefaultStyleToCursorStyle();
321 wxWindow
* p
= GetParent();
322 while (p
&& !p
->IsKindOf(CLASSINFO(wxFrame
)))
325 wxFrame
* frame
= wxDynamicCast(p
, wxFrame
);
328 wxString msg
= wxString::Format(wxT("Found position %ld"), position
);
329 frame
->SetStatusText(msg
, 1);
338 void wxRichTextCtrl::OnLeftUp(wxMouseEvent
& WXUNUSED(event
))
343 if (GetCapture() == this)
349 void wxRichTextCtrl::OnMoveMouse(wxMouseEvent
& event
)
351 if (!event
.Dragging())
359 dc
.SetFont(GetFont());
362 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
363 int hit
= GetBuffer().HitTest(dc
, logicalPt
, position
);
365 if (m_dragging
&& hit
!= wxRICHTEXT_HITTEST_NONE
)
367 // TODO: test closeness
369 bool caretAtLineStart
= false;
371 if (hit
& wxRICHTEXT_HITTEST_BEFORE
)
373 // If we're at the start of a line (but not first in para)
374 // then we should keep the caret showing at the start of the line
375 // by showing the m_caretAtLineStart flag.
376 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
377 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(position
);
379 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
380 caretAtLineStart
= true;
384 if (m_caretPosition
!= position
)
386 bool extendSel
= ExtendSelection(m_caretPosition
, position
, wxRICHTEXT_SHIFT_DOWN
);
388 MoveCaret(position
, caretAtLineStart
);
389 SetDefaultStyleToCursorStyle();
398 void wxRichTextCtrl::OnRightClick(wxMouseEvent
& event
)
404 /// Left-double-click
405 void wxRichTextCtrl::OnLeftDClick(wxMouseEvent
& event
)
411 void wxRichTextCtrl::OnMiddleClick(wxMouseEvent
& event
)
417 void wxRichTextCtrl::OnChar(wxKeyEvent
& event
)
420 if (event
.ControlDown())
421 flags
|= wxRICHTEXT_CTRL_DOWN
;
422 if (event
.ShiftDown())
423 flags
|= wxRICHTEXT_SHIFT_DOWN
;
425 flags
|= wxRICHTEXT_ALT_DOWN
;
427 if (event
.GetKeyCode() == WXK_LEFT
||
428 event
.GetKeyCode() == WXK_RIGHT
||
429 event
.GetKeyCode() == WXK_UP
||
430 event
.GetKeyCode() == WXK_DOWN
||
431 event
.GetKeyCode() == WXK_HOME
||
432 event
.GetKeyCode() == WXK_PAGEUP
||
433 event
.GetKeyCode() == WXK_PAGEDOWN
||
434 event
.GetKeyCode() == WXK_PRIOR
||
435 event
.GetKeyCode() == WXK_NEXT
||
436 event
.GetKeyCode() == WXK_END
)
438 KeyboardNavigate(event
.GetKeyCode(), flags
);
440 else if (event
.GetKeyCode() == WXK_RETURN
)
442 BeginBatchUndo(_("Insert Text"));
444 long newPos
= m_caretPosition
;
446 DeleteSelectedContent(& newPos
);
448 GetBuffer().InsertNewlineWithUndo(newPos
+1, this);
450 wxRichTextEvent
cmdEvent(
451 wxEVT_COMMAND_RICHTEXT_RETURN
,
453 cmdEvent
.SetEventObject(this);
454 cmdEvent
.SetFlags(flags
);
455 GetEventHandler()->ProcessEvent(cmdEvent
);
458 SetDefaultStyleToCursorStyle();
460 else if (event
.GetKeyCode() == WXK_BACK
)
462 BeginBatchUndo(_("Delete Text"));
464 // Submit range in character positions, which are greater than caret positions,
465 // so subtract 1 for deleted character and add 1 for conversion to character position.
466 if (m_caretPosition
> -1 && !HasSelection())
468 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(m_caretPosition
, m_caretPosition
),
469 m_caretPosition
, // Current caret position
470 m_caretPosition
-1, // New caret position
474 DeleteSelectedContent();
478 // Shouldn't this be in Do()?
479 if (GetLastPosition() == -1)
483 m_caretPosition
= -1;
485 SetDefaultStyleToCursorStyle();
489 else if (event
.GetKeyCode() == WXK_DELETE
)
491 BeginBatchUndo(_("Delete Text"));
493 // Submit range in character positions, which are greater than caret positions,
494 if (m_caretPosition
< GetBuffer().GetRange().GetEnd()+1 && !HasSelection())
496 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(m_caretPosition
+1, m_caretPosition
+1),
497 m_caretPosition
, // Current caret position
498 m_caretPosition
+1, // New caret position
502 DeleteSelectedContent();
506 // Shouldn't this be in Do()?
507 if (GetLastPosition() == -1)
511 m_caretPosition
= -1;
513 SetDefaultStyleToCursorStyle();
518 BeginBatchUndo(_("Insert Text"));
520 long newPos
= m_caretPosition
;
521 DeleteSelectedContent(& newPos
);
523 wxString str
= (wxChar
) event
.GetKeyCode();
524 GetBuffer().InsertTextWithUndo(newPos
+1, str
, this);
528 SetDefaultStyleToCursorStyle();
536 /// Delete content if there is a selection, e.g. when pressing a key.
537 bool wxRichTextCtrl::DeleteSelectedContent(long* newPos
)
541 long pos
= m_selectionRange
.GetStart();
542 GetBuffer().DeleteRangeWithUndo(m_selectionRange
,
543 m_caretPosition
, // Current caret position
544 pos
, // New caret position
546 m_selectionRange
.SetRange(-2, -2);
556 /// Keyboard navigation
560 Left: left one character
561 Right: right one character
564 Ctrl-Left: left one word
565 Ctrl-Right: right one word
566 Ctrl-Up: previous paragraph start
567 Ctrl-Down: next start of paragraph
570 Ctrl-Home: start of document
571 Ctrl-End: end of document
573 Page-Down: Down a screen
577 Ctrl-Alt-PgUp: Start of window
578 Ctrl-Alt-PgDn: End of window
579 F8: Start selection mode
580 Esc: End selection mode
582 Adding Shift does the above but starts/extends selection.
587 bool wxRichTextCtrl::KeyboardNavigate(int keyCode
, int flags
)
589 bool success
= false;
591 if (keyCode
== WXK_RIGHT
)
593 if (flags
& wxRICHTEXT_CTRL_DOWN
)
594 success
= WordRight(1, flags
);
596 success
= MoveRight(1, flags
);
598 else if (keyCode
== WXK_LEFT
)
600 if (flags
& wxRICHTEXT_CTRL_DOWN
)
601 success
= WordLeft(1, flags
);
603 success
= MoveLeft(1, flags
);
605 else if (keyCode
== WXK_UP
)
607 if (flags
& wxRICHTEXT_CTRL_DOWN
)
608 success
= MoveToParagraphStart(flags
);
610 success
= MoveUp(1, flags
);
612 else if (keyCode
== WXK_DOWN
)
614 if (flags
& wxRICHTEXT_CTRL_DOWN
)
615 success
= MoveToParagraphEnd(flags
);
617 success
= MoveDown(1, flags
);
619 else if (keyCode
== WXK_PAGEUP
|| keyCode
== WXK_PRIOR
)
621 success
= PageUp(1, flags
);
623 else if (keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NEXT
)
625 success
= PageDown(1, flags
);
627 else if (keyCode
== WXK_HOME
)
629 if (flags
& wxRICHTEXT_CTRL_DOWN
)
630 success
= MoveHome(flags
);
632 success
= MoveToLineStart(flags
);
634 else if (keyCode
== WXK_END
)
636 if (flags
& wxRICHTEXT_CTRL_DOWN
)
637 success
= MoveEnd(flags
);
639 success
= MoveToLineEnd(flags
);
644 ScrollIntoView(m_caretPosition
, keyCode
);
645 SetDefaultStyleToCursorStyle();
651 /// Extend the selection. Selections are in caret positions.
652 bool wxRichTextCtrl::ExtendSelection(long oldPos
, long newPos
, int flags
)
654 if (flags
& wxRICHTEXT_SHIFT_DOWN
)
656 // If not currently selecting, start selecting
657 if (m_selectionRange
.GetStart() == -2)
659 m_selectionAnchor
= oldPos
;
662 m_selectionRange
.SetRange(newPos
+1, oldPos
);
664 m_selectionRange
.SetRange(oldPos
+1, newPos
);
668 // Always ensure that the selection range start is greater than
670 if (newPos
> m_selectionAnchor
)
671 m_selectionRange
.SetRange(m_selectionAnchor
+1, newPos
);
673 m_selectionRange
.SetRange(newPos
+1, m_selectionAnchor
);
676 if (m_selectionRange
.GetStart() > m_selectionRange
.GetEnd())
678 wxLogDebug(wxT("Strange selection range"));
687 /// Scroll into view, returning true if we scrolled.
688 /// This takes a _caret_ position.
689 bool wxRichTextCtrl::ScrollIntoView(long position
, int keyCode
)
691 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(position
);
697 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
700 GetViewStart(& startX
, & startY
);
702 startY
= startY
* ppuY
;
705 GetVirtualSize(& sx
, & sy
);
710 wxRect rect
= line
->GetRect();
712 bool scrolled
= false;
714 wxSize clientSize
= GetClientSize();
717 if (keyCode
== WXK_DOWN
|| keyCode
== WXK_RIGHT
|| keyCode
== WXK_END
|| keyCode
== WXK_NEXT
|| keyCode
== WXK_PAGEDOWN
)
719 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
721 // Make it scroll so this item is at the bottom
723 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
724 y
= (int) (0.5 + y
/ppuY
);
728 SetScrollbars(ppuX
, ppuY
, sx
, sy
, 0, y
);
732 else if (rect
.y
< startY
)
734 // Make it scroll so this item is at the top
737 y
= (int) (0.5 + y
/ppuY
);
741 SetScrollbars(ppuX
, ppuY
, sx
, sy
, 0, y
);
747 else if (keyCode
== WXK_UP
|| keyCode
== WXK_LEFT
|| keyCode
== WXK_HOME
|| keyCode
== WXK_PRIOR
|| keyCode
== WXK_PAGEUP
)
751 // Make it scroll so this item is at the top
754 y
= (int) (0.5 + y
/ppuY
);
758 SetScrollbars(ppuX
, ppuY
, sx
, sy
, 0, y
);
762 else if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
764 // Make it scroll so this item is at the bottom
766 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
767 y
= (int) (0.5 + y
/ppuY
);
771 SetScrollbars(ppuX
, ppuY
, sx
, sy
, 0, y
);
781 /// Is the given position visible on the screen?
782 bool wxRichTextCtrl::IsPositionVisible(long pos
) const
784 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(pos
-1);
790 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
793 GetViewStart(& startX
, & startY
);
795 startY
= startY
* ppuY
;
798 GetVirtualSize(& sx
, & sy
);
803 wxRect rect
= line
->GetRect();
805 wxSize clientSize
= GetClientSize();
807 return !(((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
)) || rect
.y
< startY
);
810 void wxRichTextCtrl::SetCaretPosition(long position
, bool showAtLineStart
)
812 m_caretPosition
= position
;
813 m_caretAtLineStart
= showAtLineStart
;
816 /// Move caret one visual step forward: this may mean setting a flag
817 /// and keeping the same position if we're going from the end of one line
818 /// to the start of the next, which may be the exact same caret position.
819 void wxRichTextCtrl::MoveCaretForward(long oldPosition
)
821 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(oldPosition
);
823 // Only do the check if we're not at the end of the paragraph (where things work OK
825 if (para
&& (oldPosition
!= para
->GetRange().GetEnd() - 1))
827 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(oldPosition
);
831 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
833 // We're at the end of a line. See whether we need to
834 // stay at the same actual caret position but change visual
836 if (oldPosition
== lineRange
.GetEnd())
838 if (m_caretAtLineStart
)
840 // We're already at the start of the line, so actually move on now.
841 m_caretPosition
= oldPosition
+ 1;
842 m_caretAtLineStart
= false;
846 // We're showing at the end of the line, so keep to
847 // the same position but indicate that we're to show
848 // at the start of the next line.
849 m_caretPosition
= oldPosition
;
850 m_caretAtLineStart
= true;
852 SetDefaultStyleToCursorStyle();
858 SetDefaultStyleToCursorStyle();
861 /// Move caret one visual step backward: this may mean setting a flag
862 /// and keeping the same position if we're going from the end of one line
863 /// to the start of the next, which may be the exact same caret position.
864 void wxRichTextCtrl::MoveCaretBack(long oldPosition
)
866 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(oldPosition
);
868 // Only do the check if we're not at the start of the paragraph (where things work OK
870 if (para
&& (oldPosition
!= para
->GetRange().GetStart()))
872 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(oldPosition
);
876 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
878 // We're at the start of a line. See whether we need to
879 // stay at the same actual caret position but change visual
881 if (oldPosition
== lineRange
.GetStart())
883 m_caretPosition
= oldPosition
-1;
884 m_caretAtLineStart
= true;
887 else if (oldPosition
== lineRange
.GetEnd())
889 if (m_caretAtLineStart
)
891 // We're at the start of the line, so keep the same caret position
892 // but clear the start-of-line flag.
893 m_caretPosition
= oldPosition
;
894 m_caretAtLineStart
= false;
898 // We're showing at the end of the line, so go back
899 // to the previous character position.
900 m_caretPosition
= oldPosition
- 1;
902 SetDefaultStyleToCursorStyle();
908 SetDefaultStyleToCursorStyle();
912 bool wxRichTextCtrl::MoveRight(int noPositions
, int flags
)
914 long endPos
= GetBuffer().GetRange().GetEnd();
916 if (m_caretPosition
+ noPositions
< endPos
)
918 long oldPos
= m_caretPosition
;
919 long newPos
= m_caretPosition
+ noPositions
;
921 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
925 // Determine by looking at oldPos and m_caretPosition whether
926 // we moved from the end of a line to the start of the next line, in which case
927 // we want to adjust the caret position such that it is positioned at the
928 // start of the next line, rather than jumping past the first character of the
930 if (noPositions
== 1 && !extendSel
)
931 MoveCaretForward(oldPos
);
933 SetCaretPosition(newPos
);
936 SetDefaultStyleToCursorStyle();
947 bool wxRichTextCtrl::MoveLeft(int noPositions
, int flags
)
951 if (m_caretPosition
> startPos
- noPositions
+ 1)
953 long oldPos
= m_caretPosition
;
954 long newPos
= m_caretPosition
- noPositions
;
955 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
959 if (noPositions
== 1 && !extendSel
)
960 MoveCaretBack(oldPos
);
962 SetCaretPosition(newPos
);
965 SetDefaultStyleToCursorStyle();
976 bool wxRichTextCtrl::MoveUp(int noLines
, int flags
)
978 return MoveDown(- noLines
, flags
);
982 bool wxRichTextCtrl::MoveDown(int noLines
, int flags
)
987 long lineNumber
= GetBuffer().GetVisibleLineNumber(m_caretPosition
, true, m_caretAtLineStart
);
988 wxPoint pt
= GetCaret()->GetPosition();
989 long newLine
= lineNumber
+ noLines
;
991 if (lineNumber
!= -1)
995 long lastLine
= GetBuffer().GetVisibleLineNumber(GetBuffer().GetRange().GetEnd());
997 if (newLine
> lastLine
)
1007 wxRichTextLine
* lineObj
= GetBuffer().GetLineForVisibleLineNumber(newLine
);
1010 pt
.y
= lineObj
->GetAbsolutePosition().y
+ 2;
1016 wxClientDC
dc(this);
1018 dc
.SetFont(GetFont());
1020 int hitTest
= GetBuffer().HitTest(dc
, pt
, newPos
);
1022 if (hitTest
!= wxRICHTEXT_HITTEST_NONE
)
1024 // If end of previous line, and hitTest is wxRICHTEXT_HITTEST_BEFORE,
1025 // we want to be at the end of the last line but with m_caretAtLineStart set to true,
1026 // so we view the caret at the start of the line.
1027 bool caretLineStart
= false;
1028 if (hitTest
== wxRICHTEXT_HITTEST_BEFORE
)
1030 wxRichTextLine
* thisLine
= GetBuffer().GetLineAtPosition(newPos
-1);
1031 wxRichTextRange lineRange
;
1033 lineRange
= thisLine
->GetAbsoluteRange();
1035 if (thisLine
&& (newPos
-1) == lineRange
.GetEnd())
1038 caretLineStart
= true;
1042 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(newPos
);
1043 if (para
&& para
->GetRange().GetStart() == newPos
)
1048 long newSelEnd
= newPos
;
1050 bool extendSel
= ExtendSelection(m_caretPosition
, newSelEnd
, flags
);
1054 SetCaretPosition(newPos
, caretLineStart
);
1056 SetDefaultStyleToCursorStyle();
1066 /// Move to the end of the paragraph
1067 bool wxRichTextCtrl::MoveToParagraphEnd(int flags
)
1069 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(m_caretPosition
, true);
1072 long newPos
= para
->GetRange().GetEnd() - 1;
1073 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1077 SetCaretPosition(newPos
);
1079 SetDefaultStyleToCursorStyle();
1089 /// Move to the start of the paragraph
1090 bool wxRichTextCtrl::MoveToParagraphStart(int flags
)
1092 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(m_caretPosition
, true);
1095 long newPos
= para
->GetRange().GetStart() - 1;
1096 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1100 SetCaretPosition(newPos
);
1102 SetDefaultStyleToCursorStyle();
1112 /// Move to the end of the line
1113 bool wxRichTextCtrl::MoveToLineEnd(int flags
)
1115 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1119 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1120 long newPos
= lineRange
.GetEnd();
1121 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1125 SetCaretPosition(newPos
);
1127 SetDefaultStyleToCursorStyle();
1137 /// Move to the start of the line
1138 bool wxRichTextCtrl::MoveToLineStart(int flags
)
1140 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1143 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1144 long newPos
= lineRange
.GetStart()-1;
1146 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1150 wxRichTextParagraph
* para
= GetBuffer().GetParagraphForLine(line
);
1152 SetCaretPosition(newPos
, para
->GetRange().GetStart() != lineRange
.GetStart());
1154 SetDefaultStyleToCursorStyle();
1164 /// Move to the start of the buffer
1165 bool wxRichTextCtrl::MoveHome(int flags
)
1167 if (m_caretPosition
!= -1)
1169 bool extendSel
= ExtendSelection(m_caretPosition
, -1, flags
);
1173 SetCaretPosition(-1);
1175 SetDefaultStyleToCursorStyle();
1185 /// Move to the end of the buffer
1186 bool wxRichTextCtrl::MoveEnd(int flags
)
1188 long endPos
= GetBuffer().GetRange().GetEnd()-1;
1190 if (m_caretPosition
!= endPos
)
1192 bool extendSel
= ExtendSelection(m_caretPosition
, endPos
, flags
);
1196 SetCaretPosition(endPos
);
1198 SetDefaultStyleToCursorStyle();
1208 /// Move noPages pages up
1209 bool wxRichTextCtrl::PageUp(int noPages
, int flags
)
1211 return PageDown(- noPages
, flags
);
1214 /// Move noPages pages down
1215 bool wxRichTextCtrl::PageDown(int noPages
, int flags
)
1217 // Calculate which line occurs noPages * screen height further down.
1218 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1221 wxSize clientSize
= GetClientSize();
1222 int newY
= line
->GetAbsolutePosition().y
+ noPages
*clientSize
.y
;
1224 wxRichTextLine
* newLine
= GetBuffer().GetLineAtYPosition(newY
);
1227 wxRichTextRange lineRange
= newLine
->GetAbsoluteRange();
1228 long pos
= lineRange
.GetStart()-1;
1229 if (pos
!= m_caretPosition
)
1231 wxRichTextParagraph
* para
= GetBuffer().GetParagraphForLine(newLine
);
1233 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1237 SetCaretPosition(pos
, para
->GetRange().GetStart() != lineRange
.GetStart());
1239 SetDefaultStyleToCursorStyle();
1251 // Finds the caret position for the next word
1252 long wxRichTextCtrl::FindNextWordPosition(int direction
) const
1254 long endPos
= GetBuffer().GetRange().GetEnd();
1258 long i
= m_caretPosition
+1+direction
; // +1 for conversion to character pos
1260 // First skip current text to space
1261 while (i
< endPos
&& i
> -1)
1263 // i is in character, not caret positions
1264 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1265 if (text
!= wxT(" ") && !text
.empty())
1272 while (i
< endPos
&& i
> -1)
1274 // i is in character, not caret positions
1275 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1276 if (text
.empty()) // End of paragraph, or maybe an image
1277 return wxMax(-1, i
- 1);
1278 else if (text
== wxT(" ") || text
.empty())
1282 // Convert to caret position
1283 return wxMax(-1, i
- 1);
1292 long i
= m_caretPosition
;
1294 // First skip white space
1295 while (i
< endPos
&& i
> -1)
1297 // i is in character, not caret positions
1298 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1299 if (text
.empty()) // End of paragraph, or maybe an image
1301 else if (text
== wxT(" ") || text
.empty())
1306 // Next skip current text to space
1307 while (i
< endPos
&& i
> -1)
1309 // i is in character, not caret positions
1310 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1311 if (text
!= wxT(" ") /* && !text.empty() */)
1324 /// Move n words left
1325 bool wxRichTextCtrl::WordLeft(int WXUNUSED(n
), int flags
)
1327 long pos
= FindNextWordPosition(-1);
1328 if (pos
!= m_caretPosition
)
1330 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
, true);
1332 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1336 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
1338 SetDefaultStyleToCursorStyle();
1348 /// Move n words right
1349 bool wxRichTextCtrl::WordRight(int WXUNUSED(n
), int flags
)
1351 long pos
= FindNextWordPosition(1);
1352 if (pos
!= m_caretPosition
)
1354 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
, true);
1356 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1360 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
1362 SetDefaultStyleToCursorStyle();
1373 void wxRichTextCtrl::OnSize(wxSizeEvent
& event
)
1375 // Only do sizing optimization for large buffers
1376 if (GetBuffer().GetRange().GetEnd() > m_delayedLayoutThreshold
)
1378 m_fullLayoutRequired
= true;
1379 m_fullLayoutTime
= wxGetLocalTimeMillis();
1380 m_fullLayoutSavedPosition
= GetFirstVisiblePosition();
1381 LayoutContent(true /* onlyVisibleRect */);
1384 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
1392 /// Idle-time processing
1393 void wxRichTextCtrl::OnIdle(wxIdleEvent
& event
)
1395 const int layoutInterval
= wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL
;
1397 if (m_fullLayoutRequired
&& (wxGetLocalTimeMillis() > (m_fullLayoutTime
+ layoutInterval
)))
1399 m_fullLayoutRequired
= false;
1400 m_fullLayoutTime
= 0;
1401 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
1402 ShowPosition(m_fullLayoutSavedPosition
);
1409 void wxRichTextCtrl::OnScroll(wxScrollWinEvent
& event
)
1415 /// Set up scrollbars, e.g. after a resize
1416 void wxRichTextCtrl::SetupScrollbars(bool atTop
)
1421 if (GetBuffer().IsEmpty())
1423 SetScrollbars(0, 0, 0, 0, 0, 0);
1427 // TODO: reimplement scrolling so we scroll by line, not by fixed number
1428 // of pixels. See e.g. wxVScrolledWindow for ideas.
1429 int pixelsPerUnit
= 5; // 10;
1430 wxSize clientSize
= GetClientSize();
1432 int maxHeight
= GetBuffer().GetCachedSize().y
;
1434 int unitsY
= maxHeight
/pixelsPerUnit
;
1436 int startX
= 0, startY
= 0;
1438 GetViewStart(& startX
, & startY
);
1440 int maxPositionX
= 0; // wxMax(sz.x - clientSize.x, 0);
1441 int maxPositionY
= (wxMax(maxHeight
- clientSize
.y
, 0))/pixelsPerUnit
;
1443 // Move to previous scroll position if
1445 SetScrollbars(0, pixelsPerUnit
,
1447 wxMin(maxPositionX
, startX
), wxMin(maxPositionY
, startY
));
1450 /// Paint the background
1451 void wxRichTextCtrl::PaintBackground(wxDC
& dc
)
1453 wxColour backgroundColour
= GetBackgroundColour();
1454 if (!backgroundColour
.Ok())
1455 backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
1457 // Clear the background
1458 dc
.SetBrush(wxBrush(backgroundColour
));
1459 dc
.SetPen(*wxTRANSPARENT_PEN
);
1460 wxRect
windowRect(GetClientSize());
1461 windowRect
.x
-= 2; windowRect
.y
-= 2;
1462 windowRect
.width
+= 4; windowRect
.height
+= 4;
1464 // We need to shift the rectangle to take into account
1465 // scrolling. Converting device to logical coordinates.
1466 CalcUnscrolledPosition(windowRect
.x
, windowRect
.y
, & windowRect
.x
, & windowRect
.y
);
1467 dc
.DrawRectangle(windowRect
);
1470 /// Recreate buffer bitmap if necessary
1471 bool wxRichTextCtrl::RecreateBuffer(const wxSize
& size
)
1474 if (sz
== wxDefaultSize
)
1475 sz
= GetClientSize();
1477 if (sz
.x
< 1 || sz
.y
< 1)
1480 if (!m_bufferBitmap
.Ok() || m_bufferBitmap
.GetWidth() < sz
.x
|| m_bufferBitmap
.GetHeight() < sz
.y
)
1481 m_bufferBitmap
= wxBitmap(sz
.x
, sz
.y
);
1482 return m_bufferBitmap
.Ok();
1485 // ----------------------------------------------------------------------------
1486 // file IO functions
1487 // ----------------------------------------------------------------------------
1489 bool wxRichTextCtrl::LoadFile(const wxString
& filename
, int type
)
1491 bool success
= GetBuffer().LoadFile(filename
, type
);
1493 m_filename
= filename
;
1496 SetInsertionPoint(0);
1499 SetupScrollbars(true);
1507 wxLogError(_("File couldn't be loaded."));
1513 bool wxRichTextCtrl::SaveFile(const wxString
& filename
, int type
)
1515 wxString filenameToUse
= filename
.empty() ? m_filename
: filename
;
1516 if ( filenameToUse
.empty() )
1518 // what kind of message to give? is it an error or a program bug?
1519 wxLogDebug(wxT("Can't save textctrl to file without filename."));
1524 if (GetBuffer().SaveFile(filenameToUse
, type
))
1526 m_filename
= filenameToUse
;
1534 wxLogError(_("The text couldn't be saved."));
1539 // ----------------------------------------------------------------------------
1540 // wxRichTextCtrl specific functionality
1541 // ----------------------------------------------------------------------------
1543 /// Add a new paragraph of text to the end of the buffer
1544 wxRichTextRange
wxRichTextCtrl::AddParagraph(const wxString
& text
)
1546 return GetBuffer().AddParagraph(text
);
1550 wxRichTextRange
wxRichTextCtrl::AddImage(const wxImage
& image
)
1552 return GetBuffer().AddImage(image
);
1555 // ----------------------------------------------------------------------------
1556 // selection and ranges
1557 // ----------------------------------------------------------------------------
1559 void wxRichTextCtrl::SelectAll()
1561 SetSelection(0, GetLastPosition());
1562 m_selectionAnchor
= -1;
1566 void wxRichTextCtrl::SelectNone()
1568 if (!(GetSelectionRange() == wxRichTextRange(-2, -2)))
1569 SetSelection(-2, -2);
1570 m_selectionAnchor
= -2;
1573 wxString
wxRichTextCtrl::GetStringSelection() const
1576 GetSelection(&from
, &to
);
1578 return GetRange(from
, to
);
1581 // do the window-specific processing after processing the update event
1582 void wxRichTextCtrl::DoUpdateWindowUI(wxUpdateUIEvent
& event
)
1584 if ( event
.GetSetEnabled() )
1585 Enable(event
.GetEnabled());
1587 if ( event
.GetSetText() )
1589 if ( event
.GetText() != GetValue() )
1590 SetValue(event
.GetText());
1594 // ----------------------------------------------------------------------------
1596 // ----------------------------------------------------------------------------
1598 wxTextCtrlHitTestResult
1599 wxRichTextCtrl::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
1601 // implement in terms of the other overload as the native ports typically
1602 // can get the position and not (x, y) pair directly (although wxUniv
1603 // directly gets x and y -- and so overrides this method as well)
1605 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
1607 if ( rc
!= wxTE_HT_UNKNOWN
)
1609 PositionToXY(pos
, x
, y
);
1615 wxTextCtrlHitTestResult
1616 wxRichTextCtrl::HitTest(const wxPoint
& pt
,
1619 wxClientDC
dc((wxRichTextCtrl
*) this);
1620 ((wxRichTextCtrl
*)this)->PrepareDC(dc
);
1622 int hit
= ((wxRichTextCtrl
*)this)->GetBuffer().HitTest(dc
, pt
, *pos
);
1623 if (hit
== wxRICHTEXT_HITTEST_BEFORE
)
1624 return wxTE_HT_BEFORE
;
1625 else if (hit
== wxRICHTEXT_HITTEST_AFTER
)
1626 return wxTE_HT_BEYOND
;
1627 else if (hit
== wxRICHTEXT_HITTEST_ON
)
1628 return wxTE_HT_ON_TEXT
;
1630 return wxTE_HT_UNKNOWN
;
1633 // ----------------------------------------------------------------------------
1634 // set/get the controls text
1635 // ----------------------------------------------------------------------------
1637 wxString
wxRichTextCtrl::GetValue() const
1639 return GetBuffer().GetText();
1642 wxString
wxRichTextCtrl::GetRange(long from
, long to
) const
1644 return GetBuffer().GetTextForRange(wxRichTextRange(from
, to
));
1647 void wxRichTextCtrl::SetValue(const wxString
& value
)
1651 // if the text is long enough, it's faster to just set it instead of first
1652 // comparing it with the old one (chances are that it will be different
1653 // anyhow, this comparison is there to avoid flicker for small single-line
1654 // edit controls mostly)
1655 if ( (value
.length() > 0x400) || (value
!= GetValue()) )
1657 DoWriteText(value
, false /* not selection only */);
1659 // for compatibility, don't move the cursor when doing SetValue()
1660 SetInsertionPoint(0);
1664 // still send an event for consistency
1668 // we should reset the modified flag even if the value didn't really change
1670 // mark the control as being not dirty - we changed its text, not the
1675 void wxRichTextCtrl::WriteText(const wxString
& value
)
1680 void wxRichTextCtrl::DoWriteText(const wxString
& value
, bool WXUNUSED(selectionOnly
))
1682 GetBuffer().InsertTextWithUndo(m_caretPosition
+1, value
, this);
1685 void wxRichTextCtrl::AppendText(const wxString
& text
)
1687 SetInsertionPointEnd();
1692 /// Write an image at the current insertion point
1693 bool wxRichTextCtrl::WriteImage(const wxImage
& image
, int bitmapType
)
1695 wxRichTextImageBlock imageBlock
;
1697 wxImage image2
= image
;
1698 if (imageBlock
.MakeImageBlock(image2
, bitmapType
))
1699 return WriteImage(imageBlock
);
1704 bool wxRichTextCtrl::WriteImage(const wxString
& filename
, int bitmapType
)
1706 wxRichTextImageBlock imageBlock
;
1709 if (imageBlock
.MakeImageBlock(filename
, bitmapType
, image
, false))
1710 return WriteImage(imageBlock
);
1715 bool wxRichTextCtrl::WriteImage(const wxRichTextImageBlock
& imageBlock
)
1717 return GetBuffer().InsertImageWithUndo(m_caretPosition
+1, imageBlock
, this);
1720 bool wxRichTextCtrl::WriteImage(const wxBitmap
& bitmap
, int bitmapType
)
1724 wxRichTextImageBlock imageBlock
;
1726 wxImage image
= bitmap
.ConvertToImage();
1727 if (image
.Ok() && imageBlock
.MakeImageBlock(image
, bitmapType
))
1728 return WriteImage(imageBlock
);
1735 /// Insert a newline (actually paragraph) at the current insertion point.
1736 bool wxRichTextCtrl::Newline()
1738 return GetBuffer().InsertNewlineWithUndo(m_caretPosition
+1, this);
1742 // ----------------------------------------------------------------------------
1743 // Clipboard operations
1744 // ----------------------------------------------------------------------------
1746 void wxRichTextCtrl::Copy()
1750 wxRichTextRange range
= GetSelectionRange();
1751 GetBuffer().CopyToClipboard(range
);
1755 void wxRichTextCtrl::Cut()
1759 wxRichTextRange range
= GetSelectionRange();
1760 GetBuffer().CopyToClipboard(range
);
1762 DeleteSelectedContent();
1768 void wxRichTextCtrl::Paste()
1772 BeginBatchUndo(_("Paste"));
1774 long newPos
= m_caretPosition
;
1775 DeleteSelectedContent(& newPos
);
1777 GetBuffer().PasteFromClipboard(newPos
);
1783 void wxRichTextCtrl::DeleteSelection()
1785 if (CanDeleteSelection())
1787 DeleteSelectedContent();
1791 bool wxRichTextCtrl::HasSelection() const
1793 return m_selectionRange
.GetStart() != -2 && m_selectionRange
.GetEnd() != -2;
1796 bool wxRichTextCtrl::CanCopy() const
1798 // Can copy if there's a selection
1799 return HasSelection();
1802 bool wxRichTextCtrl::CanCut() const
1804 return HasSelection() && IsEditable();
1807 bool wxRichTextCtrl::CanPaste() const
1809 if ( !IsEditable() )
1812 return GetBuffer().CanPasteFromClipboard();
1815 bool wxRichTextCtrl::CanDeleteSelection() const
1817 return HasSelection() && IsEditable();
1821 // ----------------------------------------------------------------------------
1823 // ----------------------------------------------------------------------------
1825 void wxRichTextCtrl::SetEditable(bool editable
)
1827 m_editable
= editable
;
1830 void wxRichTextCtrl::SetInsertionPoint(long pos
)
1834 m_caretPosition
= pos
- 1;
1837 void wxRichTextCtrl::SetInsertionPointEnd()
1839 long pos
= GetLastPosition();
1840 SetInsertionPoint(pos
);
1843 long wxRichTextCtrl::GetInsertionPoint() const
1845 return m_caretPosition
+1;
1848 wxTextPos
wxRichTextCtrl::GetLastPosition() const
1850 return GetBuffer().GetRange().GetEnd();
1853 // If the return values from and to are the same, there is no
1855 void wxRichTextCtrl::GetSelection(long* from
, long* to
) const
1857 *from
= m_selectionRange
.GetStart();
1858 *to
= m_selectionRange
.GetEnd();
1861 bool wxRichTextCtrl::IsEditable() const
1866 // ----------------------------------------------------------------------------
1868 // ----------------------------------------------------------------------------
1870 void wxRichTextCtrl::SetSelection(long from
, long to
)
1872 // if from and to are both -1, it means (in wxWidgets) that all text should
1874 if ( (from
== -1) && (to
== -1) )
1877 to
= GetLastPosition();
1880 DoSetSelection(from
, to
);
1883 void wxRichTextCtrl::DoSetSelection(long from
, long to
, bool WXUNUSED(scrollCaret
))
1885 m_selectionAnchor
= from
;
1886 m_selectionRange
.SetRange(from
, to
);
1891 // ----------------------------------------------------------------------------
1893 // ----------------------------------------------------------------------------
1895 void wxRichTextCtrl::Replace(long WXUNUSED(from
), long WXUNUSED(to
), const wxString
& value
)
1897 BeginBatchUndo(_("Replace"));
1899 DeleteSelectedContent();
1901 DoWriteText(value
, true /* selection only */);
1906 void wxRichTextCtrl::Remove(long from
, long to
)
1910 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(from
, to
),
1911 m_caretPosition
, // Current caret position
1912 from
, // New caret position
1920 bool wxRichTextCtrl::IsModified() const
1922 return m_buffer
.IsModified();
1925 void wxRichTextCtrl::MarkDirty()
1927 m_buffer
.Modify(true);
1930 void wxRichTextCtrl::DiscardEdits()
1932 m_buffer
.Modify(false);
1933 m_buffer
.GetCommandProcessor()->ClearCommands();
1936 int wxRichTextCtrl::GetNumberOfLines() const
1938 return GetBuffer().GetParagraphCount();
1941 // ----------------------------------------------------------------------------
1942 // Positions <-> coords
1943 // ----------------------------------------------------------------------------
1945 long wxRichTextCtrl::XYToPosition(long x
, long y
) const
1947 return GetBuffer().XYToPosition(x
, y
);
1950 bool wxRichTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
1952 return GetBuffer().PositionToXY(pos
, x
, y
);
1955 // ----------------------------------------------------------------------------
1957 // ----------------------------------------------------------------------------
1959 void wxRichTextCtrl::ShowPosition(long pos
)
1961 if (!IsPositionVisible(pos
))
1962 ScrollIntoView(pos
-1, WXK_DOWN
);
1965 int wxRichTextCtrl::GetLineLength(long lineNo
) const
1967 return GetBuffer().GetParagraphLength(lineNo
);
1970 wxString
wxRichTextCtrl::GetLineText(long lineNo
) const
1972 return GetBuffer().GetParagraphText(lineNo
);
1975 // ----------------------------------------------------------------------------
1977 // ----------------------------------------------------------------------------
1979 void wxRichTextCtrl::Undo()
1983 GetCommandProcessor()->Undo();
1987 void wxRichTextCtrl::Redo()
1991 GetCommandProcessor()->Redo();
1995 bool wxRichTextCtrl::CanUndo() const
1997 return GetCommandProcessor()->CanUndo();
2000 bool wxRichTextCtrl::CanRedo() const
2002 return GetCommandProcessor()->CanRedo();
2005 // ----------------------------------------------------------------------------
2006 // implemenation details
2007 // ----------------------------------------------------------------------------
2009 void wxRichTextCtrl::Command(wxCommandEvent
& event
)
2011 SetValue(event
.GetString());
2012 GetEventHandler()->ProcessEvent(event
);
2015 void wxRichTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
2017 // By default, load the first file into the text window.
2018 if (event
.GetNumberOfFiles() > 0)
2020 LoadFile(event
.GetFiles()[0]);
2024 // ----------------------------------------------------------------------------
2025 // text control event processing
2026 // ----------------------------------------------------------------------------
2028 bool wxRichTextCtrl::SendUpdateEvent()
2030 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, GetId());
2031 InitCommandEvent(event
);
2033 return GetEventHandler()->ProcessEvent(event
);
2036 void wxRichTextCtrl::InitCommandEvent(wxCommandEvent
& event
) const
2038 event
.SetEventObject((wxControlBase
*)this); // const_cast
2040 switch ( m_clientDataType
)
2042 case wxClientData_Void
:
2043 event
.SetClientData(GetClientData());
2046 case wxClientData_Object
:
2047 event
.SetClientObject(GetClientObject());
2050 case wxClientData_None
:
2057 wxSize
wxRichTextCtrl::DoGetBestSize() const
2059 return wxSize(10, 10);
2062 // ----------------------------------------------------------------------------
2063 // standard handlers for standard edit menu events
2064 // ----------------------------------------------------------------------------
2066 void wxRichTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
2071 void wxRichTextCtrl::OnClear(wxCommandEvent
& WXUNUSED(event
))
2076 void wxRichTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
2081 void wxRichTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
2086 void wxRichTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
2091 void wxRichTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
2096 void wxRichTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
2098 event
.Enable( CanCut() );
2101 void wxRichTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
2103 event
.Enable( CanCopy() );
2106 void wxRichTextCtrl::OnUpdateClear(wxUpdateUIEvent
& event
)
2108 event
.Enable( CanDeleteSelection() );
2111 void wxRichTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
2113 event
.Enable( CanPaste() );
2116 void wxRichTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
2118 event
.Enable( CanUndo() );
2119 event
.SetText( GetCommandProcessor()->GetUndoMenuLabel() );
2122 void wxRichTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
2124 event
.Enable( CanRedo() );
2125 event
.SetText( GetCommandProcessor()->GetRedoMenuLabel() );
2128 void wxRichTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
2133 void wxRichTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
2135 event
.Enable(GetLastPosition() > 0);
2138 void wxRichTextCtrl::OnContextMenu(wxContextMenuEvent
& WXUNUSED(event
))
2142 m_contextMenu
= new wxMenu
;
2143 m_contextMenu
->Append(wxID_UNDO
, _("&Undo"));
2144 m_contextMenu
->Append(wxID_REDO
, _("&Redo"));
2145 m_contextMenu
->AppendSeparator();
2146 m_contextMenu
->Append(wxID_CUT
, _("Cu&t"));
2147 m_contextMenu
->Append(wxID_COPY
, _("&Copy"));
2148 m_contextMenu
->Append(wxID_PASTE
, _("&Paste"));
2149 m_contextMenu
->Append(wxID_CLEAR
, _("&Delete"));
2150 m_contextMenu
->AppendSeparator();
2151 m_contextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
2153 PopupMenu(m_contextMenu
);
2157 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxTextAttrEx
& style
)
2159 return GetBuffer().SetStyle(wxRichTextRange(start
, end
), style
);
2162 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
)
2164 return GetBuffer().SetStyle(range
, style
);
2167 bool wxRichTextCtrl::SetDefaultStyle(const wxTextAttrEx
& style
)
2169 return GetBuffer().SetDefaultStyle(style
);
2172 const wxTextAttrEx
& wxRichTextCtrl::GetDefaultStyleEx() const
2174 return GetBuffer().GetDefaultStyle();
2177 bool wxRichTextCtrl::GetStyle(long position
, wxTextAttrEx
& style
) const
2179 return GetBuffer().GetStyle(position
, style
);
2182 bool wxRichTextCtrl::GetStyle(long position
, wxRichTextAttr
& style
) const
2184 return GetBuffer().GetStyle(position
, style
);
2187 /// Set font, and also the buffer attributes
2188 bool wxRichTextCtrl::SetFont(const wxFont
& font
)
2190 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
2191 wxControl::SetFont(font
);
2193 wxScrolledWindow::SetFont(font
);
2196 wxTextAttrEx attr
= GetBuffer().GetAttributes();
2198 GetBuffer().SetBasicStyle(attr
);
2199 GetBuffer().SetDefaultStyle(attr
);
2204 /// Transform logical to physical
2205 wxPoint
wxRichTextCtrl::GetPhysicalPoint(const wxPoint
& ptLogical
) const
2208 CalcScrolledPosition(ptLogical
.x
, ptLogical
.y
, & pt
.x
, & pt
.y
);
2213 /// Transform physical to logical
2214 wxPoint
wxRichTextCtrl::GetLogicalPoint(const wxPoint
& ptPhysical
) const
2217 CalcUnscrolledPosition(ptPhysical
.x
, ptPhysical
.y
, & pt
.x
, & pt
.y
);
2222 /// Position the caret
2223 void wxRichTextCtrl::PositionCaret()
2228 //wxLogDebug(wxT("PositionCaret"));
2231 if (GetCaretPositionForIndex(GetCaretPosition(), caretRect
))
2233 wxPoint originalPt
= caretRect
.GetPosition();
2234 wxPoint pt
= GetPhysicalPoint(originalPt
);
2235 if (GetCaret()->GetPosition() != pt
)
2237 GetCaret()->Move(pt
);
2238 GetCaret()->SetSize(caretRect
.GetSize());
2243 /// Get the caret height and position for the given character position
2244 bool wxRichTextCtrl::GetCaretPositionForIndex(long position
, wxRect
& rect
)
2246 wxClientDC
dc(this);
2247 dc
.SetFont(GetFont());
2254 if (GetBuffer().FindPosition(dc
, position
, pt
, & height
, m_caretAtLineStart
))
2256 rect
= wxRect(pt
, wxSize(wxRICHTEXT_DEFAULT_CARET_WIDTH
, height
));
2263 /// Gets the line for the visible caret position. If the caret is
2264 /// shown at the very end of the line, it means the next character is actually
2265 /// on the following line. So let's get the line we're expecting to find
2266 /// if this is the case.
2267 wxRichTextLine
* wxRichTextCtrl::GetVisibleLineForCaretPosition(long caretPosition
) const
2269 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(caretPosition
, true);
2270 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(caretPosition
, true);
2273 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
2274 if (caretPosition
== lineRange
.GetStart()-1 &&
2275 (para
->GetRange().GetStart() != lineRange
.GetStart()))
2277 if (!m_caretAtLineStart
)
2278 line
= GetBuffer().GetLineAtPosition(caretPosition
-1, true);
2285 /// Move the caret to the given character position
2286 bool wxRichTextCtrl::MoveCaret(long pos
, bool showAtLineStart
)
2288 if (GetBuffer().GetDirty())
2291 if (pos
<= GetBuffer().GetRange().GetEnd())
2293 SetCaretPosition(pos
, showAtLineStart
);
2303 /// Layout the buffer: which we must do before certain operations, such as
2304 /// setting the caret position.
2305 bool wxRichTextCtrl::LayoutContent(bool onlyVisibleRect
)
2307 if (GetBuffer().GetDirty() || onlyVisibleRect
)
2309 wxRect
availableSpace(GetClientSize());
2310 if (availableSpace
.width
== 0)
2311 availableSpace
.width
= 10;
2312 if (availableSpace
.height
== 0)
2313 availableSpace
.height
= 10;
2315 int flags
= wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
;
2316 if (onlyVisibleRect
)
2318 flags
|= wxRICHTEXT_LAYOUT_SPECIFIED_RECT
;
2319 availableSpace
.SetPosition(GetLogicalPoint(wxPoint(0, 0)));
2322 wxClientDC
dc(this);
2323 dc
.SetFont(GetFont());
2327 GetBuffer().Defragment();
2328 GetBuffer().UpdateRanges(); // If items were deleted, ranges need recalculation
2329 GetBuffer().Layout(dc
, availableSpace
, flags
);
2330 GetBuffer().SetDirty(false);
2339 /// Is all of the selection bold?
2340 bool wxRichTextCtrl::IsSelectionBold() const
2344 wxRichTextAttr attr
;
2345 wxRichTextRange range
= GetSelectionRange();
2346 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
2347 attr
.SetFontWeight(wxBOLD
);
2349 return HasCharacterAttributes(range
, attr
);
2353 // If no selection, then we need to combine current style with default style
2354 // to see what the effect would be if we started typing.
2355 wxRichTextAttr attr
;
2356 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
2357 if (GetStyle(GetCaretPosition()+1, attr
))
2359 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
2360 return attr
.GetFontWeight() == wxBOLD
;
2366 /// Is all of the selection italics?
2367 bool wxRichTextCtrl::IsSelectionItalics() const
2371 wxRichTextRange range
= GetSelectionRange();
2372 wxRichTextAttr attr
;
2373 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
2374 attr
.SetFontStyle(wxITALIC
);
2376 return HasCharacterAttributes(range
, attr
);
2380 // If no selection, then we need to combine current style with default style
2381 // to see what the effect would be if we started typing.
2382 wxRichTextAttr attr
;
2383 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
2384 if (GetStyle(GetCaretPosition()+1, attr
))
2386 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
2387 return attr
.GetFontStyle() == wxITALIC
;
2393 /// Is all of the selection underlined?
2394 bool wxRichTextCtrl::IsSelectionUnderlined() const
2398 wxRichTextRange range
= GetSelectionRange();
2399 wxRichTextAttr attr
;
2400 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
2401 attr
.SetFontUnderlined(true);
2403 return HasCharacterAttributes(range
, attr
);
2407 // If no selection, then we need to combine current style with default style
2408 // to see what the effect would be if we started typing.
2409 wxRichTextAttr attr
;
2410 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
2411 if (GetStyle(GetCaretPosition()+1, attr
))
2413 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
2414 return attr
.GetFontUnderlined();
2420 /// Apply bold to the selection
2421 bool wxRichTextCtrl::ApplyBoldToSelection()
2423 wxRichTextAttr attr
;
2424 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
2425 attr
.SetFontWeight(IsSelectionBold() ? wxNORMAL
: wxBOLD
);
2428 return SetStyle(GetSelectionRange(), attr
);
2430 SetDefaultStyle(attr
);
2434 /// Apply italic to the selection
2435 bool wxRichTextCtrl::ApplyItalicToSelection()
2437 wxRichTextAttr attr
;
2438 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
2439 attr
.SetFontStyle(IsSelectionItalics() ? wxNORMAL
: wxITALIC
);
2442 return SetStyle(GetSelectionRange(), attr
);
2444 SetDefaultStyle(attr
);
2448 /// Apply underline to the selection
2449 bool wxRichTextCtrl::ApplyUnderlineToSelection()
2451 wxRichTextAttr attr
;
2452 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
2453 attr
.SetFontUnderlined(!IsSelectionUnderlined());
2456 return SetStyle(GetSelectionRange(), attr
);
2458 SetDefaultStyle(attr
);
2462 /// Is all of the selection aligned according to the specified flag?
2463 bool wxRichTextCtrl::IsSelectionAligned(wxTextAttrAlignment alignment
) const
2467 wxRichTextRange range
= GetSelectionRange();
2468 wxRichTextAttr attr
;
2469 attr
.SetAlignment(alignment
);
2471 return HasParagraphAttributes(range
, attr
);
2475 // If no selection, then we need to get information from the current paragraph.
2476 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(GetCaretPosition()+1);
2478 return para
->GetAttributes().GetAlignment() == alignment
;
2483 /// Apply alignment to the selection
2484 bool wxRichTextCtrl::ApplyAlignmentToSelection(wxTextAttrAlignment alignment
)
2486 wxRichTextAttr attr
;
2487 attr
.SetAlignment(alignment
);
2489 return SetStyle(GetSelectionRange(), attr
);
2492 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(GetCaretPosition()+1);
2494 return SetStyle(para
->GetRange(), attr
);
2499 /// Sets the default style to the style under the cursor
2500 bool wxRichTextCtrl::SetDefaultStyleToCursorStyle()
2503 attr
.SetFlags(wxTEXT_ATTR_CHARACTER
);
2505 if (GetStyle(GetCaretPosition(), attr
))
2507 SetDefaultStyle(attr
);
2514 /// Returns the first visible position in the current view
2515 long wxRichTextCtrl::GetFirstVisiblePosition() const
2517 wxRichTextLine
* line
= GetBuffer().GetLineAtYPosition(GetLogicalPoint(wxPoint(0, 0)).y
);
2519 return line
->GetAbsoluteRange().GetStart();