wxStyledTextCtrl can now be built and used when wxUSE_UNICODE==1.
[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 wxString(faceName, wxConvUTF8),
191 encoding);
192 }
193
194
195 void Font::Release() {
196 if (id)
197 delete (wxFont*)id;
198 id = 0;
199 }
200
201 //----------------------------------------------------------------------
202
203 class SurfaceImpl : public Surface {
204 private:
205 wxDC* hdc;
206 bool hdcOwned;
207 wxBitmap* bitmap;
208 int x;
209 int y;
210 bool unicodeMode;
211
212 public:
213 SurfaceImpl();
214 ~SurfaceImpl();
215
216 void Init();
217 void Init(SurfaceID sid);
218 void InitPixMap(int width, int height, Surface *surface_);
219
220 void Release();
221 bool Initialised();
222 void PenColour(ColourAllocated fore);
223 int LogPixelsY();
224 int DeviceHeightFont(int points);
225 void MoveTo(int x_, int y_);
226 void LineTo(int x_, int y_);
227 void Polygon(Point *pts, int npts, ColourAllocated fore, ColourAllocated back);
228 void RectangleDraw(PRectangle rc, ColourAllocated fore, ColourAllocated back);
229 void FillRectangle(PRectangle rc, ColourAllocated back);
230 void FillRectangle(PRectangle rc, Surface &surfacePattern);
231 void RoundedRectangle(PRectangle rc, ColourAllocated fore, ColourAllocated back);
232 void Ellipse(PRectangle rc, ColourAllocated fore, ColourAllocated back);
233 void Copy(PRectangle rc, Point from, Surface &surfaceSource);
234
235 void DrawTextNoClip(PRectangle rc, Font &font_, int ybase, const char *s, int len, ColourAllocated fore, ColourAllocated back);
236 void DrawTextClipped(PRectangle rc, Font &font_, int ybase, const char *s, int len, ColourAllocated fore, ColourAllocated back);
237 void MeasureWidths(Font &font_, const char *s, int len, int *positions);
238 int WidthText(Font &font_, const char *s, int len);
239 int WidthChar(Font &font_, char ch);
240 int Ascent(Font &font_);
241 int Descent(Font &font_);
242 int InternalLeading(Font &font_);
243 int ExternalLeading(Font &font_);
244 int Height(Font &font_);
245 int AverageCharWidth(Font &font_);
246
247 int SetPalette(Palette *pal, bool inBackGround);
248 void SetClip(PRectangle rc);
249 void FlushCachedState();
250
251 void SetUnicodeMode(bool unicodeMode_);
252
253 void BrushColour(ColourAllocated back);
254 void SetFont(Font &font_);
255 };
256
257
258
259 SurfaceImpl::SurfaceImpl() :
260 hdc(0), hdcOwned(0), bitmap(0),
261 x(0), y(0), unicodeMode(0)
262 {}
263
264 SurfaceImpl::~SurfaceImpl() {
265 Release();
266 }
267
268 void SurfaceImpl::Release() {
269 if (bitmap) {
270 ((wxMemoryDC*)hdc)->SelectObject(wxNullBitmap);
271 delete bitmap;
272 bitmap = 0;
273 }
274 if (hdcOwned) {
275 delete hdc;
276 hdc = 0;
277 hdcOwned = false;
278 }
279 }
280
281
282 bool SurfaceImpl::Initialised() {
283 return hdc != 0;
284 }
285
286 void SurfaceImpl::Init() {
287 Release();
288 hdc = new wxMemoryDC();
289 hdcOwned = true;
290 }
291
292 void SurfaceImpl::Init(SurfaceID hdc_) {
293 Release();
294 hdc = (wxDC*)hdc_;
295 }
296
297 void SurfaceImpl::InitPixMap(int width, int height, Surface *surface_) {
298 Release();
299 hdc = new wxMemoryDC();
300 hdcOwned = true;
301 if (width < 1) width = 1;
302 if (height < 1) height = 1;
303 bitmap = new wxBitmap(width, height);
304 ((wxMemoryDC*)hdc)->SelectObject(*bitmap);
305 }
306
307 void SurfaceImpl::PenColour(ColourAllocated fore) {
308 hdc->SetPen(wxPen(wxColourFromCA(fore), 1, wxSOLID));
309 }
310
311 void SurfaceImpl::BrushColour(ColourAllocated back) {
312 hdc->SetBrush(wxBrush(wxColourFromCA(back), wxSOLID));
313 }
314
315 void SurfaceImpl::SetFont(Font &font_) {
316 if (font_.GetID()) {
317 hdc->SetFont(*((wxFont*)font_.GetID()));
318 }
319 }
320
321 int SurfaceImpl::LogPixelsY() {
322 return hdc->GetPPI().y;
323 }
324
325 int SurfaceImpl::DeviceHeightFont(int points) {
326 return points;
327 }
328
329 void SurfaceImpl::MoveTo(int x_, int y_) {
330 x = x_;
331 y = y_;
332 }
333
334 void SurfaceImpl::LineTo(int x_, int y_) {
335 hdc->DrawLine(x,y, x_,y_);
336 x = x_;
337 y = y_;
338 }
339
340 void SurfaceImpl::Polygon(Point *pts, int npts, ColourAllocated fore, ColourAllocated back) {
341 PenColour(fore);
342 BrushColour(back);
343 hdc->DrawPolygon(npts, (wxPoint*)pts);
344 }
345
346 void SurfaceImpl::RectangleDraw(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
347 PenColour(fore);
348 BrushColour(back);
349 hdc->DrawRectangle(wxRectFromPRectangle(rc));
350 }
351
352 void SurfaceImpl::FillRectangle(PRectangle rc, ColourAllocated back) {
353 BrushColour(back);
354 hdc->SetPen(*wxTRANSPARENT_PEN);
355 hdc->DrawRectangle(wxRectFromPRectangle(rc));
356 }
357
358 void SurfaceImpl::FillRectangle(PRectangle rc, Surface &surfacePattern) {
359 wxBrush br;
360 if (((SurfaceImpl&)surfacePattern).bitmap)
361 br = wxBrush(*((SurfaceImpl&)surfacePattern).bitmap);
362 else // Something is wrong so display in red
363 br = wxBrush(*wxRED, wxSOLID);
364 hdc->SetPen(*wxTRANSPARENT_PEN);
365 hdc->SetBrush(br);
366 hdc->DrawRectangle(wxRectFromPRectangle(rc));
367 }
368
369 void SurfaceImpl::RoundedRectangle(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
370 PenColour(fore);
371 BrushColour(back);
372 hdc->DrawRoundedRectangle(wxRectFromPRectangle(rc), 4);
373 }
374
375 void SurfaceImpl::Ellipse(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
376 PenColour(fore);
377 BrushColour(back);
378 hdc->DrawEllipse(wxRectFromPRectangle(rc));
379 }
380
381 void SurfaceImpl::Copy(PRectangle rc, Point from, Surface &surfaceSource) {
382 wxRect r = wxRectFromPRectangle(rc);
383 hdc->Blit(r.x, r.y, r.width, r.height,
384 ((SurfaceImpl&)surfaceSource).hdc,
385 from.x, from.y, wxCOPY);
386 }
387
388 void SurfaceImpl::DrawTextNoClip(PRectangle rc, Font &font, int ybase,
389 const char *s, int len,
390 ColourAllocated fore, ColourAllocated back) {
391 SetFont(font);
392 hdc->SetTextForeground(wxColourFromCA(fore));
393 hdc->SetTextBackground(wxColourFromCA(back));
394 FillRectangle(rc, back);
395
396 // will convert from UTF-8 in unicode mode
397 wxString str(s, wxConvUTF8, len);
398
399 // ybase is where the baseline should be, but wxWin uses the upper left
400 // corner, so I need to calculate the real position for the text...
401 hdc->DrawText(str, rc.left, ybase - font.ascent);
402 }
403
404 void SurfaceImpl::DrawTextClipped(PRectangle rc, Font &font, int ybase,
405 const char *s, int len,
406 ColourAllocated fore, ColourAllocated back) {
407 SetFont(font);
408 hdc->SetTextForeground(wxColourFromCA(fore));
409 hdc->SetTextBackground(wxColourFromCA(back));
410 FillRectangle(rc, back);
411 hdc->SetClippingRegion(wxRectFromPRectangle(rc));
412
413 // will convert from UTF-8 in unicode mode
414 wxString str(s, wxConvUTF8, len);
415
416 // see comments above
417 hdc->DrawText(str, rc.left, ybase - font.ascent);
418 hdc->DestroyClippingRegion();
419 }
420
421 int SurfaceImpl::WidthText(Font &font, const char *s, int len) {
422 SetFont(font);
423 int w;
424 int h;
425
426 // will convert from UTF-8 in unicode mode
427 wxString str(s, wxConvUTF8, len);
428
429 hdc->GetTextExtent(str, &w, &h);
430 return w;
431 }
432
433
434 void SurfaceImpl::MeasureWidths(Font &font, const char *s, int len, int *positions) {
435 // will convert from UTF-8 in unicode mode
436 wxString str(s, wxConvUTF8, 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 // will convert from UTF-8 in unicode mode
485 wxString str(s, wxConvUTF8, 1);
486 hdc->GetTextExtent(str, &w, &h);
487 return w;
488 }
489
490 #define EXTENT_TEST wxT(" `~!@#$%^&*()-_=+\\|[]{};:\"\'<,>.?/1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
491
492 int SurfaceImpl::Ascent(Font &font) {
493 SetFont(font);
494 int w, h, d, e;
495 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
496 font.ascent = h - d;
497 return font.ascent;
498 }
499
500 int SurfaceImpl::Descent(Font &font) {
501 SetFont(font);
502 int w, h, d, e;
503 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
504 return d;
505 }
506
507 int SurfaceImpl::InternalLeading(Font &font) {
508 return 0;
509 }
510
511 int SurfaceImpl::ExternalLeading(Font &font) {
512 SetFont(font);
513 int w, h, d, e;
514 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
515 return e;
516 }
517
518 int SurfaceImpl::Height(Font &font) {
519 SetFont(font);
520 return hdc->GetCharHeight();
521 }
522
523 int SurfaceImpl::AverageCharWidth(Font &font) {
524 SetFont(font);
525 return hdc->GetCharWidth();
526 }
527
528 int SurfaceImpl::SetPalette(Palette *pal, bool inBackGround) {
529 return 0;
530 }
531
532 void SurfaceImpl::SetClip(PRectangle rc) {
533 hdc->SetClippingRegion(wxRectFromPRectangle(rc));
534 }
535
536 void SurfaceImpl::FlushCachedState() {
537 }
538
539 void SurfaceImpl::SetUnicodeMode(bool unicodeMode_) {
540 unicodeMode=unicodeMode_;
541 #if wxUSE_UNICODE
542 wxASSERT_MSG(unicodeMode == wxUSE_UNICODE,
543 wxT("Only unicode may be used when wxUSE_UNICODE is on."));
544 #else
545 wxASSERT_MSG(unicodeMode == wxUSE_UNICODE,
546 wxT("Only non-unicode may be used when wxUSE_UNICODE is off."));
547 #endif
548 }
549
550 Surface *Surface::Allocate() {
551 return new SurfaceImpl;
552 }
553
554
555 //----------------------------------------------------------------------
556
557
558 inline wxWindow* GETWIN(WindowID id) { return (wxWindow*)id; }
559
560 Window::~Window() {
561 }
562
563 void Window::Destroy() {
564 if (id)
565 GETWIN(id)->Destroy();
566 id = 0;
567 }
568
569 bool Window::HasFocus() {
570 return wxWindow::FindFocus() == GETWIN(id);
571 }
572
573 PRectangle Window::GetPosition() {
574 wxRect rc(GETWIN(id)->GetPosition(), GETWIN(id)->GetSize());
575 return PRectangleFromwxRect(rc);
576 }
577
578 void Window::SetPosition(PRectangle rc) {
579 wxRect r = wxRectFromPRectangle(rc);
580 GETWIN(id)->SetSize(r);
581 }
582
583 void Window::SetPositionRelative(PRectangle rc, Window) {
584 SetPosition(rc); // ????
585 }
586
587 PRectangle Window::GetClientPosition() {
588 wxSize sz = GETWIN(id)->GetClientSize();
589 return PRectangle(0, 0, sz.x, sz.y);
590 }
591
592 void Window::Show(bool show) {
593 GETWIN(id)->Show(show);
594 }
595
596 void Window::InvalidateAll() {
597 GETWIN(id)->Refresh(false);
598 }
599
600 void Window::InvalidateRectangle(PRectangle rc) {
601 wxRect r = wxRectFromPRectangle(rc);
602 GETWIN(id)->Refresh(false, &r);
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
639 GETWIN(id)->SetCursor(wxCursor(cursorId));
640 }
641
642
643 void Window::SetTitle(const char *s) {
644 // will convert from UTF-8 in unicode mode
645 wxString str(s, wxConvUTF8);
646 GETWIN(id)->SetTitle(str);
647 }
648
649
650 //----------------------------------------------------------------------
651 // Helper classes for ListBox
652
653 // A wxListBox that gives focus back to its parent if it gets it.
654 class wxSTCListBox : public wxListBox {
655 public:
656 wxSTCListBox(wxWindow* parent, wxWindowID id)
657 : wxListBox(parent, id, wxDefaultPosition, wxDefaultSize,
658 0, NULL, wxLB_SINGLE | wxSIMPLE_BORDER)
659 {}
660
661 void OnFocus(wxFocusEvent& event) {
662 GetParent()->SetFocus();
663 event.Skip();
664 }
665
666 private:
667 DECLARE_EVENT_TABLE()
668 };
669
670 BEGIN_EVENT_TABLE(wxSTCListBox, wxListBox)
671 EVT_SET_FOCUS(wxSTCListBox::OnFocus)
672 END_EVENT_TABLE()
673
674
675
676 // A window to place the listbox upon. If wxPopupWindow is supported then
677 // that will be used so the listbox can extend beyond the client area of the
678 // wxSTC if needed.
679
680 #if wxUSE_POPUPWIN
681 #include <wx/popupwin.h>
682 #define wxSTCListBoxWinBase wxPopupWindow
683 #define param2 wxBORDER_NONE // popup's 2nd param is flags
684 #else
685 #define wxSTCListBoxWinBase wxWindow
686 #define param2 -1 // wxWindows 2nd param is ID
687 #endif
688
689 class wxSTCListBoxWin : public wxSTCListBoxWinBase {
690 public:
691 wxSTCListBoxWin(wxWindow* parent, wxWindowID id)
692 : wxSTCListBoxWinBase(parent, param2) {
693 lb = new wxSTCListBox(this, id);
694 }
695
696 void OnSize(wxSizeEvent& event) {
697 lb->SetSize(GetSize());
698 }
699 void OnFocus(wxFocusEvent& event) {
700 GetParent()->SetFocus();
701 event.Skip();
702 }
703
704 wxListBox* GetLB() { return lb; }
705
706 #if wxUSE_POPUPWIN
707 virtual void DoSetSize(int x, int y,
708 int width, int height,
709 int sizeFlags = wxSIZE_AUTO) {
710 if (x != -1)
711 GetParent()->ClientToScreen(&x, NULL);
712 if (y != -1)
713 GetParent()->ClientToScreen(NULL, &y);
714 wxSTCListBoxWinBase::DoSetSize(x, y, width, height, sizeFlags);
715 }
716 #endif
717
718 private:
719 wxSTCListBox* lb;
720 DECLARE_EVENT_TABLE()
721 };
722
723 BEGIN_EVENT_TABLE(wxSTCListBoxWin, wxSTCListBoxWinBase)
724 EVT_SIZE (wxSTCListBoxWin::OnSize)
725 EVT_SET_FOCUS (wxSTCListBoxWin::OnFocus)
726 END_EVENT_TABLE()
727
728
729 inline wxListBox* GETLB(WindowID win) {
730 return (((wxSTCListBoxWin*)win)->GetLB());
731 }
732
733 //----------------------------------------------------------------------
734
735 ListBox::ListBox() {
736 }
737
738 ListBox::~ListBox() {
739 }
740
741 void ListBox::Create(Window &parent, int ctrlID) {
742 id = new wxSTCListBoxWin(GETWIN(parent.GetID()), ctrlID);
743 }
744
745 void ListBox::SetVisibleRows(int rows) {
746 desiredVisibleRows = rows;
747 }
748
749 PRectangle ListBox::GetDesiredRect() {
750 wxSize sz = GETLB(id)->GetBestSize();
751 PRectangle rc;
752 rc.top = 0;
753 rc.left = 0;
754 if (sz.x > 400)
755 sz.x = 400;
756 if (sz.y > 160) // TODO: Use desiredVisibleRows??
757 sz.y = 160;
758 rc.right = sz.x;
759 rc.bottom = sz.y;
760 return rc;
761 }
762
763 void ListBox::SetAverageCharWidth(int width) {
764 aveCharWidth = width;
765 }
766
767 void ListBox::SetFont(Font &font) {
768 GETLB(id)->SetFont(*((wxFont*)font.GetID()));
769 }
770
771 void ListBox::Clear() {
772 GETLB(id)->Clear();
773 }
774
775 void ListBox::Append(char *s) {
776 GETLB(id)->Append(s);
777 }
778
779 int ListBox::Length() {
780 return GETLB(id)->GetCount();
781 }
782
783 void ListBox::Select(int n) {
784 GETLB(id)->SetSelection(n);
785 #ifdef __WXGTK__
786 if (n > 4)
787 n = n - 4;
788 else
789 n = 1;
790 GETLB(id)->SetFirstItem(n);
791 #endif
792 }
793
794 int ListBox::GetSelection() {
795 return GETLB(id)->GetSelection();
796 }
797
798 int ListBox::Find(const char *prefix) {
799 // No longer used
800 return -1;
801 }
802
803 void ListBox::GetValue(int n, char *value, int len) {
804 wxString text = GETLB(id)->GetString(n);
805 strncpy(value, text.mb_str(wxConvUTF8), len);
806 value[len-1] = '\0';
807 }
808
809 void ListBox::Sort() {
810 }
811
812 //----------------------------------------------------------------------
813
814 Menu::Menu() : id(0) {
815 }
816
817 void Menu::CreatePopUp() {
818 Destroy();
819 id = new wxMenu();
820 }
821
822 void Menu::Destroy() {
823 if (id)
824 delete (wxMenu*)id;
825 id = 0;
826 }
827
828 void Menu::Show(Point pt, Window &w) {
829 GETWIN(w.GetID())->PopupMenu((wxMenu*)id, pt.x - 4, pt.y);
830 Destroy();
831 }
832
833 //----------------------------------------------------------------------
834
835 ColourDesired Platform::Chrome() {
836 wxColour c;
837 c = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
838 return ColourDesired(c.Red(), c.Green(), c.Blue());
839 }
840
841 ColourDesired Platform::ChromeHighlight() {
842 wxColour c;
843 c = wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT);
844 return ColourDesired(c.Red(), c.Green(), c.Blue());
845 }
846
847 const char *Platform::DefaultFont() {
848 static char buf[128];
849 strcpy(buf, wxNORMAL_FONT->GetFaceName().mbc_str());
850 return buf;
851 }
852
853 int Platform::DefaultFontSize() {
854 return 8;
855 }
856
857 unsigned int Platform::DoubleClickTime() {
858 return 500; // **** ::GetDoubleClickTime();
859 }
860
861 void Platform::DebugDisplay(const char *s) {
862 wxLogDebug(wxString(s, *wxConvCurrent));
863 }
864
865 bool Platform::IsKeyDown(int key) {
866 return false; // I don't think we'll need this.
867 }
868
869 long Platform::SendScintilla(WindowID w,
870 unsigned int msg,
871 unsigned long wParam,
872 long lParam) {
873
874 wxStyledTextCtrl* stc = (wxStyledTextCtrl*)w;
875 return stc->SendMsg(msg, wParam, lParam);
876 }
877
878
879 // These are utility functions not really tied to a platform
880
881 int Platform::Minimum(int a, int b) {
882 if (a < b)
883 return a;
884 else
885 return b;
886 }
887
888 int Platform::Maximum(int a, int b) {
889 if (a > b)
890 return a;
891 else
892 return b;
893 }
894
895 #define TRACE
896
897 void Platform::DebugPrintf(const char *format, ...) {
898 #ifdef TRACE
899 char buffer[2000];
900 va_list pArguments;
901 va_start(pArguments, format);
902 vsprintf(buffer,format,pArguments);
903 va_end(pArguments);
904 Platform::DebugDisplay(buffer);
905 #endif
906 }
907
908
909 static bool assertionPopUps = true;
910
911 bool Platform::ShowAssertionPopUps(bool assertionPopUps_) {
912 bool ret = assertionPopUps;
913 assertionPopUps = assertionPopUps_;
914 return ret;
915 }
916
917 void Platform::Assert(const char *c, const char *file, int line) {
918 char buffer[2000];
919 sprintf(buffer, "Assertion [%s] failed at %s %d", c, file, line);
920 if (assertionPopUps) {
921 int idButton = wxMessageBox(wxString(buffer, *wxConvCurrent),
922 wxT("Assertion failure"),
923 wxICON_HAND | wxOK);
924 // if (idButton == IDRETRY) {
925 // ::DebugBreak();
926 // } else if (idButton == IDIGNORE) {
927 // // all OK
928 // } else {
929 // abort();
930 // }
931 } else {
932 strcat(buffer, "\r\n");
933 Platform::DebugDisplay(buffer);
934 abort();
935 }
936 }
937
938
939 int Platform::Clamp(int val, int minVal, int maxVal) {
940 if (val > maxVal)
941 val = maxVal;
942 if (val < minVal)
943 val = minVal;
944 return val;
945 }
946
947
948 bool Platform::IsDBCSLeadByte(int codePage, char ch) {
949 return false;
950 }
951
952
953
954 //----------------------------------------------------------------------
955
956 ElapsedTime::ElapsedTime() {
957 wxStartTimer();
958 }
959
960 double ElapsedTime::Duration(bool reset) {
961 double result = wxGetElapsedTime(reset);
962 result /= 1000.0;
963 return result;
964 }
965
966
967 //----------------------------------------------------------------------
968
969
970
971