]> git.saurik.com Git - wxWidgets.git/blame - src/stc/ScintillaWX.cpp
fixed VC++ warning in optimized build
[wxWidgets.git] / src / stc / ScintillaWX.cpp
CommitLineData
9ce192d4
RD
1////////////////////////////////////////////////////////////////////////////
2// Name: ScintillaWX.cxx
3// Purpose: A wxWindows implementation of Scintilla. A class derived
4// from ScintillaBase that uses the "wx platform" defined in
5// PlatformWX.cxx This class is one end of a bridge between
6// the wx world and the Scintilla world. It needs a peer
7// object of type wxStyledTextCtrl to function.
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
f6bcfd97 17
9ce192d4
RD
18#include "ScintillaWX.h"
19#include "wx/stc/stc.h"
1a2fb4cd 20#include "PlatWX.h"
9ce192d4
RD
21
22
23//----------------------------------------------------------------------
24
5fa4613c 25const int H_SCROLL_MAX = 4000;
9ce192d4
RD
26const int H_SCROLL_STEP = 20;
27const int H_SCROLL_PAGE = 200;
28
29//----------------------------------------------------------------------
30// Helper classes
31
32class wxSTCTimer : public wxTimer {
33public:
34 wxSTCTimer(ScintillaWX* swx) {
35 this->swx = swx;
36 }
37
38 void Notify() {
39 swx->DoTick();
40 }
41
42private:
43 ScintillaWX* swx;
44};
45
46
1bc32508 47#if wxUSE_DRAG_AND_DROP
9ce192d4
RD
48bool wxSTCDropTarget::OnDropText(wxCoord x, wxCoord y, const wxString& data) {
49 return swx->DoDropText(x, y, data);
50}
51
52wxDragResult wxSTCDropTarget::OnEnter(wxCoord x, wxCoord y, wxDragResult def) {
53 return swx->DoDragEnter(x, y, def);
54}
55
56wxDragResult wxSTCDropTarget::OnDragOver(wxCoord x, wxCoord y, wxDragResult def) {
57 return swx->DoDragOver(x, y, def);
58}
59
60void wxSTCDropTarget::OnLeave() {
61 swx->DoDragLeave();
62}
1bc32508 63#endif
9ce192d4
RD
64
65
769a9cb2
RD
66#if wxUSE_POPUPWIN
67#include <wx/popupwin.h>
68#define wxSTCCallTipBase wxPopupWindow
69#define param2 wxBORDER_NONE // popup's 2nd param is flags
70#else
71#define wxSTCCallTipBase wxWindow
72#define param2 -1 // wxWindows 2nd param is ID
73#endif
74
75class wxSTCCallTip : public wxSTCCallTipBase {
f6bcfd97 76public:
769a9cb2
RD
77 wxSTCCallTip(wxWindow* parent, CallTip* ct)
78 : wxSTCCallTipBase(parent, param2)
f6bcfd97
BP
79 {
80 m_ct = ct;
81 }
82
83 void OnPaint(wxPaintEvent& evt) {
84 wxPaintDC dc(this);
1a2fb4cd
RD
85 Surface* surfaceWindow = Surface::Allocate();
86 surfaceWindow->Init(&dc);
87 m_ct->PaintCT(surfaceWindow);
88 delete surfaceWindow;
f6bcfd97
BP
89 }
90
769a9cb2
RD
91#if wxUSE_POPUPWIN
92 virtual void DoSetSize(int x, int y,
93 int width, int height,
94 int sizeFlags = wxSIZE_AUTO) {
95 if (x != -1)
96 GetParent()->ClientToScreen(&x, NULL);
97 if (y != -1)
98 GetParent()->ClientToScreen(NULL, &y);
99 wxSTCCallTipBase::DoSetSize(x, y, width, height, sizeFlags);
100 }
101#endif
102
103private:
f6bcfd97
BP
104 CallTip* m_ct;
105 DECLARE_EVENT_TABLE()
106};
107
769a9cb2 108BEGIN_EVENT_TABLE(wxSTCCallTip, wxSTCCallTipBase)
f6bcfd97
BP
109 EVT_PAINT(wxSTCCallTip::OnPaint)
110END_EVENT_TABLE()
9ce192d4 111
769a9cb2 112
9ce192d4
RD
113//----------------------------------------------------------------------
114// Constructor/Destructor
115
116
117ScintillaWX::ScintillaWX(wxStyledTextCtrl* win) {
118 capturedMouse = false;
119 wMain = win;
9ce192d4 120 stc = win;
37d62433 121 wheelRotation = 0;
9ce192d4
RD
122 Initialise();
123}
124
125
126ScintillaWX::~ScintillaWX() {
127 SetTicking(false);
128}
129
130//----------------------------------------------------------------------
131// base class virtuals
132
133
134void ScintillaWX::Initialise() {
135 //ScintillaBase::Initialise();
1bc32508 136#if wxUSE_DRAG_AND_DROP
9eb662e9
RD
137 dropTarget = new wxSTCDropTarget;
138 dropTarget->SetScintilla(this);
139 stc->SetDropTarget(dropTarget);
1bc32508 140#endif
9ce192d4
RD
141}
142
143
144void ScintillaWX::Finalise() {
145 ScintillaBase::Finalise();
146}
147
148
149void ScintillaWX::StartDrag() {
1bc32508 150#if wxUSE_DRAG_AND_DROP
10ef30eb 151 wxString dragText(drag.s, wxConvUTF8, drag.len);
a29a241f
RD
152
153 // Send an event to allow the drag text to be changed
154 wxStyledTextEvent evt(wxEVT_STC_START_DRAG, stc->GetId());
155 evt.SetEventObject(stc);
156 evt.SetDragText(dragText);
157 evt.SetDragAllowMove(TRUE);
158 evt.SetPosition(wxMin(stc->GetSelectionStart(),
159 stc->GetSelectionEnd()));
160 stc->GetEventHandler()->ProcessEvent(evt);
161 dragText = evt.GetDragText();
162
163 if (dragText.Length()) {
5fa4613c 164 wxDropSource source(stc);
a29a241f
RD
165 wxTextDataObject data(dragText);
166 wxDragResult result;
167
168 source.SetData(data);
169 dropWentOutside = TRUE;
170 result = source.DoDragDrop(evt.GetDragAllowMove());
171 if (result == wxDragMove && dropWentOutside)
172 ClearSelection();
173 inDragDrop = FALSE;
174 SetDragPosition(invalidPosition);
175 }
1bc32508 176#endif
9ce192d4
RD
177}
178
179
180void ScintillaWX::SetTicking(bool on) {
181 wxSTCTimer* steTimer;
182 if (timer.ticking != on) {
183 timer.ticking = on;
184 if (timer.ticking) {
185 steTimer = new wxSTCTimer(this);
186 steTimer->Start(timer.tickSize);
1a2fb4cd 187 timer.tickerID = steTimer;
9ce192d4
RD
188 } else {
189 steTimer = (wxSTCTimer*)timer.tickerID;
190 steTimer->Stop();
191 delete steTimer;
192 timer.tickerID = 0;
193 }
194 }
195 timer.ticksToWait = caret.period;
196}
197
198
199void ScintillaWX::SetMouseCapture(bool on) {
8759d4d5 200 if (on && !capturedMouse)
5fa4613c 201 stc->CaptureMouse();
8759d4d5 202 else if (!on && capturedMouse)
5fa4613c 203 stc->ReleaseMouse();
9ce192d4
RD
204 capturedMouse = on;
205}
206
207
208bool ScintillaWX::HaveMouseCapture() {
209 return capturedMouse;
210}
211
212
213void ScintillaWX::ScrollText(int linesToMove) {
214 int dy = vs.lineHeight * (linesToMove);
5fa4613c
RD
215 stc->ScrollWindow(0, dy);
216 stc->Update();
9ce192d4
RD
217}
218
219void ScintillaWX::SetVerticalScrollPos() {
5fa4613c
RD
220 if (stc->m_vScrollBar == NULL) { // Use built-in scrollbar
221 stc->SetScrollPos(wxVERTICAL, topLine);
222 }
223 else { // otherwise use the one that's been given to us
224 stc->m_vScrollBar->SetThumbPosition(topLine);
225 }
9ce192d4
RD
226}
227
228void ScintillaWX::SetHorizontalScrollPos() {
5fa4613c
RD
229 if (stc->m_hScrollBar == NULL) { // Use built-in scrollbar
230 stc->SetScrollPos(wxHORIZONTAL, xOffset);
231 }
232 else { // otherwise use the one that's been given to us
233 stc->m_hScrollBar->SetThumbPosition(xOffset);
234 }
9ce192d4
RD
235}
236
237
238bool ScintillaWX::ModifyScrollBars(int nMax, int nPage) {
239 bool modified = false;
9ce192d4 240
5fa4613c
RD
241 if (stc->m_vScrollBar == NULL) { // Use built-in scrollbar
242 int sbMax = stc->GetScrollRange(wxVERTICAL);
243 int sbThumb = stc->GetScrollThumb(wxVERTICAL);
244 int sbPos = stc->GetScrollPos(wxVERTICAL);
245 if (sbMax != nMax || sbThumb != nPage) {
246 stc->SetScrollbar(wxVERTICAL, sbPos, nPage, nMax);
247 modified = true;
248 }
249 }
250 else { // otherwise use the one that's been given to us
251 int sbMax = stc->m_vScrollBar->GetRange();
252 int sbPage = stc->m_vScrollBar->GetPageSize();
253 int sbPos = stc->m_vScrollBar->GetThumbPosition();
254 if (sbMax != nMax || sbPage != nPage) {
255 stc->m_vScrollBar->SetScrollbar(sbPos, nPage, nMax, nPage);
256 modified = true;
257 }
9ce192d4
RD
258 }
259
5fa4613c 260
3928c4fd 261 if (horizontalScrollBarVisible) {
5fa4613c
RD
262 if (stc->m_hScrollBar == NULL) { // Use built-in scrollbar
263 int sbMax = stc->GetScrollRange(wxHORIZONTAL);
264 int sbThumb = stc->GetScrollThumb(wxHORIZONTAL);
265 if ((sbMax != H_SCROLL_MAX) || (sbThumb != H_SCROLL_STEP)) {
266 stc->SetScrollbar(wxHORIZONTAL, 0, H_SCROLL_STEP, H_SCROLL_MAX);
267 modified = true;
268 }
269 }
270 else { // otherwise use the one that's been given to us
271 int sbMax = stc->m_hScrollBar->GetRange();
272 int sbPage = stc->m_hScrollBar->GetPageSize();
273 if ((sbMax != H_SCROLL_MAX) || (sbPage != H_SCROLL_STEP)) {
274 stc->m_hScrollBar->SetScrollbar(0, H_SCROLL_STEP, H_SCROLL_MAX, H_SCROLL_STEP);
275 modified = true;
276 }
3928c4fd 277 }
9ce192d4
RD
278 }
279 return modified;
280}
281
282
283void ScintillaWX::NotifyChange() {
284 stc->NotifyChange();
285}
286
287
288void ScintillaWX::NotifyParent(SCNotification scn) {
289 stc->NotifyParent(&scn);
290}
291
292
293
294void ScintillaWX::Copy() {
295 if (currentPos != anchor) {
b8b0e402
RD
296 SelectionText st;
297 CopySelectionRange(&st);
9ce192d4 298 wxTheClipboard->Open();
10ef30eb
RD
299 wxString text(st.s, wxConvUTF8, st.len);
300 wxTheClipboard->SetData(new wxTextDataObject(text));
9ce192d4
RD
301 wxTheClipboard->Close();
302 }
303}
304
305
306void ScintillaWX::Paste() {
307 pdoc->BeginUndoAction();
308 ClearSelection();
309
310 wxTextDataObject data;
e26c0634 311 bool gotData;
9ce192d4
RD
312
313 wxTheClipboard->Open();
e26c0634 314 gotData = wxTheClipboard->GetData(data);
9ce192d4 315 wxTheClipboard->Close();
e26c0634 316 if (gotData) {
10ef30eb
RD
317 wxWX2MBbuf buf = (wxWX2MBbuf)data.GetText().mb_str(wxConvUTF8);
318 int len = strlen(buf);
319 pdoc->InsertString(currentPos, buf, len);
9ce192d4
RD
320 SetEmptySelection(currentPos + len);
321 }
322
323 pdoc->EndUndoAction();
324 NotifyChange();
325 Redraw();
326}
327
328
329bool ScintillaWX::CanPaste() {
9ce192d4
RD
330 bool canPaste;
331
332 wxTheClipboard->Open();
10ef30eb 333 canPaste = wxTheClipboard->IsSupported(wxUSE_UNICODE ? wxDF_UNICODETEXT : wxDF_TEXT);
9ce192d4
RD
334 wxTheClipboard->Close();
335
336 return canPaste;
337}
338
339void ScintillaWX::CreateCallTipWindow(PRectangle) {
769a9cb2 340 ct.wCallTip = new wxSTCCallTip(stc, &ct);
9ce192d4
RD
341 ct.wDraw = ct.wCallTip;
342}
343
344
345void ScintillaWX::AddToPopUp(const char *label, int cmd, bool enabled) {
346 if (!label[0])
1a2fb4cd 347 ((wxMenu*)popup.GetID())->AppendSeparator();
9ce192d4 348 else
10ef30eb 349 ((wxMenu*)popup.GetID())->Append(cmd, wxString(label, *wxConvCurrent));
9ce192d4
RD
350
351 if (!enabled)
1a2fb4cd 352 ((wxMenu*)popup.GetID())->Enable(cmd, enabled);
9ce192d4
RD
353}
354
355
356void ScintillaWX::ClaimSelection() {
357
358}
359
360
d134f170 361long ScintillaWX::DefWndProc(unsigned int /*iMessage*/, unsigned long /*wParam*/, long /*lParam*/) {
9ce192d4
RD
362 return 0;
363}
364
d134f170
RD
365long ScintillaWX::WndProc(unsigned int iMessage, unsigned long wParam, long lParam) {
366// switch (iMessage) {
367// case EM_CANPASTE:
368// return CanPaste();
369// default:
9ce192d4 370 return ScintillaBase::WndProc(iMessage, wParam, lParam);
d134f170
RD
371// }
372// return 0;
9ce192d4
RD
373}
374
375
376
377//----------------------------------------------------------------------
378// Event delegates
379
380void ScintillaWX::DoPaint(wxDC* dc, wxRect rect) {
381
382 paintState = painting;
1a2fb4cd
RD
383 Surface* surfaceWindow = Surface::Allocate();
384 surfaceWindow->Init(dc);
9ce192d4
RD
385 PRectangle rcPaint = PRectangleFromwxRect(rect);
386 dc->BeginDrawing();
1a2fb4cd 387 Paint(surfaceWindow, rcPaint);
9ce192d4 388 dc->EndDrawing();
1a2fb4cd 389 delete surfaceWindow;
9ce192d4
RD
390 if (paintState == paintAbandoned) {
391 // Painting area was insufficient to cover new styling or brace highlight positions
392 FullPaint();
393 }
394 paintState = notPainting;
f97d84a6
RD
395#ifdef __WXGTK__
396 // On wxGTK the editor window paints can overwrite the listbox...
397 if (ac.Active())
398 ((wxWindow*)ac.lb.GetID())->Refresh(TRUE);
399#endif
9ce192d4
RD
400}
401
402
403void ScintillaWX::DoHScroll(int type, int pos) {
404 int xPos = xOffset;
5fa4613c 405 if (type == wxEVT_SCROLLWIN_LINEUP || type == wxEVT_SCROLL_LINEUP)
9ce192d4 406 xPos -= H_SCROLL_STEP;
5fa4613c 407 else if (type == wxEVT_SCROLLWIN_LINEDOWN || type == wxEVT_SCROLL_LINEDOWN)
9ce192d4 408 xPos += H_SCROLL_STEP;
5fa4613c 409 else if (type == wxEVT_SCROLLWIN_PAGEUP || type == wxEVT_SCROLL_PAGEUP)
9ce192d4 410 xPos -= H_SCROLL_PAGE;
5fa4613c 411 else if (type == wxEVT_SCROLLWIN_PAGEDOWN || type == wxEVT_SCROLL_PAGEDOWN)
9ce192d4 412 xPos += H_SCROLL_PAGE;
5fa4613c 413 else if (type == wxEVT_SCROLLWIN_TOP || type == wxEVT_SCROLL_TOP)
9ce192d4 414 xPos = 0;
5fa4613c 415 else if (type == wxEVT_SCROLLWIN_BOTTOM || type == wxEVT_SCROLL_BOTTOM)
9ce192d4 416 xPos = H_SCROLL_MAX;
5fa4613c 417 else if (type == wxEVT_SCROLLWIN_THUMBTRACK || type == wxEVT_SCROLL_THUMBTRACK)
9ce192d4 418 xPos = pos;
ce1ecc6d 419
9ce192d4
RD
420 HorizontalScrollTo(xPos);
421}
422
423void ScintillaWX::DoVScroll(int type, int pos) {
424 int topLineNew = topLine;
5fa4613c 425 if (type == wxEVT_SCROLLWIN_LINEUP || type == wxEVT_SCROLL_LINEUP)
9ce192d4 426 topLineNew -= 1;
5fa4613c 427 else if (type == wxEVT_SCROLLWIN_LINEDOWN || type == wxEVT_SCROLL_LINEDOWN)
9ce192d4 428 topLineNew += 1;
5fa4613c 429 else if (type == wxEVT_SCROLLWIN_PAGEUP || type == wxEVT_SCROLL_PAGEUP)
9ce192d4 430 topLineNew -= LinesToScroll();
5fa4613c 431 else if (type == wxEVT_SCROLLWIN_PAGEDOWN || type == wxEVT_SCROLL_PAGEDOWN)
9ce192d4 432 topLineNew += LinesToScroll();
5fa4613c 433 else if (type == wxEVT_SCROLLWIN_TOP || type == wxEVT_SCROLL_TOP)
9ce192d4 434 topLineNew = 0;
5fa4613c 435 else if (type == wxEVT_SCROLLWIN_BOTTOM || type == wxEVT_SCROLL_BOTTOM)
9ce192d4 436 topLineNew = MaxScrollPos();
5fa4613c 437 else if (type == wxEVT_SCROLLWIN_THUMBTRACK || type == wxEVT_SCROLL_THUMBTRACK)
9ce192d4 438 topLineNew = pos;
ce1ecc6d 439
9ce192d4
RD
440 ScrollTo(topLineNew);
441}
442
37d62433 443
65ec6247 444void ScintillaWX::DoMouseWheel(int rotation, int delta, int linesPerAction, int ctrlDown) {
37d62433
RD
445 int topLineNew = topLine;
446 int lines;
447
65ec6247
RD
448 if (ctrlDown) { // Zoom the fonts if Ctrl key down
449 if (rotation < 0) {
450 KeyCommand(SCI_ZOOMIN);
451 }
452 else {
453 KeyCommand(SCI_ZOOMOUT);
454 }
455 }
456 else { // otherwise just scroll the window
457 wheelRotation += rotation;
458 lines = wheelRotation / delta;
459 wheelRotation -= lines * delta;
460 if (lines != 0) {
461 lines *= linesPerAction;
462 topLineNew -= lines;
463 ScrollTo(topLineNew);
464 }
37d62433
RD
465 }
466}
467
468
9ce192d4 469void ScintillaWX::DoSize(int width, int height) {
1a2fb4cd
RD
470// PRectangle rcClient(0,0,width,height);
471// SetScrollBarsTo(rcClient);
472// DropGraphics();
473 ChangeSize();
9ce192d4
RD
474}
475
476void ScintillaWX::DoLoseFocus(){
65ec6247 477 SetFocusState(false);
9ce192d4
RD
478}
479
480void ScintillaWX::DoGainFocus(){
65ec6247 481 SetFocusState(true);
9ce192d4
RD
482}
483
484void ScintillaWX::DoSysColourChange() {
485 InvalidateStyleData();
486}
487
488void ScintillaWX::DoButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, bool alt) {
489 ButtonDown(pt, curTime, shift, ctrl, alt);
490}
491
492void ScintillaWX::DoButtonUp(Point pt, unsigned int curTime, bool ctrl) {
493 ButtonUp(pt, curTime, ctrl);
494}
495
496void ScintillaWX::DoButtonMove(Point pt) {
497 ButtonMove(pt);
498}
499
500
10ef30eb
RD
501void ScintillaWX::DoAddChar(int key) {
502 AddChar(key);
9ce192d4
RD
503}
504
65ec6247 505int ScintillaWX::DoKeyDown(int key, bool shift, bool ctrl, bool alt, bool* consumed) {
39178e3b
RD
506#ifdef __WXGTK__
507 // Ctrl chars (A-Z) end up with the wrong keycode on wxGTK...
508 if (ctrl && key >= 1 && key <= 26)
509 key += 'A' - 1;
510#endif
511
d134f170 512 switch (key) {
d6582821
RD
513 case WXK_DOWN: key = SCK_DOWN; break;
514 case WXK_UP: key = SCK_UP; break;
515 case WXK_LEFT: key = SCK_LEFT; break;
516 case WXK_RIGHT: key = SCK_RIGHT; break;
517 case WXK_HOME: key = SCK_HOME; break;
518 case WXK_END: key = SCK_END; break;
519 case WXK_PRIOR: key = SCK_PRIOR; break;
520 case WXK_NEXT: key = SCK_NEXT; break;
521 case WXK_DELETE: key = SCK_DELETE; break;
522 case WXK_INSERT: key = SCK_INSERT; break;
523 case WXK_ESCAPE: key = SCK_ESCAPE; break;
524 case WXK_BACK: key = SCK_BACK; break;
525 case WXK_TAB: key = SCK_TAB; break;
526 case WXK_RETURN: key = SCK_RETURN; break;
527 case WXK_ADD:
528 case WXK_NUMPAD_ADD:
529 key = SCK_ADD; break;
530 case WXK_SUBTRACT:
531 case WXK_NUMPAD_SUBTRACT:
532 key = SCK_SUBTRACT; break;
533 case WXK_DIVIDE:
534 case WXK_NUMPAD_DIVIDE:
535 key = SCK_DIVIDE; break;
536 case WXK_CONTROL: key = 0; break;
537 case WXK_ALT: key = 0; break;
538 case WXK_SHIFT: key = 0; break;
539 case WXK_MENU: key = 0; break;
d134f170
RD
540 }
541
d6582821 542 int rv = KeyDown(key, shift, ctrl, alt, consumed);
0122b7e3 543
d6582821
RD
544 if (key)
545 return rv;
546 else
547 return 1;
9ce192d4
RD
548}
549
550
551void ScintillaWX::DoCommand(int ID) {
552 Command(ID);
553}
554
555
556void ScintillaWX::DoContextMenu(Point pt) {
557 ContextMenu(pt);
558}
559
f6bcfd97
BP
560void ScintillaWX::DoOnListBox() {
561 AutoCompleteCompleted();
562}
9ce192d4
RD
563
564//----------------------------------------------------------------------
565
1bc32508 566#if wxUSE_DRAG_AND_DROP
9ce192d4
RD
567bool ScintillaWX::DoDropText(long x, long y, const wxString& data) {
568 SetDragPosition(invalidPosition);
a29a241f
RD
569
570 // Send an event to allow the drag details to be changed
571 wxStyledTextEvent evt(wxEVT_STC_DO_DROP, stc->GetId());
572 evt.SetEventObject(stc);
573 evt.SetDragResult(dragResult);
574 evt.SetX(x);
575 evt.SetY(y);
576 evt.SetPosition(PositionFromLocation(Point(x,y)));
577 evt.SetDragText(data);
578 stc->GetEventHandler()->ProcessEvent(evt);
579
580 dragResult = evt.GetDragResult();
581 if (dragResult == wxDragMove || dragResult == wxDragCopy) {
582 DropAt(evt.GetPosition(),
10ef30eb 583 evt.GetDragText().mb_str(wxConvUTF8),
a29a241f
RD
584 dragResult == wxDragMove,
585 FALSE); // TODO: rectangular?
586 return TRUE;
587 }
588 return FALSE;
9ce192d4
RD
589}
590
591
592wxDragResult ScintillaWX::DoDragEnter(wxCoord x, wxCoord y, wxDragResult def) {
b8b0e402
RD
593 dragResult = def;
594 return dragResult;
9ce192d4
RD
595}
596
597
598wxDragResult ScintillaWX::DoDragOver(wxCoord x, wxCoord y, wxDragResult def) {
599 SetDragPosition(PositionFromLocation(Point(x, y)));
a29a241f
RD
600
601 // Send an event to allow the drag result to be changed
602 wxStyledTextEvent evt(wxEVT_STC_DRAG_OVER, stc->GetId());
603 evt.SetEventObject(stc);
604 evt.SetDragResult(def);
605 evt.SetX(x);
606 evt.SetY(y);
607 evt.SetPosition(PositionFromLocation(Point(x,y)));
608 stc->GetEventHandler()->ProcessEvent(evt);
609
610 dragResult = evt.GetDragResult();
b8b0e402 611 return dragResult;
9ce192d4
RD
612}
613
614
615void ScintillaWX::DoDragLeave() {
616 SetDragPosition(invalidPosition);
617}
1bc32508 618#endif
9ce192d4
RD
619//----------------------------------------------------------------------
620
621// Redraw all of text area. This paint will not be abandoned.
622void ScintillaWX::FullPaint() {
623 paintState = painting;
a7642be1
RD
624 rcPaint = GetTextRectangle();
625 paintingAllText = true;
5fa4613c 626 wxClientDC dc(stc);
1a2fb4cd
RD
627 Surface* surfaceWindow = Surface::Allocate();
628 surfaceWindow->Init(&dc);
629 Paint(surfaceWindow, rcPaint);
630 delete surfaceWindow;
a7642be1 631
5fa4613c 632// stc->Refresh(FALSE);
a7642be1 633
9ce192d4
RD
634 paintState = notPainting;
635}
636
637
638void ScintillaWX::DoScrollToLine(int line) {
639 ScrollTo(line);
640}
641
642
643void ScintillaWX::DoScrollToColumn(int column) {
644 HorizontalScrollTo(column * vs.spaceWidth);
645}
646
647
648
649//----------------------------------------------------------------------
650//----------------------------------------------------------------------