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