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