1 ////////////////////////////////////////////////////////////////////////////
2 // Name: src/stc/ScintillaWX.cpp
3 // Purpose: A wxWidgets implementation of Scintilla. A class derived
4 // from ScintillaBase that uses the "wx platform" defined in
5 // PlatformWX.cxx This class is one end of a bridge between
6 // the wx world and the Scintilla world. It needs a peer
7 // object of type wxStyledTextCtrl to function.
11 // Created: 13-Jan-2000
13 // Copyright: (c) 2000 by Total Control Software
14 // Licence: wxWindows licence
15 /////////////////////////////////////////////////////////////////////////////
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
27 #include "wx/scrolbar.h"
32 #include "wx/textbuf.h"
33 #include "wx/dataobj.h"
34 #include "wx/clipbrd.h"
37 #if !wxUSE_STD_CONTAINERS && !wxUSE_STD_IOSTREAM && !wxUSE_STD_STRING
38 #include "wx/beforestd.h"
40 #include "wx/afterstd.h"
43 #include "ScintillaWX.h"
44 #include "ExternalLexer.h"
45 #include "wx/stc/stc.h"
46 #include "wx/stc/private.h"
51 #include "wx/msw/private.h"
54 //----------------------------------------------------------------------
57 class wxSTCTimer
: public wxTimer
{
59 wxSTCTimer(ScintillaWX
* swx
) {
72 #if wxUSE_DRAG_AND_DROP
73 bool wxSTCDropTarget::OnDropText(wxCoord x
, wxCoord y
, const wxString
& data
) {
74 return m_swx
->DoDropText(x
, y
, data
);
77 wxDragResult
wxSTCDropTarget::OnEnter(wxCoord x
, wxCoord y
, wxDragResult def
) {
78 return m_swx
->DoDragEnter(x
, y
, def
);
81 wxDragResult
wxSTCDropTarget::OnDragOver(wxCoord x
, wxCoord y
, wxDragResult def
) {
82 return m_swx
->DoDragOver(x
, y
, def
);
85 void wxSTCDropTarget::OnLeave() {
88 #endif // wxUSE_DRAG_AND_DROP
92 #include "wx/popupwin.h"
93 #define wxSTCCallTipBase wxPopupWindow
96 #define wxSTCCallTipBase wxFrame
99 #include "wx/dcbuffer.h"
101 class wxSTCCallTip
: public wxSTCCallTipBase
{
103 wxSTCCallTip(wxWindow
* parent
, CallTip
* ct
, ScintillaWX
* swx
) :
105 wxSTCCallTipBase(parent
, wxBORDER_NONE
),
107 wxSTCCallTipBase(parent
, -1, wxEmptyString
, wxDefaultPosition
, wxDefaultSize
,
109 | wxFRAME_FLOAT_ON_PARENT
116 m_ct(ct
), m_swx(swx
), m_cx(wxDefaultCoord
), m_cy(wxDefaultCoord
)
118 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
122 #if wxUSE_POPUPWIN && defined(__WXGTK__)
123 wxRect rect
= GetRect();
126 GetParent()->Refresh(false, &rect
);
130 bool AcceptsFocus() const { return false; }
132 void OnPaint(wxPaintEvent
& WXUNUSED(evt
))
134 wxAutoBufferedPaintDC
dc(this);
135 Surface
* surfaceWindow
= Surface::Allocate();
136 surfaceWindow
->Init(&dc
, m_ct
->wDraw
.GetID());
137 m_ct
->PaintCT(surfaceWindow
);
138 surfaceWindow
->Release();
139 delete surfaceWindow
;
142 void OnFocus(wxFocusEvent
& event
)
144 GetParent()->SetFocus();
148 void OnLeftDown(wxMouseEvent
& event
)
150 wxPoint pt
= event
.GetPosition();
153 m_swx
->CallTipClick();
156 virtual void DoSetSize(int x
, int y
,
157 int width
, int height
,
158 int sizeFlags
= wxSIZE_AUTO
)
160 // convert coords to screen coords since we're a top-level window
161 if (x
!= wxDefaultCoord
) {
163 GetParent()->ClientToScreen(&x
, NULL
);
165 if (y
!= wxDefaultCoord
) {
167 GetParent()->ClientToScreen(NULL
, &y
);
169 wxSTCCallTipBase::DoSetSize(x
, y
, width
, height
, sizeFlags
);
174 virtual bool Show( bool show
= true )
176 // Although we're a frame, we always want the parent to be active, so
177 // raise it whenever we get shown.
178 bool rv
= wxSTCCallTipBase::Show(show
);
181 wxTopLevelWindow
*frame
= wxDynamicCast(
182 wxGetTopLevelParent(GetParent()), wxTopLevelWindow
);
190 wxPoint
GetMyPosition()
192 return wxPoint(m_cx
, m_cy
);
199 DECLARE_EVENT_TABLE()
202 BEGIN_EVENT_TABLE(wxSTCCallTip
, wxSTCCallTipBase
)
203 EVT_PAINT(wxSTCCallTip::OnPaint
)
204 EVT_SET_FOCUS(wxSTCCallTip::OnFocus
)
205 EVT_LEFT_DOWN(wxSTCCallTip::OnLeftDown
)
209 //----------------------------------------------------------------------
212 static wxTextFileType
wxConvertEOLMode(int scintillaMode
)
216 switch (scintillaMode
) {
218 type
= wxTextFileType_Dos
;
222 type
= wxTextFileType_Mac
;
226 type
= wxTextFileType_Unix
;
230 type
= wxTextBuffer::typeDefault
;
235 #endif // wxUSE_DATAOBJ
238 //----------------------------------------------------------------------
239 // Constructor/Destructor
242 ScintillaWX::ScintillaWX(wxStyledTextCtrl
* win
) {
243 capturedMouse
= false;
257 ScintillaWX::~ScintillaWX() {
261 //----------------------------------------------------------------------
262 // base class virtuals
265 void ScintillaWX::Initialise() {
266 //ScintillaBase::Initialise();
267 #if wxUSE_DRAG_AND_DROP
268 dropTarget
= new wxSTCDropTarget
;
269 dropTarget
->SetScintilla(this);
270 stc
->SetDropTarget(dropTarget
);
271 #endif // wxUSE_DRAG_AND_DROP
272 vs
.extraFontFlag
= true; // UseAntiAliasing
276 void ScintillaWX::Finalise() {
277 ScintillaBase::Finalise();
280 DestroySystemCaret();
284 void ScintillaWX::StartDrag() {
285 #if wxUSE_DRAG_AND_DROP
286 wxString dragText
= stc2wx(drag
.s
, drag
.len
);
288 // Send an event to allow the drag text to be changed
289 wxStyledTextEvent
evt(wxEVT_STC_START_DRAG
, stc
->GetId());
290 evt
.SetEventObject(stc
);
291 evt
.SetDragText(dragText
);
292 evt
.SetDragFlags(wxDrag_DefaultMove
);
293 evt
.SetPosition(wxMin(stc
->GetSelectionStart(),
294 stc
->GetSelectionEnd()));
295 stc
->GetEventHandler()->ProcessEvent(evt
);
296 dragText
= evt
.GetDragText();
298 if ( !dragText
.empty() ) {
299 wxDropSource
source(stc
);
300 wxTextDataObject
data(dragText
);
303 source
.SetData(data
);
304 dropWentOutside
= true;
305 inDragDrop
= ddDragging
;
306 result
= source
.DoDragDrop(evt
.GetDragFlags());
307 if (result
== wxDragMove
&& dropWentOutside
)
310 SetDragPosition(SelectionPosition(invalidPosition
));
312 #endif // wxUSE_DRAG_AND_DROP
316 bool ScintillaWX::SetIdle(bool on
) {
317 if (idler
.state
!= on
) {
318 // connect or disconnect the EVT_IDLE handler
320 stc
->Connect(wxID_ANY
, wxEVT_IDLE
, wxIdleEventHandler(wxStyledTextCtrl::OnIdle
));
322 stc
->Disconnect(wxID_ANY
, wxEVT_IDLE
, wxIdleEventHandler(wxStyledTextCtrl::OnIdle
));
329 void ScintillaWX::SetTicking(bool on
) {
330 wxSTCTimer
* steTimer
;
331 if (timer
.ticking
!= on
) {
334 steTimer
= new wxSTCTimer(this);
335 steTimer
->Start(timer
.tickSize
);
336 timer
.tickerID
= steTimer
;
338 steTimer
= (wxSTCTimer
*)timer
.tickerID
;
344 timer
.ticksToWait
= caret
.period
;
348 void ScintillaWX::SetMouseCapture(bool on
) {
349 if (mouseDownCaptures
) {
350 if (on
&& !capturedMouse
)
352 else if (!on
&& capturedMouse
&& stc
->HasCapture())
359 bool ScintillaWX::HaveMouseCapture() {
360 return capturedMouse
;
364 void ScintillaWX::ScrollText(int linesToMove
) {
365 int dy
= vs
.lineHeight
* (linesToMove
);
366 stc
->ScrollWindow(0, dy
);
369 void ScintillaWX::SetVerticalScrollPos() {
370 if (stc
->m_vScrollBar
== NULL
) { // Use built-in scrollbar
371 stc
->SetScrollPos(wxVERTICAL
, topLine
);
373 else { // otherwise use the one that's been given to us
374 stc
->m_vScrollBar
->SetThumbPosition(topLine
);
378 void ScintillaWX::SetHorizontalScrollPos() {
379 if (stc
->m_hScrollBar
== NULL
) { // Use built-in scrollbar
380 stc
->SetScrollPos(wxHORIZONTAL
, xOffset
);
382 else { // otherwise use the one that's been given to us
383 stc
->m_hScrollBar
->SetThumbPosition(xOffset
);
388 const int H_SCROLL_STEP
= 20;
390 bool ScintillaWX::ModifyScrollBars(int nMax
, int nPage
) {
391 bool modified
= false;
394 if (!verticalScrollBarVisible
)
397 // Check the vertical scrollbar
398 if (stc
->m_vScrollBar
== NULL
) { // Use built-in scrollbar
399 int sbMax
= stc
->GetScrollRange(wxVERTICAL
);
400 int sbThumb
= stc
->GetScrollThumb(wxVERTICAL
);
401 int sbPos
= stc
->GetScrollPos(wxVERTICAL
);
402 if (sbMax
!= vertEnd
|| sbThumb
!= nPage
) {
403 stc
->SetScrollbar(wxVERTICAL
, sbPos
, nPage
, vertEnd
+1);
407 else { // otherwise use the one that's been given to us
408 int sbMax
= stc
->m_vScrollBar
->GetRange();
409 int sbPage
= stc
->m_vScrollBar
->GetPageSize();
410 int sbPos
= stc
->m_vScrollBar
->GetThumbPosition();
411 if (sbMax
!= vertEnd
|| sbPage
!= nPage
) {
412 stc
->m_vScrollBar
->SetScrollbar(sbPos
, nPage
, vertEnd
+1, nPage
);
418 // Check the horizontal scrollbar
419 PRectangle rcText
= GetTextRectangle();
420 int horizEnd
= scrollWidth
;
423 if (!horizontalScrollBarVisible
|| (wrapState
!= eWrapNone
))
425 int pageWidth
= rcText
.Width();
427 if (stc
->m_hScrollBar
== NULL
) { // Use built-in scrollbar
428 int sbMax
= stc
->GetScrollRange(wxHORIZONTAL
);
429 int sbThumb
= stc
->GetScrollThumb(wxHORIZONTAL
);
430 int sbPos
= stc
->GetScrollPos(wxHORIZONTAL
);
431 if ((sbMax
!= horizEnd
) || (sbThumb
!= pageWidth
) || (sbPos
!= 0)) {
432 stc
->SetScrollbar(wxHORIZONTAL
, sbPos
, pageWidth
, horizEnd
);
434 if (scrollWidth
< pageWidth
) {
435 HorizontalScrollTo(0);
439 else { // otherwise use the one that's been given to us
440 int sbMax
= stc
->m_hScrollBar
->GetRange();
441 int sbThumb
= stc
->m_hScrollBar
->GetPageSize();
442 int sbPos
= stc
->m_hScrollBar
->GetThumbPosition();
443 if ((sbMax
!= horizEnd
) || (sbThumb
!= pageWidth
) || (sbPos
!= 0)) {
444 stc
->m_hScrollBar
->SetScrollbar(sbPos
, pageWidth
, horizEnd
, pageWidth
);
446 if (scrollWidth
< pageWidth
) {
447 HorizontalScrollTo(0);
456 void ScintillaWX::NotifyChange() {
461 void ScintillaWX::NotifyParent(SCNotification scn
) {
462 stc
->NotifyParent(&scn
);
466 // This method is overloaded from ScintillaBase in order to prevent the
467 // AutoComplete window from being destroyed when it gets the focus. There is
468 // a side effect that the AutoComp will also not be destroyed when switching
469 // to another window, but I think that is okay.
470 void ScintillaWX::CancelModes() {
472 AutoCompleteCancel();
474 Editor::CancelModes();
479 void ScintillaWX::Copy() {
482 CopySelectionRange(&st
);
488 void ScintillaWX::Paste() {
489 pdoc
->BeginUndoAction();
493 wxTextDataObject data
;
494 bool gotData
= false;
496 wxTheClipboard
->UsePrimarySelection(false);
497 if (wxTheClipboard
->Open()) {
498 gotData
= wxTheClipboard
->GetData(data
);
499 wxTheClipboard
->Close();
502 wxString text
= wxTextBuffer::Translate(data
.GetText(),
503 wxConvertEOLMode(pdoc
->eolMode
));
504 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
507 // free up the old character buffer in case the text is real big
508 data
.SetText(wxEmptyString
);
509 text
= wxEmptyString
;
511 int len
= strlen(buf
);
512 int caretMain
= sel
.MainCaret();
513 pdoc
->InsertString(caretMain
, buf
, len
);
514 SetEmptySelection(caretMain
+ len
);
516 #endif // wxUSE_DATAOBJ
518 pdoc
->EndUndoAction();
524 void ScintillaWX::CopyToClipboard(const SelectionText
& st
) {
529 wxTheClipboard
->UsePrimarySelection(false);
530 if (wxTheClipboard
->Open()) {
531 wxString text
= wxTextBuffer::Translate(stc2wx(st
.s
, st
.len
-1));
532 wxTheClipboard
->SetData(new wxTextDataObject(text
));
533 wxTheClipboard
->Close();
537 #endif // wxUSE_CLIPBOARD
541 bool ScintillaWX::CanPaste() {
543 bool canPaste
= false;
546 if (Editor::CanPaste()) {
547 wxTheClipboard
->UsePrimarySelection(false);
548 didOpen
= !wxTheClipboard
->IsOpened();
550 wxTheClipboard
->Open();
552 if (wxTheClipboard
->IsOpened()) {
553 canPaste
= wxTheClipboard
->IsSupported(wxUSE_UNICODE
? wxDF_UNICODETEXT
: wxDF_TEXT
);
555 wxTheClipboard
->Close();
561 #endif // wxUSE_CLIPBOARD
564 void ScintillaWX::CreateCallTipWindow(PRectangle
) {
565 if (! ct
.wCallTip
.Created() ) {
566 ct
.wCallTip
= new wxSTCCallTip(stc
, &ct
, this);
567 ct
.wDraw
= ct
.wCallTip
;
572 void ScintillaWX::AddToPopUp(const char *label
, int cmd
, bool enabled
) {
574 ((wxMenu
*)popup
.GetID())->AppendSeparator();
576 ((wxMenu
*)popup
.GetID())->Append(cmd
, wxGetTranslation(stc2wx(label
)));
579 ((wxMenu
*)popup
.GetID())->Enable(cmd
, enabled
);
583 // This is called by the Editor base class whenever something is selected.
584 // For wxGTK we can put this text in the primary selection and then other apps
585 // can paste with the middle button.
586 void ScintillaWX::ClaimSelection() {
588 // Put the selected text in the PRIMARY selection
591 CopySelectionRange(&st
);
592 wxTheClipboard
->UsePrimarySelection(true);
593 if (wxTheClipboard
->Open()) {
594 wxString text
= stc2wx(st
.s
, st
.len
);
595 wxTheClipboard
->SetData(new wxTextDataObject(text
));
596 wxTheClipboard
->Close();
598 wxTheClipboard
->UsePrimarySelection(false);
604 void ScintillaWX::UpdateSystemCaret() {
607 if (HasCaretSizeChanged()) {
608 DestroySystemCaret();
611 Point pos
= PointMainCaret();
612 ::SetCaretPos(pos
.x
, pos
.y
);
618 bool ScintillaWX::HasCaretSizeChanged() {
620 if ( (vs
.caretWidth
&& (sysCaretWidth
!= vs
.caretWidth
))
621 || (vs
.lineHeight
&& (sysCaretHeight
!= vs
.lineHeight
)) ) {
628 bool ScintillaWX::CreateSystemCaret() {
630 sysCaretWidth
= vs
.caretWidth
;
631 if (0 == sysCaretWidth
) {
634 sysCaretHeight
= vs
.lineHeight
;
635 int bitmapSize
= (((sysCaretWidth
+ 15) & ~15) >> 3) * sysCaretHeight
;
636 char *bits
= new char[bitmapSize
];
637 memset(bits
, 0, bitmapSize
);
638 sysCaretBitmap
= ::CreateBitmap(sysCaretWidth
, sysCaretHeight
, 1,
639 1, reinterpret_cast<BYTE
*>(bits
));
641 BOOL retval
= ::CreateCaret(GetHwndOf(stc
), sysCaretBitmap
,
642 sysCaretWidth
, sysCaretHeight
);
643 ::ShowCaret(GetHwndOf(stc
));
650 bool ScintillaWX::DestroySystemCaret() {
652 ::HideCaret(GetHwndOf(stc
));
653 BOOL retval
= ::DestroyCaret();
654 if (sysCaretBitmap
) {
655 ::DeleteObject(sysCaretBitmap
);
665 //----------------------------------------------------------------------
668 sptr_t
ScintillaWX::DefWndProc(unsigned int /*iMessage*/, uptr_t
/*wParam*/, sptr_t
/*lParam*/) {
672 sptr_t
ScintillaWX::WndProc(unsigned int iMessage
, uptr_t wParam
, sptr_t lParam
) {
674 case SCI_CALLTIPSHOW
: {
675 // NOTE: This is copied here from scintilla/src/ScintillaBase.cxx
676 // because of the little tweak that needs done below for wxGTK.
677 // When updating new versions double check that this is still
678 // needed, and that any new code there is copied here too.
679 Point pt
= LocationFromPosition(wParam
);
680 char* defn
= reinterpret_cast<char *>(lParam
);
681 AutoCompleteCancel();
682 pt
.y
+= vs
.lineHeight
;
683 int ctStyle
= ct
.UseStyleCallTip() ? STYLE_CALLTIP
: STYLE_DEFAULT
;
684 if (ct
.UseStyleCallTip())
686 ct
.SetForeBack(vs
.styles
[STYLE_CALLTIP
].fore
, vs
.styles
[STYLE_CALLTIP
].back
);
688 int caretMain
= sel
.MainCaret();
689 PRectangle rc
= ct
.CallTipStart(caretMain
, pt
,
691 vs
.styles
[ctStyle
].fontName
,
692 vs
.styles
[ctStyle
].sizeZoomed
,
694 vs
.styles
[ctStyle
].characterSet
,
696 // If the call-tip window would be out of the client
697 // space, adjust so it displays above the text.
698 PRectangle rcClient
= GetClientRectangle();
699 if (rc
.bottom
> rcClient
.bottom
) {
701 int offset
= int(vs
.lineHeight
* 1.25) + rc
.Height();
703 int offset
= vs
.lineHeight
+ rc
.Height();
708 // Now display the window.
709 CreateCallTipWindow(rc
);
710 ct
.wCallTip
.SetPositionRelative(rc
, wMain
);
716 case SCI_LOADLEXERLIBRARY
:
717 LexerManager::GetInstance()->Load((const char*)lParam
);
722 return ScintillaBase::WndProc(iMessage
, wParam
, lParam
);
729 //----------------------------------------------------------------------
732 void ScintillaWX::DoPaint(wxDC
* dc
, wxRect rect
) {
734 paintState
= painting
;
735 AutoSurface
surfaceWindow(dc
, this);
737 rcPaint
= PRectangleFromwxRect(rect
);
738 PRectangle rcClient
= GetClientRectangle();
739 paintingAllText
= rcPaint
.Contains(rcClient
);
741 ClipChildren(*dc
, rcPaint
);
742 Paint(surfaceWindow
, rcPaint
);
743 surfaceWindow
->Release();
746 if (paintState
== paintAbandoned
) {
747 // Painting area was insufficient to cover new styling or brace
748 // highlight positions
751 paintState
= notPainting
;
755 // Force the whole window to be repainted
756 void ScintillaWX::FullPaint() {
762 void ScintillaWX::FullPaintDC(wxDC
* dc
) {
763 paintState
= painting
;
764 rcPaint
= GetClientRectangle();
765 paintingAllText
= true;
766 AutoSurface
surfaceWindow(dc
, this);
768 Paint(surfaceWindow
, rcPaint
);
769 surfaceWindow
->Release();
771 paintState
= notPainting
;
776 void ScintillaWX::DoHScroll(int type
, int pos
) {
778 PRectangle rcText
= GetTextRectangle();
779 int pageWidth
= rcText
.Width() * 2 / 3;
780 if (type
== wxEVT_SCROLLWIN_LINEUP
|| type
== wxEVT_SCROLL_LINEUP
)
781 xPos
-= H_SCROLL_STEP
;
782 else if (type
== wxEVT_SCROLLWIN_LINEDOWN
|| type
== wxEVT_SCROLL_LINEDOWN
)
783 xPos
+= H_SCROLL_STEP
;
784 else if (type
== wxEVT_SCROLLWIN_PAGEUP
|| type
== wxEVT_SCROLL_PAGEUP
)
786 else if (type
== wxEVT_SCROLLWIN_PAGEDOWN
|| type
== wxEVT_SCROLL_PAGEDOWN
) {
788 if (xPos
> scrollWidth
- rcText
.Width()) {
789 xPos
= scrollWidth
- rcText
.Width();
792 else if (type
== wxEVT_SCROLLWIN_TOP
|| type
== wxEVT_SCROLL_TOP
)
794 else if (type
== wxEVT_SCROLLWIN_BOTTOM
|| type
== wxEVT_SCROLL_BOTTOM
)
796 else if (type
== wxEVT_SCROLLWIN_THUMBTRACK
|| type
== wxEVT_SCROLL_THUMBTRACK
)
799 HorizontalScrollTo(xPos
);
802 void ScintillaWX::DoVScroll(int type
, int pos
) {
803 int topLineNew
= topLine
;
804 if (type
== wxEVT_SCROLLWIN_LINEUP
|| type
== wxEVT_SCROLL_LINEUP
)
806 else if (type
== wxEVT_SCROLLWIN_LINEDOWN
|| type
== wxEVT_SCROLL_LINEDOWN
)
808 else if (type
== wxEVT_SCROLLWIN_PAGEUP
|| type
== wxEVT_SCROLL_PAGEUP
)
809 topLineNew
-= LinesToScroll();
810 else if (type
== wxEVT_SCROLLWIN_PAGEDOWN
|| type
== wxEVT_SCROLL_PAGEDOWN
)
811 topLineNew
+= LinesToScroll();
812 else if (type
== wxEVT_SCROLLWIN_TOP
|| type
== wxEVT_SCROLL_TOP
)
814 else if (type
== wxEVT_SCROLLWIN_BOTTOM
|| type
== wxEVT_SCROLL_BOTTOM
)
815 topLineNew
= MaxScrollPos();
816 else if (type
== wxEVT_SCROLLWIN_THUMBTRACK
|| type
== wxEVT_SCROLL_THUMBTRACK
)
819 ScrollTo(topLineNew
);
822 void ScintillaWX::DoMouseWheel(int rotation
, int delta
,
823 int linesPerAction
, int ctrlDown
,
824 bool isPageScroll
) {
825 int topLineNew
= topLine
;
828 if (ctrlDown
) { // Zoom the fonts if Ctrl key down
830 KeyCommand(SCI_ZOOMIN
);
833 KeyCommand(SCI_ZOOMOUT
);
836 else { // otherwise just scroll the window
839 wheelRotation
+= rotation
;
840 lines
= wheelRotation
/ delta
;
841 wheelRotation
-= lines
* delta
;
844 lines
= lines
* LinesOnScreen(); // lines is either +1 or -1
846 lines
*= linesPerAction
;
848 ScrollTo(topLineNew
);
854 void ScintillaWX::DoSize(int WXUNUSED(width
), int WXUNUSED(height
)) {
858 void ScintillaWX::DoLoseFocus(){
860 SetFocusState(false);
862 DestroySystemCaret();
865 void ScintillaWX::DoGainFocus(){
869 DestroySystemCaret();
873 void ScintillaWX::DoSysColourChange() {
874 InvalidateStyleData();
877 void ScintillaWX::DoLeftButtonDown(Point pt
, unsigned int curTime
, bool shift
, bool ctrl
, bool alt
) {
878 ButtonDown(pt
, curTime
, shift
, ctrl
, alt
);
881 void ScintillaWX::DoLeftButtonUp(Point pt
, unsigned int curTime
, bool ctrl
) {
882 ButtonUp(pt
, curTime
, ctrl
);
885 void ScintillaWX::DoLeftButtonMove(Point pt
) {
890 void ScintillaWX::DoMiddleButtonUp(Point pt
) {
891 // Set the current position to the mouse click point and
892 // then paste in the PRIMARY selection, if any. wxGTK only.
893 int newPos
= PositionFromLocation(pt
);
894 MovePositionTo(newPos
, Selection::noSel
, true);
896 pdoc
->BeginUndoAction();
897 wxTextDataObject data
;
898 bool gotData
= false;
899 wxTheClipboard
->UsePrimarySelection(true);
900 if (wxTheClipboard
->Open()) {
901 gotData
= wxTheClipboard
->GetData(data
);
902 wxTheClipboard
->Close();
904 wxTheClipboard
->UsePrimarySelection(false);
906 wxString text
= wxTextBuffer::Translate(data
.GetText(),
907 wxConvertEOLMode(pdoc
->eolMode
));
908 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
909 int len
= strlen(buf
);
910 int caretMain
= sel
.MainCaret();
911 pdoc
->InsertString(caretMain
, buf
, len
);
912 SetEmptySelection(caretMain
+ len
);
914 pdoc
->EndUndoAction();
918 ShowCaretAtCurrentPosition();
919 EnsureCaretVisible();
922 void ScintillaWX::DoMiddleButtonUp(Point
WXUNUSED(pt
)) {
927 void ScintillaWX::DoAddChar(int key
) {
930 wszChars
[0] = (wxChar
)key
;
932 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(wszChars
);
933 AddCharUTF((char*)buf
.data(), strlen(buf
));
940 int ScintillaWX::DoKeyDown(const wxKeyEvent
& evt
, bool* consumed
)
942 int key
= evt
.GetKeyCode();
943 if (key
== WXK_NONE
) {
944 // This is a Unicode character not representable in Latin-1 or some key
945 // without key code at all (e.g. dead key or VK_PROCESSKEY under MSW).
951 bool shift
= evt
.ShiftDown(),
952 ctrl
= evt
.ControlDown(),
955 if (ctrl
&& key
>= 1 && key
<= 26 && key
!= WXK_BACK
)
959 case WXK_DOWN
: key
= SCK_DOWN
; break;
960 case WXK_UP
: key
= SCK_UP
; break;
961 case WXK_LEFT
: key
= SCK_LEFT
; break;
962 case WXK_RIGHT
: key
= SCK_RIGHT
; break;
963 case WXK_HOME
: key
= SCK_HOME
; break;
964 case WXK_END
: key
= SCK_END
; break;
965 case WXK_PAGEUP
: key
= SCK_PRIOR
; break;
966 case WXK_PAGEDOWN
: key
= SCK_NEXT
; break;
967 case WXK_NUMPAD_DOWN
: key
= SCK_DOWN
; break;
968 case WXK_NUMPAD_UP
: key
= SCK_UP
; break;
969 case WXK_NUMPAD_LEFT
: key
= SCK_LEFT
; break;
970 case WXK_NUMPAD_RIGHT
: key
= SCK_RIGHT
; break;
971 case WXK_NUMPAD_HOME
: key
= SCK_HOME
; break;
972 case WXK_NUMPAD_END
: key
= SCK_END
; break;
973 case WXK_NUMPAD_PAGEUP
: key
= SCK_PRIOR
; break;
974 case WXK_NUMPAD_PAGEDOWN
: key
= SCK_NEXT
; break;
975 case WXK_NUMPAD_DELETE
: key
= SCK_DELETE
; break;
976 case WXK_NUMPAD_INSERT
: key
= SCK_INSERT
; break;
977 case WXK_DELETE
: key
= SCK_DELETE
; break;
978 case WXK_INSERT
: key
= SCK_INSERT
; break;
979 case WXK_ESCAPE
: key
= SCK_ESCAPE
; break;
980 case WXK_BACK
: key
= SCK_BACK
; break;
981 case WXK_TAB
: key
= SCK_TAB
; break;
982 case WXK_NUMPAD_ENTER
: // fall through
983 case WXK_RETURN
: key
= SCK_RETURN
; break;
984 case WXK_ADD
: // fall through
985 case WXK_NUMPAD_ADD
: key
= SCK_ADD
; break;
986 case WXK_SUBTRACT
: // fall through
987 case WXK_NUMPAD_SUBTRACT
: key
= SCK_SUBTRACT
; break;
988 case WXK_DIVIDE
: // fall through
989 case WXK_NUMPAD_DIVIDE
: key
= SCK_DIVIDE
; break;
990 case WXK_CONTROL
: key
= 0; break;
991 case WXK_ALT
: key
= 0; break;
992 case WXK_SHIFT
: key
= 0; break;
993 case WXK_MENU
: key
= SCK_MENU
; break;
997 if ( evt
.MetaDown() ) {
998 // check for a few common Mac Meta-key combos and remap them to Ctrl
1005 case 'A': // Select All
1012 int rv
= KeyDown(key
, shift
, ctrl
, alt
, consumed
);
1021 void ScintillaWX::DoCommand(int ID
) {
1026 void ScintillaWX::DoContextMenu(Point pt
) {
1027 if (displayPopupMenu
)
1031 void ScintillaWX::DoOnListBox() {
1032 AutoCompleteCompleted();
1036 void ScintillaWX::DoOnIdle(wxIdleEvent
& evt
) {
1044 //----------------------------------------------------------------------
1046 #if wxUSE_DRAG_AND_DROP
1047 bool ScintillaWX::DoDropText(long x
, long y
, const wxString
& data
) {
1048 SetDragPosition(SelectionPosition(invalidPosition
));
1050 wxString text
= wxTextBuffer::Translate(data
,
1051 wxConvertEOLMode(pdoc
->eolMode
));
1053 // Send an event to allow the drag details to be changed
1054 wxStyledTextEvent
evt(wxEVT_STC_DO_DROP
, stc
->GetId());
1055 evt
.SetEventObject(stc
);
1056 evt
.SetDragResult(dragResult
);
1059 evt
.SetPosition(PositionFromLocation(Point(x
,y
)));
1060 evt
.SetDragText(text
);
1061 stc
->GetEventHandler()->ProcessEvent(evt
);
1063 dragResult
= evt
.GetDragResult();
1064 if (dragResult
== wxDragMove
|| dragResult
== wxDragCopy
) {
1065 DropAt(SelectionPosition(evt
.GetPosition()),
1066 wx2stc(evt
.GetDragText()),
1067 dragResult
== wxDragMove
,
1068 false); // TODO: rectangular?
1075 wxDragResult
ScintillaWX::DoDragEnter(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
), wxDragResult def
) {
1081 wxDragResult
ScintillaWX::DoDragOver(wxCoord x
, wxCoord y
, wxDragResult def
) {
1082 SetDragPosition(SelectionPosition(PositionFromLocation(Point(x
, y
))));
1084 // Send an event to allow the drag result to be changed
1085 wxStyledTextEvent
evt(wxEVT_STC_DRAG_OVER
, stc
->GetId());
1086 evt
.SetEventObject(stc
);
1087 evt
.SetDragResult(def
);
1090 evt
.SetPosition(PositionFromLocation(Point(x
,y
)));
1091 stc
->GetEventHandler()->ProcessEvent(evt
);
1093 dragResult
= evt
.GetDragResult();
1098 void ScintillaWX::DoDragLeave() {
1099 SetDragPosition(SelectionPosition(invalidPosition
));
1101 #endif // wxUSE_DRAG_AND_DROP
1102 //----------------------------------------------------------------------
1104 void ScintillaWX::DoScrollToLine(int line
) {
1109 void ScintillaWX::DoScrollToColumn(int column
) {
1110 HorizontalScrollTo(column
* vs
.spaceWidth
);
1113 // wxGTK doesn't appear to need this explicit clipping code any longer, but I
1114 // will leave it here commented out for a while just in case...
1115 void ScintillaWX::ClipChildren(wxDC
& WXUNUSED(dc
), PRectangle
WXUNUSED(rect
))
1117 // wxRegion rgn(wxRectFromPRectangle(rect));
1118 // if (ac.Active()) {
1119 // wxRect childRect = ((wxWindow*)ac.lb->GetID())->GetRect();
1120 // rgn.Subtract(childRect);
1122 // if (ct.inCallTipMode) {
1123 // wxSTCCallTip* tip = (wxSTCCallTip*)ct.wCallTip.GetID();
1124 // wxRect childRect = tip->GetRect();
1125 // #if wxUSE_POPUPWIN
1126 // childRect.SetPosition(tip->GetMyPosition());
1128 // rgn.Subtract(childRect);
1130 // dc.SetClippingRegion(rgn);
1134 void ScintillaWX::SetUseAntiAliasing(bool useAA
) {
1135 vs
.extraFontFlag
= useAA
;
1136 InvalidateStyleRedraw();
1139 bool ScintillaWX::GetUseAntiAliasing() {
1140 return vs
.extraFontFlag
!= 0;
1143 //----------------------------------------------------------------------
1144 //----------------------------------------------------------------------