Applied #10799: using CallTipUseStyle() doesn't enable wxSTC_STYLE_CALLTIP
[wxWidgets.git] / src / stc / ScintillaWX.cpp
1 ////////////////////////////////////////////////////////////////////////////
2 // Name: ScintillaWX.cxx
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.
8 //
9 // Author: Robin Dunn
10 //
11 // Created: 13-Jan-2000
12 // RCS-ID: $Id$
13 // Copyright: (c) 2000 by Total Control Software
14 // Licence: wxWindows license
15 /////////////////////////////////////////////////////////////////////////////
16
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
19
20 #ifdef __BORLANDC__
21 #pragma hdrstop
22 #endif
23
24 #if wxUSE_STC
25
26 #ifndef WX_PRECOMP
27 #include "wx/scrolbar.h"
28 #include "wx/menu.h"
29 #include "wx/timer.h"
30 #endif // WX_PRECOMP
31
32 #include "wx/textbuf.h"
33 #include "wx/dataobj.h"
34 #include "wx/clipbrd.h"
35 #include "wx/dnd.h"
36
37 #include "ScintillaWX.h"
38 #include "ExternalLexer.h"
39 #include "wx/stc/stc.h"
40 #include "wx/stc/private.h"
41 #include "PlatWX.h"
42
43 #ifdef __WXMSW__
44 // GetHwndOf()
45 #include "wx/msw/private.h"
46 #endif
47
48 //----------------------------------------------------------------------
49 // Helper classes
50
51 class wxSTCTimer : public wxTimer {
52 public:
53 wxSTCTimer(ScintillaWX* swx) {
54 m_swx = swx;
55 }
56
57 void Notify() {
58 m_swx->DoTick();
59 }
60
61 private:
62 ScintillaWX* m_swx;
63 };
64
65
66 #if wxUSE_DRAG_AND_DROP
67 bool wxSTCDropTarget::OnDropText(wxCoord x, wxCoord y, const wxString& data) {
68 return m_swx->DoDropText(x, y, data);
69 }
70
71 wxDragResult wxSTCDropTarget::OnEnter(wxCoord x, wxCoord y, wxDragResult def) {
72 return m_swx->DoDragEnter(x, y, def);
73 }
74
75 wxDragResult wxSTCDropTarget::OnDragOver(wxCoord x, wxCoord y, wxDragResult def) {
76 return m_swx->DoDragOver(x, y, def);
77 }
78
79 void wxSTCDropTarget::OnLeave() {
80 m_swx->DoDragLeave();
81 }
82 #endif // wxUSE_DRAG_AND_DROP
83
84
85 #if wxUSE_POPUPWIN
86 #include "wx/popupwin.h"
87 #define wxSTCCallTipBase wxPopupWindow
88 #else
89 #include "wx/frame.h"
90 #define wxSTCCallTipBase wxFrame
91 #endif
92
93 #include "wx/dcbuffer.h"
94
95 class wxSTCCallTip : public wxSTCCallTipBase {
96 public:
97 wxSTCCallTip(wxWindow* parent, CallTip* ct, ScintillaWX* swx) :
98 #if wxUSE_POPUPWIN
99 wxSTCCallTipBase(parent, wxBORDER_NONE),
100 #else
101 wxSTCCallTipBase(parent, -1, wxEmptyString, wxDefaultPosition, wxDefaultSize,
102 wxFRAME_NO_TASKBAR
103 | wxFRAME_FLOAT_ON_PARENT
104 | wxBORDER_NONE
105 #ifdef __WXMAC__
106 | wxPOPUP_WINDOW
107 #endif
108 ),
109 #endif
110 m_ct(ct), m_swx(swx), m_cx(wxDefaultCoord), m_cy(wxDefaultCoord)
111 {
112 SetBackgroundStyle(wxBG_STYLE_CUSTOM);
113 }
114
115 ~wxSTCCallTip() {
116 #if wxUSE_POPUPWIN && defined(__WXGTK__)
117 wxRect rect = GetRect();
118 rect.x = m_cx;
119 rect.y = m_cy;
120 GetParent()->Refresh(false, &rect);
121 #endif
122 }
123
124 bool AcceptsFocus() const { return false; }
125
126 void OnPaint(wxPaintEvent& WXUNUSED(evt))
127 {
128 wxAutoBufferedPaintDC dc(this);
129 Surface* surfaceWindow = Surface::Allocate();
130 surfaceWindow->Init(&dc, m_ct->wDraw.GetID());
131 m_ct->PaintCT(surfaceWindow);
132 surfaceWindow->Release();
133 delete surfaceWindow;
134 }
135
136 void OnFocus(wxFocusEvent& event)
137 {
138 GetParent()->SetFocus();
139 event.Skip();
140 }
141
142 void OnLeftDown(wxMouseEvent& event)
143 {
144 wxPoint pt = event.GetPosition();
145 Point p(pt.x, pt.y);
146 m_ct->MouseClick(p);
147 m_swx->CallTipClick();
148 }
149
150 virtual void DoSetSize(int x, int y,
151 int width, int height,
152 int sizeFlags = wxSIZE_AUTO)
153 {
154 // convert coords to screen coords since we're a top-level window
155 if (x != wxDefaultCoord) {
156 m_cx = x;
157 GetParent()->ClientToScreen(&x, NULL);
158 }
159 if (y != wxDefaultCoord) {
160 m_cy = y;
161 GetParent()->ClientToScreen(NULL, &y);
162 }
163 wxSTCCallTipBase::DoSetSize(x, y, width, height, sizeFlags);
164 }
165
166 #if wxUSE_POPUPWIN
167 #else
168 virtual bool Show( bool show = true )
169 {
170 // Although we're a frame, we always want the parent to be active, so
171 // raise it whenever we get shown.
172 bool rv = wxSTCCallTipBase::Show(show);
173 if (rv && show)
174 {
175 wxTopLevelWindow *frame = wxDynamicCast(
176 wxGetTopLevelParent(GetParent()), wxTopLevelWindow);
177 if (frame)
178 frame->Raise();
179 }
180 return rv;
181 }
182 #endif
183
184 wxPoint GetMyPosition()
185 {
186 return wxPoint(m_cx, m_cy);
187 }
188
189 private:
190 CallTip* m_ct;
191 ScintillaWX* m_swx;
192 int m_cx, m_cy;
193 DECLARE_EVENT_TABLE()
194 };
195
196 BEGIN_EVENT_TABLE(wxSTCCallTip, wxSTCCallTipBase)
197 EVT_PAINT(wxSTCCallTip::OnPaint)
198 EVT_SET_FOCUS(wxSTCCallTip::OnFocus)
199 EVT_LEFT_DOWN(wxSTCCallTip::OnLeftDown)
200 END_EVENT_TABLE()
201
202
203 //----------------------------------------------------------------------
204
205 #if wxUSE_DATAOBJ
206 static wxTextFileType wxConvertEOLMode(int scintillaMode)
207 {
208 wxTextFileType type;
209
210 switch (scintillaMode) {
211 case wxSTC_EOL_CRLF:
212 type = wxTextFileType_Dos;
213 break;
214
215 case wxSTC_EOL_CR:
216 type = wxTextFileType_Mac;
217 break;
218
219 case wxSTC_EOL_LF:
220 type = wxTextFileType_Unix;
221 break;
222
223 default:
224 type = wxTextBuffer::typeDefault;
225 break;
226 }
227 return type;
228 }
229 #endif // wxUSE_DATAOBJ
230
231
232 //----------------------------------------------------------------------
233 // Constructor/Destructor
234
235
236 ScintillaWX::ScintillaWX(wxStyledTextCtrl* win) {
237 capturedMouse = false;
238 focusEvent = false;
239 wMain = win;
240 stc = win;
241 wheelRotation = 0;
242 Initialise();
243 #ifdef __WXMSW__
244 sysCaretBitmap = 0;
245 sysCaretWidth = 0;
246 sysCaretHeight = 0;
247 #endif
248 }
249
250
251 ScintillaWX::~ScintillaWX() {
252 Finalise();
253 }
254
255 //----------------------------------------------------------------------
256 // base class virtuals
257
258
259 void ScintillaWX::Initialise() {
260 //ScintillaBase::Initialise();
261 #if wxUSE_DRAG_AND_DROP
262 dropTarget = new wxSTCDropTarget;
263 dropTarget->SetScintilla(this);
264 stc->SetDropTarget(dropTarget);
265 #endif // wxUSE_DRAG_AND_DROP
266 vs.extraFontFlag = true; // UseAntiAliasing
267 }
268
269
270 void ScintillaWX::Finalise() {
271 ScintillaBase::Finalise();
272 SetTicking(false);
273 SetIdle(false);
274 DestroySystemCaret();
275 }
276
277
278 void ScintillaWX::StartDrag() {
279 #if wxUSE_DRAG_AND_DROP
280 wxString dragText = stc2wx(drag.s, drag.len);
281
282 // Send an event to allow the drag text to be changed
283 wxStyledTextEvent evt(wxEVT_STC_START_DRAG, stc->GetId());
284 evt.SetEventObject(stc);
285 evt.SetDragText(dragText);
286 evt.SetDragAllowMove(true);
287 evt.SetPosition(wxMin(stc->GetSelectionStart(),
288 stc->GetSelectionEnd()));
289 stc->GetEventHandler()->ProcessEvent(evt);
290 dragText = evt.GetDragText();
291
292 if (dragText.length()) {
293 wxDropSource source(stc);
294 wxTextDataObject data(dragText);
295 wxDragResult result;
296
297 source.SetData(data);
298 dropWentOutside = true;
299 inDragDrop = ddDragging;
300 result = source.DoDragDrop(evt.GetDragAllowMove());
301 if (result == wxDragMove && dropWentOutside)
302 ClearSelection();
303 inDragDrop = ddNone;
304 SetDragPosition(invalidPosition);
305 }
306 #endif // wxUSE_DRAG_AND_DROP
307 }
308
309
310 bool ScintillaWX::SetIdle(bool on) {
311 if (idler.state != on) {
312 // connect or disconnect the EVT_IDLE handler
313 if (on)
314 stc->Connect(wxID_ANY, wxEVT_IDLE, wxIdleEventHandler(wxStyledTextCtrl::OnIdle));
315 else
316 stc->Disconnect(wxID_ANY, wxEVT_IDLE, wxIdleEventHandler(wxStyledTextCtrl::OnIdle));
317 idler.state = on;
318 }
319 return idler.state;
320 }
321
322
323 void ScintillaWX::SetTicking(bool on) {
324 wxSTCTimer* steTimer;
325 if (timer.ticking != on) {
326 timer.ticking = on;
327 if (timer.ticking) {
328 steTimer = new wxSTCTimer(this);
329 steTimer->Start(timer.tickSize);
330 timer.tickerID = steTimer;
331 } else {
332 steTimer = (wxSTCTimer*)timer.tickerID;
333 steTimer->Stop();
334 delete steTimer;
335 timer.tickerID = 0;
336 }
337 }
338 timer.ticksToWait = caret.period;
339 }
340
341
342 void ScintillaWX::SetMouseCapture(bool on) {
343 if (mouseDownCaptures) {
344 if (on && !capturedMouse)
345 stc->CaptureMouse();
346 else if (!on && capturedMouse && stc->HasCapture())
347 stc->ReleaseMouse();
348 capturedMouse = on;
349 }
350 }
351
352
353 bool ScintillaWX::HaveMouseCapture() {
354 return capturedMouse;
355 }
356
357
358 void ScintillaWX::ScrollText(int linesToMove) {
359 int dy = vs.lineHeight * (linesToMove);
360 stc->ScrollWindow(0, dy);
361 stc->Update();
362 }
363
364 void ScintillaWX::SetVerticalScrollPos() {
365 if (stc->m_vScrollBar == NULL) { // Use built-in scrollbar
366 stc->SetScrollPos(wxVERTICAL, topLine);
367 }
368 else { // otherwise use the one that's been given to us
369 stc->m_vScrollBar->SetThumbPosition(topLine);
370 }
371 }
372
373 void ScintillaWX::SetHorizontalScrollPos() {
374 if (stc->m_hScrollBar == NULL) { // Use built-in scrollbar
375 stc->SetScrollPos(wxHORIZONTAL, xOffset);
376 }
377 else { // otherwise use the one that's been given to us
378 stc->m_hScrollBar->SetThumbPosition(xOffset);
379 }
380 }
381
382
383 const int H_SCROLL_STEP = 20;
384
385 bool ScintillaWX::ModifyScrollBars(int nMax, int nPage) {
386 bool modified = false;
387
388 int vertEnd = nMax;
389 if (!verticalScrollBarVisible)
390 vertEnd = 0;
391
392 // Check the vertical scrollbar
393 if (stc->m_vScrollBar == NULL) { // Use built-in scrollbar
394 int sbMax = stc->GetScrollRange(wxVERTICAL);
395 int sbThumb = stc->GetScrollThumb(wxVERTICAL);
396 int sbPos = stc->GetScrollPos(wxVERTICAL);
397 if (sbMax != vertEnd || sbThumb != nPage) {
398 stc->SetScrollbar(wxVERTICAL, sbPos, nPage, vertEnd+1);
399 modified = true;
400 }
401 }
402 else { // otherwise use the one that's been given to us
403 int sbMax = stc->m_vScrollBar->GetRange();
404 int sbPage = stc->m_vScrollBar->GetPageSize();
405 int sbPos = stc->m_vScrollBar->GetThumbPosition();
406 if (sbMax != vertEnd || sbPage != nPage) {
407 stc->m_vScrollBar->SetScrollbar(sbPos, nPage, vertEnd+1, nPage);
408 modified = true;
409 }
410 }
411
412
413 // Check the horizontal scrollbar
414 PRectangle rcText = GetTextRectangle();
415 int horizEnd = scrollWidth;
416 if (horizEnd < 0)
417 horizEnd = 0;
418 if (!horizontalScrollBarVisible || (wrapState != eWrapNone))
419 horizEnd = 0;
420 int pageWidth = rcText.Width();
421
422 if (stc->m_hScrollBar == NULL) { // Use built-in scrollbar
423 int sbMax = stc->GetScrollRange(wxHORIZONTAL);
424 int sbThumb = stc->GetScrollThumb(wxHORIZONTAL);
425 int sbPos = stc->GetScrollPos(wxHORIZONTAL);
426 if ((sbMax != horizEnd) || (sbThumb != pageWidth) || (sbPos != 0)) {
427 stc->SetScrollbar(wxHORIZONTAL, sbPos, pageWidth, horizEnd);
428 modified = true;
429 if (scrollWidth < pageWidth) {
430 HorizontalScrollTo(0);
431 }
432 }
433 }
434 else { // otherwise use the one that's been given to us
435 int sbMax = stc->m_hScrollBar->GetRange();
436 int sbThumb = stc->m_hScrollBar->GetPageSize();
437 int sbPos = stc->m_hScrollBar->GetThumbPosition();
438 if ((sbMax != horizEnd) || (sbThumb != pageWidth) || (sbPos != 0)) {
439 stc->m_hScrollBar->SetScrollbar(sbPos, pageWidth, horizEnd, pageWidth);
440 modified = true;
441 if (scrollWidth < pageWidth) {
442 HorizontalScrollTo(0);
443 }
444 }
445 }
446
447 return modified;
448 }
449
450
451 void ScintillaWX::NotifyChange() {
452 stc->NotifyChange();
453 }
454
455
456 void ScintillaWX::NotifyParent(SCNotification scn) {
457 stc->NotifyParent(&scn);
458 }
459
460
461 // This method is overloaded from ScintillaBase in order to prevent the
462 // AutoComplete window from being destroyed when it gets the focus. There is
463 // a side effect that the AutoComp will also not be destroyed when switching
464 // to another window, but I think that is okay.
465 void ScintillaWX::CancelModes() {
466 if (! focusEvent)
467 AutoCompleteCancel();
468 ct.CallTipCancel();
469 Editor::CancelModes();
470 }
471
472
473
474 void ScintillaWX::Copy() {
475 if (currentPos != anchor) {
476 SelectionText st;
477 CopySelectionRange(&st);
478 CopyToClipboard(st);
479 }
480 }
481
482
483 void ScintillaWX::Paste() {
484 pdoc->BeginUndoAction();
485 ClearSelection();
486
487 #if wxUSE_DATAOBJ
488 wxTextDataObject data;
489 bool gotData = false;
490
491 wxTheClipboard->UsePrimarySelection(false);
492 if (wxTheClipboard->Open()) {
493 gotData = wxTheClipboard->GetData(data);
494 wxTheClipboard->Close();
495 }
496 if (gotData) {
497 wxString text = wxTextBuffer::Translate(data.GetText(),
498 wxConvertEOLMode(pdoc->eolMode));
499 wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
500
501 #if wxUSE_UNICODE
502 // free up the old character buffer in case the text is real big
503 data.SetText(wxEmptyString);
504 text = wxEmptyString;
505 #endif
506 int len = strlen(buf);
507 pdoc->InsertString(currentPos, buf, len);
508 SetEmptySelection(currentPos + len);
509 }
510 #endif // wxUSE_DATAOBJ
511
512 pdoc->EndUndoAction();
513 NotifyChange();
514 Redraw();
515 }
516
517
518 void ScintillaWX::CopyToClipboard(const SelectionText& st) {
519 #if wxUSE_CLIPBOARD
520 if ( !st.len )
521 return;
522
523 wxTheClipboard->UsePrimarySelection(false);
524 if (wxTheClipboard->Open()) {
525 wxString text = wxTextBuffer::Translate(stc2wx(st.s, st.len-1));
526 wxTheClipboard->SetData(new wxTextDataObject(text));
527 wxTheClipboard->Close();
528 }
529 #else
530 wxUnusedVar(st);
531 #endif // wxUSE_CLIPBOARD
532 }
533
534
535 bool ScintillaWX::CanPaste() {
536 #if wxUSE_CLIPBOARD
537 bool canPaste = false;
538 bool didOpen;
539
540 if (Editor::CanPaste()) {
541 wxTheClipboard->UsePrimarySelection(false);
542 didOpen = !wxTheClipboard->IsOpened();
543 if ( didOpen )
544 wxTheClipboard->Open();
545
546 if (wxTheClipboard->IsOpened()) {
547 canPaste = wxTheClipboard->IsSupported(wxUSE_UNICODE ? wxDF_UNICODETEXT : wxDF_TEXT);
548 if (didOpen)
549 wxTheClipboard->Close();
550 }
551 }
552 return canPaste;
553 #else
554 return false;
555 #endif // wxUSE_CLIPBOARD
556 }
557
558 void ScintillaWX::CreateCallTipWindow(PRectangle) {
559 if (! ct.wCallTip.Created() ) {
560 ct.wCallTip = new wxSTCCallTip(stc, &ct, this);
561 ct.wDraw = ct.wCallTip;
562 }
563 }
564
565
566 void ScintillaWX::AddToPopUp(const char *label, int cmd, bool enabled) {
567 if (!label[0])
568 ((wxMenu*)popup.GetID())->AppendSeparator();
569 else
570 ((wxMenu*)popup.GetID())->Append(cmd, wxGetTranslation(stc2wx(label)));
571
572 if (!enabled)
573 ((wxMenu*)popup.GetID())->Enable(cmd, enabled);
574 }
575
576
577 // This is called by the Editor base class whenever something is selected.
578 // For wxGTK we can put this text in the primary selection and then other apps
579 // can paste with the middle button.
580 void ScintillaWX::ClaimSelection() {
581 #ifdef __WXGTK__
582 // Put the selected text in the PRIMARY selection
583 if (currentPos != anchor) {
584 SelectionText st;
585 CopySelectionRange(&st);
586 wxTheClipboard->UsePrimarySelection(true);
587 if (wxTheClipboard->Open()) {
588 wxString text = stc2wx(st.s, st.len);
589 wxTheClipboard->SetData(new wxTextDataObject(text));
590 wxTheClipboard->Close();
591 }
592 wxTheClipboard->UsePrimarySelection(false);
593 }
594 #endif
595 }
596
597
598 void ScintillaWX::UpdateSystemCaret() {
599 #ifdef __WXMSW__
600 if (hasFocus) {
601 if (HasCaretSizeChanged()) {
602 DestroySystemCaret();
603 CreateSystemCaret();
604 }
605 Point pos = LocationFromPosition(currentPos);
606 ::SetCaretPos(pos.x, pos.y);
607 }
608 #endif
609 }
610
611
612 bool ScintillaWX::HasCaretSizeChanged() {
613 #ifdef __WXMSW__
614 if ( (vs.caretWidth && (sysCaretWidth != vs.caretWidth))
615 || (vs.lineHeight && (sysCaretHeight != vs.lineHeight)) ) {
616 return true;
617 }
618 #endif
619 return false;
620 }
621
622 bool ScintillaWX::CreateSystemCaret() {
623 #ifdef __WXMSW__
624 sysCaretWidth = vs.caretWidth;
625 if (0 == sysCaretWidth) {
626 sysCaretWidth = 1;
627 }
628 sysCaretHeight = vs.lineHeight;
629 int bitmapSize = (((sysCaretWidth + 15) & ~15) >> 3) * sysCaretHeight;
630 char *bits = new char[bitmapSize];
631 memset(bits, 0, bitmapSize);
632 sysCaretBitmap = ::CreateBitmap(sysCaretWidth, sysCaretHeight, 1,
633 1, reinterpret_cast<BYTE *>(bits));
634 delete [] bits;
635 BOOL retval = ::CreateCaret(GetHwndOf(stc), sysCaretBitmap,
636 sysCaretWidth, sysCaretHeight);
637 ::ShowCaret(GetHwndOf(stc));
638 return retval != 0;
639 #else
640 return false;
641 #endif
642 }
643
644 bool ScintillaWX::DestroySystemCaret() {
645 #ifdef __WXMSW__
646 ::HideCaret(GetHwndOf(stc));
647 BOOL retval = ::DestroyCaret();
648 if (sysCaretBitmap) {
649 ::DeleteObject(sysCaretBitmap);
650 sysCaretBitmap = 0;
651 }
652 return retval != 0;
653 #else
654 return false;
655 #endif
656 }
657
658
659 //----------------------------------------------------------------------
660
661
662 sptr_t ScintillaWX::DefWndProc(unsigned int /*iMessage*/, uptr_t /*wParam*/, sptr_t /*lParam*/) {
663 return 0;
664 }
665
666 sptr_t ScintillaWX::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {
667 switch (iMessage) {
668 case SCI_CALLTIPSHOW: {
669 // NOTE: This is copied here from scintilla/src/ScintillaBase.cxx
670 // because of the little tweak that needs done below for wxGTK.
671 // When updating new versions double check that this is still
672 // needed, and that any new code there is copied here too.
673 Point pt = LocationFromPosition(wParam);
674 char* defn = reinterpret_cast<char *>(lParam);
675 AutoCompleteCancel();
676 pt.y += vs.lineHeight;
677 int ctStyle = ct.UseStyleCallTip() ? STYLE_CALLTIP : STYLE_DEFAULT;
678 if (ct.UseStyleCallTip())
679 {
680 ct.SetForeBack(vs.styles[STYLE_CALLTIP].fore, vs.styles[STYLE_CALLTIP].back);
681 }
682 PRectangle rc = ct.CallTipStart(currentPos, pt,
683 defn,
684 vs.styles[ctStyle].fontName,
685 vs.styles[ctStyle].sizeZoomed,
686 CodePage(),
687 vs.styles[ctStyle].characterSet,
688 wMain);
689 // If the call-tip window would be out of the client
690 // space, adjust so it displays above the text.
691 PRectangle rcClient = GetClientRectangle();
692 if (rc.bottom > rcClient.bottom) {
693 #ifdef __WXGTK__
694 int offset = int(vs.lineHeight * 1.25) + rc.Height();
695 #else
696 int offset = vs.lineHeight + rc.Height();
697 #endif
698 rc.top -= offset;
699 rc.bottom -= offset;
700 }
701 // Now display the window.
702 CreateCallTipWindow(rc);
703 ct.wCallTip.SetPositionRelative(rc, wMain);
704 ct.wCallTip.Show();
705 break;
706 }
707
708 #ifdef SCI_LEXER
709 case SCI_LOADLEXERLIBRARY:
710 LexerManager::GetInstance()->Load((const char*)lParam);
711 break;
712 #endif
713
714 default:
715 return ScintillaBase::WndProc(iMessage, wParam, lParam);
716 }
717 return 0;
718 }
719
720
721
722 //----------------------------------------------------------------------
723 // Event delegates
724
725 void ScintillaWX::DoPaint(wxDC* dc, wxRect rect) {
726
727 paintState = painting;
728 Surface* surfaceWindow = Surface::Allocate();
729 surfaceWindow->Init(dc, wMain.GetID());
730 rcPaint = PRectangleFromwxRect(rect);
731 PRectangle rcClient = GetClientRectangle();
732 paintingAllText = rcPaint.Contains(rcClient);
733
734 ClipChildren(*dc, rcPaint);
735 Paint(surfaceWindow, rcPaint);
736
737 delete surfaceWindow;
738 if (paintState == paintAbandoned) {
739 // Painting area was insufficient to cover new styling or brace
740 // highlight positions
741 FullPaint();
742 }
743 paintState = notPainting;
744 }
745
746
747 void ScintillaWX::DoHScroll(int type, int pos) {
748 int xPos = xOffset;
749 PRectangle rcText = GetTextRectangle();
750 int pageWidth = rcText.Width() * 2 / 3;
751 if (type == wxEVT_SCROLLWIN_LINEUP || type == wxEVT_SCROLL_LINEUP)
752 xPos -= H_SCROLL_STEP;
753 else if (type == wxEVT_SCROLLWIN_LINEDOWN || type == wxEVT_SCROLL_LINEDOWN)
754 xPos += H_SCROLL_STEP;
755 else if (type == wxEVT_SCROLLWIN_PAGEUP || type == wxEVT_SCROLL_PAGEUP)
756 xPos -= pageWidth;
757 else if (type == wxEVT_SCROLLWIN_PAGEDOWN || type == wxEVT_SCROLL_PAGEDOWN) {
758 xPos += pageWidth;
759 if (xPos > scrollWidth - rcText.Width()) {
760 xPos = scrollWidth - rcText.Width();
761 }
762 }
763 else if (type == wxEVT_SCROLLWIN_TOP || type == wxEVT_SCROLL_TOP)
764 xPos = 0;
765 else if (type == wxEVT_SCROLLWIN_BOTTOM || type == wxEVT_SCROLL_BOTTOM)
766 xPos = scrollWidth;
767 else if (type == wxEVT_SCROLLWIN_THUMBTRACK || type == wxEVT_SCROLL_THUMBTRACK)
768 xPos = pos;
769
770 HorizontalScrollTo(xPos);
771 }
772
773 void ScintillaWX::DoVScroll(int type, int pos) {
774 int topLineNew = topLine;
775 if (type == wxEVT_SCROLLWIN_LINEUP || type == wxEVT_SCROLL_LINEUP)
776 topLineNew -= 1;
777 else if (type == wxEVT_SCROLLWIN_LINEDOWN || type == wxEVT_SCROLL_LINEDOWN)
778 topLineNew += 1;
779 else if (type == wxEVT_SCROLLWIN_PAGEUP || type == wxEVT_SCROLL_PAGEUP)
780 topLineNew -= LinesToScroll();
781 else if (type == wxEVT_SCROLLWIN_PAGEDOWN || type == wxEVT_SCROLL_PAGEDOWN)
782 topLineNew += LinesToScroll();
783 else if (type == wxEVT_SCROLLWIN_TOP || type == wxEVT_SCROLL_TOP)
784 topLineNew = 0;
785 else if (type == wxEVT_SCROLLWIN_BOTTOM || type == wxEVT_SCROLL_BOTTOM)
786 topLineNew = MaxScrollPos();
787 else if (type == wxEVT_SCROLLWIN_THUMBTRACK || type == wxEVT_SCROLL_THUMBTRACK)
788 topLineNew = pos;
789
790 ScrollTo(topLineNew);
791 }
792
793 void ScintillaWX::DoMouseWheel(int rotation, int delta,
794 int linesPerAction, int ctrlDown,
795 bool isPageScroll ) {
796 int topLineNew = topLine;
797 int lines;
798
799 if (ctrlDown) { // Zoom the fonts if Ctrl key down
800 if (rotation < 0) {
801 KeyCommand(SCI_ZOOMIN);
802 }
803 else {
804 KeyCommand(SCI_ZOOMOUT);
805 }
806 }
807 else { // otherwise just scroll the window
808 if ( !delta )
809 delta = 120;
810 wheelRotation += rotation;
811 lines = wheelRotation / delta;
812 wheelRotation -= lines * delta;
813 if (lines != 0) {
814 if (isPageScroll)
815 lines = lines * LinesOnScreen(); // lines is either +1 or -1
816 else
817 lines *= linesPerAction;
818 topLineNew -= lines;
819 ScrollTo(topLineNew);
820 }
821 }
822 }
823
824
825 void ScintillaWX::DoSize(int WXUNUSED(width), int WXUNUSED(height)) {
826 ChangeSize();
827 }
828
829 void ScintillaWX::DoLoseFocus(){
830 focusEvent = true;
831 SetFocusState(false);
832 focusEvent = false;
833 DestroySystemCaret();
834 }
835
836 void ScintillaWX::DoGainFocus(){
837 focusEvent = true;
838 SetFocusState(true);
839 focusEvent = false;
840 DestroySystemCaret();
841 CreateSystemCaret();
842 }
843
844 void ScintillaWX::DoSysColourChange() {
845 InvalidateStyleData();
846 }
847
848 void ScintillaWX::DoLeftButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, bool alt) {
849 ButtonDown(pt, curTime, shift, ctrl, alt);
850 }
851
852 void ScintillaWX::DoLeftButtonUp(Point pt, unsigned int curTime, bool ctrl) {
853 ButtonUp(pt, curTime, ctrl);
854 }
855
856 void ScintillaWX::DoLeftButtonMove(Point pt) {
857 ButtonMove(pt);
858 }
859
860 #ifdef __WXGTK__
861 void ScintillaWX::DoMiddleButtonUp(Point pt) {
862 // Set the current position to the mouse click point and
863 // then paste in the PRIMARY selection, if any. wxGTK only.
864 int newPos = PositionFromLocation(pt);
865 MovePositionTo(newPos, noSel, true);
866
867 pdoc->BeginUndoAction();
868 wxTextDataObject data;
869 bool gotData = false;
870 wxTheClipboard->UsePrimarySelection(true);
871 if (wxTheClipboard->Open()) {
872 gotData = wxTheClipboard->GetData(data);
873 wxTheClipboard->Close();
874 }
875 wxTheClipboard->UsePrimarySelection(false);
876 if (gotData) {
877 wxString text = wxTextBuffer::Translate(data.GetText(),
878 wxConvertEOLMode(pdoc->eolMode));
879 wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
880 int len = strlen(buf);
881 pdoc->InsertString(currentPos, buf, len);
882 SetEmptySelection(currentPos + len);
883 }
884 pdoc->EndUndoAction();
885 NotifyChange();
886 Redraw();
887
888 ShowCaretAtCurrentPosition();
889 EnsureCaretVisible();
890 }
891 #else
892 void ScintillaWX::DoMiddleButtonUp(Point WXUNUSED(pt)) {
893 }
894 #endif
895
896
897 void ScintillaWX::DoAddChar(int key) {
898 #if wxUSE_UNICODE
899 wxChar wszChars[2];
900 wszChars[0] = (wxChar)key;
901 wszChars[1] = 0;
902 wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(wszChars);
903 AddCharUTF((char*)buf.data(), strlen(buf));
904 #else
905 AddChar((char)key);
906 #endif
907 }
908
909
910 int ScintillaWX::DoKeyDown(const wxKeyEvent& evt, bool* consumed)
911 {
912 int key = evt.GetKeyCode();
913 bool shift = evt.ShiftDown(),
914 ctrl = evt.ControlDown(),
915 alt = evt.AltDown();
916
917 if (ctrl && key >= 1 && key <= 26 && key != WXK_BACK)
918 key += 'A' - 1;
919
920 switch (key) {
921 case WXK_DOWN: key = SCK_DOWN; break;
922 case WXK_UP: key = SCK_UP; break;
923 case WXK_LEFT: key = SCK_LEFT; break;
924 case WXK_RIGHT: key = SCK_RIGHT; break;
925 case WXK_HOME: key = SCK_HOME; break;
926 case WXK_END: key = SCK_END; break;
927 case WXK_PAGEUP: key = SCK_PRIOR; break;
928 case WXK_PAGEDOWN: key = SCK_NEXT; break;
929 case WXK_NUMPAD_DOWN: key = SCK_DOWN; break;
930 case WXK_NUMPAD_UP: key = SCK_UP; break;
931 case WXK_NUMPAD_LEFT: key = SCK_LEFT; break;
932 case WXK_NUMPAD_RIGHT: key = SCK_RIGHT; break;
933 case WXK_NUMPAD_HOME: key = SCK_HOME; break;
934 case WXK_NUMPAD_END: key = SCK_END; break;
935 case WXK_NUMPAD_PAGEUP: key = SCK_PRIOR; break;
936 case WXK_NUMPAD_PAGEDOWN: key = SCK_NEXT; break;
937 case WXK_NUMPAD_DELETE: key = SCK_DELETE; break;
938 case WXK_NUMPAD_INSERT: key = SCK_INSERT; break;
939 case WXK_DELETE: key = SCK_DELETE; break;
940 case WXK_INSERT: key = SCK_INSERT; break;
941 case WXK_ESCAPE: key = SCK_ESCAPE; break;
942 case WXK_BACK: key = SCK_BACK; break;
943 case WXK_TAB: key = SCK_TAB; break;
944 case WXK_NUMPAD_ENTER: // fall through
945 case WXK_RETURN: key = SCK_RETURN; break;
946 case WXK_ADD: // fall through
947 case WXK_NUMPAD_ADD: key = SCK_ADD; break;
948 case WXK_SUBTRACT: // fall through
949 case WXK_NUMPAD_SUBTRACT: key = SCK_SUBTRACT; break;
950 case WXK_DIVIDE: // fall through
951 case WXK_NUMPAD_DIVIDE: key = SCK_DIVIDE; break;
952 case WXK_CONTROL: key = 0; break;
953 case WXK_ALT: key = 0; break;
954 case WXK_SHIFT: key = 0; break;
955 case WXK_MENU: key = 0; break;
956 }
957
958 #ifdef __WXMAC__
959 if ( evt.MetaDown() ) {
960 // check for a few common Mac Meta-key combos and remap them to Ctrl
961 // for Scintilla
962 switch ( key ) {
963 case 'Z': // Undo
964 case 'X': // Cut
965 case 'C': // Copy
966 case 'V': // Paste
967 case 'A': // Select All
968 ctrl = true;
969 break;
970 }
971 }
972 #endif
973
974 int rv = KeyDown(key, shift, ctrl, alt, consumed);
975
976 if (key)
977 return rv;
978 else
979 return 1;
980 }
981
982
983 void ScintillaWX::DoCommand(int ID) {
984 Command(ID);
985 }
986
987
988 void ScintillaWX::DoContextMenu(Point pt) {
989 if (displayPopupMenu)
990 ContextMenu(pt);
991 }
992
993 void ScintillaWX::DoOnListBox() {
994 AutoCompleteCompleted();
995 }
996
997
998 void ScintillaWX::DoOnIdle(wxIdleEvent& evt) {
999
1000 if ( Idle() )
1001 evt.RequestMore();
1002 else
1003 SetIdle(false);
1004 }
1005
1006 //----------------------------------------------------------------------
1007
1008 #if wxUSE_DRAG_AND_DROP
1009 bool ScintillaWX::DoDropText(long x, long y, const wxString& data) {
1010 SetDragPosition(invalidPosition);
1011
1012 wxString text = wxTextBuffer::Translate(data,
1013 wxConvertEOLMode(pdoc->eolMode));
1014
1015 // Send an event to allow the drag details to be changed
1016 wxStyledTextEvent evt(wxEVT_STC_DO_DROP, stc->GetId());
1017 evt.SetEventObject(stc);
1018 evt.SetDragResult(dragResult);
1019 evt.SetX(x);
1020 evt.SetY(y);
1021 evt.SetPosition(PositionFromLocation(Point(x,y)));
1022 evt.SetDragText(text);
1023 stc->GetEventHandler()->ProcessEvent(evt);
1024
1025 dragResult = evt.GetDragResult();
1026 if (dragResult == wxDragMove || dragResult == wxDragCopy) {
1027 DropAt(evt.GetPosition(),
1028 wx2stc(evt.GetDragText()),
1029 dragResult == wxDragMove,
1030 false); // TODO: rectangular?
1031 return true;
1032 }
1033 return false;
1034 }
1035
1036
1037 wxDragResult ScintillaWX::DoDragEnter(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y), wxDragResult def) {
1038 dragResult = def;
1039 return dragResult;
1040 }
1041
1042
1043 wxDragResult ScintillaWX::DoDragOver(wxCoord x, wxCoord y, wxDragResult def) {
1044 SetDragPosition(PositionFromLocation(Point(x, y)));
1045
1046 // Send an event to allow the drag result to be changed
1047 wxStyledTextEvent evt(wxEVT_STC_DRAG_OVER, stc->GetId());
1048 evt.SetEventObject(stc);
1049 evt.SetDragResult(def);
1050 evt.SetX(x);
1051 evt.SetY(y);
1052 evt.SetPosition(PositionFromLocation(Point(x,y)));
1053 stc->GetEventHandler()->ProcessEvent(evt);
1054
1055 dragResult = evt.GetDragResult();
1056 return dragResult;
1057 }
1058
1059
1060 void ScintillaWX::DoDragLeave() {
1061 SetDragPosition(invalidPosition);
1062 }
1063 #endif // wxUSE_DRAG_AND_DROP
1064 //----------------------------------------------------------------------
1065
1066 // Force the whole window to be repainted
1067 void ScintillaWX::FullPaint() {
1068 #ifndef __WXMAC__
1069 stc->Refresh(false);
1070 #endif
1071 stc->Update();
1072 }
1073
1074
1075 void ScintillaWX::DoScrollToLine(int line) {
1076 ScrollTo(line);
1077 }
1078
1079
1080 void ScintillaWX::DoScrollToColumn(int column) {
1081 HorizontalScrollTo(column * vs.spaceWidth);
1082 }
1083
1084 // wxGTK doesn't appear to need this explicit clipping code any longer, but I
1085 // will leave it here commented out for a while just in case...
1086 void ScintillaWX::ClipChildren(wxDC& WXUNUSED(dc), PRectangle WXUNUSED(rect))
1087 {
1088 // wxRegion rgn(wxRectFromPRectangle(rect));
1089 // if (ac.Active()) {
1090 // wxRect childRect = ((wxWindow*)ac.lb->GetID())->GetRect();
1091 // rgn.Subtract(childRect);
1092 // }
1093 // if (ct.inCallTipMode) {
1094 // wxSTCCallTip* tip = (wxSTCCallTip*)ct.wCallTip.GetID();
1095 // wxRect childRect = tip->GetRect();
1096 // #if wxUSE_POPUPWIN
1097 // childRect.SetPosition(tip->GetMyPosition());
1098 // #endif
1099 // rgn.Subtract(childRect);
1100 // }
1101 // dc.SetClippingRegion(rgn);
1102 }
1103
1104
1105 void ScintillaWX::SetUseAntiAliasing(bool useAA) {
1106 vs.extraFontFlag = useAA;
1107 InvalidateStyleRedraw();
1108 }
1109
1110 bool ScintillaWX::GetUseAntiAliasing() {
1111 return vs.extraFontFlag;
1112 }
1113
1114 //----------------------------------------------------------------------
1115 //----------------------------------------------------------------------
1116
1117 #endif // wxUSE_STC