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() {
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
)
83 void OnPaint(wxPaintEvent
& evt
) {
85 Surface
* surfaceWindow
= Surface::Allocate();
86 surfaceWindow
->Init(&dc
);
87 m_ct
->PaintCT(surfaceWindow
);
92 virtual void DoSetSize(int x
, int y
,
93 int width
, int height
,
94 int sizeFlags
= wxSIZE_AUTO
) {
96 GetParent()->ClientToScreen(&x
, NULL
);
98 GetParent()->ClientToScreen(NULL
, &y
);
99 wxSTCCallTipBase::DoSetSize(x
, y
, width
, height
, sizeFlags
);
105 DECLARE_EVENT_TABLE()
108 BEGIN_EVENT_TABLE(wxSTCCallTip
, wxSTCCallTipBase
)
109 EVT_PAINT(wxSTCCallTip::OnPaint
)
113 //----------------------------------------------------------------------
114 // Constructor/Destructor
117 ScintillaWX::ScintillaWX(wxStyledTextCtrl
* win
) {
118 capturedMouse
= false;
126 ScintillaWX::~ScintillaWX() {
130 //----------------------------------------------------------------------
131 // base class virtuals
134 void ScintillaWX::Initialise() {
135 //ScintillaBase::Initialise();
136 #if wxUSE_DRAG_AND_DROP
137 dropTarget
= new wxSTCDropTarget
;
138 dropTarget
->SetScintilla(this);
139 stc
->SetDropTarget(dropTarget
);
144 void ScintillaWX::Finalise() {
145 ScintillaBase::Finalise();
149 void ScintillaWX::StartDrag() {
150 #if wxUSE_DRAG_AND_DROP
151 wxString
dragText(drag
.s
, drag
.len
);
153 // Send an event to allow the drag text to be changed
154 wxStyledTextEvent
evt(wxEVT_STC_START_DRAG
, stc
->GetId());
155 evt
.SetEventObject(stc
);
156 evt
.SetDragText(dragText
);
157 evt
.SetDragAllowMove(TRUE
);
158 evt
.SetPosition(wxMin(stc
->GetSelectionStart(),
159 stc
->GetSelectionEnd()));
160 stc
->GetEventHandler()->ProcessEvent(evt
);
161 dragText
= evt
.GetDragText();
163 if (dragText
.Length()) {
164 wxDropSource
source(stc
);
165 wxTextDataObject
data(dragText
);
168 source
.SetData(data
);
169 dropWentOutside
= TRUE
;
170 result
= source
.DoDragDrop(evt
.GetDragAllowMove());
171 if (result
== wxDragMove
&& dropWentOutside
)
174 SetDragPosition(invalidPosition
);
180 void ScintillaWX::SetTicking(bool on
) {
181 wxSTCTimer
* steTimer
;
182 if (timer
.ticking
!= on
) {
185 steTimer
= new wxSTCTimer(this);
186 steTimer
->Start(timer
.tickSize
);
187 timer
.tickerID
= steTimer
;
189 steTimer
= (wxSTCTimer
*)timer
.tickerID
;
195 timer
.ticksToWait
= caret
.period
;
199 void ScintillaWX::SetMouseCapture(bool on
) {
200 if (on
&& !capturedMouse
)
202 else if (!on
&& capturedMouse
)
208 bool ScintillaWX::HaveMouseCapture() {
209 return capturedMouse
;
213 void ScintillaWX::ScrollText(int linesToMove
) {
214 int dy
= vs
.lineHeight
* (linesToMove
);
215 stc
->ScrollWindow(0, dy
);
219 void ScintillaWX::SetVerticalScrollPos() {
220 if (stc
->m_vScrollBar
== NULL
) { // Use built-in scrollbar
221 stc
->SetScrollPos(wxVERTICAL
, topLine
);
223 else { // otherwise use the one that's been given to us
224 stc
->m_vScrollBar
->SetThumbPosition(topLine
);
228 void ScintillaWX::SetHorizontalScrollPos() {
229 if (stc
->m_hScrollBar
== NULL
) { // Use built-in scrollbar
230 stc
->SetScrollPos(wxHORIZONTAL
, xOffset
);
232 else { // otherwise use the one that's been given to us
233 stc
->m_hScrollBar
->SetThumbPosition(xOffset
);
238 bool ScintillaWX::ModifyScrollBars(int nMax
, int nPage
) {
239 bool modified
= false;
241 if (stc
->m_vScrollBar
== NULL
) { // Use built-in scrollbar
242 int sbMax
= stc
->GetScrollRange(wxVERTICAL
);
243 int sbThumb
= stc
->GetScrollThumb(wxVERTICAL
);
244 int sbPos
= stc
->GetScrollPos(wxVERTICAL
);
245 if (sbMax
!= nMax
|| sbThumb
!= nPage
) {
246 stc
->SetScrollbar(wxVERTICAL
, sbPos
, nPage
, nMax
);
250 else { // otherwise use the one that's been given to us
251 int sbMax
= stc
->m_vScrollBar
->GetRange();
252 int sbPage
= stc
->m_vScrollBar
->GetPageSize();
253 int sbPos
= stc
->m_vScrollBar
->GetThumbPosition();
254 if (sbMax
!= nMax
|| sbPage
!= nPage
) {
255 stc
->m_vScrollBar
->SetScrollbar(sbPos
, nPage
, nMax
, nPage
);
261 if (horizontalScrollBarVisible
) {
262 if (stc
->m_hScrollBar
== NULL
) { // Use built-in scrollbar
263 int sbMax
= stc
->GetScrollRange(wxHORIZONTAL
);
264 int sbThumb
= stc
->GetScrollThumb(wxHORIZONTAL
);
265 if ((sbMax
!= H_SCROLL_MAX
) || (sbThumb
!= H_SCROLL_STEP
)) {
266 stc
->SetScrollbar(wxHORIZONTAL
, 0, H_SCROLL_STEP
, H_SCROLL_MAX
);
270 else { // otherwise use the one that's been given to us
271 int sbMax
= stc
->m_hScrollBar
->GetRange();
272 int sbPage
= stc
->m_hScrollBar
->GetPageSize();
273 if ((sbMax
!= H_SCROLL_MAX
) || (sbPage
!= H_SCROLL_STEP
)) {
274 stc
->m_hScrollBar
->SetScrollbar(0, H_SCROLL_STEP
, H_SCROLL_MAX
, H_SCROLL_STEP
);
283 void ScintillaWX::NotifyChange() {
288 void ScintillaWX::NotifyParent(SCNotification scn
) {
289 stc
->NotifyParent(&scn
);
294 void ScintillaWX::Copy() {
295 if (currentPos
!= anchor
) {
297 CopySelectionRange(&st
);
298 wxTheClipboard
->Open();
299 wxTheClipboard
->SetData(new wxTextDataObject(wxString(st
.s
, st
.len
)));
300 wxTheClipboard
->Close();
305 void ScintillaWX::Paste() {
306 pdoc
->BeginUndoAction();
309 wxTextDataObject data
;
312 wxTheClipboard
->Open();
313 gotData
= wxTheClipboard
->GetData(data
);
314 wxTheClipboard
->Close();
316 wxString str
= data
.GetText();
317 int len
= str
.Length();
318 pdoc
->InsertString(currentPos
, str
.c_str(), len
);
319 SetEmptySelection(currentPos
+ len
);
322 pdoc
->EndUndoAction();
328 bool ScintillaWX::CanPaste() {
331 wxTheClipboard
->Open();
332 canPaste
= wxTheClipboard
->IsSupported( wxDF_TEXT
);
333 wxTheClipboard
->Close();
338 void ScintillaWX::CreateCallTipWindow(PRectangle
) {
339 ct
.wCallTip
= new wxSTCCallTip(stc
, &ct
);
340 ct
.wDraw
= ct
.wCallTip
;
344 void ScintillaWX::AddToPopUp(const char *label
, int cmd
, bool enabled
) {
346 ((wxMenu
*)popup
.GetID())->AppendSeparator();
348 ((wxMenu
*)popup
.GetID())->Append(cmd
, label
);
351 ((wxMenu
*)popup
.GetID())->Enable(cmd
, enabled
);
355 void ScintillaWX::ClaimSelection() {
360 long ScintillaWX::DefWndProc(unsigned int /*iMessage*/, unsigned long /*wParam*/, long /*lParam*/) {
364 long ScintillaWX::WndProc(unsigned int iMessage
, unsigned long wParam
, long lParam
) {
365 // switch (iMessage) {
367 // return CanPaste();
369 return ScintillaBase::WndProc(iMessage
, wParam
, lParam
);
376 //----------------------------------------------------------------------
379 void ScintillaWX::DoPaint(wxDC
* dc
, wxRect rect
) {
381 paintState
= painting
;
382 Surface
* surfaceWindow
= Surface::Allocate();
383 surfaceWindow
->Init(dc
);
384 PRectangle rcPaint
= PRectangleFromwxRect(rect
);
386 Paint(surfaceWindow
, rcPaint
);
388 delete surfaceWindow
;
389 if (paintState
== paintAbandoned
) {
390 // Painting area was insufficient to cover new styling or brace highlight positions
393 paintState
= notPainting
;
395 // On wxGTK the editor window paints can overwrite the listbox...
397 ((wxWindow
*)ac
.lb
.GetID())->Refresh(TRUE
);
402 void ScintillaWX::DoHScroll(int type
, int pos
) {
404 if (type
== wxEVT_SCROLLWIN_LINEUP
|| type
== wxEVT_SCROLL_LINEUP
)
405 xPos
-= H_SCROLL_STEP
;
406 else if (type
== wxEVT_SCROLLWIN_LINEDOWN
|| type
== wxEVT_SCROLL_LINEDOWN
)
407 xPos
+= H_SCROLL_STEP
;
408 else if (type
== wxEVT_SCROLLWIN_PAGEUP
|| type
== wxEVT_SCROLL_PAGEUP
)
409 xPos
-= H_SCROLL_PAGE
;
410 else if (type
== wxEVT_SCROLLWIN_PAGEDOWN
|| type
== wxEVT_SCROLL_PAGEDOWN
)
411 xPos
+= H_SCROLL_PAGE
;
412 else if (type
== wxEVT_SCROLLWIN_TOP
|| type
== wxEVT_SCROLL_TOP
)
414 else if (type
== wxEVT_SCROLLWIN_BOTTOM
|| type
== wxEVT_SCROLL_BOTTOM
)
416 else if (type
== wxEVT_SCROLLWIN_THUMBTRACK
|| type
== wxEVT_SCROLL_THUMBTRACK
)
419 HorizontalScrollTo(xPos
);
422 void ScintillaWX::DoVScroll(int type
, int pos
) {
423 int topLineNew
= topLine
;
424 if (type
== wxEVT_SCROLLWIN_LINEUP
|| type
== wxEVT_SCROLL_LINEUP
)
426 else if (type
== wxEVT_SCROLLWIN_LINEDOWN
|| type
== wxEVT_SCROLL_LINEDOWN
)
428 else if (type
== wxEVT_SCROLLWIN_PAGEUP
|| type
== wxEVT_SCROLL_PAGEUP
)
429 topLineNew
-= LinesToScroll();
430 else if (type
== wxEVT_SCROLLWIN_PAGEDOWN
|| type
== wxEVT_SCROLL_PAGEDOWN
)
431 topLineNew
+= LinesToScroll();
432 else if (type
== wxEVT_SCROLLWIN_TOP
|| type
== wxEVT_SCROLL_TOP
)
434 else if (type
== wxEVT_SCROLLWIN_BOTTOM
|| type
== wxEVT_SCROLL_BOTTOM
)
435 topLineNew
= MaxScrollPos();
436 else if (type
== wxEVT_SCROLLWIN_THUMBTRACK
|| type
== wxEVT_SCROLL_THUMBTRACK
)
439 ScrollTo(topLineNew
);
443 void ScintillaWX::DoMouseWheel(int rotation
, int delta
, int linesPerAction
, int ctrlDown
) {
444 int topLineNew
= topLine
;
447 if (ctrlDown
) { // Zoom the fonts if Ctrl key down
449 KeyCommand(SCI_ZOOMIN
);
452 KeyCommand(SCI_ZOOMOUT
);
455 else { // otherwise just scroll the window
456 wheelRotation
+= rotation
;
457 lines
= wheelRotation
/ delta
;
458 wheelRotation
-= lines
* delta
;
460 lines
*= linesPerAction
;
462 ScrollTo(topLineNew
);
468 void ScintillaWX::DoSize(int width
, int height
) {
469 // PRectangle rcClient(0,0,width,height);
470 // SetScrollBarsTo(rcClient);
475 void ScintillaWX::DoLoseFocus(){
476 SetFocusState(false);
479 void ScintillaWX::DoGainFocus(){
483 void ScintillaWX::DoSysColourChange() {
484 InvalidateStyleData();
487 void ScintillaWX::DoButtonDown(Point pt
, unsigned int curTime
, bool shift
, bool ctrl
, bool alt
) {
488 ButtonDown(pt
, curTime
, shift
, ctrl
, alt
);
491 void ScintillaWX::DoButtonUp(Point pt
, unsigned int curTime
, bool ctrl
) {
492 ButtonUp(pt
, curTime
, ctrl
);
495 void ScintillaWX::DoButtonMove(Point pt
) {
500 void ScintillaWX::DoAddChar(char ch
) {
504 int ScintillaWX::DoKeyDown(int key
, bool shift
, bool ctrl
, bool alt
, bool* consumed
) {
506 // Ctrl chars (A-Z) end up with the wrong keycode on wxGTK...
507 if (ctrl
&& key
>= 1 && key
<= 26)
512 case WXK_DOWN
: key
= SCK_DOWN
; break;
513 case WXK_UP
: key
= SCK_UP
; break;
514 case WXK_LEFT
: key
= SCK_LEFT
; break;
515 case WXK_RIGHT
: key
= SCK_RIGHT
; break;
516 case WXK_HOME
: key
= SCK_HOME
; break;
517 case WXK_END
: key
= SCK_END
; break;
518 case WXK_PRIOR
: key
= SCK_PRIOR
; break;
519 case WXK_NEXT
: key
= SCK_NEXT
; break;
520 case WXK_DELETE
: key
= SCK_DELETE
; break;
521 case WXK_INSERT
: key
= SCK_INSERT
; break;
522 case WXK_ESCAPE
: key
= SCK_ESCAPE
; break;
523 case WXK_BACK
: key
= SCK_BACK
; break;
524 case WXK_TAB
: key
= SCK_TAB
; break;
525 case WXK_RETURN
: key
= SCK_RETURN
; break;
528 key
= SCK_ADD
; break;
530 case WXK_NUMPAD_SUBTRACT
:
531 key
= SCK_SUBTRACT
; break;
533 case WXK_NUMPAD_DIVIDE
:
534 key
= SCK_DIVIDE
; break;
535 case WXK_CONTROL
: key
= 0; break;
536 case WXK_ALT
: key
= 0; break;
537 case WXK_SHIFT
: key
= 0; break;
538 case WXK_MENU
: key
= 0; break;
541 int rv
= KeyDown(key
, shift
, ctrl
, alt
, consumed
);
550 void ScintillaWX::DoCommand(int ID
) {
555 void ScintillaWX::DoContextMenu(Point pt
) {
559 void ScintillaWX::DoOnListBox() {
560 AutoCompleteCompleted();
563 //----------------------------------------------------------------------
565 #if wxUSE_DRAG_AND_DROP
566 bool ScintillaWX::DoDropText(long x
, long y
, const wxString
& data
) {
567 SetDragPosition(invalidPosition
);
569 // Send an event to allow the drag details to be changed
570 wxStyledTextEvent
evt(wxEVT_STC_DO_DROP
, stc
->GetId());
571 evt
.SetEventObject(stc
);
572 evt
.SetDragResult(dragResult
);
575 evt
.SetPosition(PositionFromLocation(Point(x
,y
)));
576 evt
.SetDragText(data
);
577 stc
->GetEventHandler()->ProcessEvent(evt
);
579 dragResult
= evt
.GetDragResult();
580 if (dragResult
== wxDragMove
|| dragResult
== wxDragCopy
) {
581 DropAt(evt
.GetPosition(),
583 dragResult
== wxDragMove
,
584 FALSE
); // TODO: rectangular?
591 wxDragResult
ScintillaWX::DoDragEnter(wxCoord x
, wxCoord y
, wxDragResult def
) {
597 wxDragResult
ScintillaWX::DoDragOver(wxCoord x
, wxCoord y
, wxDragResult def
) {
598 SetDragPosition(PositionFromLocation(Point(x
, y
)));
600 // Send an event to allow the drag result to be changed
601 wxStyledTextEvent
evt(wxEVT_STC_DRAG_OVER
, stc
->GetId());
602 evt
.SetEventObject(stc
);
603 evt
.SetDragResult(def
);
606 evt
.SetPosition(PositionFromLocation(Point(x
,y
)));
607 stc
->GetEventHandler()->ProcessEvent(evt
);
609 dragResult
= evt
.GetDragResult();
614 void ScintillaWX::DoDragLeave() {
615 SetDragPosition(invalidPosition
);
618 //----------------------------------------------------------------------
620 // Redraw all of text area. This paint will not be abandoned.
621 void ScintillaWX::FullPaint() {
622 paintState
= painting
;
623 rcPaint
= GetTextRectangle();
624 paintingAllText
= true;
626 Surface
* surfaceWindow
= Surface::Allocate();
627 surfaceWindow
->Init(&dc
);
628 Paint(surfaceWindow
, rcPaint
);
629 delete surfaceWindow
;
631 // stc->Refresh(FALSE);
633 paintState
= notPainting
;
637 void ScintillaWX::DoScrollToLine(int line
) {
642 void ScintillaWX::DoScrollToColumn(int column
) {
643 HorizontalScrollTo(column
* vs
.spaceWidth
);
648 //----------------------------------------------------------------------
649 //----------------------------------------------------------------------