1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/richtext/richeditctrl.cpp
3 // Purpose: A rich edit control
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/richtext/richtextctrl.h"
22 #include "wx/richtext/richtextstyles.h"
26 #include "wx/settings.h"
29 #include "wx/textfile.h"
31 #include "wx/filename.h"
32 #include "wx/dcbuffer.h"
33 #include "wx/arrimpl.cpp"
34 #include "wx/fontenum.h"
36 // DLL options compatibility check:
38 WX_CHECK_BUILD_OPTIONS("wxRichTextCtrl")
40 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
)
41 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
)
42 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
)
43 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
)
44 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_RETURN
)
45 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_CHARACTER
)
46 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_DELETE
)
48 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING
)
49 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED
)
50 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING
)
51 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED
)
53 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED
)
54 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED
)
55 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED
)
56 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED
)
57 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_BUFFER_RESET
)
59 IMPLEMENT_CLASS( wxRichTextCtrl
, wxControl
)
61 IMPLEMENT_CLASS( wxRichTextEvent
, wxNotifyEvent
)
63 BEGIN_EVENT_TABLE( wxRichTextCtrl
, wxControl
)
64 EVT_PAINT(wxRichTextCtrl::OnPaint
)
65 EVT_ERASE_BACKGROUND(wxRichTextCtrl::OnEraseBackground
)
66 EVT_IDLE(wxRichTextCtrl::OnIdle
)
67 EVT_SCROLLWIN(wxRichTextCtrl::OnScroll
)
68 EVT_LEFT_DOWN(wxRichTextCtrl::OnLeftClick
)
69 EVT_MOTION(wxRichTextCtrl::OnMoveMouse
)
70 EVT_LEFT_UP(wxRichTextCtrl::OnLeftUp
)
71 EVT_RIGHT_DOWN(wxRichTextCtrl::OnRightClick
)
72 EVT_MIDDLE_DOWN(wxRichTextCtrl::OnMiddleClick
)
73 EVT_LEFT_DCLICK(wxRichTextCtrl::OnLeftDClick
)
74 EVT_CHAR(wxRichTextCtrl::OnChar
)
75 EVT_SIZE(wxRichTextCtrl::OnSize
)
76 EVT_SET_FOCUS(wxRichTextCtrl::OnSetFocus
)
77 EVT_KILL_FOCUS(wxRichTextCtrl::OnKillFocus
)
78 EVT_MOUSE_CAPTURE_LOST(wxRichTextCtrl::OnCaptureLost
)
79 EVT_CONTEXT_MENU(wxRichTextCtrl::OnContextMenu
)
80 EVT_SYS_COLOUR_CHANGED(wxRichTextCtrl::OnSysColourChanged
)
82 EVT_MENU(wxID_UNDO
, wxRichTextCtrl::OnUndo
)
83 EVT_UPDATE_UI(wxID_UNDO
, wxRichTextCtrl::OnUpdateUndo
)
85 EVT_MENU(wxID_REDO
, wxRichTextCtrl::OnRedo
)
86 EVT_UPDATE_UI(wxID_REDO
, wxRichTextCtrl::OnUpdateRedo
)
88 EVT_MENU(wxID_COPY
, wxRichTextCtrl::OnCopy
)
89 EVT_UPDATE_UI(wxID_COPY
, wxRichTextCtrl::OnUpdateCopy
)
91 EVT_MENU(wxID_PASTE
, wxRichTextCtrl::OnPaste
)
92 EVT_UPDATE_UI(wxID_PASTE
, wxRichTextCtrl::OnUpdatePaste
)
94 EVT_MENU(wxID_CUT
, wxRichTextCtrl::OnCut
)
95 EVT_UPDATE_UI(wxID_CUT
, wxRichTextCtrl::OnUpdateCut
)
97 EVT_MENU(wxID_CLEAR
, wxRichTextCtrl::OnClear
)
98 EVT_UPDATE_UI(wxID_CLEAR
, wxRichTextCtrl::OnUpdateClear
)
100 EVT_MENU(wxID_SELECTALL
, wxRichTextCtrl::OnSelectAll
)
101 EVT_UPDATE_UI(wxID_SELECTALL
, wxRichTextCtrl::OnUpdateSelectAll
)
108 wxArrayString
wxRichTextCtrl::sm_availableFontNames
;
110 wxRichTextCtrl::wxRichTextCtrl()
111 : wxScrollHelper(this)
116 wxRichTextCtrl::wxRichTextCtrl(wxWindow
* parent
,
118 const wxString
& value
,
122 const wxValidator
& validator
,
123 const wxString
& name
)
124 : wxScrollHelper(this)
127 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
131 bool wxRichTextCtrl::Create( wxWindow
* parent
, wxWindowID id
, const wxString
& value
, const wxPoint
& pos
, const wxSize
& size
, long style
,
132 const wxValidator
& validator
, const wxString
& name
)
134 if (!wxControl::Create(parent
, id
, pos
, size
,
135 style
|wxFULL_REPAINT_ON_RESIZE
,
141 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
144 if (style
& wxTE_READONLY
)
147 // The base attributes must all have default values
148 wxTextAttr attributes
;
149 attributes
.SetFont(GetFont());
150 attributes
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
151 attributes
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
152 attributes
.SetLineSpacing(10);
153 attributes
.SetParagraphSpacingAfter(10);
154 attributes
.SetParagraphSpacingBefore(0);
155 attributes
.SetTextEffects(0);
156 attributes
.SetTextEffectFlags(wxTEXT_ATTR_EFFECT_STRIKETHROUGH
|wxTEXT_ATTR_EFFECT_CAPITALS
);
158 SetBasicStyle(attributes
);
160 // The default attributes will be merged with base attributes, so
161 // can be empty to begin with
162 wxTextAttr defaultAttributes
;
163 SetDefaultStyle(defaultAttributes
);
165 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
166 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
169 GetBuffer().SetRichTextCtrl(this);
171 SetCaret(new wxCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16));
174 // Tell the sizers to use the given or best size
175 SetInitialSize(size
);
177 #if wxRICHTEXT_BUFFERED_PAINTING
179 RecreateBuffer(size
);
182 m_textCursor
= wxCursor(wxCURSOR_IBEAM
);
183 m_urlCursor
= wxCursor(wxCURSOR_HAND
);
185 SetCursor(m_textCursor
);
187 if (!value
.IsEmpty())
190 GetBuffer().AddEventHandler(this);
195 wxRichTextCtrl::~wxRichTextCtrl()
197 GetBuffer().RemoveEventHandler(this);
199 delete m_contextMenu
;
202 /// Member initialisation
203 void wxRichTextCtrl::Init()
205 m_contextMenu
= NULL
;
207 m_caretPosition
= -1;
208 m_selectionRange
.SetRange(-2, -2);
209 m_selectionAnchor
= -2;
211 m_caretAtLineStart
= false;
213 m_fullLayoutRequired
= false;
214 m_fullLayoutTime
= 0;
215 m_fullLayoutSavedPosition
= 0;
216 m_delayedLayoutThreshold
= wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD
;
217 m_caretPositionForDefaultStyle
= -2;
220 void wxRichTextCtrl::DoThaw()
222 if (GetBuffer().GetDirty())
230 void wxRichTextCtrl::Clear()
232 m_buffer
.ResetAndClearCommands();
233 m_buffer
.SetDirty(true);
234 m_caretPosition
= -1;
235 m_caretPositionForDefaultStyle
= -2;
236 m_caretAtLineStart
= false;
237 m_selectionRange
.SetRange(-2, -2);
247 wxTextCtrl::SendTextUpdatedEvent(this);
251 void wxRichTextCtrl::OnPaint(wxPaintEvent
& WXUNUSED(event
))
253 if (GetCaret() && GetCaret()->IsVisible())
257 #if wxRICHTEXT_BUFFERED_PAINTING
258 wxBufferedPaintDC
dc(this, m_bufferBitmap
);
268 dc
.SetFont(GetFont());
270 // Paint the background
273 // wxRect drawingArea(GetLogicalPoint(wxPoint(0, 0)), GetClientSize());
275 wxRect
drawingArea(GetUpdateRegion().GetBox());
276 drawingArea
.SetPosition(GetLogicalPoint(drawingArea
.GetPosition()));
278 wxRect
availableSpace(GetClientSize());
279 if (GetBuffer().GetDirty())
281 GetBuffer().Layout(dc
, availableSpace
, wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
);
282 GetBuffer().SetDirty(false);
286 GetBuffer().Draw(dc
, GetBuffer().GetRange(), GetInternalSelectionRange(), drawingArea
, 0 /* descent */, 0 /* flags */);
289 if (GetCaret() && !GetCaret()->IsVisible())
295 // Empty implementation, to prevent flicker
296 void wxRichTextCtrl::OnEraseBackground(wxEraseEvent
& WXUNUSED(event
))
300 void wxRichTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
304 if (!GetCaret()->IsVisible())
313 void wxRichTextCtrl::OnKillFocus(wxFocusEvent
& WXUNUSED(event
))
315 if (GetCaret() && GetCaret()->IsVisible())
322 void wxRichTextCtrl::OnCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
328 void wxRichTextCtrl::OnLeftClick(wxMouseEvent
& event
)
334 dc
.SetFont(GetFont());
337 int hit
= GetBuffer().HitTest(dc
, event
.GetLogicalPosition(dc
), position
);
339 if (hit
!= wxRICHTEXT_HITTEST_NONE
)
341 m_dragStart
= event
.GetLogicalPosition(dc
);
345 bool caretAtLineStart
= false;
347 if (hit
& wxRICHTEXT_HITTEST_BEFORE
)
349 // If we're at the start of a line (but not first in para)
350 // then we should keep the caret showing at the start of the line
351 // by showing the m_caretAtLineStart flag.
352 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
353 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(position
);
355 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
356 caretAtLineStart
= true;
360 long oldCaretPos
= m_caretPosition
;
362 MoveCaret(position
, caretAtLineStart
);
363 SetDefaultStyleToCursorStyle();
365 if (event
.ShiftDown())
367 bool extendSel
= false;
368 if (m_selectionRange
.GetStart() == -2)
369 extendSel
= ExtendSelection(oldCaretPos
, m_caretPosition
, wxRICHTEXT_SHIFT_DOWN
);
371 extendSel
= ExtendSelection(m_caretPosition
, m_caretPosition
, wxRICHTEXT_SHIFT_DOWN
);
384 void wxRichTextCtrl::OnLeftUp(wxMouseEvent
& event
)
389 if (GetCapture() == this)
392 // See if we clicked on a URL
395 dc
.SetFont(GetFont());
398 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
399 int hit
= GetBuffer().HitTest(dc
, logicalPt
, position
);
401 if (hit
!= wxRICHTEXT_HITTEST_NONE
)
403 wxRichTextEvent
cmdEvent(
404 wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
,
406 cmdEvent
.SetEventObject(this);
407 cmdEvent
.SetPosition(m_caretPosition
+1);
409 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
412 if (GetStyle(position
, attr
))
414 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
416 wxString urlTarget
= attr
.GetURL();
417 if (!urlTarget
.IsEmpty())
419 wxMouseEvent
mouseEvent(event
);
421 long startPos
= 0, endPos
= 0;
422 wxRichTextObject
* obj
= GetBuffer().GetLeafObjectAtPosition(position
);
425 startPos
= obj
->GetRange().GetStart();
426 endPos
= obj
->GetRange().GetEnd();
429 wxTextUrlEvent
urlEvent(GetId(), mouseEvent
, startPos
, endPos
);
430 InitCommandEvent(urlEvent
);
432 urlEvent
.SetString(urlTarget
);
434 GetEventHandler()->ProcessEvent(urlEvent
);
444 void wxRichTextCtrl::OnMoveMouse(wxMouseEvent
& event
)
448 dc
.SetFont(GetFont());
451 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
452 int hit
= GetBuffer().HitTest(dc
, logicalPt
, position
);
454 // See if we need to change the cursor
457 if (hit
!= wxRICHTEXT_HITTEST_NONE
&& !(hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
460 if (GetStyle(position
, attr
))
462 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
464 SetCursor(m_urlCursor
);
466 else if (!attr
.HasFlag(wxTEXT_ATTR_URL
))
468 SetCursor(m_textCursor
);
473 SetCursor(m_textCursor
);
476 if (!event
.Dragging())
482 if (m_dragging
&& hit
!= wxRICHTEXT_HITTEST_NONE
)
484 // TODO: test closeness
486 bool caretAtLineStart
= false;
488 if (hit
& wxRICHTEXT_HITTEST_BEFORE
)
490 // If we're at the start of a line (but not first in para)
491 // then we should keep the caret showing at the start of the line
492 // by showing the m_caretAtLineStart flag.
493 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
494 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(position
);
496 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
497 caretAtLineStart
= true;
501 if (m_caretPosition
!= position
)
503 bool extendSel
= ExtendSelection(m_caretPosition
, position
, wxRICHTEXT_SHIFT_DOWN
);
505 MoveCaret(position
, caretAtLineStart
);
506 SetDefaultStyleToCursorStyle();
515 void wxRichTextCtrl::OnRightClick(wxMouseEvent
& event
)
519 wxRichTextEvent
cmdEvent(
520 wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
,
522 cmdEvent
.SetEventObject(this);
523 cmdEvent
.SetPosition(m_caretPosition
+1);
525 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
529 /// Left-double-click
530 void wxRichTextCtrl::OnLeftDClick(wxMouseEvent
& WXUNUSED(event
))
532 wxRichTextEvent
cmdEvent(
533 wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
,
535 cmdEvent
.SetEventObject(this);
536 cmdEvent
.SetPosition(m_caretPosition
+1);
538 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
540 SelectWord(GetCaretPosition()+1);
545 void wxRichTextCtrl::OnMiddleClick(wxMouseEvent
& event
)
547 wxRichTextEvent
cmdEvent(
548 wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
,
550 cmdEvent
.SetEventObject(this);
551 cmdEvent
.SetPosition(m_caretPosition
+1);
553 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
558 void wxRichTextCtrl::OnChar(wxKeyEvent
& event
)
562 flags
|= wxRICHTEXT_CTRL_DOWN
;
563 if (event
.ShiftDown())
564 flags
|= wxRICHTEXT_SHIFT_DOWN
;
566 flags
|= wxRICHTEXT_ALT_DOWN
;
568 if (event
.GetKeyCode() == WXK_LEFT
||
569 event
.GetKeyCode() == WXK_RIGHT
||
570 event
.GetKeyCode() == WXK_UP
||
571 event
.GetKeyCode() == WXK_DOWN
||
572 event
.GetKeyCode() == WXK_HOME
||
573 event
.GetKeyCode() == WXK_PAGEUP
||
574 event
.GetKeyCode() == WXK_PAGEDOWN
||
575 event
.GetKeyCode() == WXK_END
||
577 event
.GetKeyCode() == WXK_NUMPAD_LEFT
||
578 event
.GetKeyCode() == WXK_NUMPAD_RIGHT
||
579 event
.GetKeyCode() == WXK_NUMPAD_UP
||
580 event
.GetKeyCode() == WXK_NUMPAD_DOWN
||
581 event
.GetKeyCode() == WXK_NUMPAD_HOME
||
582 event
.GetKeyCode() == WXK_NUMPAD_PAGEUP
||
583 event
.GetKeyCode() == WXK_NUMPAD_PAGEDOWN
||
584 event
.GetKeyCode() == WXK_NUMPAD_END
)
586 KeyboardNavigate(event
.GetKeyCode(), flags
);
590 // all the other keys modify the controls contents which shouldn't be
591 // possible if we're read-only
598 if (event
.GetKeyCode() == WXK_RETURN
)
600 BeginBatchUndo(_("Insert Text"));
602 long newPos
= m_caretPosition
;
604 DeleteSelectedContent(& newPos
);
606 if (event
.ShiftDown())
609 text
= wxRichTextLineBreakChar
;
610 GetBuffer().InsertTextWithUndo(newPos
+1, text
, this);
613 GetBuffer().InsertNewlineWithUndo(newPos
+1, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
|wxRICHTEXT_INSERT_INTERACTIVE
);
616 SetDefaultStyleToCursorStyle();
618 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
620 wxRichTextEvent
cmdEvent(
621 wxEVT_COMMAND_RICHTEXT_RETURN
,
623 cmdEvent
.SetEventObject(this);
624 cmdEvent
.SetFlags(flags
);
625 cmdEvent
.SetPosition(newPos
+1);
627 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
629 // Generate conventional event
630 wxCommandEvent
textEvent(wxEVT_COMMAND_TEXT_ENTER
, GetId());
631 InitCommandEvent(textEvent
);
633 GetEventHandler()->ProcessEvent(textEvent
);
637 else if (event
.GetKeyCode() == WXK_BACK
)
639 BeginBatchUndo(_("Delete Text"));
641 // Submit range in character positions, which are greater than caret positions,
642 // so subtract 1 for deleted character and add 1 for conversion to character position.
643 if (m_caretPosition
> -1 && !HasSelection())
645 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(m_caretPosition
, m_caretPosition
), this);
648 DeleteSelectedContent();
652 if (GetLastPosition() == -1)
656 m_caretPosition
= -1;
658 SetDefaultStyleToCursorStyle();
661 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
663 wxRichTextEvent
cmdEvent(
664 wxEVT_COMMAND_RICHTEXT_DELETE
,
666 cmdEvent
.SetEventObject(this);
667 cmdEvent
.SetFlags(flags
);
668 cmdEvent
.SetPosition(m_caretPosition
+1);
669 GetEventHandler()->ProcessEvent(cmdEvent
);
673 else if (event
.GetKeyCode() == WXK_DELETE
)
675 BeginBatchUndo(_("Delete Text"));
677 // Submit range in character positions, which are greater than caret positions,
678 if (m_caretPosition
< GetBuffer().GetRange().GetEnd()+1 && !HasSelection())
680 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(m_caretPosition
+1, m_caretPosition
+1), this);
683 DeleteSelectedContent();
687 if (GetLastPosition() == -1)
691 m_caretPosition
= -1;
693 SetDefaultStyleToCursorStyle();
696 wxRichTextEvent
cmdEvent(
697 wxEVT_COMMAND_RICHTEXT_DELETE
,
699 cmdEvent
.SetEventObject(this);
700 cmdEvent
.SetFlags(flags
);
701 cmdEvent
.SetPosition(m_caretPosition
+1);
702 GetEventHandler()->ProcessEvent(cmdEvent
);
708 long keycode
= event
.GetKeyCode();
781 case WXK_NUMPAD_SPACE
:
783 case WXK_NUMPAD_ENTER
:
788 case WXK_NUMPAD_HOME
:
789 case WXK_NUMPAD_LEFT
:
791 case WXK_NUMPAD_RIGHT
:
792 case WXK_NUMPAD_DOWN
:
793 case WXK_NUMPAD_PAGEUP
:
794 case WXK_NUMPAD_PAGEDOWN
:
796 case WXK_NUMPAD_BEGIN
:
797 case WXK_NUMPAD_INSERT
:
798 case WXK_NUMPAD_DELETE
:
799 case WXK_NUMPAD_EQUAL
:
800 case WXK_NUMPAD_MULTIPLY
:
802 case WXK_NUMPAD_SEPARATOR
:
803 case WXK_NUMPAD_SUBTRACT
:
804 case WXK_NUMPAD_DECIMAL
:
805 case WXK_WINDOWS_LEFT
:
813 if (event
.CmdDown() || event
.AltDown())
819 wxRichTextEvent
cmdEvent(
820 wxEVT_COMMAND_RICHTEXT_CHARACTER
,
822 cmdEvent
.SetEventObject(this);
823 cmdEvent
.SetFlags(flags
);
825 cmdEvent
.SetCharacter(event
.GetUnicodeKey());
827 cmdEvent
.SetCharacter((wxChar
) keycode
);
829 cmdEvent
.SetPosition(m_caretPosition
+1);
831 if (keycode
== wxT('\t'))
833 // See if we need to promote or demote the selection or paragraph at the cursor
834 // position, instead of inserting a tab.
835 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
836 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
);
837 if (para
&& para
->GetRange().GetStart() == pos
&& para
->GetAttributes().HasListStyleName())
839 wxRichTextRange range
;
841 range
= GetSelectionRange();
843 range
= para
->GetRange().FromInternal();
845 int promoteBy
= event
.ShiftDown() ? 1 : -1;
847 PromoteList(promoteBy
, range
, NULL
);
849 GetEventHandler()->ProcessEvent(cmdEvent
);
855 BeginBatchUndo(_("Insert Text"));
857 long newPos
= m_caretPosition
;
858 DeleteSelectedContent(& newPos
);
861 wxString str
= event
.GetUnicodeKey();
863 wxString str
= (wxChar
) event
.GetKeyCode();
865 GetBuffer().InsertTextWithUndo(newPos
+1, str
, this, 0);
869 SetDefaultStyleToCursorStyle();
870 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
872 GetEventHandler()->ProcessEvent(cmdEvent
);
880 /// Delete content if there is a selection, e.g. when pressing a key.
881 bool wxRichTextCtrl::DeleteSelectedContent(long* newPos
)
885 long pos
= m_selectionRange
.GetStart();
886 GetBuffer().DeleteRangeWithUndo(m_selectionRange
, this);
887 m_selectionRange
.SetRange(-2, -2);
897 /// Keyboard navigation
901 Left: left one character
902 Right: right one character
905 Ctrl-Left: left one word
906 Ctrl-Right: right one word
907 Ctrl-Up: previous paragraph start
908 Ctrl-Down: next start of paragraph
911 Ctrl-Home: start of document
912 Ctrl-End: end of document
914 Page-Down: Down a screen
918 Ctrl-Alt-PgUp: Start of window
919 Ctrl-Alt-PgDn: End of window
920 F8: Start selection mode
921 Esc: End selection mode
923 Adding Shift does the above but starts/extends selection.
928 bool wxRichTextCtrl::KeyboardNavigate(int keyCode
, int flags
)
930 bool success
= false;
932 if (keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
)
934 if (flags
& wxRICHTEXT_CTRL_DOWN
)
935 success
= WordRight(1, flags
);
937 success
= MoveRight(1, flags
);
939 else if (keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
)
941 if (flags
& wxRICHTEXT_CTRL_DOWN
)
942 success
= WordLeft(1, flags
);
944 success
= MoveLeft(1, flags
);
946 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
)
948 if (flags
& wxRICHTEXT_CTRL_DOWN
)
949 success
= MoveToParagraphStart(flags
);
951 success
= MoveUp(1, flags
);
953 else if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
)
955 if (flags
& wxRICHTEXT_CTRL_DOWN
)
956 success
= MoveToParagraphEnd(flags
);
958 success
= MoveDown(1, flags
);
960 else if (keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
962 success
= PageUp(1, flags
);
964 else if (keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
966 success
= PageDown(1, flags
);
968 else if (keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
)
970 if (flags
& wxRICHTEXT_CTRL_DOWN
)
971 success
= MoveHome(flags
);
973 success
= MoveToLineStart(flags
);
975 else if (keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
)
977 if (flags
& wxRICHTEXT_CTRL_DOWN
)
978 success
= MoveEnd(flags
);
980 success
= MoveToLineEnd(flags
);
985 ScrollIntoView(m_caretPosition
, keyCode
);
986 SetDefaultStyleToCursorStyle();
992 /// Extend the selection. Selections are in caret positions.
993 bool wxRichTextCtrl::ExtendSelection(long oldPos
, long newPos
, int flags
)
995 if (flags
& wxRICHTEXT_SHIFT_DOWN
)
997 // If not currently selecting, start selecting
998 if (m_selectionRange
.GetStart() == -2)
1000 m_selectionAnchor
= oldPos
;
1002 if (oldPos
> newPos
)
1003 m_selectionRange
.SetRange(newPos
+1, oldPos
);
1005 m_selectionRange
.SetRange(oldPos
+1, newPos
);
1009 // Always ensure that the selection range start is greater than
1011 if (newPos
> m_selectionAnchor
)
1012 m_selectionRange
.SetRange(m_selectionAnchor
+1, newPos
);
1014 m_selectionRange
.SetRange(newPos
+1, m_selectionAnchor
);
1017 if (m_selectionRange
.GetStart() > m_selectionRange
.GetEnd())
1019 wxLogDebug(wxT("Strange selection range"));
1028 /// Scroll into view, returning true if we scrolled.
1029 /// This takes a _caret_ position.
1030 bool wxRichTextCtrl::ScrollIntoView(long position
, int keyCode
)
1032 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(position
);
1038 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1040 int startXUnits
, startYUnits
;
1041 GetViewStart(& startXUnits
, & startYUnits
);
1042 int startY
= startYUnits
* ppuY
;
1045 GetVirtualSize(& sx
, & sy
);
1051 wxRect rect
= line
->GetRect();
1053 bool scrolled
= false;
1055 wxSize clientSize
= GetClientSize();
1058 if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
||
1059 keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
||
1060 keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
||
1061 keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1063 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1065 // Make it scroll so this item is at the bottom
1067 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1068 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1070 // If we're still off the screen, scroll another line down
1071 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1074 if (startYUnits
!= yUnits
)
1076 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1080 else if (rect
.y
< startY
)
1082 // Make it scroll so this item is at the top
1085 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1087 if (startYUnits
!= yUnits
)
1089 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1095 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
||
1096 keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
||
1097 keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
||
1098 keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1100 if (rect
.y
< startY
)
1102 // Make it scroll so this item is at the top
1105 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1107 if (startYUnits
!= yUnits
)
1109 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1113 else if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1115 // Make it scroll so this item is at the bottom
1117 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1118 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1120 // If we're still off the screen, scroll another line down
1121 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1124 if (startYUnits
!= yUnits
)
1126 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1136 /// Is the given position visible on the screen?
1137 bool wxRichTextCtrl::IsPositionVisible(long pos
) const
1139 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(pos
-1);
1145 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1148 GetViewStart(& startX
, & startY
);
1150 startY
= startY
* ppuY
;
1152 wxRect rect
= line
->GetRect();
1153 wxSize clientSize
= GetClientSize();
1155 return (rect
.GetBottom() > startY
) && (rect
.GetTop() < (startY
+ clientSize
.y
));
1158 void wxRichTextCtrl::SetCaretPosition(long position
, bool showAtLineStart
)
1160 m_caretPosition
= position
;
1161 m_caretAtLineStart
= showAtLineStart
;
1164 /// Move caret one visual step forward: this may mean setting a flag
1165 /// and keeping the same position if we're going from the end of one line
1166 /// to the start of the next, which may be the exact same caret position.
1167 void wxRichTextCtrl::MoveCaretForward(long oldPosition
)
1169 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(oldPosition
);
1171 // Only do the check if we're not at the end of the paragraph (where things work OK
1173 if (para
&& (oldPosition
!= para
->GetRange().GetEnd() - 1))
1175 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(oldPosition
);
1179 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1181 // We're at the end of a line. See whether we need to
1182 // stay at the same actual caret position but change visual
1183 // position, or not.
1184 if (oldPosition
== lineRange
.GetEnd())
1186 if (m_caretAtLineStart
)
1188 // We're already at the start of the line, so actually move on now.
1189 m_caretPosition
= oldPosition
+ 1;
1190 m_caretAtLineStart
= false;
1194 // We're showing at the end of the line, so keep to
1195 // the same position but indicate that we're to show
1196 // at the start of the next line.
1197 m_caretPosition
= oldPosition
;
1198 m_caretAtLineStart
= true;
1200 SetDefaultStyleToCursorStyle();
1206 SetDefaultStyleToCursorStyle();
1209 /// Move caret one visual step backward: this may mean setting a flag
1210 /// and keeping the same position if we're going from the end of one line
1211 /// to the start of the next, which may be the exact same caret position.
1212 void wxRichTextCtrl::MoveCaretBack(long oldPosition
)
1214 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(oldPosition
);
1216 // Only do the check if we're not at the start of the paragraph (where things work OK
1218 if (para
&& (oldPosition
!= para
->GetRange().GetStart()))
1220 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(oldPosition
);
1224 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1226 // We're at the start of a line. See whether we need to
1227 // stay at the same actual caret position but change visual
1228 // position, or not.
1229 if (oldPosition
== lineRange
.GetStart())
1231 m_caretPosition
= oldPosition
-1;
1232 m_caretAtLineStart
= true;
1235 else if (oldPosition
== lineRange
.GetEnd())
1237 if (m_caretAtLineStart
)
1239 // We're at the start of the line, so keep the same caret position
1240 // but clear the start-of-line flag.
1241 m_caretPosition
= oldPosition
;
1242 m_caretAtLineStart
= false;
1246 // We're showing at the end of the line, so go back
1247 // to the previous character position.
1248 m_caretPosition
= oldPosition
- 1;
1250 SetDefaultStyleToCursorStyle();
1256 SetDefaultStyleToCursorStyle();
1260 bool wxRichTextCtrl::MoveRight(int noPositions
, int flags
)
1262 long endPos
= GetBuffer().GetRange().GetEnd();
1264 if (m_caretPosition
+ noPositions
< endPos
)
1266 long oldPos
= m_caretPosition
;
1267 long newPos
= m_caretPosition
+ noPositions
;
1269 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1273 // Determine by looking at oldPos and m_caretPosition whether
1274 // we moved from the end of a line to the start of the next line, in which case
1275 // we want to adjust the caret position such that it is positioned at the
1276 // start of the next line, rather than jumping past the first character of the
1278 if (noPositions
== 1 && !extendSel
)
1279 MoveCaretForward(oldPos
);
1281 SetCaretPosition(newPos
);
1284 SetDefaultStyleToCursorStyle();
1295 bool wxRichTextCtrl::MoveLeft(int noPositions
, int flags
)
1299 if (m_caretPosition
> startPos
- noPositions
+ 1)
1301 long oldPos
= m_caretPosition
;
1302 long newPos
= m_caretPosition
- noPositions
;
1303 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1307 if (noPositions
== 1 && !extendSel
)
1308 MoveCaretBack(oldPos
);
1310 SetCaretPosition(newPos
);
1313 SetDefaultStyleToCursorStyle();
1324 bool wxRichTextCtrl::MoveUp(int noLines
, int flags
)
1326 return MoveDown(- noLines
, flags
);
1330 bool wxRichTextCtrl::MoveDown(int noLines
, int flags
)
1335 long lineNumber
= GetBuffer().GetVisibleLineNumber(m_caretPosition
, true, m_caretAtLineStart
);
1336 wxPoint pt
= GetCaret()->GetPosition();
1337 long newLine
= lineNumber
+ noLines
;
1339 if (lineNumber
!= -1)
1343 long lastLine
= GetBuffer().GetVisibleLineNumber(GetBuffer().GetRange().GetEnd());
1345 if (newLine
> lastLine
)
1355 wxRichTextLine
* lineObj
= GetBuffer().GetLineForVisibleLineNumber(newLine
);
1358 pt
.y
= lineObj
->GetAbsolutePosition().y
+ 2;
1364 wxClientDC
dc(this);
1366 dc
.SetFont(GetFont());
1368 int hitTest
= GetBuffer().HitTest(dc
, pt
, newPos
);
1370 if (hitTest
!= wxRICHTEXT_HITTEST_NONE
)
1372 // If end of previous line, and hitTest is wxRICHTEXT_HITTEST_BEFORE,
1373 // we want to be at the end of the last line but with m_caretAtLineStart set to true,
1374 // so we view the caret at the start of the line.
1375 bool caretLineStart
= false;
1376 if (hitTest
& wxRICHTEXT_HITTEST_BEFORE
)
1378 wxRichTextLine
* thisLine
= GetBuffer().GetLineAtPosition(newPos
-1);
1379 wxRichTextRange lineRange
;
1381 lineRange
= thisLine
->GetAbsoluteRange();
1383 if (thisLine
&& (newPos
-1) == lineRange
.GetEnd())
1386 caretLineStart
= true;
1390 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(newPos
);
1391 if (para
&& para
->GetRange().GetStart() == newPos
)
1396 long newSelEnd
= newPos
;
1398 bool extendSel
= ExtendSelection(m_caretPosition
, newSelEnd
, flags
);
1402 SetCaretPosition(newPos
, caretLineStart
);
1404 SetDefaultStyleToCursorStyle();
1414 /// Move to the end of the paragraph
1415 bool wxRichTextCtrl::MoveToParagraphEnd(int flags
)
1417 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(m_caretPosition
, true);
1420 long newPos
= para
->GetRange().GetEnd() - 1;
1421 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1425 SetCaretPosition(newPos
);
1427 SetDefaultStyleToCursorStyle();
1437 /// Move to the start of the paragraph
1438 bool wxRichTextCtrl::MoveToParagraphStart(int flags
)
1440 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(m_caretPosition
, true);
1443 long newPos
= para
->GetRange().GetStart() - 1;
1444 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1448 SetCaretPosition(newPos
);
1450 SetDefaultStyleToCursorStyle();
1460 /// Move to the end of the line
1461 bool wxRichTextCtrl::MoveToLineEnd(int flags
)
1463 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1467 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1468 long newPos
= lineRange
.GetEnd();
1469 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1473 SetCaretPosition(newPos
);
1475 SetDefaultStyleToCursorStyle();
1485 /// Move to the start of the line
1486 bool wxRichTextCtrl::MoveToLineStart(int flags
)
1488 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1491 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1492 long newPos
= lineRange
.GetStart()-1;
1494 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1498 wxRichTextParagraph
* para
= GetBuffer().GetParagraphForLine(line
);
1500 SetCaretPosition(newPos
, para
->GetRange().GetStart() != lineRange
.GetStart());
1502 SetDefaultStyleToCursorStyle();
1512 /// Move to the start of the buffer
1513 bool wxRichTextCtrl::MoveHome(int flags
)
1515 if (m_caretPosition
!= -1)
1517 bool extendSel
= ExtendSelection(m_caretPosition
, -1, flags
);
1521 SetCaretPosition(-1);
1523 SetDefaultStyleToCursorStyle();
1533 /// Move to the end of the buffer
1534 bool wxRichTextCtrl::MoveEnd(int flags
)
1536 long endPos
= GetBuffer().GetRange().GetEnd()-1;
1538 if (m_caretPosition
!= endPos
)
1540 bool extendSel
= ExtendSelection(m_caretPosition
, endPos
, flags
);
1544 SetCaretPosition(endPos
);
1546 SetDefaultStyleToCursorStyle();
1556 /// Move noPages pages up
1557 bool wxRichTextCtrl::PageUp(int noPages
, int flags
)
1559 return PageDown(- noPages
, flags
);
1562 /// Move noPages pages down
1563 bool wxRichTextCtrl::PageDown(int noPages
, int flags
)
1565 // Calculate which line occurs noPages * screen height further down.
1566 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1569 wxSize clientSize
= GetClientSize();
1570 int newY
= line
->GetAbsolutePosition().y
+ noPages
*clientSize
.y
;
1572 wxRichTextLine
* newLine
= GetBuffer().GetLineAtYPosition(newY
);
1575 wxRichTextRange lineRange
= newLine
->GetAbsoluteRange();
1576 long pos
= lineRange
.GetStart()-1;
1577 if (pos
!= m_caretPosition
)
1579 wxRichTextParagraph
* para
= GetBuffer().GetParagraphForLine(newLine
);
1581 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1585 SetCaretPosition(pos
, para
->GetRange().GetStart() != lineRange
.GetStart());
1587 SetDefaultStyleToCursorStyle();
1599 static bool wxRichTextCtrlIsWhitespace(const wxString
& str
)
1601 return str
== wxT(" ") || str
== wxT("\t");
1604 // Finds the caret position for the next word
1605 long wxRichTextCtrl::FindNextWordPosition(int direction
) const
1607 long endPos
= GetBuffer().GetRange().GetEnd();
1611 long i
= m_caretPosition
+1+direction
; // +1 for conversion to character pos
1613 // First skip current text to space
1614 while (i
< endPos
&& i
> -1)
1616 // i is in character, not caret positions
1617 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1618 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(i
, false);
1619 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
1623 else if (!wxRichTextCtrlIsWhitespace(text
) && !text
.empty())
1630 while (i
< endPos
&& i
> -1)
1632 // i is in character, not caret positions
1633 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1634 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(i
, false);
1635 if (line
&& (i
== line
->GetAbsoluteRange().GetEnd()))
1636 return wxMax(-1, i
);
1638 if (text
.empty()) // End of paragraph, or maybe an image
1639 return wxMax(-1, i
- 1);
1640 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
1644 // Convert to caret position
1645 return wxMax(-1, i
- 1);
1654 long i
= m_caretPosition
;
1656 // First skip white space
1657 while (i
< endPos
&& i
> -1)
1659 // i is in character, not caret positions
1660 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1661 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(i
, false);
1663 if (text
.empty() || (line
&& (i
== line
->GetAbsoluteRange().GetStart()))) // End of paragraph, or maybe an image
1665 else if (wxRichTextCtrlIsWhitespace(text
) || text
.empty())
1670 // Next skip current text to space
1671 while (i
< endPos
&& i
> -1)
1673 // i is in character, not caret positions
1674 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1675 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(i
, false);
1676 if (line
&& line
->GetAbsoluteRange().GetStart() == i
)
1679 if (!wxRichTextCtrlIsWhitespace(text
) /* && !text.empty() */)
1692 /// Move n words left
1693 bool wxRichTextCtrl::WordLeft(int WXUNUSED(n
), int flags
)
1695 long pos
= FindNextWordPosition(-1);
1696 if (pos
!= m_caretPosition
)
1698 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
, true);
1700 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1704 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
1706 SetDefaultStyleToCursorStyle();
1716 /// Move n words right
1717 bool wxRichTextCtrl::WordRight(int WXUNUSED(n
), int flags
)
1719 long pos
= FindNextWordPosition(1);
1720 if (pos
!= m_caretPosition
)
1722 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
, true);
1724 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1728 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
1730 SetDefaultStyleToCursorStyle();
1741 void wxRichTextCtrl::OnSize(wxSizeEvent
& event
)
1743 // Only do sizing optimization for large buffers
1744 if (GetBuffer().GetRange().GetEnd() > m_delayedLayoutThreshold
)
1746 m_fullLayoutRequired
= true;
1747 m_fullLayoutTime
= wxGetLocalTimeMillis();
1748 m_fullLayoutSavedPosition
= GetFirstVisiblePosition();
1749 LayoutContent(true /* onlyVisibleRect */);
1752 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
1754 #if wxRICHTEXT_BUFFERED_PAINTING
1762 /// Idle-time processing
1763 void wxRichTextCtrl::OnIdle(wxIdleEvent
& event
)
1765 const int layoutInterval
= wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL
;
1767 if (m_fullLayoutRequired
&& (wxGetLocalTimeMillis() > (m_fullLayoutTime
+ layoutInterval
)))
1769 m_fullLayoutRequired
= false;
1770 m_fullLayoutTime
= 0;
1771 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
1772 ShowPosition(m_fullLayoutSavedPosition
);
1776 if (m_caretPositionForDefaultStyle
!= -2)
1778 // If the caret position has changed, no longer reflect the default style
1780 if (GetCaretPosition() != m_caretPositionForDefaultStyle
)
1781 m_caretPositionForDefaultStyle
= -2;
1788 void wxRichTextCtrl::OnScroll(wxScrollWinEvent
& event
)
1794 /// Set up scrollbars, e.g. after a resize
1795 void wxRichTextCtrl::SetupScrollbars(bool atTop
)
1800 if (GetBuffer().IsEmpty())
1802 SetScrollbars(0, 0, 0, 0, 0, 0);
1806 // TODO: reimplement scrolling so we scroll by line, not by fixed number
1807 // of pixels. See e.g. wxVScrolledWindow for ideas.
1808 int pixelsPerUnit
= 5;
1809 wxSize clientSize
= GetClientSize();
1811 int maxHeight
= GetBuffer().GetCachedSize().y
;
1813 // Round up so we have at least maxHeight pixels
1814 int unitsY
= (int) (((float)maxHeight
/(float)pixelsPerUnit
) + 0.5);
1816 int startX
= 0, startY
= 0;
1818 GetViewStart(& startX
, & startY
);
1820 int maxPositionX
= 0; // wxMax(sz.x - clientSize.x, 0);
1821 int maxPositionY
= (int) ((((float)(wxMax((unitsY
*pixelsPerUnit
) - clientSize
.y
, 0)))/((float)pixelsPerUnit
)) + 0.5);
1823 // Move to previous scroll position if
1825 SetScrollbars(0, pixelsPerUnit
,
1827 wxMin(maxPositionX
, startX
), wxMin(maxPositionY
, startY
));
1830 /// Paint the background
1831 void wxRichTextCtrl::PaintBackground(wxDC
& dc
)
1833 wxColour backgroundColour
= GetBackgroundColour();
1834 if (!backgroundColour
.Ok())
1835 backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
1837 // Clear the background
1838 dc
.SetBrush(wxBrush(backgroundColour
));
1839 dc
.SetPen(*wxTRANSPARENT_PEN
);
1840 wxRect
windowRect(GetClientSize());
1841 windowRect
.x
-= 2; windowRect
.y
-= 2;
1842 windowRect
.width
+= 4; windowRect
.height
+= 4;
1844 // We need to shift the rectangle to take into account
1845 // scrolling. Converting device to logical coordinates.
1846 CalcUnscrolledPosition(windowRect
.x
, windowRect
.y
, & windowRect
.x
, & windowRect
.y
);
1847 dc
.DrawRectangle(windowRect
);
1850 #if wxRICHTEXT_BUFFERED_PAINTING
1851 /// Recreate buffer bitmap if necessary
1852 bool wxRichTextCtrl::RecreateBuffer(const wxSize
& size
)
1855 if (sz
== wxDefaultSize
)
1856 sz
= GetClientSize();
1858 if (sz
.x
< 1 || sz
.y
< 1)
1861 if (!m_bufferBitmap
.Ok() || m_bufferBitmap
.GetWidth() < sz
.x
|| m_bufferBitmap
.GetHeight() < sz
.y
)
1862 m_bufferBitmap
= wxBitmap(sz
.x
, sz
.y
);
1863 return m_bufferBitmap
.Ok();
1867 // ----------------------------------------------------------------------------
1868 // file IO functions
1869 // ----------------------------------------------------------------------------
1871 bool wxRichTextCtrl::DoLoadFile(const wxString
& filename
, int fileType
)
1873 bool success
= GetBuffer().LoadFile(filename
, fileType
);
1875 m_filename
= filename
;
1878 SetInsertionPoint(0);
1881 SetupScrollbars(true);
1883 wxTextCtrl::SendTextUpdatedEvent(this);
1889 wxLogError(_("File couldn't be loaded."));
1895 bool wxRichTextCtrl::DoSaveFile(const wxString
& filename
, int fileType
)
1897 if (GetBuffer().SaveFile(filename
, fileType
))
1899 m_filename
= filename
;
1906 wxLogError(_("The text couldn't be saved."));
1911 // ----------------------------------------------------------------------------
1912 // wxRichTextCtrl specific functionality
1913 // ----------------------------------------------------------------------------
1915 /// Add a new paragraph of text to the end of the buffer
1916 wxRichTextRange
wxRichTextCtrl::AddParagraph(const wxString
& text
)
1918 return GetBuffer().AddParagraph(text
);
1922 wxRichTextRange
wxRichTextCtrl::AddImage(const wxImage
& image
)
1924 return GetBuffer().AddImage(image
);
1927 // ----------------------------------------------------------------------------
1928 // selection and ranges
1929 // ----------------------------------------------------------------------------
1931 void wxRichTextCtrl::SelectAll()
1933 SetSelection(0, GetLastPosition()+1);
1934 m_selectionAnchor
= -1;
1938 void wxRichTextCtrl::SelectNone()
1940 if (!(GetSelectionRange() == wxRichTextRange(-2, -2)))
1941 SetSelection(-2, -2);
1942 m_selectionAnchor
= -2;
1945 static bool wxIsWordDelimiter(const wxString
& text
)
1947 return !text
.IsEmpty() && !wxIsalnum(text
[0]);
1950 /// Select the word at the given character position
1951 bool wxRichTextCtrl::SelectWord(long position
)
1953 if (position
< 0 || position
> GetBuffer().GetRange().GetEnd())
1956 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
1960 long positionStart
= position
;
1961 long positionEnd
= position
;
1963 for (positionStart
= position
; positionStart
>= para
->GetRange().GetStart(); positionStart
--)
1965 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(positionStart
, positionStart
));
1966 if (wxIsWordDelimiter(text
))
1972 if (positionStart
< para
->GetRange().GetStart())
1973 positionStart
= para
->GetRange().GetStart();
1975 for (positionEnd
= position
; positionEnd
< para
->GetRange().GetEnd(); positionEnd
++)
1977 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(positionEnd
, positionEnd
));
1978 if (wxIsWordDelimiter(text
))
1984 if (positionEnd
>= para
->GetRange().GetEnd())
1985 positionEnd
= para
->GetRange().GetEnd();
1987 SetSelection(positionStart
, positionEnd
+1);
1989 if (positionStart
>= 0)
1991 MoveCaret(positionStart
-1, true);
1992 SetDefaultStyleToCursorStyle();
1998 wxString
wxRichTextCtrl::GetStringSelection() const
2001 GetSelection(&from
, &to
);
2003 return GetRange(from
, to
);
2006 // ----------------------------------------------------------------------------
2008 // ----------------------------------------------------------------------------
2010 wxTextCtrlHitTestResult
2011 wxRichTextCtrl::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
2013 // implement in terms of the other overload as the native ports typically
2014 // can get the position and not (x, y) pair directly (although wxUniv
2015 // directly gets x and y -- and so overrides this method as well)
2017 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
2019 if ( rc
!= wxTE_HT_UNKNOWN
)
2021 PositionToXY(pos
, x
, y
);
2027 wxTextCtrlHitTestResult
2028 wxRichTextCtrl::HitTest(const wxPoint
& pt
,
2031 wxClientDC
dc((wxRichTextCtrl
*) this);
2032 ((wxRichTextCtrl
*)this)->PrepareDC(dc
);
2034 // Buffer uses logical position (relative to start of buffer)
2036 wxPoint pt2
= GetLogicalPoint(pt
);
2038 int hit
= ((wxRichTextCtrl
*)this)->GetBuffer().HitTest(dc
, pt2
, *pos
);
2040 if ((hit
& wxRICHTEXT_HITTEST_BEFORE
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2041 return wxTE_HT_BEFORE
;
2042 else if ((hit
& wxRICHTEXT_HITTEST_AFTER
) && (hit
& wxRICHTEXT_HITTEST_OUTSIDE
))
2043 return wxTE_HT_BEYOND
;
2044 else if (hit
& (wxRICHTEXT_HITTEST_BEFORE
|wxRICHTEXT_HITTEST_AFTER
))
2045 return wxTE_HT_ON_TEXT
;
2047 return wxTE_HT_UNKNOWN
;
2050 // ----------------------------------------------------------------------------
2051 // set/get the controls text
2052 // ----------------------------------------------------------------------------
2054 wxString
wxRichTextCtrl::GetValue() const
2056 return GetBuffer().GetText();
2059 wxString
wxRichTextCtrl::GetRange(long from
, long to
) const
2061 // Public API for range is different from internals
2062 return GetBuffer().GetTextForRange(wxRichTextRange(from
, to
-1));
2065 void wxRichTextCtrl::DoSetValue(const wxString
& value
, int flags
)
2069 if (!value
.IsEmpty())
2071 // Remove empty paragraph
2072 GetBuffer().Clear();
2075 // for compatibility, don't move the cursor when doing SetValue()
2076 SetInsertionPoint(0);
2080 // still send an event for consistency
2081 if (flags
& SetValue_SendEvent
)
2082 wxTextCtrl::SendTextUpdatedEvent(this);
2087 void wxRichTextCtrl::WriteText(const wxString
& value
)
2092 void wxRichTextCtrl::DoWriteText(const wxString
& value
, int flags
)
2094 wxString valueUnix
= wxTextFile::Translate(value
, wxTextFileType_Unix
);
2096 GetBuffer().InsertTextWithUndo(m_caretPosition
+1, valueUnix
, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
2098 if ( flags
& SetValue_SendEvent
)
2099 wxTextCtrl::SendTextUpdatedEvent(this);
2102 void wxRichTextCtrl::AppendText(const wxString
& text
)
2104 SetInsertionPointEnd();
2109 /// Write an image at the current insertion point
2110 bool wxRichTextCtrl::WriteImage(const wxImage
& image
, int bitmapType
)
2112 wxRichTextImageBlock imageBlock
;
2114 wxImage image2
= image
;
2115 if (imageBlock
.MakeImageBlock(image2
, bitmapType
))
2116 return WriteImage(imageBlock
);
2121 bool wxRichTextCtrl::WriteImage(const wxString
& filename
, int bitmapType
)
2123 wxRichTextImageBlock imageBlock
;
2126 if (imageBlock
.MakeImageBlock(filename
, bitmapType
, image
, false))
2127 return WriteImage(imageBlock
);
2132 bool wxRichTextCtrl::WriteImage(const wxRichTextImageBlock
& imageBlock
)
2134 return GetBuffer().InsertImageWithUndo(m_caretPosition
+1, imageBlock
, this);
2137 bool wxRichTextCtrl::WriteImage(const wxBitmap
& bitmap
, int bitmapType
)
2141 wxRichTextImageBlock imageBlock
;
2143 wxImage image
= bitmap
.ConvertToImage();
2144 if (image
.Ok() && imageBlock
.MakeImageBlock(image
, bitmapType
))
2145 return WriteImage(imageBlock
);
2151 /// Insert a newline (actually paragraph) at the current insertion point.
2152 bool wxRichTextCtrl::Newline()
2154 return GetBuffer().InsertNewlineWithUndo(m_caretPosition
+1, this);
2157 /// Insert a line break at the current insertion point.
2158 bool wxRichTextCtrl::LineBreak()
2161 text
= wxRichTextLineBreakChar
;
2162 return GetBuffer().InsertTextWithUndo(m_caretPosition
+1, text
, this);
2165 // ----------------------------------------------------------------------------
2166 // Clipboard operations
2167 // ----------------------------------------------------------------------------
2169 void wxRichTextCtrl::Copy()
2173 wxRichTextRange range
= GetInternalSelectionRange();
2174 GetBuffer().CopyToClipboard(range
);
2178 void wxRichTextCtrl::Cut()
2182 wxRichTextRange range
= GetInternalSelectionRange();
2183 GetBuffer().CopyToClipboard(range
);
2185 DeleteSelectedContent();
2191 void wxRichTextCtrl::Paste()
2195 BeginBatchUndo(_("Paste"));
2197 long newPos
= m_caretPosition
;
2198 DeleteSelectedContent(& newPos
);
2200 GetBuffer().PasteFromClipboard(newPos
);
2206 void wxRichTextCtrl::DeleteSelection()
2208 if (CanDeleteSelection())
2210 DeleteSelectedContent();
2214 bool wxRichTextCtrl::HasSelection() const
2216 return m_selectionRange
.GetStart() != -2 && m_selectionRange
.GetEnd() != -2;
2219 bool wxRichTextCtrl::CanCopy() const
2221 // Can copy if there's a selection
2222 return HasSelection();
2225 bool wxRichTextCtrl::CanCut() const
2227 return HasSelection() && IsEditable();
2230 bool wxRichTextCtrl::CanPaste() const
2232 if ( !IsEditable() )
2235 return GetBuffer().CanPasteFromClipboard();
2238 bool wxRichTextCtrl::CanDeleteSelection() const
2240 return HasSelection() && IsEditable();
2244 // ----------------------------------------------------------------------------
2246 // ----------------------------------------------------------------------------
2248 void wxRichTextCtrl::SetEditable(bool editable
)
2250 m_editable
= editable
;
2253 void wxRichTextCtrl::SetInsertionPoint(long pos
)
2257 m_caretPosition
= pos
- 1;
2262 void wxRichTextCtrl::SetInsertionPointEnd()
2264 long pos
= GetLastPosition();
2265 SetInsertionPoint(pos
);
2268 long wxRichTextCtrl::GetInsertionPoint() const
2270 return m_caretPosition
+1;
2273 wxTextPos
wxRichTextCtrl::GetLastPosition() const
2275 return GetBuffer().GetRange().GetEnd();
2278 // If the return values from and to are the same, there is no
2280 void wxRichTextCtrl::GetSelection(long* from
, long* to
) const
2282 *from
= m_selectionRange
.GetStart();
2283 *to
= m_selectionRange
.GetEnd();
2284 if ((*to
) != -1 && (*to
) != -2)
2288 bool wxRichTextCtrl::IsEditable() const
2293 // ----------------------------------------------------------------------------
2295 // ----------------------------------------------------------------------------
2297 void wxRichTextCtrl::SetSelection(long from
, long to
)
2299 // if from and to are both -1, it means (in wxWidgets) that all text should
2301 if ( (from
== -1) && (to
== -1) )
2304 to
= GetLastPosition()+1;
2307 DoSetSelection(from
, to
);
2310 void wxRichTextCtrl::DoSetSelection(long from
, long to
, bool WXUNUSED(scrollCaret
))
2312 m_selectionAnchor
= from
;
2313 m_selectionRange
.SetRange(from
, to
-1);
2315 m_caretPosition
= from
-1;
2321 // ----------------------------------------------------------------------------
2323 // ----------------------------------------------------------------------------
2325 void wxRichTextCtrl::Replace(long WXUNUSED(from
), long WXUNUSED(to
),
2326 const wxString
& value
)
2328 BeginBatchUndo(_("Replace"));
2330 DeleteSelectedContent();
2332 DoWriteText(value
, SetValue_SelectionOnly
);
2337 void wxRichTextCtrl::Remove(long from
, long to
)
2341 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(from
, to
), this);
2348 bool wxRichTextCtrl::IsModified() const
2350 return m_buffer
.IsModified();
2353 void wxRichTextCtrl::MarkDirty()
2355 m_buffer
.Modify(true);
2358 void wxRichTextCtrl::DiscardEdits()
2360 m_caretPositionForDefaultStyle
= -2;
2361 m_buffer
.Modify(false);
2362 m_buffer
.GetCommandProcessor()->ClearCommands();
2365 int wxRichTextCtrl::GetNumberOfLines() const
2367 return GetBuffer().GetParagraphCount();
2370 // ----------------------------------------------------------------------------
2371 // Positions <-> coords
2372 // ----------------------------------------------------------------------------
2374 long wxRichTextCtrl::XYToPosition(long x
, long y
) const
2376 return GetBuffer().XYToPosition(x
, y
);
2379 bool wxRichTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
2381 return GetBuffer().PositionToXY(pos
, x
, y
);
2384 // ----------------------------------------------------------------------------
2386 // ----------------------------------------------------------------------------
2388 void wxRichTextCtrl::ShowPosition(long pos
)
2390 if (!IsPositionVisible(pos
))
2391 ScrollIntoView(pos
-1, WXK_DOWN
);
2394 int wxRichTextCtrl::GetLineLength(long lineNo
) const
2396 return GetBuffer().GetParagraphLength(lineNo
);
2399 wxString
wxRichTextCtrl::GetLineText(long lineNo
) const
2401 return GetBuffer().GetParagraphText(lineNo
);
2404 // ----------------------------------------------------------------------------
2406 // ----------------------------------------------------------------------------
2408 void wxRichTextCtrl::Undo()
2412 GetCommandProcessor()->Undo();
2416 void wxRichTextCtrl::Redo()
2420 GetCommandProcessor()->Redo();
2424 bool wxRichTextCtrl::CanUndo() const
2426 return GetCommandProcessor()->CanUndo();
2429 bool wxRichTextCtrl::CanRedo() const
2431 return GetCommandProcessor()->CanRedo();
2434 // ----------------------------------------------------------------------------
2435 // implementation details
2436 // ----------------------------------------------------------------------------
2438 void wxRichTextCtrl::Command(wxCommandEvent
& event
)
2440 SetValue(event
.GetString());
2441 GetEventHandler()->ProcessEvent(event
);
2444 void wxRichTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
2446 // By default, load the first file into the text window.
2447 if (event
.GetNumberOfFiles() > 0)
2449 LoadFile(event
.GetFiles()[0]);
2453 wxSize
wxRichTextCtrl::DoGetBestSize() const
2455 return wxSize(10, 10);
2458 // ----------------------------------------------------------------------------
2459 // standard handlers for standard edit menu events
2460 // ----------------------------------------------------------------------------
2462 void wxRichTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
2467 void wxRichTextCtrl::OnClear(wxCommandEvent
& WXUNUSED(event
))
2472 void wxRichTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
2477 void wxRichTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
2482 void wxRichTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
2487 void wxRichTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
2492 void wxRichTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
2494 event
.Enable( CanCut() );
2497 void wxRichTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
2499 event
.Enable( CanCopy() );
2502 void wxRichTextCtrl::OnUpdateClear(wxUpdateUIEvent
& event
)
2504 event
.Enable( CanDeleteSelection() );
2507 void wxRichTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
2509 event
.Enable( CanPaste() );
2512 void wxRichTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
2514 event
.Enable( CanUndo() );
2515 event
.SetText( GetCommandProcessor()->GetUndoMenuLabel() );
2518 void wxRichTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
2520 event
.Enable( CanRedo() );
2521 event
.SetText( GetCommandProcessor()->GetRedoMenuLabel() );
2524 void wxRichTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
2529 void wxRichTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
2531 event
.Enable(GetLastPosition() > 0);
2534 void wxRichTextCtrl::OnContextMenu(wxContextMenuEvent
& event
)
2536 if (event
.GetEventObject() != this)
2544 m_contextMenu
= new wxMenu
;
2545 m_contextMenu
->Append(wxID_UNDO
, _("&Undo"));
2546 m_contextMenu
->Append(wxID_REDO
, _("&Redo"));
2547 m_contextMenu
->AppendSeparator();
2548 m_contextMenu
->Append(wxID_CUT
, _("Cu&t"));
2549 m_contextMenu
->Append(wxID_COPY
, _("&Copy"));
2550 m_contextMenu
->Append(wxID_PASTE
, _("&Paste"));
2551 m_contextMenu
->Append(wxID_CLEAR
, _("&Delete"));
2552 m_contextMenu
->AppendSeparator();
2553 m_contextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
2555 PopupMenu(m_contextMenu
);
2559 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
2561 return GetBuffer().SetStyle(wxRichTextRange(start
, end
-1), wxTextAttr(style
));
2564 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
)
2566 return GetBuffer().SetStyle(range
.ToInternal(), style
);
2569 // extended style setting operation with flags including:
2570 // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY.
2571 // see richtextbuffer.h for more details.
2573 bool wxRichTextCtrl::SetStyleEx(const wxRichTextRange
& range
, const wxTextAttr
& style
, int flags
)
2575 return GetBuffer().SetStyle(range
.ToInternal(), style
, flags
);
2578 bool wxRichTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
2580 return GetBuffer().SetDefaultStyle(wxTextAttr(style
));
2583 const wxTextAttr
& wxRichTextCtrl::GetDefaultStyle() const
2585 return GetBuffer().GetDefaultStyle();
2588 bool wxRichTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
2590 return GetBuffer().GetStyle(position
, style
);
2593 // get the common set of styles for the range
2594 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
)
2596 return GetBuffer().GetStyleForRange(range
.ToInternal(), style
);
2599 /// Get the content (uncombined) attributes for this position.
2600 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxTextAttr
& style
)
2602 return GetBuffer().GetUncombinedStyle(position
, style
);
2605 /// Set font, and also the buffer attributes
2606 bool wxRichTextCtrl::SetFont(const wxFont
& font
)
2608 wxControl::SetFont(font
);
2610 wxTextAttr attr
= GetBuffer().GetAttributes();
2612 GetBuffer().SetBasicStyle(attr
);
2614 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2620 /// Transform logical to physical
2621 wxPoint
wxRichTextCtrl::GetPhysicalPoint(const wxPoint
& ptLogical
) const
2624 CalcScrolledPosition(ptLogical
.x
, ptLogical
.y
, & pt
.x
, & pt
.y
);
2629 /// Transform physical to logical
2630 wxPoint
wxRichTextCtrl::GetLogicalPoint(const wxPoint
& ptPhysical
) const
2633 CalcUnscrolledPosition(ptPhysical
.x
, ptPhysical
.y
, & pt
.x
, & pt
.y
);
2638 /// Position the caret
2639 void wxRichTextCtrl::PositionCaret()
2644 //wxLogDebug(wxT("PositionCaret"));
2647 if (GetCaretPositionForIndex(GetCaretPosition(), caretRect
))
2649 wxPoint newPt
= caretRect
.GetPosition();
2650 wxSize newSz
= caretRect
.GetSize();
2651 wxPoint pt
= GetPhysicalPoint(newPt
);
2652 if (GetCaret()->GetPosition() != pt
|| GetCaret()->GetSize() != newSz
)
2654 GetCaret()->Move(pt
);
2655 GetCaret()->SetSize(newSz
);
2660 /// Get the caret height and position for the given character position
2661 bool wxRichTextCtrl::GetCaretPositionForIndex(long position
, wxRect
& rect
)
2663 wxClientDC
dc(this);
2664 dc
.SetFont(GetFont());
2671 if (GetBuffer().FindPosition(dc
, position
, pt
, & height
, m_caretAtLineStart
))
2673 // Caret height can't be zero
2675 height
= dc
.GetCharHeight();
2677 rect
= wxRect(pt
, wxSize(wxRICHTEXT_DEFAULT_CARET_WIDTH
, height
));
2684 /// Gets the line for the visible caret position. If the caret is
2685 /// shown at the very end of the line, it means the next character is actually
2686 /// on the following line. So let's get the line we're expecting to find
2687 /// if this is the case.
2688 wxRichTextLine
* wxRichTextCtrl::GetVisibleLineForCaretPosition(long caretPosition
) const
2690 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(caretPosition
, true);
2691 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(caretPosition
, true);
2694 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
2695 if (caretPosition
== lineRange
.GetStart()-1 &&
2696 (para
->GetRange().GetStart() != lineRange
.GetStart()))
2698 if (!m_caretAtLineStart
)
2699 line
= GetBuffer().GetLineAtPosition(caretPosition
-1, true);
2706 /// Move the caret to the given character position
2707 bool wxRichTextCtrl::MoveCaret(long pos
, bool showAtLineStart
)
2709 if (GetBuffer().GetDirty())
2712 if (pos
<= GetBuffer().GetRange().GetEnd())
2714 SetCaretPosition(pos
, showAtLineStart
);
2724 /// Layout the buffer: which we must do before certain operations, such as
2725 /// setting the caret position.
2726 bool wxRichTextCtrl::LayoutContent(bool onlyVisibleRect
)
2728 if (GetBuffer().GetDirty() || onlyVisibleRect
)
2730 wxRect
availableSpace(GetClientSize());
2731 if (availableSpace
.width
== 0)
2732 availableSpace
.width
= 10;
2733 if (availableSpace
.height
== 0)
2734 availableSpace
.height
= 10;
2736 int flags
= wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
;
2737 if (onlyVisibleRect
)
2739 flags
|= wxRICHTEXT_LAYOUT_SPECIFIED_RECT
;
2740 availableSpace
.SetPosition(GetLogicalPoint(wxPoint(0, 0)));
2743 wxClientDC
dc(this);
2744 dc
.SetFont(GetFont());
2748 GetBuffer().Defragment();
2749 GetBuffer().UpdateRanges(); // If items were deleted, ranges need recalculation
2750 GetBuffer().Layout(dc
, availableSpace
, flags
);
2751 GetBuffer().SetDirty(false);
2760 /// Is all of the selection bold?
2761 bool wxRichTextCtrl::IsSelectionBold()
2766 wxRichTextRange range
= GetSelectionRange();
2767 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
2768 attr
.SetFontWeight(wxBOLD
);
2770 return HasCharacterAttributes(range
, attr
);
2774 // If no selection, then we need to combine current style with default style
2775 // to see what the effect would be if we started typing.
2777 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
2779 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
2780 if (GetStyle(pos
, attr
))
2782 if (IsDefaultStyleShowing())
2783 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
2784 return attr
.GetFontWeight() == wxBOLD
;
2790 /// Is all of the selection italics?
2791 bool wxRichTextCtrl::IsSelectionItalics()
2795 wxRichTextRange range
= GetSelectionRange();
2797 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
2798 attr
.SetFontStyle(wxITALIC
);
2800 return HasCharacterAttributes(range
, attr
);
2804 // If no selection, then we need to combine current style with default style
2805 // to see what the effect would be if we started typing.
2807 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
2809 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
2810 if (GetStyle(pos
, attr
))
2812 if (IsDefaultStyleShowing())
2813 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
2814 return attr
.GetFontStyle() == wxITALIC
;
2820 /// Is all of the selection underlined?
2821 bool wxRichTextCtrl::IsSelectionUnderlined()
2825 wxRichTextRange range
= GetSelectionRange();
2827 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
2828 attr
.SetFontUnderlined(true);
2830 return HasCharacterAttributes(range
, attr
);
2834 // If no selection, then we need to combine current style with default style
2835 // to see what the effect would be if we started typing.
2837 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
2838 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
2840 if (GetStyle(pos
, attr
))
2842 if (IsDefaultStyleShowing())
2843 wxRichTextApplyStyle(attr
, GetDefaultStyleEx());
2844 return attr
.GetFontUnderlined();
2850 /// Apply bold to the selection
2851 bool wxRichTextCtrl::ApplyBoldToSelection()
2854 attr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
2855 attr
.SetFontWeight(IsSelectionBold() ? wxNORMAL
: wxBOLD
);
2858 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
2860 SetAndShowDefaultStyle(attr
);
2864 /// Apply italic to the selection
2865 bool wxRichTextCtrl::ApplyItalicToSelection()
2868 attr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
2869 attr
.SetFontStyle(IsSelectionItalics() ? wxNORMAL
: wxITALIC
);
2872 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
2874 SetAndShowDefaultStyle(attr
);
2878 /// Apply underline to the selection
2879 bool wxRichTextCtrl::ApplyUnderlineToSelection()
2882 attr
.SetFlags(wxTEXT_ATTR_FONT_UNDERLINE
);
2883 attr
.SetFontUnderlined(!IsSelectionUnderlined());
2886 return SetStyleEx(GetSelectionRange(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
2888 SetAndShowDefaultStyle(attr
);
2892 /// Is all of the selection aligned according to the specified flag?
2893 bool wxRichTextCtrl::IsSelectionAligned(wxTextAttrAlignment alignment
)
2895 wxRichTextRange range
;
2897 range
= GetSelectionRange();
2899 range
= wxRichTextRange(GetCaretPosition()+1, GetCaretPosition()+2);
2902 attr
.SetAlignment(alignment
);
2904 return HasParagraphAttributes(range
, attr
);
2907 /// Apply alignment to the selection
2908 bool wxRichTextCtrl::ApplyAlignmentToSelection(wxTextAttrAlignment alignment
)
2911 attr
.SetAlignment(alignment
);
2913 return SetStyle(GetSelectionRange(), attr
);
2916 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(GetCaretPosition()+1);
2918 return SetStyleEx(para
->GetRange().FromInternal(), attr
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
);
2923 /// Apply a named style to the selection
2924 bool wxRichTextCtrl::ApplyStyle(wxRichTextStyleDefinition
* def
)
2926 // Flags are defined within each definition, so only certain
2927 // attributes are applied.
2928 wxTextAttr
attr(GetStyleSheet() ? def
->GetStyleMergedWithBase(GetStyleSheet()) : def
->GetStyle());
2930 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_RESET
;
2932 if (def
->IsKindOf(CLASSINFO(wxRichTextListStyleDefinition
)))
2934 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
2936 wxRichTextRange range
;
2939 range
= GetSelectionRange();
2942 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
2943 range
= wxRichTextRange(pos
, pos
+1);
2946 return SetListStyle(range
, (wxRichTextListStyleDefinition
*) def
, flags
);
2949 // Make sure the attr has the style name
2950 if (def
->IsKindOf(CLASSINFO(wxRichTextParagraphStyleDefinition
)))
2952 attr
.SetParagraphStyleName(def
->GetName());
2954 // If applying a paragraph style, we only want the paragraph nodes to adopt these
2955 // attributes, and not the leaf nodes. This will allow the content (e.g. text)
2956 // to change its style independently.
2957 flags
|= wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
;
2960 attr
.SetCharacterStyleName(def
->GetName());
2963 return SetStyleEx(GetSelectionRange(), attr
, flags
);
2966 SetAndShowDefaultStyle(attr
);
2971 /// Apply the style sheet to the buffer, for example if the styles have changed.
2972 bool wxRichTextCtrl::ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
)
2975 styleSheet
= GetBuffer().GetStyleSheet();
2979 if (GetBuffer().ApplyStyleSheet(styleSheet
))
2981 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2989 /// Sets the default style to the style under the cursor
2990 bool wxRichTextCtrl::SetDefaultStyleToCursorStyle()
2993 attr
.SetFlags(wxTEXT_ATTR_CHARACTER
);
2995 // If at the start of a paragraph, use the next position.
2996 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
2998 if (GetUncombinedStyle(pos
, attr
))
3000 SetDefaultStyle(attr
);
3007 /// Returns the first visible position in the current view
3008 long wxRichTextCtrl::GetFirstVisiblePosition() const
3010 wxRichTextLine
* line
= GetBuffer().GetLineAtYPosition(GetLogicalPoint(wxPoint(0, 0)).y
);
3012 return line
->GetAbsoluteRange().GetStart();
3017 /// Get the first visible point in the window
3018 wxPoint
wxRichTextCtrl::GetFirstVisiblePoint() const
3021 int startXUnits
, startYUnits
;
3023 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
3024 GetViewStart(& startXUnits
, & startYUnits
);
3026 return wxPoint(startXUnits
* ppuX
, startYUnits
* ppuY
);
3029 /// The adjusted caret position is the character position adjusted to take
3030 /// into account whether we're at the start of a paragraph, in which case
3031 /// style information should be taken from the next position, not current one.
3032 long wxRichTextCtrl::GetAdjustedCaretPosition(long caretPos
) const
3034 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(caretPos
+1);
3036 if (para
&& (caretPos
+1 == para
->GetRange().GetStart()))
3041 /// Get/set the selection range in character positions. -1, -1 means no selection.
3042 /// The range is in API convention, i.e. a single character selection is denoted
3044 wxRichTextRange
wxRichTextCtrl::GetSelectionRange() const
3046 wxRichTextRange range
= GetInternalSelectionRange();
3047 if (range
!= wxRichTextRange(-2,-2) && range
!= wxRichTextRange(-1,-1))
3048 range
.SetEnd(range
.GetEnd() + 1);
3052 void wxRichTextCtrl::SetSelectionRange(const wxRichTextRange
& range
)
3054 wxRichTextRange
range1(range
);
3055 if (range1
!= wxRichTextRange(-2,-2) && range1
!= wxRichTextRange(-1,-1) )
3056 range1
.SetEnd(range1
.GetEnd() - 1);
3058 wxASSERT( range1
.GetStart() > range1
.GetEnd() );
3060 SetInternalSelectionRange(range1
);
3064 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
3066 return GetBuffer().SetListStyle(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
3069 bool wxRichTextCtrl::SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
3071 return GetBuffer().SetListStyle(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
3074 /// Clear list for given range
3075 bool wxRichTextCtrl::ClearListStyle(const wxRichTextRange
& range
, int flags
)
3077 return GetBuffer().ClearListStyle(range
.ToInternal(), flags
);
3080 /// Number/renumber any list elements in the given range
3081 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
3083 return GetBuffer().NumberList(range
.ToInternal(), def
, flags
, startFrom
, specifiedLevel
);
3086 bool wxRichTextCtrl::NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
3088 return GetBuffer().NumberList(range
.ToInternal(), defName
, flags
, startFrom
, specifiedLevel
);
3091 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
3092 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int specifiedLevel
)
3094 return GetBuffer().PromoteList(promoteBy
, range
.ToInternal(), def
, flags
, specifiedLevel
);
3097 bool wxRichTextCtrl::PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int specifiedLevel
)
3099 return GetBuffer().PromoteList(promoteBy
, range
.ToInternal(), defName
, flags
, specifiedLevel
);
3102 /// Deletes the content in the given range
3103 bool wxRichTextCtrl::Delete(const wxRichTextRange
& range
)
3105 return GetBuffer().DeleteRangeWithUndo(range
.ToInternal(), this);
3108 const wxArrayString
& wxRichTextCtrl::GetAvailableFontNames()
3110 if (sm_availableFontNames
.GetCount() == 0)
3112 sm_availableFontNames
= wxFontEnumerator::GetFacenames();
3113 sm_availableFontNames
.Sort();
3115 return sm_availableFontNames
;
3118 void wxRichTextCtrl::ClearAvailableFontNames()
3120 sm_availableFontNames
.Clear();
3123 void wxRichTextCtrl::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
3125 //wxLogDebug(wxT("wxRichTextCtrl::OnSysColourChanged"));
3127 wxTextAttrEx basicStyle
= GetBasicStyle();
3128 basicStyle
.SetTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
3129 SetBasicStyle(basicStyle
);
3130 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));