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