1 ////////////////////////////////////////////////////////////////////////////
2 // Name: ScintillaWX.cxx
3 // Purpose: A wxWindows 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 license
15 /////////////////////////////////////////////////////////////////////////////
18 #include "ScintillaWX.h"
19 #include "wx/stc/stc.h"
23 //----------------------------------------------------------------------
25 const int H_SCROLL_MAX
= 4000;
26 const int H_SCROLL_STEP
= 20;
27 const int H_SCROLL_PAGE
= 200;
29 //----------------------------------------------------------------------
32 class wxSTCTimer
: public wxTimer
{
34 wxSTCTimer(ScintillaWX
* swx
) {
47 #if wxUSE_DRAG_AND_DROP
48 bool wxSTCDropTarget::OnDropText(wxCoord x
, wxCoord y
, const wxString
& data
) {
49 return swx
->DoDropText(x
, y
, data
);
52 wxDragResult
wxSTCDropTarget::OnEnter(wxCoord x
, wxCoord y
, wxDragResult def
) {
53 return swx
->DoDragEnter(x
, y
, def
);
56 wxDragResult
wxSTCDropTarget::OnDragOver(wxCoord x
, wxCoord y
, wxDragResult def
) {
57 return swx
->DoDragOver(x
, y
, def
);
60 void wxSTCDropTarget::OnLeave() {
66 #if wxUSE_POPUPWIN && wxSTC_USE_POPUP
67 #include <wx/popupwin.h>
68 #define wxSTCCallTipBase wxPopupWindow
69 #define param2 wxBORDER_NONE // popup's 2nd param is flags
71 #define wxSTCCallTipBase wxWindow
72 #define param2 -1 // wxWindows 2nd param is ID
75 class wxSTCCallTip
: public wxSTCCallTipBase
{
77 wxSTCCallTip(wxWindow
* parent
, CallTip
* ct
)
78 : wxSTCCallTipBase(parent
, param2
)
84 if (HasCapture()) ReleaseMouse();
87 void OnPaint(wxPaintEvent
& evt
) {
89 Surface
* surfaceWindow
= Surface::Allocate();
90 surfaceWindow
->Init(&dc
);
91 m_ct
->PaintCT(surfaceWindow
);
95 void OnFocus(wxFocusEvent
& event
) {
96 GetParent()->SetFocus();
100 #if wxUSE_POPUPWIN && wxSTC_USE_POPUP
101 virtual void DoSetSize(int x
, int y
,
102 int width
, int height
,
103 int sizeFlags
= wxSIZE_AUTO
) {
105 GetParent()->ClientToScreen(&x
, NULL
);
107 GetParent()->ClientToScreen(NULL
, &y
);
108 wxSTCCallTipBase::DoSetSize(x
, y
, width
, height
, sizeFlags
);
111 virtual bool Show( bool show
= TRUE
) {
112 bool retval
= wxSTCCallTipBase::Show(show
);
116 if (HasCapture()) ReleaseMouse();
120 void OnLeftDown(wxMouseEvent
& ) {
127 DECLARE_EVENT_TABLE()
130 BEGIN_EVENT_TABLE(wxSTCCallTip
, wxSTCCallTipBase
)
131 EVT_PAINT(wxSTCCallTip::OnPaint
)
132 EVT_SET_FOCUS(wxSTCCallTip::OnFocus
)
133 #if wxUSE_POPUPWIN && wxSTC_USE_POPUP
134 EVT_LEFT_DOWN(wxSTCCallTip::OnLeftDown
)
139 //----------------------------------------------------------------------
140 // Constructor/Destructor
143 ScintillaWX::ScintillaWX(wxStyledTextCtrl
* win
) {
144 capturedMouse
= false;
152 ScintillaWX::~ScintillaWX() {
156 //----------------------------------------------------------------------
157 // base class virtuals
160 void ScintillaWX::Initialise() {
161 //ScintillaBase::Initialise();
162 #if wxUSE_DRAG_AND_DROP
163 dropTarget
= new wxSTCDropTarget
;
164 dropTarget
->SetScintilla(this);
165 stc
->SetDropTarget(dropTarget
);
170 void ScintillaWX::Finalise() {
171 ScintillaBase::Finalise();
175 void ScintillaWX::StartDrag() {
176 #if wxUSE_DRAG_AND_DROP
177 wxString dragText
= stc2wx(drag
.s
, drag
.len
);
179 // Send an event to allow the drag text to be changed
180 wxStyledTextEvent
evt(wxEVT_STC_START_DRAG
, stc
->GetId());
181 evt
.SetEventObject(stc
);
182 evt
.SetDragText(dragText
);
183 evt
.SetDragAllowMove(TRUE
);
184 evt
.SetPosition(wxMin(stc
->GetSelectionStart(),
185 stc
->GetSelectionEnd()));
186 stc
->GetEventHandler()->ProcessEvent(evt
);
187 dragText
= evt
.GetDragText();
189 if (dragText
.Length()) {
190 wxDropSource
source(stc
);
191 wxTextDataObject
data(dragText
);
194 source
.SetData(data
);
195 dropWentOutside
= TRUE
;
196 result
= source
.DoDragDrop(evt
.GetDragAllowMove());
197 if (result
== wxDragMove
&& dropWentOutside
)
200 SetDragPosition(invalidPosition
);
206 void ScintillaWX::SetTicking(bool on
) {
207 wxSTCTimer
* steTimer
;
208 if (timer
.ticking
!= on
) {
211 steTimer
= new wxSTCTimer(this);
212 steTimer
->Start(timer
.tickSize
);
213 timer
.tickerID
= steTimer
;
215 steTimer
= (wxSTCTimer
*)timer
.tickerID
;
221 timer
.ticksToWait
= caret
.period
;
225 void ScintillaWX::SetMouseCapture(bool on
) {
226 if (on
&& !capturedMouse
)
228 else if (!on
&& capturedMouse
)
234 bool ScintillaWX::HaveMouseCapture() {
235 return capturedMouse
;
239 void ScintillaWX::ScrollText(int linesToMove
) {
240 int dy
= vs
.lineHeight
* (linesToMove
);
241 stc
->ScrollWindow(0, dy
);
245 void ScintillaWX::SetVerticalScrollPos() {
246 if (stc
->m_vScrollBar
== NULL
) { // Use built-in scrollbar
247 stc
->SetScrollPos(wxVERTICAL
, topLine
);
249 else { // otherwise use the one that's been given to us
250 stc
->m_vScrollBar
->SetThumbPosition(topLine
);
254 void ScintillaWX::SetHorizontalScrollPos() {
255 if (stc
->m_hScrollBar
== NULL
) { // Use built-in scrollbar
256 stc
->SetScrollPos(wxHORIZONTAL
, xOffset
);
258 else { // otherwise use the one that's been given to us
259 stc
->m_hScrollBar
->SetThumbPosition(xOffset
);
264 bool ScintillaWX::ModifyScrollBars(int nMax
, int nPage
) {
265 bool modified
= false;
267 if (stc
->m_vScrollBar
== NULL
) { // Use built-in scrollbar
268 int sbMax
= stc
->GetScrollRange(wxVERTICAL
);
269 int sbThumb
= stc
->GetScrollThumb(wxVERTICAL
);
270 int sbPos
= stc
->GetScrollPos(wxVERTICAL
);
271 if (sbMax
!= nMax
|| sbThumb
!= nPage
) {
272 stc
->SetScrollbar(wxVERTICAL
, sbPos
, nPage
, nMax
);
276 else { // otherwise use the one that's been given to us
277 int sbMax
= stc
->m_vScrollBar
->GetRange();
278 int sbPage
= stc
->m_vScrollBar
->GetPageSize();
279 int sbPos
= stc
->m_vScrollBar
->GetThumbPosition();
280 if (sbMax
!= nMax
|| sbPage
!= nPage
) {
281 stc
->m_vScrollBar
->SetScrollbar(sbPos
, nPage
, nMax
, nPage
);
287 if (horizontalScrollBarVisible
) {
288 if (stc
->m_hScrollBar
== NULL
) { // Use built-in scrollbar
289 int sbMax
= stc
->GetScrollRange(wxHORIZONTAL
);
290 int sbThumb
= stc
->GetScrollThumb(wxHORIZONTAL
);
291 if ((sbMax
!= H_SCROLL_MAX
) || (sbThumb
!= H_SCROLL_STEP
)) {
292 stc
->SetScrollbar(wxHORIZONTAL
, 0, H_SCROLL_STEP
, H_SCROLL_MAX
);
296 else { // otherwise use the one that's been given to us
297 int sbMax
= stc
->m_hScrollBar
->GetRange();
298 int sbPage
= stc
->m_hScrollBar
->GetPageSize();
299 if ((sbMax
!= H_SCROLL_MAX
) || (sbPage
!= H_SCROLL_STEP
)) {
300 stc
->m_hScrollBar
->SetScrollbar(0, H_SCROLL_STEP
, H_SCROLL_MAX
, H_SCROLL_STEP
);
309 void ScintillaWX::NotifyChange() {
314 void ScintillaWX::NotifyParent(SCNotification scn
) {
315 stc
->NotifyParent(&scn
);
320 void ScintillaWX::Copy() {
321 if (currentPos
!= anchor
) {
323 CopySelectionRange(&st
);
324 wxTheClipboard
->Open();
325 wxTheClipboard
->UsePrimarySelection();
326 wxString text
= stc2wx(st
.s
, st
.len
);
327 wxTheClipboard
->SetData(new wxTextDataObject(text
));
328 wxTheClipboard
->Close();
333 void ScintillaWX::Paste() {
334 pdoc
->BeginUndoAction();
337 wxTextDataObject data
;
340 wxTheClipboard
->Open();
341 wxTheClipboard
->UsePrimarySelection();
342 gotData
= wxTheClipboard
->GetData(data
);
343 wxTheClipboard
->Close();
345 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(data
.GetText());
346 int len
= strlen(buf
);
347 pdoc
->InsertString(currentPos
, buf
, len
);
348 SetEmptySelection(currentPos
+ len
);
351 pdoc
->EndUndoAction();
357 bool ScintillaWX::CanPaste() {
360 wxTheClipboard
->Open();
361 wxTheClipboard
->UsePrimarySelection();
362 canPaste
= wxTheClipboard
->IsSupported(wxUSE_UNICODE
? wxDF_UNICODETEXT
: wxDF_TEXT
);
363 wxTheClipboard
->Close();
368 void ScintillaWX::CreateCallTipWindow(PRectangle
) {
369 ct
.wCallTip
= new wxSTCCallTip(stc
, &ct
);
370 ct
.wDraw
= ct
.wCallTip
;
374 void ScintillaWX::AddToPopUp(const char *label
, int cmd
, bool enabled
) {
376 ((wxMenu
*)popup
.GetID())->AppendSeparator();
378 ((wxMenu
*)popup
.GetID())->Append(cmd
, stc2wx(label
));
381 ((wxMenu
*)popup
.GetID())->Enable(cmd
, enabled
);
385 void ScintillaWX::ClaimSelection() {
390 long ScintillaWX::DefWndProc(unsigned int /*iMessage*/, unsigned long /*wParam*/, long /*lParam*/) {
394 long ScintillaWX::WndProc(unsigned int iMessage
, unsigned long wParam
, long lParam
) {
395 // switch (iMessage) {
397 // return CanPaste();
399 return ScintillaBase::WndProc(iMessage
, wParam
, lParam
);
406 //----------------------------------------------------------------------
409 void ScintillaWX::DoPaint(wxDC
* dc
, wxRect rect
) {
411 paintState
= painting
;
412 Surface
* surfaceWindow
= Surface::Allocate();
413 surfaceWindow
->Init(dc
);
414 PRectangle rcPaint
= PRectangleFromwxRect(rect
);
416 Paint(surfaceWindow
, rcPaint
);
418 delete surfaceWindow
;
419 if (paintState
== paintAbandoned
) {
420 // Painting area was insufficient to cover new styling or brace highlight positions
423 paintState
= notPainting
;
425 // On wxGTK the editor window paints can overwrite the listbox...
427 ((wxWindow
*)ac
.lb
.GetID())->Refresh(TRUE
);
432 void ScintillaWX::DoHScroll(int type
, int pos
) {
434 if (type
== wxEVT_SCROLLWIN_LINEUP
|| type
== wxEVT_SCROLL_LINEUP
)
435 xPos
-= H_SCROLL_STEP
;
436 else if (type
== wxEVT_SCROLLWIN_LINEDOWN
|| type
== wxEVT_SCROLL_LINEDOWN
)
437 xPos
+= H_SCROLL_STEP
;
438 else if (type
== wxEVT_SCROLLWIN_PAGEUP
|| type
== wxEVT_SCROLL_PAGEUP
)
439 xPos
-= H_SCROLL_PAGE
;
440 else if (type
== wxEVT_SCROLLWIN_PAGEDOWN
|| type
== wxEVT_SCROLL_PAGEDOWN
)
441 xPos
+= H_SCROLL_PAGE
;
442 else if (type
== wxEVT_SCROLLWIN_TOP
|| type
== wxEVT_SCROLL_TOP
)
444 else if (type
== wxEVT_SCROLLWIN_BOTTOM
|| type
== wxEVT_SCROLL_BOTTOM
)
446 else if (type
== wxEVT_SCROLLWIN_THUMBTRACK
|| type
== wxEVT_SCROLL_THUMBTRACK
)
449 HorizontalScrollTo(xPos
);
452 void ScintillaWX::DoVScroll(int type
, int pos
) {
453 int topLineNew
= topLine
;
454 if (type
== wxEVT_SCROLLWIN_LINEUP
|| type
== wxEVT_SCROLL_LINEUP
)
456 else if (type
== wxEVT_SCROLLWIN_LINEDOWN
|| type
== wxEVT_SCROLL_LINEDOWN
)
458 else if (type
== wxEVT_SCROLLWIN_PAGEUP
|| type
== wxEVT_SCROLL_PAGEUP
)
459 topLineNew
-= LinesToScroll();
460 else if (type
== wxEVT_SCROLLWIN_PAGEDOWN
|| type
== wxEVT_SCROLL_PAGEDOWN
)
461 topLineNew
+= LinesToScroll();
462 else if (type
== wxEVT_SCROLLWIN_TOP
|| type
== wxEVT_SCROLL_TOP
)
464 else if (type
== wxEVT_SCROLLWIN_BOTTOM
|| type
== wxEVT_SCROLL_BOTTOM
)
465 topLineNew
= MaxScrollPos();
466 else if (type
== wxEVT_SCROLLWIN_THUMBTRACK
|| type
== wxEVT_SCROLL_THUMBTRACK
)
469 ScrollTo(topLineNew
);
472 void ScintillaWX::DoMouseWheel(int rotation
, int delta
,
473 int linesPerAction
, int ctrlDown
,
474 bool isPageScroll
) {
475 int topLineNew
= topLine
;
478 if (ctrlDown
) { // Zoom the fonts if Ctrl key down
480 KeyCommand(SCI_ZOOMIN
);
483 KeyCommand(SCI_ZOOMOUT
);
486 else { // otherwise just scroll the window
487 wheelRotation
+= rotation
;
488 lines
= wheelRotation
/ delta
;
489 wheelRotation
-= lines
* delta
;
492 lines
= lines
* LinesOnScreen(); // lines is either +1 or -1
494 lines
*= linesPerAction
;
496 ScrollTo(topLineNew
);
502 void ScintillaWX::DoSize(int width
, int height
) {
503 // PRectangle rcClient(0,0,width,height);
504 // SetScrollBarsTo(rcClient);
509 void ScintillaWX::DoLoseFocus(){
510 SetFocusState(false);
513 void ScintillaWX::DoGainFocus(){
517 void ScintillaWX::DoSysColourChange() {
518 InvalidateStyleData();
521 void ScintillaWX::DoButtonDown(Point pt
, unsigned int curTime
, bool shift
, bool ctrl
, bool alt
) {
522 ButtonDown(pt
, curTime
, shift
, ctrl
, alt
);
525 void ScintillaWX::DoButtonUp(Point pt
, unsigned int curTime
, bool ctrl
) {
526 ButtonUp(pt
, curTime
, ctrl
);
529 void ScintillaWX::DoButtonMove(Point pt
) {
534 void ScintillaWX::DoAddChar(int key
) {
538 int ScintillaWX::DoKeyDown(int key
, bool shift
, bool ctrl
, bool alt
, bool* consumed
) {
539 #if defined(__WXGTK__) || defined(__WXMAC__)
540 // Ctrl chars (A-Z) end up with the wrong keycode on wxGTK...
541 if (ctrl
&& key
>= 1 && key
<= 26)
546 case WXK_DOWN
: key
= SCK_DOWN
; break;
547 case WXK_UP
: key
= SCK_UP
; break;
548 case WXK_LEFT
: key
= SCK_LEFT
; break;
549 case WXK_RIGHT
: key
= SCK_RIGHT
; break;
550 case WXK_HOME
: key
= SCK_HOME
; break;
551 case WXK_END
: key
= SCK_END
; break;
552 case WXK_PRIOR
: key
= SCK_PRIOR
; break;
553 case WXK_NEXT
: key
= SCK_NEXT
; break;
554 case WXK_DELETE
: key
= SCK_DELETE
; break;
555 case WXK_INSERT
: key
= SCK_INSERT
; break;
556 case WXK_ESCAPE
: key
= SCK_ESCAPE
; break;
557 case WXK_BACK
: key
= SCK_BACK
; break;
558 case WXK_TAB
: key
= SCK_TAB
; break;
559 case WXK_RETURN
: key
= SCK_RETURN
; break;
560 case WXK_ADD
: // fall through
561 case WXK_NUMPAD_ADD
: key
= SCK_ADD
; break;
562 case WXK_SUBTRACT
: // fall through
563 case WXK_NUMPAD_SUBTRACT
: key
= SCK_SUBTRACT
; break;
564 case WXK_DIVIDE
: // fall through
565 case WXK_NUMPAD_DIVIDE
: key
= SCK_DIVIDE
; break;
566 case WXK_CONTROL
: key
= 0; break;
567 case WXK_ALT
: key
= 0; break;
568 case WXK_SHIFT
: key
= 0; break;
569 case WXK_MENU
: key
= 0; break;
572 int rv
= KeyDown(key
, shift
, ctrl
, alt
, consumed
);
581 void ScintillaWX::DoCommand(int ID
) {
586 void ScintillaWX::DoContextMenu(Point pt
) {
587 if (displayPopupMenu
)
591 void ScintillaWX::DoOnListBox() {
592 AutoCompleteCompleted();
595 //----------------------------------------------------------------------
597 #if wxUSE_DRAG_AND_DROP
598 bool ScintillaWX::DoDropText(long x
, long y
, const wxString
& data
) {
599 SetDragPosition(invalidPosition
);
601 // Send an event to allow the drag details to be changed
602 wxStyledTextEvent
evt(wxEVT_STC_DO_DROP
, stc
->GetId());
603 evt
.SetEventObject(stc
);
604 evt
.SetDragResult(dragResult
);
607 evt
.SetPosition(PositionFromLocation(Point(x
,y
)));
608 evt
.SetDragText(data
);
609 stc
->GetEventHandler()->ProcessEvent(evt
);
611 dragResult
= evt
.GetDragResult();
612 if (dragResult
== wxDragMove
|| dragResult
== wxDragCopy
) {
613 DropAt(evt
.GetPosition(),
614 wx2stc(evt
.GetDragText()),
615 dragResult
== wxDragMove
,
616 FALSE
); // TODO: rectangular?
623 wxDragResult
ScintillaWX::DoDragEnter(wxCoord x
, wxCoord y
, wxDragResult def
) {
629 wxDragResult
ScintillaWX::DoDragOver(wxCoord x
, wxCoord y
, wxDragResult def
) {
630 SetDragPosition(PositionFromLocation(Point(x
, y
)));
632 // Send an event to allow the drag result to be changed
633 wxStyledTextEvent
evt(wxEVT_STC_DRAG_OVER
, stc
->GetId());
634 evt
.SetEventObject(stc
);
635 evt
.SetDragResult(def
);
638 evt
.SetPosition(PositionFromLocation(Point(x
,y
)));
639 stc
->GetEventHandler()->ProcessEvent(evt
);
641 dragResult
= evt
.GetDragResult();
646 void ScintillaWX::DoDragLeave() {
647 SetDragPosition(invalidPosition
);
650 //----------------------------------------------------------------------
652 // Redraw all of text area. This paint will not be abandoned.
653 void ScintillaWX::FullPaint() {
654 paintState
= painting
;
655 rcPaint
= GetTextRectangle();
656 paintingAllText
= true;
658 Surface
* surfaceWindow
= Surface::Allocate();
659 surfaceWindow
->Init(&dc
);
660 Paint(surfaceWindow
, rcPaint
);
661 delete surfaceWindow
;
663 // stc->Refresh(FALSE);
665 paintState
= notPainting
;
669 void ScintillaWX::DoScrollToLine(int line
) {
674 void ScintillaWX::DoScrollToColumn(int column
) {
675 HorizontalScrollTo(column
* vs
.spaceWidth
);
680 //----------------------------------------------------------------------
681 //----------------------------------------------------------------------