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