make sure wxMac fonts are never AntiAliased (measuring problems would occur, because...
[wxWidgets.git] / src / stc / PlatWX.cpp
1 // Scintilla source code edit control
2 // PlatWX.cxx - implementation of platform facilities on wxWindows
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
12
13 #include "Platform.h"
14 #include "PlatWX.h"
15 #include "wx/stc/stc.h"
16
17
18 #ifdef __WXGTK__
19 #include <gtk/gtk.h>
20 #endif
21
22
23 Point Point::FromLong(long lpoint) {
24 return Point(lpoint & 0xFFFF, lpoint >> 16);
25 }
26
27 wxRect wxRectFromPRectangle(PRectangle prc) {
28 wxRect rc(prc.left, prc.top,
29 prc.right-prc.left, prc.bottom-prc.top);
30 return rc;
31 }
32
33 PRectangle PRectangleFromwxRect(wxRect rc) {
34 return PRectangle(rc.GetLeft(), rc.GetTop(),
35 rc.GetRight()+1, rc.GetBottom()+1);
36 }
37
38 wxColour wxColourFromCA(const ColourAllocated& ca) {
39 ColourDesired cd(ca.AsLong());
40 return wxColour(cd.GetRed(), cd.GetGreen(), cd.GetBlue());
41 }
42
43 //----------------------------------------------------------------------
44
45 Palette::Palette() {
46 used = 0;
47 allowRealization = false;
48 }
49
50 Palette::~Palette() {
51 Release();
52 }
53
54 void Palette::Release() {
55 used = 0;
56 }
57
58 // This method either adds a colour to the list of wanted colours (want==true)
59 // or retrieves the allocated colour back to the ColourPair.
60 // This is one method to make it easier to keep the code for wanting and retrieving in sync.
61 void Palette::WantFind(ColourPair &cp, bool want) {
62 if (want) {
63 for (int i=0; i < used; i++) {
64 if (entries[i].desired == cp.desired)
65 return;
66 }
67
68 if (used < numEntries) {
69 entries[used].desired = cp.desired;
70 entries[used].allocated.Set(cp.desired.AsLong());
71 used++;
72 }
73 } else {
74 for (int i=0; i < used; i++) {
75 if (entries[i].desired == cp.desired) {
76 cp.allocated = entries[i].allocated;
77 return;
78 }
79 }
80 cp.allocated.Set(cp.desired.AsLong());
81 }
82 }
83
84 void Palette::Allocate(Window &) {
85 if (allowRealization) {
86 }
87 }
88
89
90 //----------------------------------------------------------------------
91
92 Font::Font() {
93 id = 0;
94 ascent = 0;
95 }
96
97 Font::~Font() {
98 }
99
100 void Font::Create(const char *faceName, int characterSet, int size, bool bold, bool italic) {
101 wxFontEncoding encoding;
102
103 Release();
104
105 switch (characterSet) {
106 default:
107 case wxSTC_CHARSET_ANSI:
108 case wxSTC_CHARSET_DEFAULT:
109 encoding = wxFONTENCODING_DEFAULT;
110 break;
111
112 case wxSTC_CHARSET_BALTIC:
113 encoding = wxFONTENCODING_ISO8859_13;
114 break;
115
116 case wxSTC_CHARSET_CHINESEBIG5:
117 encoding = wxFONTENCODING_CP950;
118 break;
119
120 case wxSTC_CHARSET_EASTEUROPE:
121 encoding = wxFONTENCODING_ISO8859_2;
122 break;
123
124 case wxSTC_CHARSET_GB2312:
125 encoding = wxFONTENCODING_CP936;
126 break;
127
128 case wxSTC_CHARSET_GREEK:
129 encoding = wxFONTENCODING_ISO8859_7;
130 break;
131
132 case wxSTC_CHARSET_HANGUL:
133 encoding = wxFONTENCODING_CP949;
134 break;
135
136 case wxSTC_CHARSET_MAC:
137 encoding = wxFONTENCODING_DEFAULT;
138 break;
139
140 case wxSTC_CHARSET_OEM:
141 encoding = wxFONTENCODING_DEFAULT;
142 break;
143
144 case wxSTC_CHARSET_RUSSIAN:
145 encoding = wxFONTENCODING_KOI8;
146 break;
147
148 case wxSTC_CHARSET_SHIFTJIS:
149 encoding = wxFONTENCODING_CP932;
150 break;
151
152 case wxSTC_CHARSET_SYMBOL:
153 encoding = wxFONTENCODING_DEFAULT;
154 break;
155
156 case wxSTC_CHARSET_TURKISH:
157 encoding = wxFONTENCODING_ISO8859_9;
158 break;
159
160 case wxSTC_CHARSET_JOHAB:
161 encoding = wxFONTENCODING_DEFAULT;
162 break;
163
164 case wxSTC_CHARSET_HEBREW:
165 encoding = wxFONTENCODING_ISO8859_8;
166 break;
167
168 case wxSTC_CHARSET_ARABIC:
169 encoding = wxFONTENCODING_ISO8859_6;
170 break;
171
172 case wxSTC_CHARSET_VIETNAMESE:
173 encoding = wxFONTENCODING_DEFAULT;
174 break;
175
176 case wxSTC_CHARSET_THAI:
177 encoding = wxFONTENCODING_ISO8859_11;
178 break;
179 }
180
181 wxFontEncodingArray ea = wxEncodingConverter::GetPlatformEquivalents(encoding);
182 if (ea.GetCount())
183 encoding = ea[0];
184
185 id = new wxFont(size,
186 wxDEFAULT,
187 italic ? wxITALIC : wxNORMAL,
188 bold ? wxBOLD : wxNORMAL,
189 false,
190 stc2wx(faceName),
191 encoding);
192 #ifdef __WXMAC__
193 ((wxFont*)id)->SetNoAntiAliasing( true ) ;
194 #endif
195 }
196
197
198 void Font::Release() {
199 if (id)
200 delete (wxFont*)id;
201 id = 0;
202 }
203
204 //----------------------------------------------------------------------
205
206 class SurfaceImpl : public Surface {
207 private:
208 wxDC* hdc;
209 bool hdcOwned;
210 wxBitmap* bitmap;
211 int x;
212 int y;
213 bool unicodeMode;
214
215 public:
216 SurfaceImpl();
217 ~SurfaceImpl();
218
219 void Init();
220 void Init(SurfaceID sid);
221 void InitPixMap(int width, int height, Surface *surface_);
222
223 void Release();
224 bool Initialised();
225 void PenColour(ColourAllocated fore);
226 int LogPixelsY();
227 int DeviceHeightFont(int points);
228 void MoveTo(int x_, int y_);
229 void LineTo(int x_, int y_);
230 void Polygon(Point *pts, int npts, ColourAllocated fore, ColourAllocated back);
231 void RectangleDraw(PRectangle rc, ColourAllocated fore, ColourAllocated back);
232 void FillRectangle(PRectangle rc, ColourAllocated back);
233 void FillRectangle(PRectangle rc, Surface &surfacePattern);
234 void RoundedRectangle(PRectangle rc, ColourAllocated fore, ColourAllocated back);
235 void Ellipse(PRectangle rc, ColourAllocated fore, ColourAllocated back);
236 void Copy(PRectangle rc, Point from, Surface &surfaceSource);
237
238 void DrawTextNoClip(PRectangle rc, Font &font_, int ybase, const char *s, int len, ColourAllocated fore, ColourAllocated back);
239 void DrawTextClipped(PRectangle rc, Font &font_, int ybase, const char *s, int len, ColourAllocated fore, ColourAllocated back);
240 void MeasureWidths(Font &font_, const char *s, int len, int *positions);
241 int WidthText(Font &font_, const char *s, int len);
242 int WidthChar(Font &font_, char ch);
243 int Ascent(Font &font_);
244 int Descent(Font &font_);
245 int InternalLeading(Font &font_);
246 int ExternalLeading(Font &font_);
247 int Height(Font &font_);
248 int AverageCharWidth(Font &font_);
249
250 int SetPalette(Palette *pal, bool inBackGround);
251 void SetClip(PRectangle rc);
252 void FlushCachedState();
253
254 void SetUnicodeMode(bool unicodeMode_);
255
256 void BrushColour(ColourAllocated back);
257 void SetFont(Font &font_);
258 };
259
260
261
262 SurfaceImpl::SurfaceImpl() :
263 hdc(0), hdcOwned(0), bitmap(0),
264 x(0), y(0), unicodeMode(0)
265 {}
266
267 SurfaceImpl::~SurfaceImpl() {
268 Release();
269 }
270
271 void SurfaceImpl::Release() {
272 if (bitmap) {
273 ((wxMemoryDC*)hdc)->SelectObject(wxNullBitmap);
274 delete bitmap;
275 bitmap = 0;
276 }
277 if (hdcOwned) {
278 delete hdc;
279 hdc = 0;
280 hdcOwned = false;
281 }
282 }
283
284
285 bool SurfaceImpl::Initialised() {
286 return hdc != 0;
287 }
288
289 void SurfaceImpl::Init() {
290 #if 0
291 Release();
292 hdc = new wxMemoryDC();
293 hdcOwned = true;
294 #else
295 // On Mac and GTK the DC is not really valid until it has a bitmap
296 // selected into it. So instead of just creating the DC with no bitmap,
297 // go ahead and give it one.
298 InitPixMap(1,1,NULL);
299 #endif
300 }
301
302 void SurfaceImpl::Init(SurfaceID hdc_) {
303 Release();
304 hdc = (wxDC*)hdc_;
305 }
306
307 void SurfaceImpl::InitPixMap(int width, int height, Surface *surface_) {
308 Release();
309 hdc = new wxMemoryDC();
310 hdcOwned = true;
311 if (width < 1) width = 1;
312 if (height < 1) height = 1;
313 bitmap = new wxBitmap(width, height);
314 ((wxMemoryDC*)hdc)->SelectObject(*bitmap);
315 }
316
317 void SurfaceImpl::PenColour(ColourAllocated fore) {
318 hdc->SetPen(wxPen(wxColourFromCA(fore), 1, wxSOLID));
319 }
320
321 void SurfaceImpl::BrushColour(ColourAllocated back) {
322 hdc->SetBrush(wxBrush(wxColourFromCA(back), wxSOLID));
323 }
324
325 void SurfaceImpl::SetFont(Font &font_) {
326 if (font_.GetID()) {
327 hdc->SetFont(*((wxFont*)font_.GetID()));
328 }
329 }
330
331 int SurfaceImpl::LogPixelsY() {
332 return hdc->GetPPI().y;
333 }
334
335 int SurfaceImpl::DeviceHeightFont(int points) {
336 return points;
337 }
338
339 void SurfaceImpl::MoveTo(int x_, int y_) {
340 x = x_;
341 y = y_;
342 }
343
344 void SurfaceImpl::LineTo(int x_, int y_) {
345 hdc->DrawLine(x,y, x_,y_);
346 x = x_;
347 y = y_;
348 }
349
350 void SurfaceImpl::Polygon(Point *pts, int npts, ColourAllocated fore, ColourAllocated back) {
351 PenColour(fore);
352 BrushColour(back);
353 hdc->DrawPolygon(npts, (wxPoint*)pts);
354 }
355
356 void SurfaceImpl::RectangleDraw(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
357 PenColour(fore);
358 BrushColour(back);
359 hdc->DrawRectangle(wxRectFromPRectangle(rc));
360 }
361
362 void SurfaceImpl::FillRectangle(PRectangle rc, ColourAllocated back) {
363 BrushColour(back);
364 hdc->SetPen(*wxTRANSPARENT_PEN);
365 hdc->DrawRectangle(wxRectFromPRectangle(rc));
366 }
367
368 void SurfaceImpl::FillRectangle(PRectangle rc, Surface &surfacePattern) {
369 wxBrush br;
370 if (((SurfaceImpl&)surfacePattern).bitmap)
371 br = wxBrush(*((SurfaceImpl&)surfacePattern).bitmap);
372 else // Something is wrong so display in red
373 br = wxBrush(*wxRED, wxSOLID);
374 hdc->SetPen(*wxTRANSPARENT_PEN);
375 hdc->SetBrush(br);
376 hdc->DrawRectangle(wxRectFromPRectangle(rc));
377 }
378
379 void SurfaceImpl::RoundedRectangle(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
380 PenColour(fore);
381 BrushColour(back);
382 hdc->DrawRoundedRectangle(wxRectFromPRectangle(rc), 4);
383 }
384
385 void SurfaceImpl::Ellipse(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
386 PenColour(fore);
387 BrushColour(back);
388 hdc->DrawEllipse(wxRectFromPRectangle(rc));
389 }
390
391 void SurfaceImpl::Copy(PRectangle rc, Point from, Surface &surfaceSource) {
392 wxRect r = wxRectFromPRectangle(rc);
393 hdc->Blit(r.x, r.y, r.width, r.height,
394 ((SurfaceImpl&)surfaceSource).hdc,
395 from.x, from.y, wxCOPY);
396 }
397
398 void SurfaceImpl::DrawTextNoClip(PRectangle rc, Font &font, int ybase,
399 const char *s, int len,
400 ColourAllocated fore, ColourAllocated back) {
401 SetFont(font);
402 hdc->SetTextForeground(wxColourFromCA(fore));
403 hdc->SetTextBackground(wxColourFromCA(back));
404 FillRectangle(rc, back);
405
406 // ybase is where the baseline should be, but wxWin uses the upper left
407 // corner, so I need to calculate the real position for the text...
408 hdc->DrawText(stc2wx(s, len), rc.left, ybase - font.ascent);
409 }
410
411 void SurfaceImpl::DrawTextClipped(PRectangle rc, Font &font, int ybase,
412 const char *s, int len,
413 ColourAllocated fore, ColourAllocated back) {
414 SetFont(font);
415 hdc->SetTextForeground(wxColourFromCA(fore));
416 hdc->SetTextBackground(wxColourFromCA(back));
417 FillRectangle(rc, back);
418 hdc->SetClippingRegion(wxRectFromPRectangle(rc));
419
420 // see comments above
421 hdc->DrawText(stc2wx(s, len), rc.left, ybase - font.ascent);
422 hdc->DestroyClippingRegion();
423 }
424
425 int SurfaceImpl::WidthText(Font &font, const char *s, int len) {
426 SetFont(font);
427 int w;
428 int h;
429
430 hdc->GetTextExtent(stc2wx(s, len), &w, &h);
431 return w;
432 }
433
434
435 void SurfaceImpl::MeasureWidths(Font &font, const char *s, int len, int *positions) {
436 wxString str = stc2wx(s, len);
437 SetFont(font);
438
439 // Calculate the position of each character based on the widths of
440 // the previous characters
441 int* tpos = new int[len];
442 int totalWidth = 0;
443 size_t i;
444 for (i=0; i<str.Length(); i++) {
445 int w, h;
446 hdc->GetTextExtent(str[i], &w, &h);
447 totalWidth += w;
448 tpos[i] = totalWidth;
449 }
450
451 #if wxUSE_UNICODE
452 // Map the widths for UCS-2 characters back to the UTF-8 input string
453 i = 0;
454 size_t ui = 0;
455 while (i < len) {
456 unsigned char uch = (unsigned char)s[i];
457 positions[i++] = tpos[ui];
458 if (uch >= 0x80) {
459 if (uch < (0x80 + 0x40 + 0x20)) {
460 positions[i++] = tpos[ui];
461 } else {
462 positions[i++] = tpos[ui];
463 positions[i++] = tpos[ui];
464 }
465 }
466 ui++;
467 }
468 #else
469
470 // If not unicode then just use the widths we have
471 memcpy(positions, tpos, len * sizeof(*tpos));
472 #endif
473
474 delete [] tpos;
475 }
476
477
478 int SurfaceImpl::WidthChar(Font &font, char ch) {
479 SetFont(font);
480 int w;
481 int h;
482 char s[2] = { ch, 0 };
483
484 hdc->GetTextExtent(stc2wx(s, 1), &w, &h);
485 return w;
486 }
487
488 #define EXTENT_TEST wxT(" `~!@#$%^&*()-_=+\\|[]{};:\"\'<,>.?/1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
489
490 int SurfaceImpl::Ascent(Font &font) {
491 SetFont(font);
492 int w, h, d, e;
493 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
494 font.ascent = h - d;
495 return font.ascent;
496 }
497
498 int SurfaceImpl::Descent(Font &font) {
499 SetFont(font);
500 int w, h, d, e;
501 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
502 return d;
503 }
504
505 int SurfaceImpl::InternalLeading(Font &font) {
506 return 0;
507 }
508
509 int SurfaceImpl::ExternalLeading(Font &font) {
510 SetFont(font);
511 int w, h, d, e;
512 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
513 return e;
514 }
515
516 int SurfaceImpl::Height(Font &font) {
517 SetFont(font);
518 return hdc->GetCharHeight();
519 }
520
521 int SurfaceImpl::AverageCharWidth(Font &font) {
522 SetFont(font);
523 return hdc->GetCharWidth();
524 }
525
526 int SurfaceImpl::SetPalette(Palette *pal, bool inBackGround) {
527 return 0;
528 }
529
530 void SurfaceImpl::SetClip(PRectangle rc) {
531 hdc->SetClippingRegion(wxRectFromPRectangle(rc));
532 }
533
534 void SurfaceImpl::FlushCachedState() {
535 }
536
537 void SurfaceImpl::SetUnicodeMode(bool unicodeMode_) {
538 unicodeMode=unicodeMode_;
539 #if wxUSE_UNICODE
540 wxASSERT_MSG(unicodeMode == wxUSE_UNICODE,
541 wxT("Only unicode may be used when wxUSE_UNICODE is on."));
542 #else
543 wxASSERT_MSG(unicodeMode == wxUSE_UNICODE,
544 wxT("Only non-unicode may be used when wxUSE_UNICODE is off."));
545 #endif
546 }
547
548 Surface *Surface::Allocate() {
549 return new SurfaceImpl;
550 }
551
552
553 //----------------------------------------------------------------------
554
555
556 inline wxWindow* GETWIN(WindowID id) { return (wxWindow*)id; }
557
558 Window::~Window() {
559 }
560
561 void Window::Destroy() {
562 if (id)
563 GETWIN(id)->Destroy();
564 id = 0;
565 }
566
567 bool Window::HasFocus() {
568 return wxWindow::FindFocus() == GETWIN(id);
569 }
570
571 PRectangle Window::GetPosition() {
572 wxRect rc(GETWIN(id)->GetPosition(), GETWIN(id)->GetSize());
573 return PRectangleFromwxRect(rc);
574 }
575
576 void Window::SetPosition(PRectangle rc) {
577 wxRect r = wxRectFromPRectangle(rc);
578 GETWIN(id)->SetSize(r);
579 }
580
581 void Window::SetPositionRelative(PRectangle rc, Window) {
582 SetPosition(rc); // ????
583 }
584
585 PRectangle Window::GetClientPosition() {
586 wxSize sz = GETWIN(id)->GetClientSize();
587 return PRectangle(0, 0, sz.x, sz.y);
588 }
589
590 void Window::Show(bool show) {
591 GETWIN(id)->Show(show);
592 }
593
594 void Window::InvalidateAll() {
595 GETWIN(id)->Refresh(false);
596 wxWakeUpIdle();
597 }
598
599 void Window::InvalidateRectangle(PRectangle rc) {
600 wxRect r = wxRectFromPRectangle(rc);
601 GETWIN(id)->Refresh(false, &r);
602 wxWakeUpIdle();
603 }
604
605 void Window::SetFont(Font &font) {
606 GETWIN(id)->SetFont(*((wxFont*)font.GetID()));
607 }
608
609 void Window::SetCursor(Cursor curs) {
610 int cursorId;
611
612 switch (curs) {
613 case cursorText:
614 cursorId = wxCURSOR_IBEAM;
615 break;
616 case cursorArrow:
617 cursorId = wxCURSOR_ARROW;
618 break;
619 case cursorUp:
620 cursorId = wxCURSOR_ARROW; // ** no up arrow... wxCURSOR_UPARROW;
621 break;
622 case cursorWait:
623 cursorId = wxCURSOR_WAIT;
624 break;
625 case cursorHoriz:
626 cursorId = wxCURSOR_SIZEWE;
627 break;
628 case cursorVert:
629 cursorId = wxCURSOR_SIZENS;
630 break;
631 case cursorReverseArrow:
632 cursorId = wxCURSOR_RIGHT_ARROW;
633 break;
634 default:
635 cursorId = wxCURSOR_ARROW;
636 break;
637 }
638 #ifdef __WXMOTIF__
639 wxCursor wc = wxStockCursor(cursorId) ;
640 #else
641 wxCursor wc = wxCursor(cursorId) ;
642 #endif
643 GETWIN(id)->SetCursor(wc);
644 }
645
646
647 void Window::SetTitle(const char *s) {
648 GETWIN(id)->SetTitle(stc2wx(s));
649 }
650
651
652 //----------------------------------------------------------------------
653 // Helper classes for ListBox
654
655
656 #if 1 // defined(__WXMAC__)
657 class wxSTCListBoxWin : public wxListBox {
658 public:
659 wxSTCListBoxWin(wxWindow* parent, wxWindowID id)
660 : wxListBox(parent, id, wxDefaultPosition, wxSize(0,0),
661 0, NULL, wxLB_SINGLE | wxSIMPLE_BORDER) {
662 SetCursor(wxCursor(wxCURSOR_ARROW));
663 Hide();
664 }
665
666 void OnFocus(wxFocusEvent& event) {
667 GetParent()->SetFocus();
668 event.Skip();
669 }
670
671 wxListBox* GetLB() { return this; }
672
673 private:
674 DECLARE_EVENT_TABLE()
675 };
676
677
678 BEGIN_EVENT_TABLE(wxSTCListBoxWin, wxListBox)
679 EVT_SET_FOCUS(wxSTCListBoxWin::OnFocus)
680 END_EVENT_TABLE()
681
682
683
684 #else
685
686
687 class wxSTCListBox : public wxListBox {
688 public:
689 wxSTCListBox(wxWindow* parent, wxWindowID id)
690 : wxListBox(parent, id, wxDefaultPosition, wxDefaultSize,
691 0, NULL, wxLB_SINGLE | wxSIMPLE_BORDER | wxWANTS_CHARS)
692 {}
693
694 void OnKeyDown(wxKeyEvent& event) {
695 // Give the key events to the STC. It will then update
696 // the listbox as needed.
697 GetGrandParent()->GetEventHandler()->ProcessEvent(event);
698 }
699
700 private:
701 DECLARE_EVENT_TABLE()
702 };
703
704 BEGIN_EVENT_TABLE(wxSTCListBox, wxListBox)
705 EVT_KEY_DOWN(wxSTCListBox::OnKeyDown)
706 EVT_CHAR(wxSTCListBox::OnKeyDown)
707 END_EVENT_TABLE()
708
709
710
711 #undef wxSTC_USE_POPUP
712 #define wxSTC_USE_POPUP 0 // wxPopupWindow just doesn't work well in this case...
713
714 // A window to place the listbox upon. If wxPopupWindow is supported then
715 // that will be used so the listbox can extend beyond the client area of the
716 // wxSTC if needed.
717 #if wxUSE_POPUPWIN && wxSTC_USE_POPUP
718 #include <wx/popupwin.h>
719 #define wxSTCListBoxWinBase wxPopupWindow
720 #define param2 wxBORDER_NONE // popup's 2nd param is flags
721 #else
722 #define wxSTCListBoxWinBase wxWindow
723 #define param2 -1 // wxWindow's 2nd param is ID
724 #endif
725
726 class wxSTCListBoxWin : public wxSTCListBoxWinBase {
727 public:
728 wxSTCListBoxWin(wxWindow* parent, wxWindowID id)
729 : wxSTCListBoxWinBase(parent, param2) {
730 lb = new wxSTCListBox(this, id);
731 lb->SetCursor(wxCursor(wxCURSOR_ARROW));
732 lb->SetFocus();
733 }
734
735 void OnSize(wxSizeEvent& event) {
736 lb->SetSize(GetSize());
737 }
738
739 wxListBox* GetLB() { return lb; }
740
741 #if wxUSE_POPUPWIN && wxSTC_USE_POPUP
742 virtual void DoSetSize(int x, int y,
743 int width, int height,
744 int sizeFlags = wxSIZE_AUTO) {
745 if (x != -1)
746 GetParent()->ClientToScreen(&x, NULL);
747 if (y != -1)
748 GetParent()->ClientToScreen(NULL, &y);
749 wxSTCListBoxWinBase::DoSetSize(x, y, width, height, sizeFlags);
750 }
751 #endif
752
753 private:
754 wxSTCListBox* lb;
755 DECLARE_EVENT_TABLE()
756 };
757
758 BEGIN_EVENT_TABLE(wxSTCListBoxWin, wxSTCListBoxWinBase)
759 EVT_SIZE(wxSTCListBoxWin::OnSize)
760 END_EVENT_TABLE()
761 #endif
762
763 inline wxListBox* GETLB(WindowID win) {
764 return (((wxSTCListBoxWin*)win)->GetLB());
765 }
766
767 //----------------------------------------------------------------------
768
769 ListBox::ListBox() {
770 }
771
772 ListBox::~ListBox() {
773 }
774
775 void ListBox::Create(Window &parent, int ctrlID) {
776 id = new wxSTCListBoxWin(GETWIN(parent.GetID()), ctrlID);
777 }
778
779 void ListBox::SetVisibleRows(int rows) {
780 desiredVisibleRows = rows;
781 }
782
783 PRectangle ListBox::GetDesiredRect() {
784 wxSize sz = GETLB(id)->GetBestSize();
785 PRectangle rc;
786 rc.top = 0;
787 rc.left = 0;
788 if (sz.x > 400)
789 sz.x = 400;
790 if (sz.y > 140) // TODO: Use desiredVisibleRows??
791 sz.y = 140;
792 rc.right = sz.x;
793 rc.bottom = sz.y;
794 return rc;
795 }
796
797 void ListBox::SetAverageCharWidth(int width) {
798 aveCharWidth = width;
799 }
800
801 void ListBox::SetFont(Font &font) {
802 GETLB(id)->SetFont(*((wxFont*)font.GetID()));
803 }
804
805 void ListBox::Clear() {
806 GETLB(id)->Clear();
807 }
808
809 void ListBox::Append(char *s) {
810 GETLB(id)->Append(stc2wx(s));
811 }
812
813 int ListBox::Length() {
814 return GETLB(id)->GetCount();
815 }
816
817 void ListBox::Select(int n) {
818 GETLB(id)->SetSelection(n);
819 #ifdef __WXGTK__
820 if (n > 4)
821 n = n - 4;
822 else
823 n = 0;
824 GETLB(id)->SetFirstItem(n);
825 #endif
826 }
827
828 int ListBox::GetSelection() {
829 return GETLB(id)->GetSelection();
830 }
831
832 int ListBox::Find(const char *prefix) {
833 // No longer used
834 return -1;
835 }
836
837 void ListBox::GetValue(int n, char *value, int len) {
838 wxString text = GETLB(id)->GetString(n);
839 strncpy(value, wx2stc(text), len);
840 value[len-1] = '\0';
841 }
842
843 void ListBox::Sort() {
844 }
845
846 //----------------------------------------------------------------------
847
848 Menu::Menu() : id(0) {
849 }
850
851 void Menu::CreatePopUp() {
852 Destroy();
853 id = new wxMenu();
854 }
855
856 void Menu::Destroy() {
857 if (id)
858 delete (wxMenu*)id;
859 id = 0;
860 }
861
862 void Menu::Show(Point pt, Window &w) {
863 GETWIN(w.GetID())->PopupMenu((wxMenu*)id, pt.x - 4, pt.y);
864 Destroy();
865 }
866
867 //----------------------------------------------------------------------
868
869 ColourDesired Platform::Chrome() {
870 wxColour c;
871 c = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
872 return ColourDesired(c.Red(), c.Green(), c.Blue());
873 }
874
875 ColourDesired Platform::ChromeHighlight() {
876 wxColour c;
877 c = wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT);
878 return ColourDesired(c.Red(), c.Green(), c.Blue());
879 }
880
881 const char *Platform::DefaultFont() {
882 static char buf[128];
883 strcpy(buf, wxNORMAL_FONT->GetFaceName().mbc_str());
884 return buf;
885 }
886
887 int Platform::DefaultFontSize() {
888 return 8;
889 }
890
891 unsigned int Platform::DoubleClickTime() {
892 return 500; // **** ::GetDoubleClickTime();
893 }
894
895 void Platform::DebugDisplay(const char *s) {
896 wxLogDebug(stc2wx(s));
897 }
898
899 bool Platform::IsKeyDown(int key) {
900 return false; // I don't think we'll need this.
901 }
902
903 long Platform::SendScintilla(WindowID w,
904 unsigned int msg,
905 unsigned long wParam,
906 long lParam) {
907
908 wxStyledTextCtrl* stc = (wxStyledTextCtrl*)w;
909 return stc->SendMsg(msg, wParam, lParam);
910 }
911
912 long Platform::SendScintillaPointer(WindowID w,
913 unsigned int msg,
914 unsigned long wParam,
915 void *lParam) {
916
917 wxStyledTextCtrl* stc = (wxStyledTextCtrl*)w;
918 return stc->SendMsg(msg, wParam, (long)lParam);
919 }
920
921
922 // These are utility functions not really tied to a platform
923
924 int Platform::Minimum(int a, int b) {
925 if (a < b)
926 return a;
927 else
928 return b;
929 }
930
931 int Platform::Maximum(int a, int b) {
932 if (a > b)
933 return a;
934 else
935 return b;
936 }
937
938 #define TRACE
939
940 void Platform::DebugPrintf(const char *format, ...) {
941 #ifdef TRACE
942 char buffer[2000];
943 va_list pArguments;
944 va_start(pArguments, format);
945 vsprintf(buffer,format,pArguments);
946 va_end(pArguments);
947 Platform::DebugDisplay(buffer);
948 #endif
949 }
950
951
952 static bool assertionPopUps = true;
953
954 bool Platform::ShowAssertionPopUps(bool assertionPopUps_) {
955 bool ret = assertionPopUps;
956 assertionPopUps = assertionPopUps_;
957 return ret;
958 }
959
960 void Platform::Assert(const char *c, const char *file, int line) {
961 char buffer[2000];
962 sprintf(buffer, "Assertion [%s] failed at %s %d", c, file, line);
963 if (assertionPopUps) {
964 /*int idButton = */
965 wxMessageBox(stc2wx(buffer),
966 wxT("Assertion failure"),
967 wxICON_HAND | wxOK);
968 // if (idButton == IDRETRY) {
969 // ::DebugBreak();
970 // } else if (idButton == IDIGNORE) {
971 // // all OK
972 // } else {
973 // abort();
974 // }
975 } else {
976 strcat(buffer, "\r\n");
977 Platform::DebugDisplay(buffer);
978 abort();
979 }
980 }
981
982
983 int Platform::Clamp(int val, int minVal, int maxVal) {
984 if (val > maxVal)
985 val = maxVal;
986 if (val < minVal)
987 val = minVal;
988 return val;
989 }
990
991
992 bool Platform::IsDBCSLeadByte(int codePage, char ch) {
993 return false;
994 }
995
996
997
998 //----------------------------------------------------------------------
999
1000 ElapsedTime::ElapsedTime() {
1001 wxStartTimer();
1002 }
1003
1004 double ElapsedTime::Duration(bool reset) {
1005 double result = wxGetElapsedTime(reset);
1006 result /= 1000.0;
1007 return result;
1008 }
1009
1010
1011 //----------------------------------------------------------------------
1012
1013
1014
1015