]> git.saurik.com Git - wxWidgets.git/blob - src/stc/PlatWX.cpp
guard for 10.2
[wxWidgets.git] / src / stc / PlatWX.cpp
1 // Scintilla source code edit control
2 // PlatWX.cxx - implementation of platform facilities on wxWidgets
3 // Copyright 1998-1999 by Neil Hodgson <neilh@scintilla.org>
4 // Robin Dunn <robin@aldunn.com>
5 // The License.txt file describes the conditions under which this software may be distributed.
6
7 #include <ctype.h>
8
9 #include <wx/wx.h>
10 #include <wx/encconv.h>
11 #include <wx/listctrl.h>
12 #include <wx/mstream.h>
13 #include <wx/image.h>
14 #include <wx/imaglist.h>
15
16 #include "Platform.h"
17 #include "PlatWX.h"
18 #include "wx/stc/stc.h"
19
20
21 #ifdef __WXGTK__
22 #include <gtk/gtk.h>
23 #endif
24
25
26 Point Point::FromLong(long lpoint) {
27 return Point(lpoint & 0xFFFF, lpoint >> 16);
28 }
29
30 wxRect wxRectFromPRectangle(PRectangle prc) {
31 wxRect r(prc.left, prc.top,
32 prc.Width(), prc.Height());
33 return r;
34 }
35
36 PRectangle PRectangleFromwxRect(wxRect rc) {
37 return PRectangle(rc.GetLeft(), rc.GetTop(),
38 rc.GetRight()+1, rc.GetBottom()+1);
39 }
40
41 wxColour wxColourFromCA(const ColourAllocated& ca) {
42 ColourDesired cd(ca.AsLong());
43 return wxColour((unsigned char)cd.GetRed(),
44 (unsigned char)cd.GetGreen(),
45 (unsigned char)cd.GetBlue());
46 }
47
48 //----------------------------------------------------------------------
49
50 Palette::Palette() {
51 used = 0;
52 allowRealization = false;
53 }
54
55 Palette::~Palette() {
56 Release();
57 }
58
59 void Palette::Release() {
60 used = 0;
61 }
62
63 // This method either adds a colour to the list of wanted colours (want==true)
64 // or retrieves the allocated colour back to the ColourPair.
65 // This is one method to make it easier to keep the code for wanting and retrieving in sync.
66 void Palette::WantFind(ColourPair &cp, bool want) {
67 if (want) {
68 for (int i=0; i < used; i++) {
69 if (entries[i].desired == cp.desired)
70 return;
71 }
72
73 if (used < numEntries) {
74 entries[used].desired = cp.desired;
75 entries[used].allocated.Set(cp.desired.AsLong());
76 used++;
77 }
78 } else {
79 for (int i=0; i < used; i++) {
80 if (entries[i].desired == cp.desired) {
81 cp.allocated = entries[i].allocated;
82 return;
83 }
84 }
85 cp.allocated.Set(cp.desired.AsLong());
86 }
87 }
88
89 void Palette::Allocate(Window &) {
90 if (allowRealization) {
91 }
92 }
93
94
95 //----------------------------------------------------------------------
96
97 Font::Font() {
98 id = 0;
99 ascent = 0;
100 }
101
102 Font::~Font() {
103 }
104
105 void Font::Create(const char *faceName, int characterSet, int size, bool bold, bool italic, bool extraFontFlag) {
106 wxFontEncoding encoding;
107
108 Release();
109
110 switch (characterSet) {
111 default:
112 case wxSTC_CHARSET_ANSI:
113 case wxSTC_CHARSET_DEFAULT:
114 encoding = wxFONTENCODING_DEFAULT;
115 break;
116
117 case wxSTC_CHARSET_BALTIC:
118 encoding = wxFONTENCODING_ISO8859_13;
119 break;
120
121 case wxSTC_CHARSET_CHINESEBIG5:
122 encoding = wxFONTENCODING_CP950;
123 break;
124
125 case wxSTC_CHARSET_EASTEUROPE:
126 encoding = wxFONTENCODING_ISO8859_2;
127 break;
128
129 case wxSTC_CHARSET_GB2312:
130 encoding = wxFONTENCODING_CP936;
131 break;
132
133 case wxSTC_CHARSET_GREEK:
134 encoding = wxFONTENCODING_ISO8859_7;
135 break;
136
137 case wxSTC_CHARSET_HANGUL:
138 encoding = wxFONTENCODING_CP949;
139 break;
140
141 case wxSTC_CHARSET_MAC:
142 encoding = wxFONTENCODING_DEFAULT;
143 break;
144
145 case wxSTC_CHARSET_OEM:
146 encoding = wxFONTENCODING_DEFAULT;
147 break;
148
149 case wxSTC_CHARSET_RUSSIAN:
150 encoding = wxFONTENCODING_KOI8;
151 break;
152
153 case wxSTC_CHARSET_SHIFTJIS:
154 encoding = wxFONTENCODING_CP932;
155 break;
156
157 case wxSTC_CHARSET_SYMBOL:
158 encoding = wxFONTENCODING_DEFAULT;
159 break;
160
161 case wxSTC_CHARSET_TURKISH:
162 encoding = wxFONTENCODING_ISO8859_9;
163 break;
164
165 case wxSTC_CHARSET_JOHAB:
166 encoding = wxFONTENCODING_DEFAULT;
167 break;
168
169 case wxSTC_CHARSET_HEBREW:
170 encoding = wxFONTENCODING_ISO8859_8;
171 break;
172
173 case wxSTC_CHARSET_ARABIC:
174 encoding = wxFONTENCODING_ISO8859_6;
175 break;
176
177 case wxSTC_CHARSET_VIETNAMESE:
178 encoding = wxFONTENCODING_DEFAULT;
179 break;
180
181 case wxSTC_CHARSET_THAI:
182 encoding = wxFONTENCODING_ISO8859_11;
183 break;
184 }
185
186 wxFontEncodingArray ea = wxEncodingConverter::GetPlatformEquivalents(encoding);
187 if (ea.GetCount())
188 encoding = ea[0];
189
190 wxFont* font = new wxFont(size,
191 wxDEFAULT,
192 italic ? wxITALIC : wxNORMAL,
193 bold ? wxBOLD : wxNORMAL,
194 false,
195 stc2wx(faceName),
196 encoding);
197 font->SetNoAntiAliasing(!extraFontFlag);
198 id = font;
199 }
200
201
202 void Font::Release() {
203 if (id)
204 delete (wxFont*)id;
205 id = 0;
206 }
207
208 //----------------------------------------------------------------------
209
210 class SurfaceImpl : public Surface {
211 private:
212 wxDC* hdc;
213 bool hdcOwned;
214 wxBitmap* bitmap;
215 int x;
216 int y;
217 bool unicodeMode;
218
219 public:
220 SurfaceImpl();
221 ~SurfaceImpl();
222
223 virtual void Init(WindowID wid);
224 virtual void Init(SurfaceID sid, WindowID wid);
225 virtual void InitPixMap(int width, int height, Surface *surface_, WindowID wid);
226
227 virtual void Release();
228 virtual bool Initialised();
229 virtual void PenColour(ColourAllocated fore);
230 virtual int LogPixelsY();
231 virtual int DeviceHeightFont(int points);
232 virtual void MoveTo(int x_, int y_);
233 virtual void LineTo(int x_, int y_);
234 virtual void Polygon(Point *pts, int npts, ColourAllocated fore, ColourAllocated back);
235 virtual void RectangleDraw(PRectangle rc, ColourAllocated fore, ColourAllocated back);
236 virtual void FillRectangle(PRectangle rc, ColourAllocated back);
237 virtual void FillRectangle(PRectangle rc, Surface &surfacePattern);
238 virtual void RoundedRectangle(PRectangle rc, ColourAllocated fore, ColourAllocated back);
239 virtual void Ellipse(PRectangle rc, ColourAllocated fore, ColourAllocated back);
240 virtual void Copy(PRectangle rc, Point from, Surface &surfaceSource);
241
242 virtual void DrawTextNoClip(PRectangle rc, Font &font_, int ybase, const char *s, int len, ColourAllocated fore, ColourAllocated back);
243 virtual void DrawTextClipped(PRectangle rc, Font &font_, int ybase, const char *s, int len, ColourAllocated fore, ColourAllocated back);
244 virtual void DrawTextTransparent(PRectangle rc, Font &font_, int ybase, const char *s, int len, ColourAllocated fore);
245 virtual void MeasureWidths(Font &font_, const char *s, int len, int *positions);
246 virtual int WidthText(Font &font_, const char *s, int len);
247 virtual int WidthChar(Font &font_, char ch);
248 virtual int Ascent(Font &font_);
249 virtual int Descent(Font &font_);
250 virtual int InternalLeading(Font &font_);
251 virtual int ExternalLeading(Font &font_);
252 virtual int Height(Font &font_);
253 virtual int AverageCharWidth(Font &font_);
254
255 virtual int SetPalette(Palette *pal, bool inBackGround);
256 virtual void SetClip(PRectangle rc);
257 virtual void FlushCachedState();
258
259 virtual void SetUnicodeMode(bool unicodeMode_);
260 virtual void SetDBCSMode(int codePage);
261
262 void BrushColour(ColourAllocated back);
263 void SetFont(Font &font_);
264 };
265
266
267
268 SurfaceImpl::SurfaceImpl() :
269 hdc(0), hdcOwned(0), bitmap(0),
270 x(0), y(0), unicodeMode(0)
271 {}
272
273 SurfaceImpl::~SurfaceImpl() {
274 Release();
275 }
276
277 void SurfaceImpl::Init(WindowID wid) {
278 #if 0
279 Release();
280 hdc = new wxMemoryDC();
281 hdcOwned = true;
282 #else
283 // On Mac and GTK the DC is not really valid until it has a bitmap
284 // selected into it. So instead of just creating the DC with no bitmap,
285 // go ahead and give it one.
286 InitPixMap(1,1,NULL,wid);
287 #endif
288 }
289
290 void SurfaceImpl::Init(SurfaceID hdc_, WindowID) {
291 Release();
292 hdc = (wxDC*)hdc_;
293 }
294
295 void SurfaceImpl::InitPixMap(int width, int height, Surface *WXUNUSED(surface_), WindowID) {
296 Release();
297 hdc = new wxMemoryDC();
298 hdcOwned = true;
299 if (width < 1) width = 1;
300 if (height < 1) height = 1;
301 bitmap = new wxBitmap(width, height);
302 ((wxMemoryDC*)hdc)->SelectObject(*bitmap);
303 }
304
305
306 void SurfaceImpl::Release() {
307 if (bitmap) {
308 ((wxMemoryDC*)hdc)->SelectObject(wxNullBitmap);
309 delete bitmap;
310 bitmap = 0;
311 }
312 if (hdcOwned) {
313 delete hdc;
314 hdc = 0;
315 hdcOwned = false;
316 }
317 }
318
319
320 bool SurfaceImpl::Initialised() {
321 return hdc != 0;
322 }
323
324
325 void SurfaceImpl::PenColour(ColourAllocated fore) {
326 hdc->SetPen(wxPen(wxColourFromCA(fore), 1, wxSOLID));
327 }
328
329 void SurfaceImpl::BrushColour(ColourAllocated back) {
330 hdc->SetBrush(wxBrush(wxColourFromCA(back), wxSOLID));
331 }
332
333 void SurfaceImpl::SetFont(Font &font_) {
334 if (font_.GetID()) {
335 hdc->SetFont(*((wxFont*)font_.GetID()));
336 }
337 }
338
339 int SurfaceImpl::LogPixelsY() {
340 return hdc->GetPPI().y;
341 }
342
343 int SurfaceImpl::DeviceHeightFont(int points) {
344 return points;
345 }
346
347 void SurfaceImpl::MoveTo(int x_, int y_) {
348 x = x_;
349 y = y_;
350 }
351
352 void SurfaceImpl::LineTo(int x_, int y_) {
353 hdc->DrawLine(x,y, x_,y_);
354 x = x_;
355 y = y_;
356 }
357
358 void SurfaceImpl::Polygon(Point *pts, int npts, ColourAllocated fore, ColourAllocated back) {
359 PenColour(fore);
360 BrushColour(back);
361 hdc->DrawPolygon(npts, (wxPoint*)pts);
362 }
363
364 void SurfaceImpl::RectangleDraw(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
365 PenColour(fore);
366 BrushColour(back);
367 hdc->DrawRectangle(wxRectFromPRectangle(rc));
368 }
369
370 void SurfaceImpl::FillRectangle(PRectangle rc, ColourAllocated back) {
371 BrushColour(back);
372 hdc->SetPen(*wxTRANSPARENT_PEN);
373 hdc->DrawRectangle(wxRectFromPRectangle(rc));
374 }
375
376 void SurfaceImpl::FillRectangle(PRectangle rc, Surface &surfacePattern) {
377 wxBrush br;
378 if (((SurfaceImpl&)surfacePattern).bitmap)
379 br = wxBrush(*((SurfaceImpl&)surfacePattern).bitmap);
380 else // Something is wrong so display in red
381 br = wxBrush(*wxRED, wxSOLID);
382 hdc->SetPen(*wxTRANSPARENT_PEN);
383 hdc->SetBrush(br);
384 hdc->DrawRectangle(wxRectFromPRectangle(rc));
385 }
386
387 void SurfaceImpl::RoundedRectangle(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
388 PenColour(fore);
389 BrushColour(back);
390 hdc->DrawRoundedRectangle(wxRectFromPRectangle(rc), 4);
391 }
392
393 void SurfaceImpl::Ellipse(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
394 PenColour(fore);
395 BrushColour(back);
396 hdc->DrawEllipse(wxRectFromPRectangle(rc));
397 }
398
399 void SurfaceImpl::Copy(PRectangle rc, Point from, Surface &surfaceSource) {
400 wxRect r = wxRectFromPRectangle(rc);
401 hdc->Blit(r.x, r.y, r.width, r.height,
402 ((SurfaceImpl&)surfaceSource).hdc,
403 from.x, from.y, wxCOPY);
404 }
405
406 void SurfaceImpl::DrawTextNoClip(PRectangle rc, Font &font, int ybase,
407 const char *s, int len,
408 ColourAllocated fore, ColourAllocated back) {
409 SetFont(font);
410 hdc->SetTextForeground(wxColourFromCA(fore));
411 hdc->SetTextBackground(wxColourFromCA(back));
412 FillRectangle(rc, back);
413
414 // ybase is where the baseline should be, but wxWin uses the upper left
415 // corner, so I need to calculate the real position for the text...
416 hdc->DrawText(stc2wx(s, len), rc.left, ybase - font.ascent);
417 }
418
419 void SurfaceImpl::DrawTextClipped(PRectangle rc, Font &font, int ybase,
420 const char *s, int len,
421 ColourAllocated fore, ColourAllocated back) {
422 SetFont(font);
423 hdc->SetTextForeground(wxColourFromCA(fore));
424 hdc->SetTextBackground(wxColourFromCA(back));
425 FillRectangle(rc, back);
426 hdc->SetClippingRegion(wxRectFromPRectangle(rc));
427
428 // see comments above
429 hdc->DrawText(stc2wx(s, len), rc.left, ybase - font.ascent);
430 hdc->DestroyClippingRegion();
431 }
432
433
434 void SurfaceImpl::DrawTextTransparent(PRectangle rc, Font &font, int ybase,
435 const char *s, int len,
436 ColourAllocated fore) {
437
438 SetFont(font);
439 hdc->SetTextForeground(wxColourFromCA(fore));
440 hdc->SetBackgroundMode(wxTRANSPARENT);
441
442 // ybase is where the baseline should be, but wxWin uses the upper left
443 // corner, so I need to calculate the real position for the text...
444 hdc->DrawText(stc2wx(s, len), rc.left, ybase - font.ascent);
445
446 hdc->SetBackgroundMode(wxSOLID);
447 }
448
449
450 void SurfaceImpl::MeasureWidths(Font &font, const char *s, int len, int *positions) {
451
452 wxString str = stc2wx(s, len);
453 wxArrayInt tpos;
454
455 SetFont(font);
456
457 hdc->GetPartialTextExtents(str, tpos);
458
459 #if wxUSE_UNICODE
460 // Map the widths for UCS-2 characters back to the UTF-8 input string
461 // NOTE: I don't think this is right for when sizeof(wxChar) > 2, ie wxGTK2
462 // so figure it out and fix it!
463 size_t i = 0;
464 size_t ui = 0;
465 while ((int)i < len) {
466 unsigned char uch = (unsigned char)s[i];
467 positions[i++] = tpos[ui];
468 if (uch >= 0x80) {
469 if (uch < (0x80 + 0x40 + 0x20)) {
470 positions[i++] = tpos[ui];
471 } else {
472 positions[i++] = tpos[ui];
473 positions[i++] = tpos[ui];
474 }
475 }
476 ui++;
477 }
478 #else
479
480 // If not unicode then just use the widths we have
481 memcpy(positions, tpos.begin(), len * sizeof(int));
482 #endif
483 }
484
485
486 int SurfaceImpl::WidthText(Font &font, const char *s, int len) {
487 SetFont(font);
488 int w;
489 int h;
490
491 hdc->GetTextExtent(stc2wx(s, len), &w, &h);
492 return w;
493 }
494
495
496 int SurfaceImpl::WidthChar(Font &font, char ch) {
497 SetFont(font);
498 int w;
499 int h;
500 char s[2] = { ch, 0 };
501
502 hdc->GetTextExtent(stc2wx(s, 1), &w, &h);
503 return w;
504 }
505
506 #define EXTENT_TEST wxT(" `~!@#$%^&*()-_=+\\|[]{};:\"\'<,>.?/1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
507
508 int SurfaceImpl::Ascent(Font &font) {
509 SetFont(font);
510 int w, h, d, e;
511 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
512 font.ascent = h - d;
513 return font.ascent;
514 }
515
516 int SurfaceImpl::Descent(Font &font) {
517 SetFont(font);
518 int w, h, d, e;
519 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
520 return d;
521 }
522
523 int SurfaceImpl::InternalLeading(Font &WXUNUSED(font)) {
524 return 0;
525 }
526
527 int SurfaceImpl::ExternalLeading(Font &font) {
528 SetFont(font);
529 int w, h, d, e;
530 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
531 return e;
532 }
533
534 int SurfaceImpl::Height(Font &font) {
535 SetFont(font);
536 return hdc->GetCharHeight() + 1;
537 }
538
539 int SurfaceImpl::AverageCharWidth(Font &font) {
540 SetFont(font);
541 return hdc->GetCharWidth();
542 }
543
544 int SurfaceImpl::SetPalette(Palette *WXUNUSED(pal), bool WXUNUSED(inBackGround)) {
545 return 0;
546 }
547
548 void SurfaceImpl::SetClip(PRectangle rc) {
549 hdc->SetClippingRegion(wxRectFromPRectangle(rc));
550 }
551
552 void SurfaceImpl::FlushCachedState() {
553 }
554
555 void SurfaceImpl::SetUnicodeMode(bool unicodeMode_) {
556 unicodeMode=unicodeMode_;
557 }
558
559 void SurfaceImpl::SetDBCSMode(int WXUNUSED(codePage)) {
560 // dbcsMode = codePage == SC_CP_DBCS;
561 }
562
563
564 Surface *Surface::Allocate() {
565 return new SurfaceImpl;
566 }
567
568
569 //----------------------------------------------------------------------
570
571
572 inline wxWindow* GETWIN(WindowID id) { return (wxWindow*)id; }
573
574 Window::~Window() {
575 }
576
577 void Window::Destroy() {
578 if (id) {
579 Show(false);
580 GETWIN(id)->Destroy();
581 }
582 id = 0;
583 }
584
585 bool Window::HasFocus() {
586 return wxWindow::FindFocus() == GETWIN(id);
587 }
588
589 PRectangle Window::GetPosition() {
590 if (! id) return PRectangle();
591 wxRect rc(GETWIN(id)->GetPosition(), GETWIN(id)->GetSize());
592 return PRectangleFromwxRect(rc);
593 }
594
595 void Window::SetPosition(PRectangle rc) {
596 wxRect r = wxRectFromPRectangle(rc);
597 GETWIN(id)->SetSize(r);
598 }
599
600 void Window::SetPositionRelative(PRectangle rc, Window) {
601 SetPosition(rc); // ????
602 }
603
604 PRectangle Window::GetClientPosition() {
605 if (! id) return PRectangle();
606 wxSize sz = GETWIN(id)->GetClientSize();
607 return PRectangle(0, 0, sz.x, sz.y);
608 }
609
610 void Window::Show(bool show) {
611 GETWIN(id)->Show(show);
612 }
613
614 void Window::InvalidateAll() {
615 GETWIN(id)->Refresh(false);
616 wxWakeUpIdle();
617 }
618
619 void Window::InvalidateRectangle(PRectangle rc) {
620 wxRect r = wxRectFromPRectangle(rc);
621 GETWIN(id)->Refresh(false, &r);
622 wxWakeUpIdle();
623 }
624
625 void Window::SetFont(Font &font) {
626 GETWIN(id)->SetFont(*((wxFont*)font.GetID()));
627 }
628
629 void Window::SetCursor(Cursor curs) {
630 int cursorId;
631
632 switch (curs) {
633 case cursorText:
634 cursorId = wxCURSOR_IBEAM;
635 break;
636 case cursorArrow:
637 cursorId = wxCURSOR_ARROW;
638 break;
639 case cursorUp:
640 cursorId = wxCURSOR_ARROW; // ** no up arrow... wxCURSOR_UPARROW;
641 break;
642 case cursorWait:
643 cursorId = wxCURSOR_WAIT;
644 break;
645 case cursorHoriz:
646 cursorId = wxCURSOR_SIZEWE;
647 break;
648 case cursorVert:
649 cursorId = wxCURSOR_SIZENS;
650 break;
651 case cursorReverseArrow:
652 cursorId = wxCURSOR_RIGHT_ARROW;
653 break;
654 case cursorHand:
655 cursorId = wxCURSOR_HAND;
656 break;
657 default:
658 cursorId = wxCURSOR_ARROW;
659 break;
660 }
661 #ifdef __WXMOTIF__
662 wxCursor wc = wxStockCursor(cursorId) ;
663 #else
664 wxCursor wc = wxCursor(cursorId) ;
665 #endif
666 GETWIN(id)->SetCursor(wc);
667 }
668
669
670 void Window::SetTitle(const char *s) {
671 GETWIN(id)->SetTitle(stc2wx(s));
672 }
673
674
675 //----------------------------------------------------------------------
676 // Helper classes for ListBox
677
678
679 // This is a simple subclass of wxListView that just resets focus to the
680 // parent when it gets it.
681 class wxSTCListBox : public wxListView {
682 public:
683 wxSTCListBox(wxWindow* parent, wxWindowID id,
684 const wxPoint& pos, const wxSize& size,
685 long style)
686 : wxListView(parent, id, pos, size, style)
687 {}
688
689
690 void OnFocus(wxFocusEvent& event) {
691 GetParent()->SetFocus();
692 event.Skip();
693 }
694
695 void OnKillFocus(wxFocusEvent& WXUNUSED(event)) {
696 // Do nothing. Prevents base class from resetting the colors...
697 }
698
699 #ifdef __WXMAC__
700 // For some reason I don't understand yet the focus doesn't really leave
701 // the listbox like it should, so if we get any events feed them back to
702 // the wxSTC
703 void OnKeyDown(wxKeyEvent& event) {
704 GetGrandParent()->GetEventHandler()->ProcessEvent(event);
705 }
706 void OnChar(wxKeyEvent& event) {
707 GetGrandParent()->GetEventHandler()->ProcessEvent(event);
708 }
709
710 // And we need to force the focus back when being destroyed
711 ~wxSTCListBox() {
712 GetGrandParent()->SetFocus();
713 }
714 #endif
715
716 private:
717 DECLARE_EVENT_TABLE()
718 };
719
720 BEGIN_EVENT_TABLE(wxSTCListBox, wxListView)
721 EVT_SET_FOCUS( wxSTCListBox::OnFocus)
722 EVT_KILL_FOCUS(wxSTCListBox::OnKillFocus)
723 #ifdef __WXMAC__
724 EVT_KEY_DOWN( wxSTCListBox::OnKeyDown)
725 EVT_CHAR( wxSTCListBox::OnChar)
726 #endif
727 END_EVENT_TABLE()
728
729
730
731
732 // A window to place the wxSTCListBox upon
733 class wxSTCListBoxWin : public wxWindow {
734 private:
735 wxListView* lv;
736 CallBackAction doubleClickAction;
737 void* doubleClickActionData;
738 public:
739 wxSTCListBoxWin(wxWindow* parent, wxWindowID id) :
740 wxWindow(parent, id, wxDefaultPosition, wxSize(0,0), wxSIMPLE_BORDER )
741 {
742
743 lv = new wxSTCListBox(this, id, wxDefaultPosition, wxDefaultSize,
744 wxLC_REPORT | wxLC_SINGLE_SEL | wxLC_NO_HEADER | wxNO_BORDER);
745 lv->SetCursor(wxCursor(wxCURSOR_ARROW));
746 lv->InsertColumn(0, wxEmptyString);
747 lv->InsertColumn(1, wxEmptyString);
748
749 // Eventhough we immediately reset the focus to the parent, this helps
750 // things to look right...
751 lv->SetFocus();
752
753 Hide();
754 }
755
756
757 // On OSX and (possibly others) there can still be pending
758 // messages/events for the list control when Scintilla wants to
759 // close it, so do a pending delete of it instead of destroying
760 // immediately.
761 bool Destroy() {
762 #ifdef __WXMAC__
763 // The bottom edge of this window is not getting properly
764 // refreshed upon deletion, so help it out...
765 wxWindow* p = GetParent();
766 wxRect r(GetPosition(), GetSize());
767 r.SetHeight(r.GetHeight()+1);
768 p->Refresh(false, &r);
769 #endif
770 if ( !wxPendingDelete.Member(this) )
771 wxPendingDelete.Append(this);
772 return true;
773 }
774
775
776 int IconWidth() {
777 wxImageList* il = lv->GetImageList(wxIMAGE_LIST_SMALL);
778 if (il != NULL) {
779 int w, h;
780 il->GetSize(0, w, h);
781 return w;
782 }
783 return 0;
784 }
785
786
787 void SetDoubleClickAction(CallBackAction action, void *data) {
788 doubleClickAction = action;
789 doubleClickActionData = data;
790 }
791
792
793 void OnFocus(wxFocusEvent& event) {
794 GetParent()->SetFocus();
795 event.Skip();
796 }
797
798 void OnSize(wxSizeEvent& event) {
799 // resize the child
800 wxSize sz = GetClientSize();
801 lv->SetSize(sz);
802 // reset the column widths
803 lv->SetColumnWidth(0, IconWidth()+4);
804 lv->SetColumnWidth(1, sz.x - 2 - lv->GetColumnWidth(0) -
805 wxSystemSettings::GetMetric(wxSYS_VSCROLL_X));
806 event.Skip();
807 }
808
809 #ifdef __WXMAC__
810 virtual bool Show(bool show = true) {
811 bool rv = wxWindow::Show(show);
812 GetParent()->Refresh(false);
813 return rv;
814 }
815 #endif
816
817 void OnActivate(wxListEvent& WXUNUSED(event)) {
818 doubleClickAction(doubleClickActionData);
819 }
820
821 wxListView* GetLB() { return lv; }
822
823 private:
824 DECLARE_EVENT_TABLE()
825 };
826
827
828 BEGIN_EVENT_TABLE(wxSTCListBoxWin, wxWindow)
829 EVT_SET_FOCUS ( wxSTCListBoxWin::OnFocus)
830 EVT_SIZE ( wxSTCListBoxWin::OnSize)
831 EVT_LIST_ITEM_ACTIVATED(wxID_ANY, wxSTCListBoxWin::OnActivate)
832 END_EVENT_TABLE()
833
834
835
836 inline wxSTCListBoxWin* GETLBW(WindowID win) {
837 return ((wxSTCListBoxWin*)win);
838 }
839
840 inline wxListView* GETLB(WindowID win) {
841 return GETLBW(win)->GetLB();
842 }
843
844 //----------------------------------------------------------------------
845
846 class ListBoxImpl : public ListBox {
847 private:
848 int lineHeight;
849 bool unicodeMode;
850 int desiredVisibleRows;
851 int aveCharWidth;
852 int maxStrWidth;
853 wxImageList* imgList;
854 wxArrayInt* imgTypeMap;
855
856 public:
857 ListBoxImpl();
858 ~ListBoxImpl();
859
860 virtual void SetFont(Font &font);
861 virtual void Create(Window &parent, int ctrlID, int lineHeight_, bool unicodeMode_);
862 virtual void SetAverageCharWidth(int width);
863 virtual void SetVisibleRows(int rows);
864 virtual PRectangle GetDesiredRect();
865 virtual int CaretFromEdge();
866 virtual void Clear();
867 virtual void Append(char *s, int type = -1);
868 virtual int Length();
869 virtual void Select(int n);
870 virtual int GetSelection();
871 virtual int Find(const char *prefix);
872 virtual void GetValue(int n, char *value, int len);
873 virtual void RegisterImage(int type, const char *xpm_data);
874 virtual void ClearRegisteredImages();
875 virtual void SetDoubleClickAction(CallBackAction, void *);
876
877 };
878
879
880 ListBoxImpl::ListBoxImpl()
881 : lineHeight(10), unicodeMode(false),
882 desiredVisibleRows(5), aveCharWidth(8), maxStrWidth(0),
883 imgList(NULL), imgTypeMap(NULL)
884 {
885 }
886
887 ListBoxImpl::~ListBoxImpl() {
888 if (imgList) {
889 delete imgList;
890 imgList = NULL;
891 }
892 if (imgTypeMap) {
893 delete imgTypeMap;
894 imgTypeMap = NULL;
895 }
896 }
897
898
899 void ListBoxImpl::SetFont(Font &font) {
900 GETLB(id)->SetFont(*((wxFont*)font.GetID()));
901 }
902
903
904 void ListBoxImpl::Create(Window &parent, int ctrlID, int lineHeight_, bool unicodeMode_) {
905 lineHeight = lineHeight_;
906 unicodeMode = unicodeMode_;
907 maxStrWidth = 0;
908 id = new wxSTCListBoxWin(GETWIN(parent.GetID()), ctrlID);
909 if (imgList != NULL)
910 GETLB(id)->SetImageList(imgList, wxIMAGE_LIST_SMALL);
911 }
912
913
914 void ListBoxImpl::SetAverageCharWidth(int width) {
915 aveCharWidth = width;
916 }
917
918
919 void ListBoxImpl::SetVisibleRows(int rows) {
920 desiredVisibleRows = rows;
921 }
922
923
924 PRectangle ListBoxImpl::GetDesiredRect() {
925 // wxListCtrl doesn't have a DoGetBestSize, so instead we kept track of
926 // the max size in Append and calculate it here...
927 int maxw = maxStrWidth;
928 int maxh ;
929
930 // give it a default if there are no lines, and/or add a bit more
931 if (maxw == 0) maxw = 100;
932 maxw += aveCharWidth * 3 +
933 GETLBW(id)->IconWidth() + wxSystemSettings::GetMetric(wxSYS_VSCROLL_X);
934 if (maxw > 350)
935 maxw = 350;
936
937 // estimate a desired height
938 int count = GETLB(id)->GetItemCount();
939 if (count) {
940 wxRect rect;
941 GETLB(id)->GetItemRect(0, rect);
942 maxh = count * rect.GetHeight();
943 if (maxh > 140) // TODO: Use desiredVisibleRows??
944 maxh = 140;
945
946 // Try to make the size an exact multiple of some number of lines
947 int lines = maxh / rect.GetHeight();
948 maxh = (lines + 1) * rect.GetHeight() + 2;
949 }
950 else
951 maxh = 100;
952
953 PRectangle rc;
954 rc.top = 0;
955 rc.left = 0;
956 rc.right = maxw;
957 rc.bottom = maxh;
958 return rc;
959 }
960
961
962 int ListBoxImpl::CaretFromEdge() {
963 return 4 + GETLBW(id)->IconWidth();
964 }
965
966
967 void ListBoxImpl::Clear() {
968 GETLB(id)->DeleteAllItems();
969 }
970
971
972 void ListBoxImpl::Append(char *s, int type) {
973 wxString text = stc2wx(s);
974 long count = GETLB(id)->GetItemCount();
975 long itemID = GETLB(id)->InsertItem(count, wxEmptyString);
976 GETLB(id)->SetItem(itemID, 1, text);
977 int itemWidth = 0;
978 GETLB(id)->GetTextExtent(text, &itemWidth, NULL);
979 maxStrWidth = wxMax(maxStrWidth, itemWidth);
980 if (type != -1) {
981 wxCHECK_RET(imgTypeMap, wxT("Unexpected NULL imgTypeMap"));
982 long idx = imgTypeMap->Item(type);
983 GETLB(id)->SetItemImage(itemID, idx, idx);
984 }
985 }
986
987
988 int ListBoxImpl::Length() {
989 return GETLB(id)->GetItemCount();
990 }
991
992
993 void ListBoxImpl::Select(int n) {
994 bool select = true;
995 if (n == -1) {
996 n = 0;
997 select = false;
998 }
999 GETLB(id)->Focus(n);
1000 GETLB(id)->Select(n, select);
1001 }
1002
1003
1004 int ListBoxImpl::GetSelection() {
1005 return GETLB(id)->GetFirstSelected();
1006 }
1007
1008
1009 int ListBoxImpl::Find(const char *WXUNUSED(prefix)) {
1010 // No longer used
1011 return wxNOT_FOUND;
1012 }
1013
1014
1015 void ListBoxImpl::GetValue(int n, char *value, int len) {
1016 wxListItem item;
1017 item.SetId(n);
1018 item.SetColumn(1);
1019 item.SetMask(wxLIST_MASK_TEXT);
1020 GETLB(id)->GetItem(item);
1021 strncpy(value, wx2stc(item.GetText()), len);
1022 value[len-1] = '\0';
1023 }
1024
1025
1026 void ListBoxImpl::RegisterImage(int type, const char *xpm_data) {
1027 wxMemoryInputStream stream(xpm_data, strlen(xpm_data)+1);
1028 wxImage img(stream, wxBITMAP_TYPE_XPM);
1029 wxBitmap bmp(img);
1030
1031 if (! imgList) {
1032 // assumes all images are the same size
1033 imgList = new wxImageList(bmp.GetWidth(), bmp.GetHeight(), true);
1034 imgTypeMap = new wxArrayInt;
1035 }
1036
1037 int idx = imgList->Add(bmp);
1038
1039 // do we need to extend the mapping array?
1040 wxArrayInt& itm = *imgTypeMap;
1041 if ( itm.GetCount() < (size_t)type+1)
1042 itm.Add(-1, type - itm.GetCount() + 1);
1043
1044 // Add an item that maps type to the image index
1045 itm[type] = idx;
1046 }
1047
1048 void ListBoxImpl::ClearRegisteredImages() {
1049 if (imgList) {
1050 delete imgList;
1051 imgList = NULL;
1052 }
1053 if (imgTypeMap) {
1054 delete imgTypeMap;
1055 imgTypeMap = NULL;
1056 }
1057 if (id)
1058 GETLB(id)->SetImageList(NULL, wxIMAGE_LIST_SMALL);
1059 }
1060
1061
1062 void ListBoxImpl::SetDoubleClickAction(CallBackAction action, void *data) {
1063 GETLBW(id)->SetDoubleClickAction(action, data);
1064 }
1065
1066
1067
1068 ListBox::ListBox() {
1069 }
1070
1071 ListBox::~ListBox() {
1072 }
1073
1074 ListBox *ListBox::Allocate() {
1075 return new ListBoxImpl();
1076 }
1077
1078 //----------------------------------------------------------------------
1079
1080 Menu::Menu() : id(0) {
1081 }
1082
1083 void Menu::CreatePopUp() {
1084 Destroy();
1085 id = new wxMenu();
1086 }
1087
1088 void Menu::Destroy() {
1089 if (id)
1090 delete (wxMenu*)id;
1091 id = 0;
1092 }
1093
1094 void Menu::Show(Point pt, Window &w) {
1095 GETWIN(w.GetID())->PopupMenu((wxMenu*)id, pt.x - 4, pt.y);
1096 Destroy();
1097 }
1098
1099 //----------------------------------------------------------------------
1100
1101 DynamicLibrary *DynamicLibrary::Load(const char *WXUNUSED(modulePath)) {
1102 wxFAIL_MSG(wxT("Dynamic lexer loading not implemented yet"));
1103 return NULL;
1104 }
1105
1106 //----------------------------------------------------------------------
1107
1108 ColourDesired Platform::Chrome() {
1109 wxColour c;
1110 c = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
1111 return ColourDesired(c.Red(), c.Green(), c.Blue());
1112 }
1113
1114 ColourDesired Platform::ChromeHighlight() {
1115 wxColour c;
1116 c = wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT);
1117 return ColourDesired(c.Red(), c.Green(), c.Blue());
1118 }
1119
1120 const char *Platform::DefaultFont() {
1121 static char buf[128];
1122 strcpy(buf, wxNORMAL_FONT->GetFaceName().mbc_str());
1123 return buf;
1124 }
1125
1126 int Platform::DefaultFontSize() {
1127 return wxNORMAL_FONT->GetPointSize();
1128 }
1129
1130 unsigned int Platform::DoubleClickTime() {
1131 return 500; // **** ::GetDoubleClickTime();
1132 }
1133
1134 bool Platform::MouseButtonBounce() {
1135 return false;
1136 }
1137 void Platform::DebugDisplay(const char *s) {
1138 wxLogDebug(stc2wx(s));
1139 }
1140
1141 bool Platform::IsKeyDown(int WXUNUSED(key)) {
1142 return false; // I don't think we'll need this.
1143 }
1144
1145 long Platform::SendScintilla(WindowID w,
1146 unsigned int msg,
1147 unsigned long wParam,
1148 long lParam) {
1149
1150 wxStyledTextCtrl* stc = (wxStyledTextCtrl*)w;
1151 return stc->SendMsg(msg, wParam, lParam);
1152 }
1153
1154 long Platform::SendScintillaPointer(WindowID w,
1155 unsigned int msg,
1156 unsigned long wParam,
1157 void *lParam) {
1158
1159 wxStyledTextCtrl* stc = (wxStyledTextCtrl*)w;
1160 return stc->SendMsg(msg, wParam, (long)lParam);
1161 }
1162
1163
1164 // These are utility functions not really tied to a platform
1165
1166 int Platform::Minimum(int a, int b) {
1167 if (a < b)
1168 return a;
1169 else
1170 return b;
1171 }
1172
1173 int Platform::Maximum(int a, int b) {
1174 if (a > b)
1175 return a;
1176 else
1177 return b;
1178 }
1179
1180 #define TRACE
1181
1182 void Platform::DebugPrintf(const char *format, ...) {
1183 #ifdef TRACE
1184 char buffer[2000];
1185 va_list pArguments;
1186 va_start(pArguments, format);
1187 vsprintf(buffer,format,pArguments);
1188 va_end(pArguments);
1189 Platform::DebugDisplay(buffer);
1190 #endif
1191 }
1192
1193
1194 static bool assertionPopUps = true;
1195
1196 bool Platform::ShowAssertionPopUps(bool assertionPopUps_) {
1197 bool ret = assertionPopUps;
1198 assertionPopUps = assertionPopUps_;
1199 return ret;
1200 }
1201
1202 void Platform::Assert(const char *c, const char *file, int line) {
1203 char buffer[2000];
1204 sprintf(buffer, "Assertion [%s] failed at %s %d", c, file, line);
1205 if (assertionPopUps) {
1206 /*int idButton = */
1207 wxMessageBox(stc2wx(buffer),
1208 wxT("Assertion failure"),
1209 wxICON_HAND | wxOK);
1210 // if (idButton == IDRETRY) {
1211 // ::DebugBreak();
1212 // } else if (idButton == IDIGNORE) {
1213 // // all OK
1214 // } else {
1215 // abort();
1216 // }
1217 } else {
1218 strcat(buffer, "\r\n");
1219 Platform::DebugDisplay(buffer);
1220 abort();
1221 }
1222 }
1223
1224
1225 int Platform::Clamp(int val, int minVal, int maxVal) {
1226 if (val > maxVal)
1227 val = maxVal;
1228 if (val < minVal)
1229 val = minVal;
1230 return val;
1231 }
1232
1233
1234 bool Platform::IsDBCSLeadByte(int WXUNUSED(codePage), char WXUNUSED(ch)) {
1235 return false;
1236 }
1237
1238 int Platform::DBCSCharLength(int WXUNUSED(codePage), const char *WXUNUSED(s)) {
1239 return 1;
1240 }
1241
1242 int Platform::DBCSCharMaxLength() {
1243 return 1;
1244 }
1245
1246
1247 //----------------------------------------------------------------------
1248
1249 ElapsedTime::ElapsedTime() {
1250 wxStartTimer();
1251 }
1252
1253 double ElapsedTime::Duration(bool reset) {
1254 double result = wxGetElapsedTime(reset);
1255 result /= 1000.0;
1256 return result;
1257 }
1258
1259
1260 //----------------------------------------------------------------------
1261
1262 #if wxUSE_UNICODE
1263
1264 #include "UniConversion.h"
1265
1266 // Convert using Scintilla's functions instead of wx's, Scintilla's are more
1267 // forgiving and won't assert...
1268
1269 wxString stc2wx(const char* str, size_t len)
1270 {
1271 if (!len)
1272 return wxEmptyString;
1273
1274 size_t wclen = UCS2Length(str, len);
1275 wxWCharBuffer buffer(wclen+1);
1276
1277 size_t actualLen = UCS2FromUTF8(str, len, buffer.data(), wclen+1);
1278 return wxString(buffer.data(), actualLen);
1279 }
1280
1281
1282
1283 wxString stc2wx(const char* str)
1284 {
1285 return stc2wx(str, strlen(str));
1286 }
1287
1288
1289 const wxWX2MBbuf wx2stc(const wxString& str)
1290 {
1291 const wchar_t* wcstr = str.c_str();
1292 size_t wclen = str.length();
1293 size_t len = UTF8Length(wcstr, wclen);
1294
1295 wxCharBuffer buffer(len+1);
1296 UTF8FromUCS2(wcstr, wclen, buffer.data(), len);
1297
1298 // TODO check NULL termination!!
1299
1300 return buffer;
1301 }
1302
1303 #endif
1304
1305
1306
1307
1308
1309