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
)
58 IMPLEMENT_CLASS( wxRichTextCtrl
, wxControl
)
60 IMPLEMENT_CLASS( wxRichTextEvent
, wxNotifyEvent
)
62 BEGIN_EVENT_TABLE( wxRichTextCtrl
, wxControl
)
63 EVT_PAINT(wxRichTextCtrl::OnPaint
)
64 EVT_ERASE_BACKGROUND(wxRichTextCtrl::OnEraseBackground
)
65 EVT_IDLE(wxRichTextCtrl::OnIdle
)
66 EVT_SCROLLWIN(wxRichTextCtrl::OnScroll
)
67 EVT_LEFT_DOWN(wxRichTextCtrl::OnLeftClick
)
68 EVT_MOTION(wxRichTextCtrl::OnMoveMouse
)
69 EVT_LEFT_UP(wxRichTextCtrl::OnLeftUp
)
70 EVT_RIGHT_DOWN(wxRichTextCtrl::OnRightClick
)
71 EVT_MIDDLE_DOWN(wxRichTextCtrl::OnMiddleClick
)
72 EVT_LEFT_DCLICK(wxRichTextCtrl::OnLeftDClick
)
73 EVT_CHAR(wxRichTextCtrl::OnChar
)
74 EVT_SIZE(wxRichTextCtrl::OnSize
)
75 EVT_SET_FOCUS(wxRichTextCtrl::OnSetFocus
)
76 EVT_KILL_FOCUS(wxRichTextCtrl::OnKillFocus
)
77 EVT_CONTEXT_MENU(wxRichTextCtrl::OnContextMenu
)
79 EVT_MENU(wxID_UNDO
, wxRichTextCtrl::OnUndo
)
80 EVT_UPDATE_UI(wxID_UNDO
, wxRichTextCtrl::OnUpdateUndo
)
82 EVT_MENU(wxID_REDO
, wxRichTextCtrl::OnRedo
)
83 EVT_UPDATE_UI(wxID_REDO
, wxRichTextCtrl::OnUpdateRedo
)
85 EVT_MENU(wxID_COPY
, wxRichTextCtrl::OnCopy
)
86 EVT_UPDATE_UI(wxID_COPY
, wxRichTextCtrl::OnUpdateCopy
)
88 EVT_MENU(wxID_PASTE
, wxRichTextCtrl::OnPaste
)
89 EVT_UPDATE_UI(wxID_PASTE
, wxRichTextCtrl::OnUpdatePaste
)
91 EVT_MENU(wxID_CUT
, wxRichTextCtrl::OnCut
)
92 EVT_UPDATE_UI(wxID_CUT
, wxRichTextCtrl::OnUpdateCut
)
94 EVT_MENU(wxID_CLEAR
, wxRichTextCtrl::OnClear
)
95 EVT_UPDATE_UI(wxID_CLEAR
, wxRichTextCtrl::OnUpdateClear
)
97 EVT_MENU(wxID_SELECTALL
, wxRichTextCtrl::OnSelectAll
)
98 EVT_UPDATE_UI(wxID_SELECTALL
, wxRichTextCtrl::OnUpdateSelectAll
)
105 wxArrayString
wxRichTextCtrl::sm_availableFontNames
;
107 wxRichTextCtrl::wxRichTextCtrl()
108 : wxScrollHelper(this)
113 wxRichTextCtrl::wxRichTextCtrl(wxWindow
* parent
,
115 const wxString
& value
,
119 const wxValidator
& validator
,
120 const wxString
& name
)
121 : wxScrollHelper(this)
124 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
128 bool wxRichTextCtrl::Create( wxWindow
* parent
, wxWindowID id
, const wxString
& value
, const wxPoint
& pos
, const wxSize
& size
, long style
,
129 const wxValidator
& validator
, const wxString
& name
)
131 if (!wxTextCtrlBase::Create(parent
, id
, pos
, size
,
132 style
|wxFULL_REPAINT_ON_RESIZE
,
138 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
142 GetBuffer().SetRichTextCtrl(this);
144 SetCaret(new wxCaret(this, wxRICHTEXT_DEFAULT_CARET_WIDTH
, 16));
147 if (style
& wxTE_READONLY
)
150 // The base attributes must all have default values
151 wxTextAttrEx attributes
;
152 attributes
.SetFont(GetFont());
153 attributes
.SetTextColour(*wxBLACK
);
154 attributes
.SetBackgroundColour(*wxWHITE
);
155 attributes
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
156 attributes
.SetLineSpacing(10);
157 attributes
.SetParagraphSpacingAfter(10);
158 attributes
.SetParagraphSpacingBefore(0);
159 attributes
.SetTextEffects(0);
160 attributes
.SetTextEffectFlags(wxTEXT_ATTR_EFFECT_STRIKETHROUGH
|wxTEXT_ATTR_EFFECT_CAPITALS
);
162 SetBasicStyle(attributes
);
164 // The default attributes will be merged with base attributes, so
165 // can be empty to begin with
166 wxTextAttrEx defaultAttributes
;
167 SetDefaultStyle(defaultAttributes
);
169 SetBackgroundColour(*wxWHITE
);
170 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
172 // Tell the sizers to use the given or best size
173 SetInitialSize(size
);
175 #if wxRICHTEXT_BUFFERED_PAINTING
177 RecreateBuffer(size
);
180 m_textCursor
= wxCursor(wxCURSOR_IBEAM
);
181 m_urlCursor
= wxCursor(wxCURSOR_HAND
);
183 SetCursor(m_textCursor
);
185 if (!value
.IsEmpty())
188 GetBuffer().AddEventHandler(this);
193 wxRichTextCtrl::~wxRichTextCtrl()
195 GetBuffer().RemoveEventHandler(this);
197 delete m_contextMenu
;
200 /// Member initialisation
201 void wxRichTextCtrl::Init()
204 m_contextMenu
= NULL
;
206 m_caretPosition
= -1;
207 m_selectionRange
.SetRange(-2, -2);
208 m_selectionAnchor
= -2;
210 m_caretAtLineStart
= false;
212 m_fullLayoutRequired
= false;
213 m_fullLayoutTime
= 0;
214 m_fullLayoutSavedPosition
= 0;
215 m_delayedLayoutThreshold
= wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD
;
216 m_caretPositionForDefaultStyle
= -2;
219 /// Call Freeze to prevent refresh
220 void wxRichTextCtrl::Freeze()
225 /// Call Thaw to refresh
226 void wxRichTextCtrl::Thaw()
230 if (m_freezeCount
== 0)
238 void wxRichTextCtrl::Clear()
240 m_buffer
.ResetAndClearCommands();
241 m_buffer
.SetDirty(true);
242 m_caretPosition
= -1;
243 m_caretPositionForDefaultStyle
= -2;
244 m_caretAtLineStart
= false;
245 m_selectionRange
.SetRange(-2, -2);
247 SetScrollbars(0, 0, 0, 0, 0, 0);
249 if (m_freezeCount
== 0)
254 SendTextUpdatedEvent();
258 void wxRichTextCtrl::OnPaint(wxPaintEvent
& WXUNUSED(event
))
260 if (GetCaret() && GetCaret()->IsVisible())
264 #if wxRICHTEXT_BUFFERED_PAINTING
265 wxBufferedPaintDC
dc(this, m_bufferBitmap
);
271 if (m_freezeCount
> 0)
274 dc
.SetFont(GetFont());
276 // Paint the background
279 // wxRect drawingArea(GetLogicalPoint(wxPoint(0, 0)), GetClientSize());
281 wxRect
drawingArea(GetUpdateRegion().GetBox());
282 drawingArea
.SetPosition(GetLogicalPoint(drawingArea
.GetPosition()));
284 wxRect
availableSpace(GetClientSize());
285 if (GetBuffer().GetDirty())
287 GetBuffer().Layout(dc
, availableSpace
, wxRICHTEXT_FIXED_WIDTH
|wxRICHTEXT_VARIABLE_HEIGHT
);
288 GetBuffer().SetDirty(false);
292 GetBuffer().Draw(dc
, GetBuffer().GetRange(), GetInternalSelectionRange(), drawingArea
, 0 /* descent */, 0 /* flags */);
295 if (GetCaret() && !GetCaret()->IsVisible())
301 // Empty implementation, to prevent flicker
302 void wxRichTextCtrl::OnEraseBackground(wxEraseEvent
& WXUNUSED(event
))
306 void wxRichTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
310 if (!GetCaret()->IsVisible())
319 void wxRichTextCtrl::OnKillFocus(wxFocusEvent
& WXUNUSED(event
))
321 if (GetCaret() && GetCaret()->IsVisible())
329 void wxRichTextCtrl::OnLeftClick(wxMouseEvent
& event
)
335 dc
.SetFont(GetFont());
338 int hit
= GetBuffer().HitTest(dc
, event
.GetLogicalPosition(dc
), position
);
340 if (hit
!= wxRICHTEXT_HITTEST_NONE
)
342 m_dragStart
= event
.GetLogicalPosition(dc
);
348 bool caretAtLineStart
= false;
350 if (hit
& wxRICHTEXT_HITTEST_BEFORE
)
352 // If we're at the start of a line (but not first in para)
353 // then we should keep the caret showing at the start of the line
354 // by showing the m_caretAtLineStart flag.
355 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
356 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(position
);
358 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
359 caretAtLineStart
= true;
363 MoveCaret(position
, caretAtLineStart
);
364 SetDefaultStyleToCursorStyle();
371 void wxRichTextCtrl::OnLeftUp(wxMouseEvent
& event
)
376 if (GetCapture() == this)
379 // See if we clicked on a URL
382 dc
.SetFont(GetFont());
385 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
386 int hit
= GetBuffer().HitTest(dc
, logicalPt
, position
);
388 if (hit
!= wxRICHTEXT_HITTEST_NONE
)
391 if (GetStyle(position
, attr
))
393 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
395 wxString urlTarget
= attr
.GetURL();
396 if (!urlTarget
.IsEmpty())
398 wxMouseEvent
mouseEvent(event
);
400 long startPos
= 0, endPos
= 0;
401 wxRichTextObject
* obj
= GetBuffer().GetLeafObjectAtPosition(position
);
404 startPos
= obj
->GetRange().GetStart();
405 endPos
= obj
->GetRange().GetEnd();
408 wxTextUrlEvent
urlEvent(GetId(), mouseEvent
, startPos
, endPos
);
409 InitCommandEvent(urlEvent
);
411 urlEvent
.SetString(urlTarget
);
413 GetEventHandler()->ProcessEvent(urlEvent
);
422 void wxRichTextCtrl::OnMoveMouse(wxMouseEvent
& event
)
426 dc
.SetFont(GetFont());
429 wxPoint logicalPt
= event
.GetLogicalPosition(dc
);
430 int hit
= GetBuffer().HitTest(dc
, logicalPt
, position
);
432 // See if we need to change the cursor
435 if (hit
!= wxRICHTEXT_HITTEST_NONE
)
438 if (GetStyle(position
, attr
))
440 if (attr
.HasFlag(wxTEXT_ATTR_URL
))
442 SetCursor(m_urlCursor
);
444 else if (!attr
.HasFlag(wxTEXT_ATTR_URL
))
446 SetCursor(m_textCursor
);
452 if (!event
.Dragging())
458 if (m_dragging
&& hit
!= wxRICHTEXT_HITTEST_NONE
)
460 // TODO: test closeness
462 bool caretAtLineStart
= false;
464 if (hit
& wxRICHTEXT_HITTEST_BEFORE
)
466 // If we're at the start of a line (but not first in para)
467 // then we should keep the caret showing at the start of the line
468 // by showing the m_caretAtLineStart flag.
469 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
470 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(position
);
472 if (line
&& para
&& line
->GetAbsoluteRange().GetStart() == position
&& para
->GetRange().GetStart() != position
)
473 caretAtLineStart
= true;
477 if (m_caretPosition
!= position
)
479 bool extendSel
= ExtendSelection(m_caretPosition
, position
, wxRICHTEXT_SHIFT_DOWN
);
481 MoveCaret(position
, caretAtLineStart
);
482 SetDefaultStyleToCursorStyle();
491 void wxRichTextCtrl::OnRightClick(wxMouseEvent
& event
)
497 /// Left-double-click
498 void wxRichTextCtrl::OnLeftDClick(wxMouseEvent
& event
)
500 SelectWord(GetCaretPosition()+1);
505 void wxRichTextCtrl::OnMiddleClick(wxMouseEvent
& event
)
511 void wxRichTextCtrl::OnChar(wxKeyEvent
& event
)
515 flags
|= wxRICHTEXT_CTRL_DOWN
;
516 if (event
.ShiftDown())
517 flags
|= wxRICHTEXT_SHIFT_DOWN
;
519 flags
|= wxRICHTEXT_ALT_DOWN
;
521 if (event
.GetKeyCode() == WXK_LEFT
||
522 event
.GetKeyCode() == WXK_RIGHT
||
523 event
.GetKeyCode() == WXK_UP
||
524 event
.GetKeyCode() == WXK_DOWN
||
525 event
.GetKeyCode() == WXK_HOME
||
526 event
.GetKeyCode() == WXK_PAGEUP
||
527 event
.GetKeyCode() == WXK_PAGEDOWN
||
528 event
.GetKeyCode() == WXK_END
||
530 event
.GetKeyCode() == WXK_NUMPAD_LEFT
||
531 event
.GetKeyCode() == WXK_NUMPAD_RIGHT
||
532 event
.GetKeyCode() == WXK_NUMPAD_UP
||
533 event
.GetKeyCode() == WXK_NUMPAD_DOWN
||
534 event
.GetKeyCode() == WXK_NUMPAD_HOME
||
535 event
.GetKeyCode() == WXK_NUMPAD_PAGEUP
||
536 event
.GetKeyCode() == WXK_NUMPAD_PAGEDOWN
||
537 event
.GetKeyCode() == WXK_NUMPAD_END
)
539 KeyboardNavigate(event
.GetKeyCode(), flags
);
543 // all the other keys modify the controls contents which shouldn't be
544 // possible if we're read-only
551 if (event
.GetKeyCode() == WXK_RETURN
)
553 BeginBatchUndo(_("Insert Text"));
555 long newPos
= m_caretPosition
;
557 DeleteSelectedContent(& newPos
);
559 GetBuffer().InsertNewlineWithUndo(newPos
+1, this, wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
561 SetDefaultStyleToCursorStyle();
563 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
565 wxRichTextEvent
cmdEvent(
566 wxEVT_COMMAND_RICHTEXT_RETURN
,
568 cmdEvent
.SetEventObject(this);
569 cmdEvent
.SetFlags(flags
);
570 cmdEvent
.SetPosition(newPos
+1);
572 if (!GetEventHandler()->ProcessEvent(cmdEvent
))
574 // Generate conventional event
575 wxCommandEvent
textEvent(wxEVT_COMMAND_TEXT_ENTER
, GetId());
576 InitCommandEvent(textEvent
);
578 GetEventHandler()->ProcessEvent(textEvent
);
582 else if (event
.GetKeyCode() == WXK_BACK
)
584 BeginBatchUndo(_("Delete Text"));
586 // Submit range in character positions, which are greater than caret positions,
587 // so subtract 1 for deleted character and add 1 for conversion to character position.
588 if (m_caretPosition
> -1 && !HasSelection())
590 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(m_caretPosition
, m_caretPosition
),
591 m_caretPosition
, // Current caret position
592 m_caretPosition
-1, // New caret position
596 DeleteSelectedContent();
600 if (GetLastPosition() == -1)
604 m_caretPosition
= -1;
606 SetDefaultStyleToCursorStyle();
609 ScrollIntoView(m_caretPosition
, WXK_LEFT
);
611 wxRichTextEvent
cmdEvent(
612 wxEVT_COMMAND_RICHTEXT_DELETE
,
614 cmdEvent
.SetEventObject(this);
615 cmdEvent
.SetFlags(flags
);
616 cmdEvent
.SetPosition(m_caretPosition
+1);
617 GetEventHandler()->ProcessEvent(cmdEvent
);
621 else if (event
.GetKeyCode() == WXK_DELETE
)
623 BeginBatchUndo(_("Delete Text"));
625 // Submit range in character positions, which are greater than caret positions,
626 if (m_caretPosition
< GetBuffer().GetRange().GetEnd()+1 && !HasSelection())
628 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(m_caretPosition
+1, m_caretPosition
+1),
629 m_caretPosition
, // Current caret position
630 m_caretPosition
+1, // New caret position
634 DeleteSelectedContent();
638 if (GetLastPosition() == -1)
642 m_caretPosition
= -1;
644 SetDefaultStyleToCursorStyle();
647 wxRichTextEvent
cmdEvent(
648 wxEVT_COMMAND_RICHTEXT_DELETE
,
650 cmdEvent
.SetEventObject(this);
651 cmdEvent
.SetFlags(flags
);
652 cmdEvent
.SetPosition(m_caretPosition
+1);
653 GetEventHandler()->ProcessEvent(cmdEvent
);
659 long keycode
= event
.GetKeyCode();
733 case WXK_NUMPAD_SPACE
:
735 case WXK_NUMPAD_ENTER
:
740 case WXK_NUMPAD_HOME
:
741 case WXK_NUMPAD_LEFT
:
743 case WXK_NUMPAD_RIGHT
:
744 case WXK_NUMPAD_DOWN
:
745 case WXK_NUMPAD_PAGEUP
:
746 case WXK_NUMPAD_PAGEDOWN
:
748 case WXK_NUMPAD_BEGIN
:
749 case WXK_NUMPAD_INSERT
:
750 case WXK_NUMPAD_DELETE
:
751 case WXK_NUMPAD_EQUAL
:
752 case WXK_NUMPAD_MULTIPLY
:
754 case WXK_NUMPAD_SEPARATOR
:
755 case WXK_NUMPAD_SUBTRACT
:
756 case WXK_NUMPAD_DECIMAL
:
764 if (event
.CmdDown() || event
.AltDown())
770 wxRichTextEvent
cmdEvent(
771 wxEVT_COMMAND_RICHTEXT_CHARACTER
,
773 cmdEvent
.SetEventObject(this);
774 cmdEvent
.SetFlags(flags
);
775 cmdEvent
.SetCharacter((wxChar
) keycode
);
776 cmdEvent
.SetPosition(m_caretPosition
+1);
778 if (keycode
== wxT('\t'))
780 // See if we need to promote or demote the selection or paragraph at the cursor
781 // position, instead of inserting a tab.
782 long pos
= GetAdjustedCaretPosition(GetCaretPosition());
783 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
);
784 if (para
&& para
->GetRange().GetStart() == pos
&& para
->GetAttributes().HasListStyleName())
786 wxRichTextRange range
;
788 range
= GetSelectionRange();
790 range
= para
->GetRange().FromInternal();
792 int promoteBy
= event
.ShiftDown() ? 1 : -1;
794 PromoteList(promoteBy
, range
, NULL
);
796 GetEventHandler()->ProcessEvent(cmdEvent
);
802 BeginBatchUndo(_("Insert Text"));
804 long newPos
= m_caretPosition
;
805 DeleteSelectedContent(& newPos
);
807 wxString str
= (wxChar
) event
.GetKeyCode();
808 GetBuffer().InsertTextWithUndo(newPos
+1, str
, this, 0);
812 SetDefaultStyleToCursorStyle();
813 ScrollIntoView(m_caretPosition
, WXK_RIGHT
);
815 GetEventHandler()->ProcessEvent(cmdEvent
);
823 /// Delete content if there is a selection, e.g. when pressing a key.
824 bool wxRichTextCtrl::DeleteSelectedContent(long* newPos
)
828 long pos
= m_selectionRange
.GetStart();
829 GetBuffer().DeleteRangeWithUndo(m_selectionRange
,
830 m_caretPosition
, // Current caret position
831 pos
, // New caret position
833 m_selectionRange
.SetRange(-2, -2);
843 /// Keyboard navigation
847 Left: left one character
848 Right: right one character
851 Ctrl-Left: left one word
852 Ctrl-Right: right one word
853 Ctrl-Up: previous paragraph start
854 Ctrl-Down: next start of paragraph
857 Ctrl-Home: start of document
858 Ctrl-End: end of document
860 Page-Down: Down a screen
864 Ctrl-Alt-PgUp: Start of window
865 Ctrl-Alt-PgDn: End of window
866 F8: Start selection mode
867 Esc: End selection mode
869 Adding Shift does the above but starts/extends selection.
874 bool wxRichTextCtrl::KeyboardNavigate(int keyCode
, int flags
)
876 bool success
= false;
878 if (keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_RIGHT
)
880 if (flags
& wxRICHTEXT_CTRL_DOWN
)
881 success
= WordRight(1, flags
);
883 success
= MoveRight(1, flags
);
885 else if (keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
)
887 if (flags
& wxRICHTEXT_CTRL_DOWN
)
888 success
= WordLeft(1, flags
);
890 success
= MoveLeft(1, flags
);
892 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
)
894 if (flags
& wxRICHTEXT_CTRL_DOWN
)
895 success
= MoveToParagraphStart(flags
);
897 success
= MoveUp(1, flags
);
899 else if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
)
901 if (flags
& wxRICHTEXT_CTRL_DOWN
)
902 success
= MoveToParagraphEnd(flags
);
904 success
= MoveDown(1, flags
);
906 else if (keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
908 success
= PageUp(1, flags
);
910 else if (keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
912 success
= PageDown(1, flags
);
914 else if (keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
)
916 if (flags
& wxRICHTEXT_CTRL_DOWN
)
917 success
= MoveHome(flags
);
919 success
= MoveToLineStart(flags
);
921 else if (keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
)
923 if (flags
& wxRICHTEXT_CTRL_DOWN
)
924 success
= MoveEnd(flags
);
926 success
= MoveToLineEnd(flags
);
931 ScrollIntoView(m_caretPosition
, keyCode
);
932 SetDefaultStyleToCursorStyle();
938 /// Extend the selection. Selections are in caret positions.
939 bool wxRichTextCtrl::ExtendSelection(long oldPos
, long newPos
, int flags
)
941 if (flags
& wxRICHTEXT_SHIFT_DOWN
)
943 // If not currently selecting, start selecting
944 if (m_selectionRange
.GetStart() == -2)
946 m_selectionAnchor
= oldPos
;
949 m_selectionRange
.SetRange(newPos
+1, oldPos
);
951 m_selectionRange
.SetRange(oldPos
+1, newPos
);
955 // Always ensure that the selection range start is greater than
957 if (newPos
> m_selectionAnchor
)
958 m_selectionRange
.SetRange(m_selectionAnchor
+1, newPos
);
960 m_selectionRange
.SetRange(newPos
+1, m_selectionAnchor
);
963 if (m_selectionRange
.GetStart() > m_selectionRange
.GetEnd())
965 wxLogDebug(wxT("Strange selection range"));
974 /// Scroll into view, returning true if we scrolled.
975 /// This takes a _caret_ position.
976 bool wxRichTextCtrl::ScrollIntoView(long position
, int keyCode
)
978 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(position
);
984 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
986 int startXUnits
, startYUnits
;
987 GetViewStart(& startXUnits
, & startYUnits
);
988 int startY
= startYUnits
* ppuY
;
991 GetVirtualSize(& sx
, & sy
);
997 wxRect rect
= line
->GetRect();
999 bool scrolled
= false;
1001 wxSize clientSize
= GetClientSize();
1004 if (keyCode
== WXK_DOWN
|| keyCode
== WXK_NUMPAD_DOWN
||
1005 keyCode
== WXK_RIGHT
|| keyCode
== WXK_NUMPAD_DOWN
||
1006 keyCode
== WXK_END
|| keyCode
== WXK_NUMPAD_END
||
1007 keyCode
== WXK_PAGEDOWN
|| keyCode
== WXK_NUMPAD_PAGEDOWN
)
1009 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1011 // Make it scroll so this item is at the bottom
1013 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1014 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1016 // If we're still off the screen, scroll another line down
1017 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1020 if (startYUnits
!= yUnits
)
1022 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1026 else if (rect
.y
< startY
)
1028 // Make it scroll so this item is at the top
1031 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1033 if (startYUnits
!= yUnits
)
1035 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1041 else if (keyCode
== WXK_UP
|| keyCode
== WXK_NUMPAD_UP
||
1042 keyCode
== WXK_LEFT
|| keyCode
== WXK_NUMPAD_LEFT
||
1043 keyCode
== WXK_HOME
|| keyCode
== WXK_NUMPAD_HOME
||
1044 keyCode
== WXK_PAGEUP
|| keyCode
== WXK_NUMPAD_PAGEUP
)
1046 if (rect
.y
< startY
)
1048 // Make it scroll so this item is at the top
1051 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1053 if (startYUnits
!= yUnits
)
1055 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1059 else if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
))
1061 // Make it scroll so this item is at the bottom
1063 int y
= rect
.y
- (clientSize
.y
- rect
.height
);
1064 int yUnits
= (int) (0.5 + ((float) y
)/(float) ppuY
);
1066 // If we're still off the screen, scroll another line down
1067 if ((rect
.y
+ rect
.height
) > (clientSize
.y
+ (yUnits
*ppuY
)))
1070 if (startYUnits
!= yUnits
)
1072 SetScrollbars(ppuX
, ppuY
, sxUnits
, syUnits
, 0, yUnits
);
1082 /// Is the given position visible on the screen?
1083 bool wxRichTextCtrl::IsPositionVisible(long pos
) const
1085 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(pos
-1);
1091 GetScrollPixelsPerUnit(& ppuX
, & ppuY
);
1094 GetViewStart(& startX
, & startY
);
1096 startY
= startY
* ppuY
;
1099 GetVirtualSize(& sx
, & sy
);
1104 wxRect rect
= line
->GetRect();
1106 wxSize clientSize
= GetClientSize();
1108 return !(((rect
.y
+ rect
.height
) > (clientSize
.y
+ startY
)) || rect
.y
< startY
);
1111 void wxRichTextCtrl::SetCaretPosition(long position
, bool showAtLineStart
)
1113 m_caretPosition
= position
;
1114 m_caretAtLineStart
= showAtLineStart
;
1117 /// Move caret one visual step forward: this may mean setting a flag
1118 /// and keeping the same position if we're going from the end of one line
1119 /// to the start of the next, which may be the exact same caret position.
1120 void wxRichTextCtrl::MoveCaretForward(long oldPosition
)
1122 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(oldPosition
);
1124 // Only do the check if we're not at the end of the paragraph (where things work OK
1126 if (para
&& (oldPosition
!= para
->GetRange().GetEnd() - 1))
1128 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(oldPosition
);
1132 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1134 // We're at the end of a line. See whether we need to
1135 // stay at the same actual caret position but change visual
1136 // position, or not.
1137 if (oldPosition
== lineRange
.GetEnd())
1139 if (m_caretAtLineStart
)
1141 // We're already at the start of the line, so actually move on now.
1142 m_caretPosition
= oldPosition
+ 1;
1143 m_caretAtLineStart
= false;
1147 // We're showing at the end of the line, so keep to
1148 // the same position but indicate that we're to show
1149 // at the start of the next line.
1150 m_caretPosition
= oldPosition
;
1151 m_caretAtLineStart
= true;
1153 SetDefaultStyleToCursorStyle();
1159 SetDefaultStyleToCursorStyle();
1162 /// Move caret one visual step backward: this may mean setting a flag
1163 /// and keeping the same position if we're going from the end of one line
1164 /// to the start of the next, which may be the exact same caret position.
1165 void wxRichTextCtrl::MoveCaretBack(long oldPosition
)
1167 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(oldPosition
);
1169 // Only do the check if we're not at the start of the paragraph (where things work OK
1171 if (para
&& (oldPosition
!= para
->GetRange().GetStart()))
1173 wxRichTextLine
* line
= GetBuffer().GetLineAtPosition(oldPosition
);
1177 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1179 // We're at the start of a line. See whether we need to
1180 // stay at the same actual caret position but change visual
1181 // position, or not.
1182 if (oldPosition
== lineRange
.GetStart())
1184 m_caretPosition
= oldPosition
-1;
1185 m_caretAtLineStart
= true;
1188 else if (oldPosition
== lineRange
.GetEnd())
1190 if (m_caretAtLineStart
)
1192 // We're at the start of the line, so keep the same caret position
1193 // but clear the start-of-line flag.
1194 m_caretPosition
= oldPosition
;
1195 m_caretAtLineStart
= false;
1199 // We're showing at the end of the line, so go back
1200 // to the previous character position.
1201 m_caretPosition
= oldPosition
- 1;
1203 SetDefaultStyleToCursorStyle();
1209 SetDefaultStyleToCursorStyle();
1213 bool wxRichTextCtrl::MoveRight(int noPositions
, int flags
)
1215 long endPos
= GetBuffer().GetRange().GetEnd();
1217 if (m_caretPosition
+ noPositions
< endPos
)
1219 long oldPos
= m_caretPosition
;
1220 long newPos
= m_caretPosition
+ noPositions
;
1222 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1226 // Determine by looking at oldPos and m_caretPosition whether
1227 // we moved from the end of a line to the start of the next line, in which case
1228 // we want to adjust the caret position such that it is positioned at the
1229 // start of the next line, rather than jumping past the first character of the
1231 if (noPositions
== 1 && !extendSel
)
1232 MoveCaretForward(oldPos
);
1234 SetCaretPosition(newPos
);
1237 SetDefaultStyleToCursorStyle();
1248 bool wxRichTextCtrl::MoveLeft(int noPositions
, int flags
)
1252 if (m_caretPosition
> startPos
- noPositions
+ 1)
1254 long oldPos
= m_caretPosition
;
1255 long newPos
= m_caretPosition
- noPositions
;
1256 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1260 if (noPositions
== 1 && !extendSel
)
1261 MoveCaretBack(oldPos
);
1263 SetCaretPosition(newPos
);
1266 SetDefaultStyleToCursorStyle();
1277 bool wxRichTextCtrl::MoveUp(int noLines
, int flags
)
1279 return MoveDown(- noLines
, flags
);
1283 bool wxRichTextCtrl::MoveDown(int noLines
, int flags
)
1288 long lineNumber
= GetBuffer().GetVisibleLineNumber(m_caretPosition
, true, m_caretAtLineStart
);
1289 wxPoint pt
= GetCaret()->GetPosition();
1290 long newLine
= lineNumber
+ noLines
;
1292 if (lineNumber
!= -1)
1296 long lastLine
= GetBuffer().GetVisibleLineNumber(GetBuffer().GetRange().GetEnd());
1298 if (newLine
> lastLine
)
1308 wxRichTextLine
* lineObj
= GetBuffer().GetLineForVisibleLineNumber(newLine
);
1311 pt
.y
= lineObj
->GetAbsolutePosition().y
+ 2;
1317 wxClientDC
dc(this);
1319 dc
.SetFont(GetFont());
1321 int hitTest
= GetBuffer().HitTest(dc
, pt
, newPos
);
1323 if (hitTest
!= wxRICHTEXT_HITTEST_NONE
)
1325 // If end of previous line, and hitTest is wxRICHTEXT_HITTEST_BEFORE,
1326 // we want to be at the end of the last line but with m_caretAtLineStart set to true,
1327 // so we view the caret at the start of the line.
1328 bool caretLineStart
= false;
1329 if (hitTest
== wxRICHTEXT_HITTEST_BEFORE
)
1331 wxRichTextLine
* thisLine
= GetBuffer().GetLineAtPosition(newPos
-1);
1332 wxRichTextRange lineRange
;
1334 lineRange
= thisLine
->GetAbsoluteRange();
1336 if (thisLine
&& (newPos
-1) == lineRange
.GetEnd())
1339 caretLineStart
= true;
1343 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(newPos
);
1344 if (para
&& para
->GetRange().GetStart() == newPos
)
1349 long newSelEnd
= newPos
;
1351 bool extendSel
= ExtendSelection(m_caretPosition
, newSelEnd
, flags
);
1355 SetCaretPosition(newPos
, caretLineStart
);
1357 SetDefaultStyleToCursorStyle();
1367 /// Move to the end of the paragraph
1368 bool wxRichTextCtrl::MoveToParagraphEnd(int flags
)
1370 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(m_caretPosition
, true);
1373 long newPos
= para
->GetRange().GetEnd() - 1;
1374 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1378 SetCaretPosition(newPos
);
1380 SetDefaultStyleToCursorStyle();
1390 /// Move to the start of the paragraph
1391 bool wxRichTextCtrl::MoveToParagraphStart(int flags
)
1393 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(m_caretPosition
, true);
1396 long newPos
= para
->GetRange().GetStart() - 1;
1397 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1401 SetCaretPosition(newPos
);
1403 SetDefaultStyleToCursorStyle();
1413 /// Move to the end of the line
1414 bool wxRichTextCtrl::MoveToLineEnd(int flags
)
1416 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1420 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1421 long newPos
= lineRange
.GetEnd();
1422 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1426 SetCaretPosition(newPos
);
1428 SetDefaultStyleToCursorStyle();
1438 /// Move to the start of the line
1439 bool wxRichTextCtrl::MoveToLineStart(int flags
)
1441 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1444 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1445 long newPos
= lineRange
.GetStart()-1;
1447 bool extendSel
= ExtendSelection(m_caretPosition
, newPos
, flags
);
1451 wxRichTextParagraph
* para
= GetBuffer().GetParagraphForLine(line
);
1453 SetCaretPosition(newPos
, para
->GetRange().GetStart() != lineRange
.GetStart());
1455 SetDefaultStyleToCursorStyle();
1465 /// Move to the start of the buffer
1466 bool wxRichTextCtrl::MoveHome(int flags
)
1468 if (m_caretPosition
!= -1)
1470 bool extendSel
= ExtendSelection(m_caretPosition
, -1, flags
);
1474 SetCaretPosition(-1);
1476 SetDefaultStyleToCursorStyle();
1486 /// Move to the end of the buffer
1487 bool wxRichTextCtrl::MoveEnd(int flags
)
1489 long endPos
= GetBuffer().GetRange().GetEnd()-1;
1491 if (m_caretPosition
!= endPos
)
1493 bool extendSel
= ExtendSelection(m_caretPosition
, endPos
, flags
);
1497 SetCaretPosition(endPos
);
1499 SetDefaultStyleToCursorStyle();
1509 /// Move noPages pages up
1510 bool wxRichTextCtrl::PageUp(int noPages
, int flags
)
1512 return PageDown(- noPages
, flags
);
1515 /// Move noPages pages down
1516 bool wxRichTextCtrl::PageDown(int noPages
, int flags
)
1518 // Calculate which line occurs noPages * screen height further down.
1519 wxRichTextLine
* line
= GetVisibleLineForCaretPosition(m_caretPosition
);
1522 wxSize clientSize
= GetClientSize();
1523 int newY
= line
->GetAbsolutePosition().y
+ noPages
*clientSize
.y
;
1525 wxRichTextLine
* newLine
= GetBuffer().GetLineAtYPosition(newY
);
1528 wxRichTextRange lineRange
= newLine
->GetAbsoluteRange();
1529 long pos
= lineRange
.GetStart()-1;
1530 if (pos
!= m_caretPosition
)
1532 wxRichTextParagraph
* para
= GetBuffer().GetParagraphForLine(newLine
);
1534 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1538 SetCaretPosition(pos
, para
->GetRange().GetStart() != lineRange
.GetStart());
1540 SetDefaultStyleToCursorStyle();
1552 // Finds the caret position for the next word
1553 long wxRichTextCtrl::FindNextWordPosition(int direction
) const
1555 long endPos
= GetBuffer().GetRange().GetEnd();
1559 long i
= m_caretPosition
+1+direction
; // +1 for conversion to character pos
1561 // First skip current text to space
1562 while (i
< endPos
&& i
> -1)
1564 // i is in character, not caret positions
1565 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1566 if (text
!= wxT(" ") && !text
.empty())
1573 while (i
< endPos
&& i
> -1)
1575 // i is in character, not caret positions
1576 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1577 if (text
.empty()) // End of paragraph, or maybe an image
1578 return wxMax(-1, i
- 1);
1579 else if (text
== wxT(" ") || text
.empty())
1583 // Convert to caret position
1584 return wxMax(-1, i
- 1);
1593 long i
= m_caretPosition
;
1595 // First skip white space
1596 while (i
< endPos
&& i
> -1)
1598 // i is in character, not caret positions
1599 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1600 if (text
.empty()) // End of paragraph, or maybe an image
1602 else if (text
== wxT(" ") || text
.empty())
1607 // Next skip current text to space
1608 while (i
< endPos
&& i
> -1)
1610 // i is in character, not caret positions
1611 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(i
, i
));
1612 if (text
!= wxT(" ") /* && !text.empty() */)
1625 /// Move n words left
1626 bool wxRichTextCtrl::WordLeft(int WXUNUSED(n
), int flags
)
1628 long pos
= FindNextWordPosition(-1);
1629 if (pos
!= m_caretPosition
)
1631 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
, true);
1633 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1637 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
1639 SetDefaultStyleToCursorStyle();
1649 /// Move n words right
1650 bool wxRichTextCtrl::WordRight(int WXUNUSED(n
), int flags
)
1652 long pos
= FindNextWordPosition(1);
1653 if (pos
!= m_caretPosition
)
1655 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(pos
, true);
1657 bool extendSel
= ExtendSelection(m_caretPosition
, pos
, flags
);
1661 SetCaretPosition(pos
, para
->GetRange().GetStart() != pos
);
1663 SetDefaultStyleToCursorStyle();
1674 void wxRichTextCtrl::OnSize(wxSizeEvent
& event
)
1676 // Only do sizing optimization for large buffers
1677 if (GetBuffer().GetRange().GetEnd() > m_delayedLayoutThreshold
)
1679 m_fullLayoutRequired
= true;
1680 m_fullLayoutTime
= wxGetLocalTimeMillis();
1681 m_fullLayoutSavedPosition
= GetFirstVisiblePosition();
1682 LayoutContent(true /* onlyVisibleRect */);
1685 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
1687 #if wxRICHTEXT_BUFFERED_PAINTING
1695 /// Idle-time processing
1696 void wxRichTextCtrl::OnIdle(wxIdleEvent
& event
)
1698 const int layoutInterval
= wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL
;
1700 if (m_fullLayoutRequired
&& (wxGetLocalTimeMillis() > (m_fullLayoutTime
+ layoutInterval
)))
1702 m_fullLayoutRequired
= false;
1703 m_fullLayoutTime
= 0;
1704 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
1705 ShowPosition(m_fullLayoutSavedPosition
);
1709 if (m_caretPositionForDefaultStyle
!= -2)
1711 // If the caret position has changed, no longer reflect the default style
1713 if (GetCaretPosition() != m_caretPositionForDefaultStyle
)
1714 m_caretPositionForDefaultStyle
= -2;
1721 void wxRichTextCtrl::OnScroll(wxScrollWinEvent
& event
)
1727 /// Set up scrollbars, e.g. after a resize
1728 void wxRichTextCtrl::SetupScrollbars(bool atTop
)
1733 if (GetBuffer().IsEmpty())
1735 SetScrollbars(0, 0, 0, 0, 0, 0);
1739 // TODO: reimplement scrolling so we scroll by line, not by fixed number
1740 // of pixels. See e.g. wxVScrolledWindow for ideas.
1741 int pixelsPerUnit
= 5;
1742 wxSize clientSize
= GetClientSize();
1744 int maxHeight
= GetBuffer().GetCachedSize().y
;
1746 // Round up so we have at least maxHeight pixels
1747 int unitsY
= (int) (((float)maxHeight
/(float)pixelsPerUnit
) + 0.5);
1749 int startX
= 0, startY
= 0;
1751 GetViewStart(& startX
, & startY
);
1753 int maxPositionX
= 0; // wxMax(sz.x - clientSize.x, 0);
1754 int maxPositionY
= (int) ((((float)(wxMax((unitsY
*pixelsPerUnit
) - clientSize
.y
, 0)))/((float)pixelsPerUnit
)) + 0.5);
1756 // Move to previous scroll position if
1758 SetScrollbars(0, pixelsPerUnit
,
1760 wxMin(maxPositionX
, startX
), wxMin(maxPositionY
, startY
));
1763 /// Paint the background
1764 void wxRichTextCtrl::PaintBackground(wxDC
& dc
)
1766 wxColour backgroundColour
= GetBackgroundColour();
1767 if (!backgroundColour
.Ok())
1768 backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
1770 // Clear the background
1771 dc
.SetBrush(wxBrush(backgroundColour
));
1772 dc
.SetPen(*wxTRANSPARENT_PEN
);
1773 wxRect
windowRect(GetClientSize());
1774 windowRect
.x
-= 2; windowRect
.y
-= 2;
1775 windowRect
.width
+= 4; windowRect
.height
+= 4;
1777 // We need to shift the rectangle to take into account
1778 // scrolling. Converting device to logical coordinates.
1779 CalcUnscrolledPosition(windowRect
.x
, windowRect
.y
, & windowRect
.x
, & windowRect
.y
);
1780 dc
.DrawRectangle(windowRect
);
1783 #if wxRICHTEXT_BUFFERED_PAINTING
1784 /// Recreate buffer bitmap if necessary
1785 bool wxRichTextCtrl::RecreateBuffer(const wxSize
& size
)
1788 if (sz
== wxDefaultSize
)
1789 sz
= GetClientSize();
1791 if (sz
.x
< 1 || sz
.y
< 1)
1794 if (!m_bufferBitmap
.Ok() || m_bufferBitmap
.GetWidth() < sz
.x
|| m_bufferBitmap
.GetHeight() < sz
.y
)
1795 m_bufferBitmap
= wxBitmap(sz
.x
, sz
.y
);
1796 return m_bufferBitmap
.Ok();
1800 // ----------------------------------------------------------------------------
1801 // file IO functions
1802 // ----------------------------------------------------------------------------
1804 bool wxRichTextCtrl::DoLoadFile(const wxString
& filename
, int fileType
)
1806 bool success
= GetBuffer().LoadFile(filename
, fileType
);
1808 m_filename
= filename
;
1811 SetInsertionPoint(0);
1814 SetupScrollbars(true);
1816 SendTextUpdatedEvent();
1822 wxLogError(_("File couldn't be loaded."));
1828 bool wxRichTextCtrl::DoSaveFile(const wxString
& filename
, int fileType
)
1830 if (GetBuffer().SaveFile(filename
, fileType
))
1832 m_filename
= filename
;
1839 wxLogError(_("The text couldn't be saved."));
1844 // ----------------------------------------------------------------------------
1845 // wxRichTextCtrl specific functionality
1846 // ----------------------------------------------------------------------------
1848 /// Add a new paragraph of text to the end of the buffer
1849 wxRichTextRange
wxRichTextCtrl::AddParagraph(const wxString
& text
)
1851 return GetBuffer().AddParagraph(text
);
1855 wxRichTextRange
wxRichTextCtrl::AddImage(const wxImage
& image
)
1857 return GetBuffer().AddImage(image
);
1860 // ----------------------------------------------------------------------------
1861 // selection and ranges
1862 // ----------------------------------------------------------------------------
1864 void wxRichTextCtrl::SelectAll()
1866 SetSelection(0, GetLastPosition()+1);
1867 m_selectionAnchor
= -1;
1871 void wxRichTextCtrl::SelectNone()
1873 if (!(GetSelectionRange() == wxRichTextRange(-2, -2)))
1874 SetSelection(-2, -2);
1875 m_selectionAnchor
= -2;
1878 static bool wxIsWordDelimiter(const wxString
& text
)
1880 return !text
.IsEmpty() && !wxIsalnum(text
[0]);
1883 /// Select the word at the given character position
1884 bool wxRichTextCtrl::SelectWord(long position
)
1886 if (position
< 0 || position
> GetBuffer().GetRange().GetEnd())
1889 wxRichTextParagraph
* para
= GetBuffer().GetParagraphAtPosition(position
);
1893 long positionStart
= position
;
1894 long positionEnd
= position
;
1896 for (positionStart
= position
; positionStart
>= para
->GetRange().GetStart(); positionStart
--)
1898 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(positionStart
, positionStart
));
1899 if (wxIsWordDelimiter(text
))
1905 if (positionStart
< para
->GetRange().GetStart())
1906 positionStart
= para
->GetRange().GetStart();
1908 for (positionEnd
= position
; positionEnd
< para
->GetRange().GetEnd(); positionEnd
++)
1910 wxString text
= GetBuffer().GetTextForRange(wxRichTextRange(positionEnd
, positionEnd
));
1911 if (wxIsWordDelimiter(text
))
1917 if (positionEnd
>= para
->GetRange().GetEnd())
1918 positionEnd
= para
->GetRange().GetEnd();
1920 SetSelection(positionStart
, positionEnd
+1);
1922 if (positionStart
>= 0)
1924 MoveCaret(positionStart
-1, true);
1925 SetDefaultStyleToCursorStyle();
1931 wxString
wxRichTextCtrl::GetStringSelection() const
1934 GetSelection(&from
, &to
);
1936 return GetRange(from
, to
);
1939 // ----------------------------------------------------------------------------
1941 // ----------------------------------------------------------------------------
1943 wxTextCtrlHitTestResult
1944 wxRichTextCtrl::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
1946 // implement in terms of the other overload as the native ports typically
1947 // can get the position and not (x, y) pair directly (although wxUniv
1948 // directly gets x and y -- and so overrides this method as well)
1950 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
1952 if ( rc
!= wxTE_HT_UNKNOWN
)
1954 PositionToXY(pos
, x
, y
);
1960 wxTextCtrlHitTestResult
1961 wxRichTextCtrl::HitTest(const wxPoint
& pt
,
1964 wxClientDC
dc((wxRichTextCtrl
*) this);
1965 ((wxRichTextCtrl
*)this)->PrepareDC(dc
);
1967 // Buffer uses logical position (relative to start of buffer)
1969 wxPoint pt2
= GetLogicalPoint(pt
);
1971 int hit
= ((wxRichTextCtrl
*)this)->GetBuffer().HitTest(dc
, pt2
, *pos
);
1975 case wxRICHTEXT_HITTEST_BEFORE
:
1976 return wxTE_HT_BEFORE
;
1978 case wxRICHTEXT_HITTEST_AFTER
:
1979 return wxTE_HT_BEYOND
;
1981 case wxRICHTEXT_HITTEST_ON
:
1982 return wxTE_HT_ON_TEXT
;
1985 return wxTE_HT_UNKNOWN
;
1988 // ----------------------------------------------------------------------------
1989 // set/get the controls text
1990 // ----------------------------------------------------------------------------
1992 wxString
wxRichTextCtrl::GetValue() const
1994 return GetBuffer().GetText();
1997 wxString
wxRichTextCtrl::GetRange(long from
, long to
) const
1999 // Public API for range is different from internals
2000 return GetBuffer().GetTextForRange(wxRichTextRange(from
, to
-1));
2003 void wxRichTextCtrl::DoSetValue(const wxString
& value
, int flags
)
2007 // if the text is long enough, it's faster to just set it instead of first
2008 // comparing it with the old one (chances are that it will be different
2009 // anyhow, this comparison is there to avoid flicker for small single-line
2010 // edit controls mostly)
2011 if ( (value
.length() > 0x400) || (value
!= GetValue()) )
2015 // for compatibility, don't move the cursor when doing SetValue()
2016 SetInsertionPoint(0);
2020 if ( flags
& SetValue_SendEvent
)
2022 // still send an event for consistency
2023 SendTextUpdatedEvent();
2027 // we should reset the modified flag even if the value didn't really change
2029 // mark the control as being not dirty - we changed its text, not the
2034 void wxRichTextCtrl::WriteText(const wxString
& value
)
2039 void wxRichTextCtrl::DoWriteText(const wxString
& value
, int flags
)
2041 wxString valueUnix
= wxTextFile::Translate(value
, wxTextFileType_Unix
);
2043 GetBuffer().InsertTextWithUndo(m_caretPosition
+1, valueUnix
, this);
2045 if ( flags
& SetValue_SendEvent
)
2046 SendTextUpdatedEvent();
2049 void wxRichTextCtrl::AppendText(const wxString
& text
)
2051 SetInsertionPointEnd();
2056 /// Write an image at the current insertion point
2057 bool wxRichTextCtrl::WriteImage(const wxImage
& image
, int bitmapType
)
2059 wxRichTextImageBlock imageBlock
;
2061 wxImage image2
= image
;
2062 if (imageBlock
.MakeImageBlock(image2
, bitmapType
))
2063 return WriteImage(imageBlock
);
2068 bool wxRichTextCtrl::WriteImage(const wxString
& filename
, int bitmapType
)
2070 wxRichTextImageBlock imageBlock
;
2073 if (imageBlock
.MakeImageBlock(filename
, bitmapType
, image
, false))
2074 return WriteImage(imageBlock
);
2079 bool wxRichTextCtrl::WriteImage(const wxRichTextImageBlock
& imageBlock
)
2081 return GetBuffer().InsertImageWithUndo(m_caretPosition
+1, imageBlock
, this);
2084 bool wxRichTextCtrl::WriteImage(const wxBitmap
& bitmap
, int bitmapType
)
2088 wxRichTextImageBlock imageBlock
;
2090 wxImage image
= bitmap
.ConvertToImage();
2091 if (image
.Ok() && imageBlock
.MakeImageBlock(image
, bitmapType
))
2092 return WriteImage(imageBlock
);
2098 /// Insert a newline (actually paragraph) at the current insertion point.
2099 bool wxRichTextCtrl::Newline()
2101 return GetBuffer().InsertNewlineWithUndo(m_caretPosition
+1, this);
2105 // ----------------------------------------------------------------------------
2106 // Clipboard operations
2107 // ----------------------------------------------------------------------------
2109 void wxRichTextCtrl::Copy()
2113 wxRichTextRange range
= GetInternalSelectionRange();
2114 GetBuffer().CopyToClipboard(range
);
2118 void wxRichTextCtrl::Cut()
2122 wxRichTextRange range
= GetInternalSelectionRange();
2123 GetBuffer().CopyToClipboard(range
);
2125 DeleteSelectedContent();
2131 void wxRichTextCtrl::Paste()
2135 BeginBatchUndo(_("Paste"));
2137 long newPos
= m_caretPosition
;
2138 DeleteSelectedContent(& newPos
);
2140 GetBuffer().PasteFromClipboard(newPos
);
2146 void wxRichTextCtrl::DeleteSelection()
2148 if (CanDeleteSelection())
2150 DeleteSelectedContent();
2154 bool wxRichTextCtrl::HasSelection() const
2156 return m_selectionRange
.GetStart() != -2 && m_selectionRange
.GetEnd() != -2;
2159 bool wxRichTextCtrl::CanCopy() const
2161 // Can copy if there's a selection
2162 return HasSelection();
2165 bool wxRichTextCtrl::CanCut() const
2167 return HasSelection() && IsEditable();
2170 bool wxRichTextCtrl::CanPaste() const
2172 if ( !IsEditable() )
2175 return GetBuffer().CanPasteFromClipboard();
2178 bool wxRichTextCtrl::CanDeleteSelection() const
2180 return HasSelection() && IsEditable();
2184 // ----------------------------------------------------------------------------
2186 // ----------------------------------------------------------------------------
2188 void wxRichTextCtrl::SetEditable(bool editable
)
2190 m_editable
= editable
;
2193 void wxRichTextCtrl::SetInsertionPoint(long pos
)
2197 m_caretPosition
= pos
- 1;
2200 void wxRichTextCtrl::SetInsertionPointEnd()
2202 long pos
= GetLastPosition();
2203 SetInsertionPoint(pos
);
2206 long wxRichTextCtrl::GetInsertionPoint() const
2208 return m_caretPosition
+1;
2211 wxTextPos
wxRichTextCtrl::GetLastPosition() const
2213 return GetBuffer().GetRange().GetEnd();
2216 // If the return values from and to are the same, there is no
2218 void wxRichTextCtrl::GetSelection(long* from
, long* to
) const
2220 *from
= m_selectionRange
.GetStart();
2221 *to
= m_selectionRange
.GetEnd();
2222 if ((*to
) != -1 && (*to
) != -2)
2226 bool wxRichTextCtrl::IsEditable() const
2231 // ----------------------------------------------------------------------------
2233 // ----------------------------------------------------------------------------
2235 void wxRichTextCtrl::SetSelection(long from
, long to
)
2237 // if from and to are both -1, it means (in wxWidgets) that all text should
2239 if ( (from
== -1) && (to
== -1) )
2242 to
= GetLastPosition()+1;
2245 DoSetSelection(from
, to
);
2248 void wxRichTextCtrl::DoSetSelection(long from
, long to
, bool WXUNUSED(scrollCaret
))
2250 m_selectionAnchor
= from
;
2251 m_selectionRange
.SetRange(from
, to
-1);
2252 m_caretPosition
= from
-1;
2258 // ----------------------------------------------------------------------------
2260 // ----------------------------------------------------------------------------
2262 void wxRichTextCtrl::Replace(long WXUNUSED(from
), long WXUNUSED(to
),
2263 const wxString
& value
)
2265 BeginBatchUndo(_("Replace"));
2267 DeleteSelectedContent();
2269 DoWriteText(value
, SetValue_SelectionOnly
);
2274 void wxRichTextCtrl::Remove(long from
, long to
)
2278 GetBuffer().DeleteRangeWithUndo(wxRichTextRange(from
, to
),
2279 m_caretPosition
, // Current caret position
2280 from
, // New caret position
2288 bool wxRichTextCtrl::IsModified() const
2290 return m_buffer
.IsModified();
2293 void wxRichTextCtrl::MarkDirty()
2295 m_buffer
.Modify(true);
2298 void wxRichTextCtrl::DiscardEdits()
2300 m_caretPositionForDefaultStyle
= -2;
2301 m_buffer
.Modify(false);
2302 m_buffer
.GetCommandProcessor()->ClearCommands();
2305 int wxRichTextCtrl::GetNumberOfLines() const
2307 return GetBuffer().GetParagraphCount();
2310 // ----------------------------------------------------------------------------
2311 // Positions <-> coords
2312 // ----------------------------------------------------------------------------
2314 long wxRichTextCtrl::XYToPosition(long x
, long y
) const
2316 return GetBuffer().XYToPosition(x
, y
);
2319 bool wxRichTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
2321 return GetBuffer().PositionToXY(pos
, x
, y
);
2324 // ----------------------------------------------------------------------------
2326 // ----------------------------------------------------------------------------
2328 void wxRichTextCtrl::ShowPosition(long pos
)
2330 if (!IsPositionVisible(pos
))
2331 ScrollIntoView(pos
-1, WXK_DOWN
);
2334 int wxRichTextCtrl::GetLineLength(long lineNo
) const
2336 return GetBuffer().GetParagraphLength(lineNo
);
2339 wxString
wxRichTextCtrl::GetLineText(long lineNo
) const
2341 return GetBuffer().GetParagraphText(lineNo
);
2344 // ----------------------------------------------------------------------------
2346 // ----------------------------------------------------------------------------
2348 void wxRichTextCtrl::Undo()
2352 GetCommandProcessor()->Undo();
2356 void wxRichTextCtrl::Redo()
2360 GetCommandProcessor()->Redo();
2364 bool wxRichTextCtrl::CanUndo() const
2366 return GetCommandProcessor()->CanUndo();
2369 bool wxRichTextCtrl::CanRedo() const
2371 return GetCommandProcessor()->CanRedo();
2374 // ----------------------------------------------------------------------------
2375 // implementation details
2376 // ----------------------------------------------------------------------------
2378 void wxRichTextCtrl::Command(wxCommandEvent
& event
)
2380 SetValue(event
.GetString());
2381 GetEventHandler()->ProcessEvent(event
);
2384 void wxRichTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
2386 // By default, load the first file into the text window.
2387 if (event
.GetNumberOfFiles() > 0)
2389 LoadFile(event
.GetFiles()[0]);
2393 wxSize
wxRichTextCtrl::DoGetBestSize() const
2395 return wxSize(10, 10);
2398 // ----------------------------------------------------------------------------
2399 // standard handlers for standard edit menu events
2400 // ----------------------------------------------------------------------------
2402 void wxRichTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
2407 void wxRichTextCtrl::OnClear(wxCommandEvent
& WXUNUSED(event
))
2412 void wxRichTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
2417 void wxRichTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
2422 void wxRichTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
2427 void wxRichTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
2432 void wxRichTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
2434 event
.Enable( CanCut() );
2437 void wxRichTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
2439 event
.Enable( CanCopy() );
2442 void wxRichTextCtrl::OnUpdateClear(wxUpdateUIEvent
& event
)
2444 event
.Enable( CanDeleteSelection() );
2447 void wxRichTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
2449 event
.Enable( CanPaste() );
2452 void wxRichTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
2454 event
.Enable( CanUndo() );
2455 event
.SetText( GetCommandProcessor()->GetUndoMenuLabel() );
2458 void wxRichTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
2460 event
.Enable( CanRedo() );
2461 event
.SetText( GetCommandProcessor()->GetRedoMenuLabel() );
2464 void wxRichTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
2469 void wxRichTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
2471 event
.Enable(GetLastPosition() > 0);
2474 void wxRichTextCtrl::OnContextMenu(wxContextMenuEvent
& WXUNUSED(event
))
2478 m_contextMenu
= new wxMenu
;
2479 m_contextMenu
->Append(wxID_UNDO
, _("&Undo"));
2480 m_contextMenu
->Append(wxID_REDO
, _("&Redo"));
2481 m_contextMenu
->AppendSeparator();
2482 m_contextMenu
->Append(wxID_CUT
, _("Cu&t"));
2483 m_contextMenu
->Append(wxID_COPY
, _("&Copy"));
2484 m_contextMenu
->Append(wxID_PASTE
, _("&Paste"));
2485 m_contextMenu
->Append(wxID_CLEAR
, _("&Delete"));
2486 m_contextMenu
->AppendSeparator();
2487 m_contextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
2489 PopupMenu(m_contextMenu
);
2493 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxTextAttrEx
& style
)
2495 return GetBuffer().SetStyle(wxRichTextRange(start
, end
-1), style
);
2498 bool wxRichTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
2500 return GetBuffer().SetStyle(wxRichTextRange(start
, end
-1), wxTextAttrEx(style
));
2503 bool wxRichTextCtrl::SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
)
2505 return GetBuffer().SetStyle(range
.ToInternal(), style
);
2508 // extended style setting operation with flags including:
2509 // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY.
2510 // see richtextbuffer.h for more details.
2511 bool wxRichTextCtrl::SetStyleEx(long start
, long end
, const wxTextAttrEx
& style
, int flags
)
2513 return GetBuffer().SetStyle(wxRichTextRange(start
, end
-1), style
, flags
);
2516 bool wxRichTextCtrl::SetStyleEx(const wxRichTextRange
& range
, const wxTextAttrEx
& style
, int flags
)
2518 return GetBuffer().SetStyle(range
.ToInternal(), style
, flags
);
2521 bool wxRichTextCtrl::SetStyleEx(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
)
2523 return GetBuffer().SetStyle(range
.ToInternal(), style
, flags
);
2526 bool wxRichTextCtrl::SetDefaultStyle(const wxTextAttrEx
& style
)
2528 return GetBuffer().SetDefaultStyle(style
);
2531 bool wxRichTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
2533 return GetBuffer().SetDefaultStyle(wxTextAttrEx(style
));
2536 const wxTextAttrEx
& wxRichTextCtrl::GetDefaultStyleEx() const
2538 return GetBuffer().GetDefaultStyle();
2541 const wxTextAttr
& wxRichTextCtrl::GetDefaultStyle() const
2543 return GetBuffer().GetDefaultStyle();
2546 bool wxRichTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
2548 wxTextAttrEx
attr(style
);
2549 if (GetBuffer().GetStyle(position
, attr
))
2558 bool wxRichTextCtrl::GetStyle(long position
, wxTextAttrEx
& style
)
2560 return GetBuffer().GetStyle(position
, style
);
2563 bool wxRichTextCtrl::GetStyle(long position
, wxRichTextAttr
& style
)
2565 return GetBuffer().GetStyle(position
, style
);
2568 // get the common set of styles for the range
2569 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
)
2571 wxTextAttrEx styleEx
;
2572 if (GetBuffer().GetStyleForRange(range
.ToInternal(), styleEx
))
2581 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange
& range
, wxTextAttrEx
& style
)
2583 return GetBuffer().GetStyleForRange(range
.ToInternal(), style
);
2586 /// Get the content (uncombined) attributes for this position.
2588 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxTextAttr
& style
)
2590 wxTextAttrEx
attr(style
);
2591 if (GetBuffer().GetUncombinedStyle(position
, attr
))
2600 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxTextAttrEx
& style
)
2602 return GetBuffer().GetUncombinedStyle(position
, style
);
2605 bool wxRichTextCtrl::GetUncombinedStyle(long position
, wxRichTextAttr
& style
)
2607 return GetBuffer().GetUncombinedStyle(position
, style
);
2610 /// Set font, and also the buffer attributes
2611 bool wxRichTextCtrl::SetFont(const wxFont
& font
)
2613 wxControl::SetFont(font
);
2615 wxTextAttrEx attr
= GetBuffer().GetAttributes();
2617 GetBuffer().SetBasicStyle(attr
);
2619 GetBuffer().Invalidate(wxRICHTEXT_ALL
);
2625 /// Transform logical to physical
2626 wxPoint
wxRichTextCtrl::GetPhysicalPoint(const wxPoint
& ptLogical
) const
2629 CalcScrolledPosition(ptLogical
.x
, ptLogical
.y
, & pt
.x
, & pt
.y
);
2634 /// Transform physical to logical
2635 wxPoint
wxRichTextCtrl::GetLogicalPoint(const wxPoint
& ptPhysical
) const
2638 CalcUnscrolledPosition(ptPhysical
.x
, ptPhysical
.y
, & pt
.x
, & pt
.y
);
2643 /// Position the caret
2644 void wxRichTextCtrl::PositionCaret()
2649 //wxLogDebug(wxT("PositionCaret"));
2652 if (GetCaretPositionForIndex(GetCaretPosition(), caretRect
))
2654 wxPoint originalPt
= caretRect
.GetPosition();
2655 wxPoint pt
= GetPhysicalPoint(originalPt
);
2656 if (GetCaret()->GetPosition() != pt
)
2658 GetCaret()->Move(pt
);
2659 GetCaret()->SetSize(caretRect
.GetSize());
2664 /// Get the caret height and position for the given character position
2665 bool wxRichTextCtrl::GetCaretPositionForIndex(long position
, wxRect
& rect
)
2667 wxClientDC
dc(this);
2668 dc
.SetFont(GetFont());
2675 if (GetBuffer().FindPosition(dc
, position
, pt
, & height
, m_caretAtLineStart
))
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()
2765 wxRichTextAttr attr
;
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.
2776 wxRichTextAttr attr
;
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();
2796 wxRichTextAttr attr
;
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.
2806 wxRichTextAttr attr
;
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();
2826 wxRichTextAttr attr
;
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.
2836 wxRichTextAttr attr
;
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()
2853 wxRichTextAttr attr
;
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()
2867 wxRichTextAttr attr
;
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()
2881 wxRichTextAttr attr
;
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);
2901 wxRichTextAttr attr
;
2902 attr
.SetAlignment(alignment
);
2904 return HasParagraphAttributes(range
, attr
);
2907 /// Apply alignment to the selection
2908 bool wxRichTextCtrl::ApplyAlignmentToSelection(wxTextAttrAlignment alignment
)
2910 wxRichTextAttr attr
;
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 wxRichTextAttr
attr(def
->GetStyle());
2930 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
;
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();