]> git.saurik.com Git - wxWidgets.git/blame - src/stc/PlatWX.cpp
Check whether SA_RESTART is defined and don't use it if it isn't.
[wxWidgets.git] / src / stc / PlatWX.cpp
CommitLineData
9ce192d4 1// Scintilla source code edit control
be5a51fb 2// PlatWX.cxx - implementation of platform facilities on wxWidgets
9ce192d4
RD
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
54429bb3
RD
7// For compilers that support precompilation, includes "wx.h".
8#include "wx/wxprec.h"
9
10#ifdef __BORLANDC__
11 #pragma hdrstop
12#endif
13
29825f5f 14#if wxUSE_STC
54429bb3
RD
15
16#ifndef WX_PRECOMP
29825f5f
PC
17 #include "wx/menu.h"
18 #include "wx/dcmemory.h"
19 #include "wx/settings.h"
54429bb3
RD
20#endif // WX_PRECOMP
21
f6bcfd97 22#include <ctype.h>
9ce192d4 23
7e0c58e9
RD
24#if wxUSE_DISPLAY
25#include "wx/display.h"
26#endif
27
d6655166
WS
28#include "wx/encconv.h"
29#include "wx/listctrl.h"
30#include "wx/mstream.h"
31#include "wx/image.h"
32#include "wx/imaglist.h"
1e9bafca 33#include "wx/tokenzr.h"
8b3d52fc 34
3fb1e059 35#ifdef wxHAS_RAW_BITMAP
6a93571d 36#include "wx/rawbmp.h"
8b6c20ce 37#endif
5cce237a
RD
38#if wxUSE_GRAPHICS_CONTEXT
39#include "wx/dcgraph.h"
40#endif
1a2fb4cd 41
9ce192d4 42#include "Platform.h"
1a2fb4cd 43#include "PlatWX.h"
9ce192d4 44#include "wx/stc/stc.h"
ea88e9bc 45#include "wx/stc/private.h"
9ce192d4 46
f97d84a6 47
f9ee2e27 48
9ce192d4 49Point Point::FromLong(long lpoint) {
f6bcfd97 50 return Point(lpoint & 0xFFFF, lpoint >> 16);
9ce192d4
RD
51}
52
53wxRect wxRectFromPRectangle(PRectangle prc) {
d13ea3aa
RD
54 wxRect r(prc.left, prc.top,
55 prc.Width(), prc.Height());
56 return r;
9ce192d4
RD
57}
58
59PRectangle PRectangleFromwxRect(wxRect rc) {
bec17edf 60 return PRectangle(rc.GetLeft(), rc.GetTop(),
04ebdf40 61 rc.GetRight()+1, rc.GetBottom()+1);
9ce192d4
RD
62}
63
1a2fb4cd
RD
64wxColour wxColourFromCA(const ColourAllocated& ca) {
65 ColourDesired cd(ca.AsLong());
c8b75e94
WS
66 return wxColour((unsigned char)cd.GetRed(),
67 (unsigned char)cd.GetGreen(),
68 (unsigned char)cd.GetBlue());
9ce192d4
RD
69}
70
5cce237a
RD
71wxColour wxColourFromCAandAlpha(const ColourAllocated& ca, int alpha) {
72 ColourDesired cd(ca.AsLong());
73 return wxColour((unsigned char)cd.GetRed(),
74 (unsigned char)cd.GetGreen(),
75 (unsigned char)cd.GetBlue(),
76 (unsigned char)alpha);
77}
78
1a2fb4cd 79//----------------------------------------------------------------------
9ce192d4
RD
80
81Palette::Palette() {
82 used = 0;
83 allowRealization = false;
b8193d80
RD
84 size = 100;
85 entries = new ColourPair[size];
9ce192d4
RD
86}
87
88Palette::~Palette() {
89 Release();
b8193d80
RD
90 delete [] entries;
91 entries = 0;
9ce192d4
RD
92}
93
94void Palette::Release() {
95 used = 0;
b8193d80
RD
96 delete [] entries;
97 size = 100;
98 entries = new ColourPair[size];
9ce192d4
RD
99}
100
101// This method either adds a colour to the list of wanted colours (want==true)
102// or retrieves the allocated colour back to the ColourPair.
103// This is one method to make it easier to keep the code for wanting and retrieving in sync.
104void Palette::WantFind(ColourPair &cp, bool want) {
105 if (want) {
106 for (int i=0; i < used; i++) {
107 if (entries[i].desired == cp.desired)
108 return;
109 }
110
b8193d80
RD
111 if (used >= size) {
112 int sizeNew = size * 2;
113 ColourPair *entriesNew = new ColourPair[sizeNew];
114 for (int j=0; j<size; j++) {
115 entriesNew[j] = entries[j];
116 }
117 delete []entries;
118 entries = entriesNew;
119 size = sizeNew;
9ce192d4 120 }
b8193d80
RD
121
122 entries[used].desired = cp.desired;
123 entries[used].allocated.Set(cp.desired.AsLong());
124 used++;
9ce192d4
RD
125 } else {
126 for (int i=0; i < used; i++) {
127 if (entries[i].desired == cp.desired) {
128 cp.allocated = entries[i].allocated;
129 return;
130 }
131 }
1a2fb4cd 132 cp.allocated.Set(cp.desired.AsLong());
9ce192d4
RD
133 }
134}
135
136void Palette::Allocate(Window &) {
137 if (allowRealization) {
138 }
139}
140
141
1a2fb4cd
RD
142//----------------------------------------------------------------------
143
9ce192d4
RD
144Font::Font() {
145 id = 0;
146 ascent = 0;
147}
148
149Font::~Font() {
150}
151
3f0640b0
VZ
152void Font::Create(const char *faceName, int characterSet,
153 int size, bool bold, bool italic,
8462a84b 154 bool WXUNUSED(extraFontFlag)) {
9ce192d4 155 Release();
1a2fb4cd 156
3727c043
RD
157 // The minus one is done because since Scintilla uses SC_SHARSET_DEFAULT
158 // internally and we need to have wxFONENCODING_DEFAULT == SC_SHARSET_DEFAULT
159 // so we adjust the encoding before passing it to Scintilla. See also
160 // wxStyledTextCtrl::StyleSetCharacterSet
161 wxFontEncoding encoding = (wxFontEncoding)(characterSet-1);
d35ad26e 162
10ef30eb
RD
163 wxFontEncodingArray ea = wxEncodingConverter::GetPlatformEquivalents(encoding);
164 if (ea.GetCount())
165 encoding = ea[0];
1a2fb4cd 166
d1558f3d 167 wxFont* font = new wxFont(size,
9ce192d4
RD
168 wxDEFAULT,
169 italic ? wxITALIC : wxNORMAL,
170 bold ? wxBOLD : wxNORMAL,
171 false,
0c5b83b0 172 stc2wx(faceName),
1a2fb4cd 173 encoding);
d1558f3d 174 id = font;
9ce192d4
RD
175}
176
177
178void Font::Release() {
179 if (id)
1a2fb4cd 180 delete (wxFont*)id;
9ce192d4
RD
181 id = 0;
182}
183
1a2fb4cd
RD
184//----------------------------------------------------------------------
185
186class SurfaceImpl : public Surface {
187private:
188 wxDC* hdc;
189 bool hdcOwned;
190 wxBitmap* bitmap;
191 int x;
192 int y;
193 bool unicodeMode;
9ce192d4 194
1a2fb4cd
RD
195public:
196 SurfaceImpl();
197 ~SurfaceImpl();
198
9e730a78
RD
199 virtual void Init(WindowID wid);
200 virtual void Init(SurfaceID sid, WindowID wid);
201 virtual void InitPixMap(int width, int height, Surface *surface_, WindowID wid);
202
203 virtual void Release();
204 virtual bool Initialised();
205 virtual void PenColour(ColourAllocated fore);
206 virtual int LogPixelsY();
207 virtual int DeviceHeightFont(int points);
208 virtual void MoveTo(int x_, int y_);
209 virtual void LineTo(int x_, int y_);
210 virtual void Polygon(Point *pts, int npts, ColourAllocated fore, ColourAllocated back);
211 virtual void RectangleDraw(PRectangle rc, ColourAllocated fore, ColourAllocated back);
212 virtual void FillRectangle(PRectangle rc, ColourAllocated back);
213 virtual void FillRectangle(PRectangle rc, Surface &surfacePattern);
214 virtual void RoundedRectangle(PRectangle rc, ColourAllocated fore, ColourAllocated back);
b8193d80
RD
215 virtual void AlphaRectangle(PRectangle rc, int cornerSize, ColourAllocated fill, int alphaFill,
216 ColourAllocated outline, int alphaOutline, int flags);
9e730a78
RD
217 virtual void Ellipse(PRectangle rc, ColourAllocated fore, ColourAllocated back);
218 virtual void Copy(PRectangle rc, Point from, Surface &surfaceSource);
219
220 virtual void DrawTextNoClip(PRectangle rc, Font &font_, int ybase, const char *s, int len, ColourAllocated fore, ColourAllocated back);
221 virtual void DrawTextClipped(PRectangle rc, Font &font_, int ybase, const char *s, int len, ColourAllocated fore, ColourAllocated back);
222 virtual void DrawTextTransparent(PRectangle rc, Font &font_, int ybase, const char *s, int len, ColourAllocated fore);
223 virtual void MeasureWidths(Font &font_, const char *s, int len, int *positions);
224 virtual int WidthText(Font &font_, const char *s, int len);
225 virtual int WidthChar(Font &font_, char ch);
226 virtual int Ascent(Font &font_);
227 virtual int Descent(Font &font_);
228 virtual int InternalLeading(Font &font_);
229 virtual int ExternalLeading(Font &font_);
230 virtual int Height(Font &font_);
231 virtual int AverageCharWidth(Font &font_);
232
233 virtual int SetPalette(Palette *pal, bool inBackGround);
234 virtual void SetClip(PRectangle rc);
235 virtual void FlushCachedState();
236
237 virtual void SetUnicodeMode(bool unicodeMode_);
238 virtual void SetDBCSMode(int codePage);
1a2fb4cd
RD
239
240 void BrushColour(ColourAllocated back);
241 void SetFont(Font &font_);
242};
243
244
245
246SurfaceImpl::SurfaceImpl() :
9ce192d4 247 hdc(0), hdcOwned(0), bitmap(0),
1a2fb4cd
RD
248 x(0), y(0), unicodeMode(0)
249{}
9ce192d4 250
1a2fb4cd 251SurfaceImpl::~SurfaceImpl() {
9ce192d4
RD
252 Release();
253}
254
9e730a78 255void SurfaceImpl::Init(WindowID wid) {
81b32ce5 256#if 0
9ce192d4
RD
257 Release();
258 hdc = new wxMemoryDC();
259 hdcOwned = true;
81b32ce5 260#else
09bb2551 261 // On Mac and GTK the DC is not really valid until it has a bitmap
81b32ce5
RD
262 // selected into it. So instead of just creating the DC with no bitmap,
263 // go ahead and give it one.
9e730a78 264 InitPixMap(1,1,NULL,wid);
0f713d48 265#endif
9ce192d4
RD
266}
267
9e730a78 268void SurfaceImpl::Init(SurfaceID hdc_, WindowID) {
9ce192d4 269 Release();
1a2fb4cd 270 hdc = (wxDC*)hdc_;
9ce192d4
RD
271}
272
88a8b04e 273void SurfaceImpl::InitPixMap(int width, int height, Surface *WXUNUSED(surface_), WindowID) {
9ce192d4 274 Release();
1a2fb4cd 275 hdc = new wxMemoryDC();
9ce192d4 276 hdcOwned = true;
2beb01db
RD
277 if (width < 1) width = 1;
278 if (height < 1) height = 1;
21156596 279 bitmap = new wxBitmap(width, height);
9ce192d4 280 ((wxMemoryDC*)hdc)->SelectObject(*bitmap);
9ce192d4
RD
281}
282
9e730a78
RD
283
284void SurfaceImpl::Release() {
285 if (bitmap) {
286 ((wxMemoryDC*)hdc)->SelectObject(wxNullBitmap);
287 delete bitmap;
288 bitmap = 0;
289 }
290 if (hdcOwned) {
291 delete hdc;
292 hdc = 0;
293 hdcOwned = false;
294 }
295}
296
297
298bool SurfaceImpl::Initialised() {
299 return hdc != 0;
300}
301
302
1a2fb4cd 303void SurfaceImpl::PenColour(ColourAllocated fore) {
cb129171 304 hdc->SetPen(wxPen(wxColourFromCA(fore)));
9ce192d4
RD
305}
306
1a2fb4cd 307void SurfaceImpl::BrushColour(ColourAllocated back) {
cb129171 308 hdc->SetBrush(wxBrush(wxColourFromCA(back)));
9ce192d4
RD
309}
310
1a2fb4cd 311void SurfaceImpl::SetFont(Font &font_) {
21156596 312 if (font_.GetID()) {
1a2fb4cd 313 hdc->SetFont(*((wxFont*)font_.GetID()));
f6bcfd97 314 }
9ce192d4
RD
315}
316
1a2fb4cd 317int SurfaceImpl::LogPixelsY() {
9ce192d4
RD
318 return hdc->GetPPI().y;
319}
320
1a2fb4cd 321int SurfaceImpl::DeviceHeightFont(int points) {
9968ba85 322 return points;
f6bcfd97
BP
323}
324
1a2fb4cd 325void SurfaceImpl::MoveTo(int x_, int y_) {
9ce192d4
RD
326 x = x_;
327 y = y_;
328}
329
1a2fb4cd 330void SurfaceImpl::LineTo(int x_, int y_) {
9ce192d4
RD
331 hdc->DrawLine(x,y, x_,y_);
332 x = x_;
333 y = y_;
334}
335
1a2fb4cd 336void SurfaceImpl::Polygon(Point *pts, int npts, ColourAllocated fore, ColourAllocated back) {
9ce192d4 337 PenColour(fore);
1a2fb4cd 338 BrushColour(back);
9ce192d4
RD
339 hdc->DrawPolygon(npts, (wxPoint*)pts);
340}
341
1a2fb4cd 342void SurfaceImpl::RectangleDraw(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
9ce192d4 343 PenColour(fore);
1a2fb4cd 344 BrushColour(back);
9ce192d4
RD
345 hdc->DrawRectangle(wxRectFromPRectangle(rc));
346}
347
1a2fb4cd
RD
348void SurfaceImpl::FillRectangle(PRectangle rc, ColourAllocated back) {
349 BrushColour(back);
9ce192d4
RD
350 hdc->SetPen(*wxTRANSPARENT_PEN);
351 hdc->DrawRectangle(wxRectFromPRectangle(rc));
352}
353
1a2fb4cd 354void SurfaceImpl::FillRectangle(PRectangle rc, Surface &surfacePattern) {
9ce192d4 355 wxBrush br;
1a2fb4cd
RD
356 if (((SurfaceImpl&)surfacePattern).bitmap)
357 br = wxBrush(*((SurfaceImpl&)surfacePattern).bitmap);
9ce192d4 358 else // Something is wrong so display in red
cb129171 359 br = wxBrush(*wxRED);
9ce192d4
RD
360 hdc->SetPen(*wxTRANSPARENT_PEN);
361 hdc->SetBrush(br);
362 hdc->DrawRectangle(wxRectFromPRectangle(rc));
363}
364
1a2fb4cd 365void SurfaceImpl::RoundedRectangle(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
9ce192d4 366 PenColour(fore);
1a2fb4cd 367 BrushColour(back);
f6bcfd97 368 hdc->DrawRoundedRectangle(wxRectFromPRectangle(rc), 4);
9ce192d4
RD
369}
370
6a93571d
RD
371#ifdef __WXMSW__
372#define wxPy_premultiply(p, a) ((p) * (a) / 0xff)
373#else
374#define wxPy_premultiply(p, a) (p)
375#endif
376
b8193d80
RD
377void SurfaceImpl::AlphaRectangle(PRectangle rc, int cornerSize,
378 ColourAllocated fill, int alphaFill,
6a93571d
RD
379 ColourAllocated outline, int alphaOutline,
380 int /*flags*/) {
5cce237a
RD
381#if wxUSE_GRAPHICS_CONTEXT
382 wxGCDC dc(*(wxMemoryDC*)hdc);
383 wxColour penColour(wxColourFromCAandAlpha(outline, alphaOutline));
384 wxColour brushColour(wxColourFromCAandAlpha(fill, alphaFill));
385 dc.SetPen(wxPen(penColour));
386 dc.SetBrush(wxBrush(brushColour));
387 dc.DrawRoundedRectangle(wxRectFromPRectangle(rc), cornerSize);
388 return;
389#else
390
3fb1e059 391#ifdef wxHAS_RAW_BITMAP
a3511a2e
RD
392
393 // TODO: do something with cornerSize
394 wxUnusedVar(cornerSize);
038c0333 395
6a93571d
RD
396 int x, y;
397 wxRect r = wxRectFromPRectangle(rc);
398 wxBitmap bmp(r.width, r.height, 32);
399 wxAlphaPixelData pixData(bmp);
6a93571d
RD
400
401 // Set the fill pixels
402 ColourDesired cdf(fill.AsLong());
403 int red = cdf.GetRed();
404 int green = cdf.GetGreen();
405 int blue = cdf.GetBlue();
406
407 wxAlphaPixelData::Iterator p(pixData);
408 for (y=0; y<r.height; y++) {
409 p.MoveTo(pixData, 0, y);
410 for (x=0; x<r.width; x++) {
411 p.Red() = wxPy_premultiply(red, alphaFill);
412 p.Green() = wxPy_premultiply(green, alphaFill);
413 p.Blue() = wxPy_premultiply(blue, alphaFill);
414 p.Alpha() = alphaFill;
038c0333 415 ++p;
6a93571d
RD
416 }
417 }
418
419 // Set the outline pixels
420 ColourDesired cdo(outline.AsLong());
421 red = cdo.GetRed();
422 green = cdo.GetGreen();
423 blue = cdo.GetBlue();
424 for (x=0; x<r.width; x++) {
425 p.MoveTo(pixData, x, 0);
426 p.Red() = wxPy_premultiply(red, alphaOutline);
427 p.Green() = wxPy_premultiply(green, alphaOutline);
428 p.Blue() = wxPy_premultiply(blue, alphaOutline);
038c0333 429 p.Alpha() = alphaOutline;
6a93571d
RD
430 p.MoveTo(pixData, x, r.height-1);
431 p.Red() = wxPy_premultiply(red, alphaOutline);
432 p.Green() = wxPy_premultiply(green, alphaOutline);
433 p.Blue() = wxPy_premultiply(blue, alphaOutline);
038c0333 434 p.Alpha() = alphaOutline;
6a93571d 435 }
b8193d80 436
6a93571d
RD
437 for (y=0; y<r.height; y++) {
438 p.MoveTo(pixData, 0, y);
439 p.Red() = wxPy_premultiply(red, alphaOutline);
440 p.Green() = wxPy_premultiply(green, alphaOutline);
441 p.Blue() = wxPy_premultiply(blue, alphaOutline);
038c0333 442 p.Alpha() = alphaOutline;
6a93571d
RD
443 p.MoveTo(pixData, r.width-1, y);
444 p.Red() = wxPy_premultiply(red, alphaOutline);
445 p.Green() = wxPy_premultiply(green, alphaOutline);
446 p.Blue() = wxPy_premultiply(blue, alphaOutline);
038c0333 447 p.Alpha() = alphaOutline;
6a93571d 448 }
038c0333 449
6a93571d
RD
450 // Draw the bitmap
451 hdc->DrawBitmap(bmp, r.x, r.y, true);
8b6c20ce
RD
452
453#else
454 wxUnusedVar(cornerSize);
455 wxUnusedVar(alphaFill);
456 wxUnusedVar(alphaOutline);
457 RectangleDraw(rc, outline, fill);
458#endif
5cce237a 459#endif
b8193d80
RD
460}
461
1a2fb4cd 462void SurfaceImpl::Ellipse(PRectangle rc, ColourAllocated fore, ColourAllocated back) {
9ce192d4 463 PenColour(fore);
1a2fb4cd 464 BrushColour(back);
9ce192d4
RD
465 hdc->DrawEllipse(wxRectFromPRectangle(rc));
466}
467
1a2fb4cd 468void SurfaceImpl::Copy(PRectangle rc, Point from, Surface &surfaceSource) {
f6bcfd97
BP
469 wxRect r = wxRectFromPRectangle(rc);
470 hdc->Blit(r.x, r.y, r.width, r.height,
1a2fb4cd
RD
471 ((SurfaceImpl&)surfaceSource).hdc,
472 from.x, from.y, wxCOPY);
9ce192d4
RD
473}
474
1a2fb4cd
RD
475void SurfaceImpl::DrawTextNoClip(PRectangle rc, Font &font, int ybase,
476 const char *s, int len,
477 ColourAllocated fore, ColourAllocated back) {
9ce192d4 478 SetFont(font);
1a2fb4cd
RD
479 hdc->SetTextForeground(wxColourFromCA(fore));
480 hdc->SetTextBackground(wxColourFromCA(back));
3d7a4fe8 481 FillRectangle(rc, back);
9ce192d4
RD
482
483 // ybase is where the baseline should be, but wxWin uses the upper left
484 // corner, so I need to calculate the real position for the text...
d13ea3aa 485 hdc->DrawText(stc2wx(s, len), rc.left, ybase - font.ascent);
9ce192d4
RD
486}
487
1a2fb4cd
RD
488void SurfaceImpl::DrawTextClipped(PRectangle rc, Font &font, int ybase,
489 const char *s, int len,
490 ColourAllocated fore, ColourAllocated back) {
9ce192d4 491 SetFont(font);
1a2fb4cd
RD
492 hdc->SetTextForeground(wxColourFromCA(fore));
493 hdc->SetTextBackground(wxColourFromCA(back));
3d7a4fe8 494 FillRectangle(rc, back);
9ce192d4
RD
495 hdc->SetClippingRegion(wxRectFromPRectangle(rc));
496
497 // see comments above
d13ea3aa 498 hdc->DrawText(stc2wx(s, len), rc.left, ybase - font.ascent);
3d7a4fe8 499 hdc->DestroyClippingRegion();
9ce192d4
RD
500}
501
9e730a78
RD
502
503void SurfaceImpl::DrawTextTransparent(PRectangle rc, Font &font, int ybase,
504 const char *s, int len,
505 ColourAllocated fore) {
506
9ce192d4 507 SetFont(font);
9e730a78 508 hdc->SetTextForeground(wxColourFromCA(fore));
cb129171 509 hdc->SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT);
1a2fb4cd 510
9e730a78
RD
511 // ybase is where the baseline should be, but wxWin uses the upper left
512 // corner, so I need to calculate the real position for the text...
d13ea3aa 513 hdc->DrawText(stc2wx(s, len), rc.left, ybase - font.ascent);
9e730a78 514
cb129171 515 hdc->SetBackgroundMode(wxBRUSHSTYLE_SOLID);
9ce192d4
RD
516}
517
1a2fb4cd 518
10ef30eb 519void SurfaceImpl::MeasureWidths(Font &font, const char *s, int len, int *positions) {
9e730a78 520
d1558f3d
RD
521 wxString str = stc2wx(s, len);
522 wxArrayInt tpos;
10ef30eb 523
d1558f3d 524 SetFont(font);
9e730a78 525
d1558f3d 526 hdc->GetPartialTextExtents(str, tpos);
10ef30eb
RD
527
528#if wxUSE_UNICODE
529 // Map the widths for UCS-2 characters back to the UTF-8 input string
9e730a78
RD
530 // NOTE: I don't think this is right for when sizeof(wxChar) > 2, ie wxGTK2
531 // so figure it out and fix it!
d1558f3d 532 size_t i = 0;
10ef30eb 533 size_t ui = 0;
d99859e4 534 while ((int)i < len) {
10ef30eb
RD
535 unsigned char uch = (unsigned char)s[i];
536 positions[i++] = tpos[ui];
537 if (uch >= 0x80) {
538 if (uch < (0x80 + 0x40 + 0x20)) {
539 positions[i++] = tpos[ui];
540 } else {
541 positions[i++] = tpos[ui];
542 positions[i++] = tpos[ui];
543 }
544 }
545 ui++;
546 }
547#else
548
549 // If not unicode then just use the widths we have
f3ee029e
MB
550#if wxUSE_STL
551 std::copy(tpos.begin(), tpos.end(), positions);
552#else
d1558f3d 553 memcpy(positions, tpos.begin(), len * sizeof(int));
10ef30eb 554#endif
f3ee029e 555#endif
9ce192d4
RD
556}
557
10ef30eb 558
9e730a78
RD
559int SurfaceImpl::WidthText(Font &font, const char *s, int len) {
560 SetFont(font);
561 int w;
562 int h;
563
564 hdc->GetTextExtent(stc2wx(s, len), &w, &h);
565 return w;
566}
567
568
1a2fb4cd 569int SurfaceImpl::WidthChar(Font &font, char ch) {
9ce192d4
RD
570 SetFont(font);
571 int w;
572 int h;
10ef30eb
RD
573 char s[2] = { ch, 0 };
574
0c5b83b0 575 hdc->GetTextExtent(stc2wx(s, 1), &w, &h);
9ce192d4
RD
576 return w;
577}
578
1a2fb4cd 579#define EXTENT_TEST wxT(" `~!@#$%^&*()-_=+\\|[]{};:\"\'<,>.?/1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
9ce192d4 580
1a2fb4cd 581int SurfaceImpl::Ascent(Font &font) {
9ce192d4
RD
582 SetFont(font);
583 int w, h, d, e;
584 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
585 font.ascent = h - d;
586 return font.ascent;
587}
588
1a2fb4cd 589int SurfaceImpl::Descent(Font &font) {
9ce192d4
RD
590 SetFont(font);
591 int w, h, d, e;
592 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
593 return d;
594}
595
88a8b04e 596int SurfaceImpl::InternalLeading(Font &WXUNUSED(font)) {
9ce192d4
RD
597 return 0;
598}
599
1a2fb4cd 600int SurfaceImpl::ExternalLeading(Font &font) {
9ce192d4
RD
601 SetFont(font);
602 int w, h, d, e;
603 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
604 return e;
605}
606
1a2fb4cd 607int SurfaceImpl::Height(Font &font) {
9ce192d4 608 SetFont(font);
d13ea3aa 609 return hdc->GetCharHeight() + 1;
9ce192d4
RD
610}
611
1a2fb4cd 612int SurfaceImpl::AverageCharWidth(Font &font) {
9ce192d4
RD
613 SetFont(font);
614 return hdc->GetCharWidth();
615}
616
88a8b04e 617int SurfaceImpl::SetPalette(Palette *WXUNUSED(pal), bool WXUNUSED(inBackGround)) {
65ec6247 618 return 0;
9ce192d4
RD
619}
620
1a2fb4cd 621void SurfaceImpl::SetClip(PRectangle rc) {
9ce192d4
RD
622 hdc->SetClippingRegion(wxRectFromPRectangle(rc));
623}
624
1a2fb4cd 625void SurfaceImpl::FlushCachedState() {
f6bcfd97 626}
9ce192d4 627
1a2fb4cd 628void SurfaceImpl::SetUnicodeMode(bool unicodeMode_) {
1a2fb4cd
RD
629 unicodeMode=unicodeMode_;
630}
631
88a8b04e 632void SurfaceImpl::SetDBCSMode(int WXUNUSED(codePage)) {
9e730a78
RD
633 // dbcsMode = codePage == SC_CP_DBCS;
634}
635
636
1a2fb4cd
RD
637Surface *Surface::Allocate() {
638 return new SurfaceImpl;
639}
640
641
642//----------------------------------------------------------------------
643
644
645inline wxWindow* GETWIN(WindowID id) { return (wxWindow*)id; }
646
9ce192d4
RD
647Window::~Window() {
648}
649
650void Window::Destroy() {
9e730a78 651 if (id) {
7e126a07 652 Show(false);
1a2fb4cd 653 GETWIN(id)->Destroy();
9e730a78 654 }
9ce192d4
RD
655 id = 0;
656}
657
658bool Window::HasFocus() {
1a2fb4cd 659 return wxWindow::FindFocus() == GETWIN(id);
9ce192d4
RD
660}
661
662PRectangle Window::GetPosition() {
9e730a78 663 if (! id) return PRectangle();
1a2fb4cd 664 wxRect rc(GETWIN(id)->GetPosition(), GETWIN(id)->GetSize());
9ce192d4
RD
665 return PRectangleFromwxRect(rc);
666}
667
668void Window::SetPosition(PRectangle rc) {
f6bcfd97 669 wxRect r = wxRectFromPRectangle(rc);
1a2fb4cd 670 GETWIN(id)->SetSize(r);
9ce192d4
RD
671}
672
673void Window::SetPositionRelative(PRectangle rc, Window) {
674 SetPosition(rc); // ????
675}
676
677PRectangle Window::GetClientPosition() {
9e730a78 678 if (! id) return PRectangle();
1a2fb4cd 679 wxSize sz = GETWIN(id)->GetClientSize();
21156596 680 return PRectangle(0, 0, sz.x, sz.y);
9ce192d4
RD
681}
682
683void Window::Show(bool show) {
1a2fb4cd 684 GETWIN(id)->Show(show);
9ce192d4
RD
685}
686
687void Window::InvalidateAll() {
1a2fb4cd 688 GETWIN(id)->Refresh(false);
9ce192d4
RD
689}
690
691void Window::InvalidateRectangle(PRectangle rc) {
f6bcfd97 692 wxRect r = wxRectFromPRectangle(rc);
1a2fb4cd 693 GETWIN(id)->Refresh(false, &r);
9ce192d4
RD
694}
695
696void Window::SetFont(Font &font) {
1a2fb4cd 697 GETWIN(id)->SetFont(*((wxFont*)font.GetID()));
9ce192d4
RD
698}
699
700void Window::SetCursor(Cursor curs) {
d4f392ea 701 wxStockCursor cursorId;
9ce192d4
RD
702
703 switch (curs) {
704 case cursorText:
705 cursorId = wxCURSOR_IBEAM;
706 break;
707 case cursorArrow:
708 cursorId = wxCURSOR_ARROW;
709 break;
710 case cursorUp:
711 cursorId = wxCURSOR_ARROW; // ** no up arrow... wxCURSOR_UPARROW;
712 break;
713 case cursorWait:
714 cursorId = wxCURSOR_WAIT;
715 break;
716 case cursorHoriz:
717 cursorId = wxCURSOR_SIZEWE;
718 break;
719 case cursorVert:
720 cursorId = wxCURSOR_SIZENS;
721 break;
722 case cursorReverseArrow:
15dadf31 723 cursorId = wxCURSOR_RIGHT_ARROW;
9ce192d4 724 break;
9e730a78
RD
725 case cursorHand:
726 cursorId = wxCURSOR_HAND;
1e545382 727 break;
9ce192d4
RD
728 default:
729 cursorId = wxCURSOR_ARROW;
730 break;
731 }
d4f392ea
FM
732
733 wxCursor wc = wxCursor(cursorId);
734 if(curs != cursorLast)
735 {
736 GETWIN(id)->SetCursor(wc);
737 cursorLast = curs;
738 }
9ce192d4
RD
739}
740
741
742void Window::SetTitle(const char *s) {
fd39aa23 743 GETWIN(id)->SetLabel(stc2wx(s));
9ce192d4
RD
744}
745
746
7e0c58e9
RD
747// Returns rectangle of monitor pt is on
748PRectangle Window::GetMonitorRect(Point pt) {
749 wxRect rect;
750 if (! id) return PRectangle();
751#if wxUSE_DISPLAY
752 // Get the display the point is found on
753 int n = wxDisplay::GetFromPoint(wxPoint(pt.x, pt.y));
754 wxDisplay dpy(n == wxNOT_FOUND ? 0 : n);
755 rect = dpy.GetGeometry();
756#endif
757 return PRectangleFromwxRect(rect);
758}
759
769a9cb2
RD
760//----------------------------------------------------------------------
761// Helper classes for ListBox
762
267484bc 763
b0d0494f 764// This is a simple subclass of wxListView that just resets focus to the
9e730a78
RD
765// parent when it gets it.
766class wxSTCListBox : public wxListView {
451c5cc7 767public:
9e730a78
RD
768 wxSTCListBox(wxWindow* parent, wxWindowID id,
769 const wxPoint& pos, const wxSize& size,
770 long style)
382fe640
RD
771 : wxListView()
772 {
773#ifdef __WXMSW__
774 Hide(); // don't flicker as we move it around...
775#endif
776 Create(parent, id, pos, size, style);
777 }
451c5cc7 778
7e126a07 779
451c5cc7
RD
780 void OnFocus(wxFocusEvent& event) {
781 GetParent()->SetFocus();
782 event.Skip();
783 }
784
5f9eb69c 785 void OnKillFocus(wxFocusEvent& WXUNUSED(event)) {
b0d0494f
RD
786 // Do nothing. Prevents base class from resetting the colors...
787 }
7e126a07 788
719ee9c3
RD
789#ifdef __WXMAC__
790 // For some reason I don't understand yet the focus doesn't really leave
791 // the listbox like it should, so if we get any events feed them back to
792 // the wxSTC
793 void OnKeyDown(wxKeyEvent& event) {
794 GetGrandParent()->GetEventHandler()->ProcessEvent(event);
795 }
796 void OnChar(wxKeyEvent& event) {
797 GetGrandParent()->GetEventHandler()->ProcessEvent(event);
798 }
b0d0494f 799
719ee9c3
RD
800 // And we need to force the focus back when being destroyed
801 ~wxSTCListBox() {
802 GetGrandParent()->SetFocus();
7e126a07
WS
803 }
804#endif
805
451c5cc7
RD
806private:
807 DECLARE_EVENT_TABLE()
808};
809
9e730a78
RD
810BEGIN_EVENT_TABLE(wxSTCListBox, wxListView)
811 EVT_SET_FOCUS( wxSTCListBox::OnFocus)
b0d0494f 812 EVT_KILL_FOCUS(wxSTCListBox::OnKillFocus)
719ee9c3
RD
813#ifdef __WXMAC__
814 EVT_KEY_DOWN( wxSTCListBox::OnKeyDown)
815 EVT_CHAR( wxSTCListBox::OnChar)
816#endif
451c5cc7
RD
817END_EVENT_TABLE()
818
819
820
d35ad26e 821#if wxUSE_POPUPWIN //-----------------------------------
819850ff 822#include "wx/popupwin.h"
382fe640
RD
823
824
825//
826// TODO: Refactor these two classes to have a common base (or a mix-in) to get
827// rid of the code duplication. (Either that or convince somebody to
828// implement wxPopupWindow for the Mac!!)
829//
830// In the meantime, be careful to duplicate any changes as needed...
d35ad26e
WS
831//
832
833// A popup window to place the wxSTCListBox upon
382fe640
RD
834class wxSTCListBoxWin : public wxPopupWindow
835{
836private:
837 wxListView* lv;
838 CallBackAction doubleClickAction;
839 void* doubleClickActionData;
840public:
d35ad26e 841 wxSTCListBoxWin(wxWindow* parent, wxWindowID id, Point WXUNUSED(location)) :
382fe640
RD
842 wxPopupWindow(parent, wxBORDER_NONE)
843 {
038c0333 844
382fe640
RD
845 SetBackgroundColour(*wxBLACK); // for our simple border
846
67879c5b 847 lv = new wxSTCListBox(parent, id, wxPoint(-50,-50), wxDefaultSize,
382fe640
RD
848 wxLC_REPORT | wxLC_SINGLE_SEL | wxLC_NO_HEADER | wxBORDER_NONE);
849 lv->SetCursor(wxCursor(wxCURSOR_ARROW));
850 lv->InsertColumn(0, wxEmptyString);
851 lv->InsertColumn(1, wxEmptyString);
852
853 // NOTE: We need to fool the wxListView into thinking that it has the
854 // focus so it will use the normal selection colour and will look
855 // "right" to the user. But since the wxPopupWindow or its children
856 // can't receive focus then we have to pull a fast one and temporarily
857 // parent the listctrl on the STC window and then call SetFocus and
d35ad26e 858 // then reparent it back to the popup.
382fe640
RD
859 lv->SetFocus();
860 lv->Reparent(this);
861#ifdef __WXMSW__
862 lv->Show();
863#endif
864 }
865
866
867 // Set position in client coords
868 virtual void DoSetSize(int x, int y,
869 int width, int height,
870 int sizeFlags = wxSIZE_AUTO) {
871 if (x != wxDefaultCoord) {
872 GetParent()->ClientToScreen(&x, NULL);
873 }
874 if (y != wxDefaultCoord) {
875 GetParent()->ClientToScreen(NULL, &y);
876 }
877 wxPopupWindow::DoSetSize(x, y, width, height, sizeFlags);
878 }
879
880 // return position as if it were in client coords
881 virtual void DoGetPosition( int *x, int *y ) const {
882 int sx, sy;
883 wxPopupWindow::DoGetPosition(&sx, &sy);
884 GetParent()->ScreenToClient(&sx, &sy);
885 if (x) *x = sx;
886 if (y) *y = sy;
887 }
888
889
890 bool Destroy() {
891 if ( !wxPendingDelete.Member(this) )
892 wxPendingDelete.Append(this);
893 return true;
894 }
895
896
897 int IconWidth() {
898 wxImageList* il = lv->GetImageList(wxIMAGE_LIST_SMALL);
899 if (il != NULL) {
900 int w, h;
901 il->GetSize(0, w, h);
902 return w;
903 }
904 return 0;
905 }
906
907
908 void SetDoubleClickAction(CallBackAction action, void *data) {
909 doubleClickAction = action;
910 doubleClickActionData = data;
911 }
912
913
914 void OnFocus(wxFocusEvent& event) {
915 GetParent()->SetFocus();
916 event.Skip();
917 }
918
919 void OnSize(wxSizeEvent& event) {
920 // resize the child
921 wxSize sz = GetSize();
922 sz.x -= 2;
923 sz.y -= 2;
924 lv->SetSize(1, 1, sz.x, sz.y);
925 // reset the column widths
926 lv->SetColumnWidth(0, IconWidth()+4);
927 lv->SetColumnWidth(1, sz.x - 2 - lv->GetColumnWidth(0) -
928 wxSystemSettings::GetMetric(wxSYS_VSCROLL_X));
929 event.Skip();
930 }
931
932 void OnActivate(wxListEvent& WXUNUSED(event)) {
933 doubleClickAction(doubleClickActionData);
934 }
935
936 wxListView* GetLB() { return lv; }
937
938private:
939 DECLARE_EVENT_TABLE()
940
941};
942
943BEGIN_EVENT_TABLE(wxSTCListBoxWin, wxPopupWindow)
944 EVT_SET_FOCUS ( wxSTCListBoxWin::OnFocus)
945 EVT_SIZE ( wxSTCListBoxWin::OnSize)
946 EVT_LIST_ITEM_ACTIVATED(wxID_ANY, wxSTCListBoxWin::OnActivate)
947END_EVENT_TABLE()
948
d35ad26e 949
382fe640 950
67879c5b 951#else // !wxUSE_POPUPWIN -----------------------------------
819850ff 952#include "wx/frame.h"
267484bc 953
67879c5b
RD
954// A normal window to place the wxSTCListBox upon, but make it behave as much
955// like a wxPopupWindow as possible
956class wxSTCListBoxWin : public wxFrame {
9e730a78
RD
957private:
958 wxListView* lv;
959 CallBackAction doubleClickAction;
960 void* doubleClickActionData;
f97d84a6 961public:
1e9bafca 962 wxSTCListBoxWin(wxWindow* parent, wxWindowID id, Point location) :
67879c5b
RD
963 wxFrame(parent, id, wxEmptyString, wxPoint(location.x, location.y), wxSize(0,0),
964 wxFRAME_NO_TASKBAR
965 | wxFRAME_FLOAT_ON_PARENT
966#ifdef __WXMAC__
038c0333 967 | wxPOPUP_WINDOW
67879c5b
RD
968 | wxNO_BORDER
969#else
970 | wxSIMPLE_BORDER
971#endif
972 )
9e730a78
RD
973 {
974
9e730a78
RD
975 lv = new wxSTCListBox(this, id, wxDefaultPosition, wxDefaultSize,
976 wxLC_REPORT | wxLC_SINGLE_SEL | wxLC_NO_HEADER | wxNO_BORDER);
977 lv->SetCursor(wxCursor(wxCURSOR_ARROW));
978 lv->InsertColumn(0, wxEmptyString);
979 lv->InsertColumn(1, wxEmptyString);
b0d0494f
RD
980
981 // Eventhough we immediately reset the focus to the parent, this helps
982 // things to look right...
983 lv->SetFocus();
984
6612393c 985 Hide();
038c0333 986 }
6612393c 987
7e126a07 988
a4f3565e
RD
989 // On OSX and (possibly others) there can still be pending
990 // messages/events for the list control when Scintilla wants to
991 // close it, so do a pending delete of it instead of destroying
992 // immediately.
67879c5b
RD
993 bool Destroy()
994 {
d13ea3aa 995#ifdef __WXMAC__
719ee9c3 996 // The bottom edge of this window is not getting properly
d13ea3aa
RD
997 // refreshed upon deletion, so help it out...
998 wxWindow* p = GetParent();
999 wxRect r(GetPosition(), GetSize());
1000 r.SetHeight(r.GetHeight()+1);
1001 p->Refresh(false, &r);
1002#endif
a4f3565e
RD
1003 if ( !wxPendingDelete.Member(this) )
1004 wxPendingDelete.Append(this);
7e126a07 1005 return true;
f97d84a6
RD
1006 }
1007
7e126a07 1008
67879c5b
RD
1009 int IconWidth()
1010 {
9e730a78
RD
1011 wxImageList* il = lv->GetImageList(wxIMAGE_LIST_SMALL);
1012 if (il != NULL) {
1013 int w, h;
1014 il->GetSize(0, w, h);
1015 return w;
1016 }
1017 return 0;
1018 }
f97d84a6 1019
769a9cb2 1020
67879c5b
RD
1021 void SetDoubleClickAction(CallBackAction action, void *data)
1022 {
9e730a78
RD
1023 doubleClickAction = action;
1024 doubleClickActionData = data;
1025 }
451c5cc7 1026
769a9cb2 1027
67879c5b
RD
1028 void OnFocus(wxFocusEvent& event)
1029 {
1030 ActivateParent();
9e730a78
RD
1031 GetParent()->SetFocus();
1032 event.Skip();
1033 }
769a9cb2 1034
67879c5b
RD
1035 void OnSize(wxSizeEvent& event)
1036 {
d13ea3aa 1037 // resize the child
9e730a78 1038 wxSize sz = GetClientSize();
d13ea3aa 1039 lv->SetSize(sz);
9e730a78
RD
1040 // reset the column widths
1041 lv->SetColumnWidth(0, IconWidth()+4);
1042 lv->SetColumnWidth(1, sz.x - 2 - lv->GetColumnWidth(0) -
1043 wxSystemSettings::GetMetric(wxSYS_VSCROLL_X));
1044 event.Skip();
769a9cb2 1045 }
769a9cb2 1046
67879c5b
RD
1047 void ActivateParent()
1048 {
1049 // Although we're a frame, we always want the parent to be active, so
1050 // raise it whenever we get shown, focused, etc.
1051 wxTopLevelWindow *frame = wxDynamicCast(
1052 wxGetTopLevelParent(GetParent()), wxTopLevelWindow);
1053 if (frame)
1054 frame->Raise();
1055 }
038c0333 1056
67879c5b
RD
1057
1058 virtual void DoSetSize(int x, int y,
1059 int width, int height,
1060 int sizeFlags = wxSIZE_AUTO)
1061 {
1062 // convert coords to screen coords since we're a top-level window
1063 if (x != wxDefaultCoord) {
1064 GetParent()->ClientToScreen(&x, NULL);
1065 }
1066 if (y != wxDefaultCoord) {
1067 GetParent()->ClientToScreen(NULL, &y);
1068 }
1069 wxFrame::DoSetSize(x, y, width, height, sizeFlags);
1070 }
1071
1072 virtual bool Show(bool show = true)
1073 {
1074 bool rv = wxFrame::Show(show);
1075 if (rv && show)
1076 ActivateParent();
719493e1 1077#ifdef __WXMAC__
719493e1 1078 GetParent()->Refresh(false);
67879c5b 1079#endif
719493e1
RD
1080 return rv;
1081 }
d35ad26e 1082
67879c5b
RD
1083 void OnActivate(wxListEvent& WXUNUSED(event))
1084 {
9e730a78 1085 doubleClickAction(doubleClickActionData);
769a9cb2 1086 }
9e730a78
RD
1087
1088 wxListView* GetLB() { return lv; }
769a9cb2
RD
1089
1090private:
769a9cb2
RD
1091 DECLARE_EVENT_TABLE()
1092};
1093
9e730a78
RD
1094
1095BEGIN_EVENT_TABLE(wxSTCListBoxWin, wxWindow)
7e126a07
WS
1096 EVT_SET_FOCUS ( wxSTCListBoxWin::OnFocus)
1097 EVT_SIZE ( wxSTCListBoxWin::OnSize)
1098 EVT_LIST_ITEM_ACTIVATED(wxID_ANY, wxSTCListBoxWin::OnActivate)
769a9cb2 1099END_EVENT_TABLE()
769a9cb2 1100
382fe640 1101#endif // wxUSE_POPUPWIN -----------------------------------
9e730a78
RD
1102
1103
1104inline wxSTCListBoxWin* GETLBW(WindowID win) {
1105 return ((wxSTCListBoxWin*)win);
1106}
1107
1108inline wxListView* GETLB(WindowID win) {
1109 return GETLBW(win)->GetLB();
1a2fb4cd 1110}
769a9cb2
RD
1111
1112//----------------------------------------------------------------------
1113
9e730a78
RD
1114class ListBoxImpl : public ListBox {
1115private:
1116 int lineHeight;
1117 bool unicodeMode;
1118 int desiredVisibleRows;
1119 int aveCharWidth;
80cac95e 1120 size_t maxStrWidth;
1e9bafca 1121 Point location; // Caret location at which the list is opened
9e730a78
RD
1122 wxImageList* imgList;
1123 wxArrayInt* imgTypeMap;
1124
1125public:
1126 ListBoxImpl();
1127 ~ListBoxImpl();
1128
1129 virtual void SetFont(Font &font);
1e9bafca 1130 virtual void Create(Window &parent, int ctrlID, Point location_, int lineHeight_, bool unicodeMode_);
9e730a78
RD
1131 virtual void SetAverageCharWidth(int width);
1132 virtual void SetVisibleRows(int rows);
1e9bafca 1133 virtual int GetVisibleRows() const;
9e730a78
RD
1134 virtual PRectangle GetDesiredRect();
1135 virtual int CaretFromEdge();
1136 virtual void Clear();
1137 virtual void Append(char *s, int type = -1);
1e9bafca 1138 void Append(const wxString& text, int type);
9e730a78
RD
1139 virtual int Length();
1140 virtual void Select(int n);
1141 virtual int GetSelection();
1142 virtual int Find(const char *prefix);
1143 virtual void GetValue(int n, char *value, int len);
9e730a78
RD
1144 virtual void RegisterImage(int type, const char *xpm_data);
1145 virtual void ClearRegisteredImages();
1146 virtual void SetDoubleClickAction(CallBackAction, void *);
1e9bafca 1147 virtual void SetList(const char* list, char separator, char typesep);
9e730a78
RD
1148};
1149
1150
1151ListBoxImpl::ListBoxImpl()
1152 : lineHeight(10), unicodeMode(false),
1153 desiredVisibleRows(5), aveCharWidth(8), maxStrWidth(0),
1154 imgList(NULL), imgTypeMap(NULL)
1155{
9ce192d4
RD
1156}
1157
9e730a78
RD
1158ListBoxImpl::~ListBoxImpl() {
1159 if (imgList) {
1160 delete imgList;
1161 imgList = NULL;
1162 }
1163 if (imgTypeMap) {
1164 delete imgTypeMap;
1165 imgTypeMap = NULL;
1166 }
9ce192d4
RD
1167}
1168
9e730a78
RD
1169
1170void ListBoxImpl::SetFont(Font &font) {
1171 GETLB(id)->SetFont(*((wxFont*)font.GetID()));
1172}
1173
1174
1e9bafca
RD
1175void ListBoxImpl::Create(Window &parent, int ctrlID, Point location_, int lineHeight_, bool unicodeMode_) {
1176 location = location_;
9e730a78
RD
1177 lineHeight = lineHeight_;
1178 unicodeMode = unicodeMode_;
1179 maxStrWidth = 0;
1e9bafca 1180 id = new wxSTCListBoxWin(GETWIN(parent.GetID()), ctrlID, location);
9e730a78
RD
1181 if (imgList != NULL)
1182 GETLB(id)->SetImageList(imgList, wxIMAGE_LIST_SMALL);
9ce192d4
RD
1183}
1184
9e730a78
RD
1185
1186void ListBoxImpl::SetAverageCharWidth(int width) {
1187 aveCharWidth = width;
1188}
1189
1190
1191void ListBoxImpl::SetVisibleRows(int rows) {
769a9cb2 1192 desiredVisibleRows = rows;
f3c2c221
RD
1193}
1194
9e730a78 1195
1e9bafca
RD
1196int ListBoxImpl::GetVisibleRows() const {
1197 return desiredVisibleRows;
1198}
1199
9e730a78
RD
1200PRectangle ListBoxImpl::GetDesiredRect() {
1201 // wxListCtrl doesn't have a DoGetBestSize, so instead we kept track of
1202 // the max size in Append and calculate it here...
1e9bafca 1203 int maxw = maxStrWidth * aveCharWidth;
1e545382 1204 int maxh ;
9e730a78
RD
1205
1206 // give it a default if there are no lines, and/or add a bit more
1207 if (maxw == 0) maxw = 100;
1208 maxw += aveCharWidth * 3 +
1209 GETLBW(id)->IconWidth() + wxSystemSettings::GetMetric(wxSYS_VSCROLL_X);
1210 if (maxw > 350)
1211 maxw = 350;
1212
1213 // estimate a desired height
1214 int count = GETLB(id)->GetItemCount();
1215 if (count) {
1216 wxRect rect;
1217 GETLB(id)->GetItemRect(0, rect);
1218 maxh = count * rect.GetHeight();
1219 if (maxh > 140) // TODO: Use desiredVisibleRows??
1220 maxh = 140;
1221
1222 // Try to make the size an exact multiple of some number of lines
1223 int lines = maxh / rect.GetHeight();
1224 maxh = (lines + 1) * rect.GetHeight() + 2;
1225 }
1226 else
1227 maxh = 100;
1228
d134f170
RD
1229 PRectangle rc;
1230 rc.top = 0;
1231 rc.left = 0;
9e730a78
RD
1232 rc.right = maxw;
1233 rc.bottom = maxh;
d134f170
RD
1234 return rc;
1235}
1236
d134f170 1237
9e730a78
RD
1238int ListBoxImpl::CaretFromEdge() {
1239 return 4 + GETLBW(id)->IconWidth();
d134f170
RD
1240}
1241
9e730a78
RD
1242
1243void ListBoxImpl::Clear() {
1244 GETLB(id)->DeleteAllItems();
9ce192d4
RD
1245}
1246
9e730a78
RD
1247
1248void ListBoxImpl::Append(char *s, int type) {
1e9bafca
RD
1249 Append(stc2wx(s), type);
1250}
1251
1252void ListBoxImpl::Append(const wxString& text, int type) {
9e730a78
RD
1253 long count = GETLB(id)->GetItemCount();
1254 long itemID = GETLB(id)->InsertItem(count, wxEmptyString);
038c0333 1255 long idx = -1;
9e730a78 1256 GETLB(id)->SetItem(itemID, 1, text);
d35ad26e 1257 maxStrWidth = wxMax(maxStrWidth, text.length());
9e730a78
RD
1258 if (type != -1) {
1259 wxCHECK_RET(imgTypeMap, wxT("Unexpected NULL imgTypeMap"));
d67c3388 1260 idx = imgTypeMap->Item(type);
9e730a78 1261 }
d67c3388 1262 GETLB(id)->SetItemImage(itemID, idx, idx);
9ce192d4
RD
1263}
1264
1e9bafca
RD
1265void ListBoxImpl::SetList(const char* list, char separator, char typesep) {
1266 GETLB(id)->Freeze();
d35ad26e 1267 Clear();
1e9bafca
RD
1268 wxStringTokenizer tkzr(stc2wx(list), (wxChar)separator);
1269 while ( tkzr.HasMoreTokens() ) {
1270 wxString token = tkzr.GetNextToken();
1271 long type = -1;
1272 int pos = token.Find(typesep);
1273 if (pos != -1) {
1274 token.Mid(pos+1).ToLong(&type);
1275 token.Truncate(pos);
1276 }
1277 Append(token, (int)type);
1278 }
1279 GETLB(id)->Thaw();
1280}
1281
9e730a78
RD
1282
1283int ListBoxImpl::Length() {
1284 return GETLB(id)->GetItemCount();
9ce192d4
RD
1285}
1286
9e730a78
RD
1287
1288void ListBoxImpl::Select(int n) {
7e126a07 1289 bool select = true;
895066d8
RD
1290 if (n == -1) {
1291 n = 0;
7e126a07 1292 select = false;
895066d8 1293 }
67879c5b 1294 GETLB(id)->EnsureVisible(n);
9e730a78 1295 GETLB(id)->Select(n, select);
9ce192d4
RD
1296}
1297
9e730a78
RD
1298
1299int ListBoxImpl::GetSelection() {
1300 return GETLB(id)->GetFirstSelected();
9ce192d4
RD
1301}
1302
9e730a78 1303
88a8b04e 1304int ListBoxImpl::Find(const char *WXUNUSED(prefix)) {
b8b0e402 1305 // No longer used
7e126a07 1306 return wxNOT_FOUND;
9ce192d4
RD
1307}
1308
9e730a78
RD
1309
1310void ListBoxImpl::GetValue(int n, char *value, int len) {
1311 wxListItem item;
1312 item.SetId(n);
1313 item.SetColumn(1);
1314 item.SetMask(wxLIST_MASK_TEXT);
1315 GETLB(id)->GetItem(item);
1316 strncpy(value, wx2stc(item.GetText()), len);
9ce192d4
RD
1317 value[len-1] = '\0';
1318}
1319
9e730a78
RD
1320
1321void ListBoxImpl::RegisterImage(int type, const char *xpm_data) {
1322 wxMemoryInputStream stream(xpm_data, strlen(xpm_data)+1);
c8b75e94
WS
1323 wxImage img(stream, wxBITMAP_TYPE_XPM);
1324 wxBitmap bmp(img);
9e730a78
RD
1325
1326 if (! imgList) {
1327 // assumes all images are the same size
7e126a07 1328 imgList = new wxImageList(bmp.GetWidth(), bmp.GetHeight(), true);
9e730a78
RD
1329 imgTypeMap = new wxArrayInt;
1330 }
1331
1332 int idx = imgList->Add(bmp);
1333
1334 // do we need to extend the mapping array?
1335 wxArrayInt& itm = *imgTypeMap;
9a8ffadd 1336 if ( itm.GetCount() < (size_t)type+1)
9e730a78
RD
1337 itm.Add(-1, type - itm.GetCount() + 1);
1338
1339 // Add an item that maps type to the image index
1340 itm[type] = idx;
1341}
1342
1343void ListBoxImpl::ClearRegisteredImages() {
1344 if (imgList) {
1345 delete imgList;
1346 imgList = NULL;
1347 }
1348 if (imgTypeMap) {
1349 delete imgTypeMap;
1350 imgTypeMap = NULL;
1351 }
1352 if (id)
1353 GETLB(id)->SetImageList(NULL, wxIMAGE_LIST_SMALL);
1354}
1355
1356
1357void ListBoxImpl::SetDoubleClickAction(CallBackAction action, void *data) {
1358 GETLBW(id)->SetDoubleClickAction(action, data);
1359}
1360
1361
9e730a78
RD
1362ListBox::ListBox() {
1363}
1364
1365ListBox::~ListBox() {
1366}
1367
1368ListBox *ListBox::Allocate() {
1369 return new ListBoxImpl();
9ce192d4
RD
1370}
1371
1a2fb4cd 1372//----------------------------------------------------------------------
9ce192d4
RD
1373
1374Menu::Menu() : id(0) {
1375}
1376
1377void Menu::CreatePopUp() {
1378 Destroy();
1379 id = new wxMenu();
1380}
1381
1382void Menu::Destroy() {
1383 if (id)
1a2fb4cd 1384 delete (wxMenu*)id;
9ce192d4
RD
1385 id = 0;
1386}
1387
1388void Menu::Show(Point pt, Window &w) {
1a2fb4cd 1389 GETWIN(w.GetID())->PopupMenu((wxMenu*)id, pt.x - 4, pt.y);
9ce192d4
RD
1390 Destroy();
1391}
1392
1a2fb4cd 1393//----------------------------------------------------------------------
9ce192d4 1394
88a8b04e 1395DynamicLibrary *DynamicLibrary::Load(const char *WXUNUSED(modulePath)) {
e14d10b0
RD
1396 wxFAIL_MSG(wxT("Dynamic lexer loading not implemented yet"));
1397 return NULL;
1398}
1399
1400//----------------------------------------------------------------------
1401
1a2fb4cd 1402ColourDesired Platform::Chrome() {
9ce192d4 1403 wxColour c;
e1c6c6ae 1404 c = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
1a2fb4cd 1405 return ColourDesired(c.Red(), c.Green(), c.Blue());
9ce192d4
RD
1406}
1407
1a2fb4cd 1408ColourDesired Platform::ChromeHighlight() {
9ce192d4 1409 wxColour c;
e1c6c6ae 1410 c = wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT);
1a2fb4cd 1411 return ColourDesired(c.Red(), c.Green(), c.Blue());
9ce192d4
RD
1412}
1413
1414const char *Platform::DefaultFont() {
10ef30eb
RD
1415 static char buf[128];
1416 strcpy(buf, wxNORMAL_FONT->GetFaceName().mbc_str());
1417 return buf;
9ce192d4
RD
1418}
1419
1420int Platform::DefaultFontSize() {
9e730a78 1421 return wxNORMAL_FONT->GetPointSize();
9ce192d4
RD
1422}
1423
1424unsigned int Platform::DoubleClickTime() {
1425 return 500; // **** ::GetDoubleClickTime();
1426}
1427
9e730a78 1428bool Platform::MouseButtonBounce() {
7e126a07 1429 return false;
9e730a78 1430}
9ce192d4 1431
88a8b04e 1432bool Platform::IsKeyDown(int WXUNUSED(key)) {
9ce192d4
RD
1433 return false; // I don't think we'll need this.
1434}
1435
1436long Platform::SendScintilla(WindowID w,
1437 unsigned int msg,
1438 unsigned long wParam,
1439 long lParam) {
1440
1441 wxStyledTextCtrl* stc = (wxStyledTextCtrl*)w;
1442 return stc->SendMsg(msg, wParam, lParam);
1443}
1444
a834585d
RD
1445long Platform::SendScintillaPointer(WindowID w,
1446 unsigned int msg,
1447 unsigned long wParam,
1448 void *lParam) {
1449
1450 wxStyledTextCtrl* stc = (wxStyledTextCtrl*)w;
b796ba39 1451 return stc->SendMsg(msg, wParam, (wxIntPtr)lParam);
a834585d
RD
1452}
1453
9ce192d4
RD
1454
1455// These are utility functions not really tied to a platform
1456
1457int Platform::Minimum(int a, int b) {
1458 if (a < b)
1459 return a;
1460 else
1461 return b;
1462}
1463
1464int Platform::Maximum(int a, int b) {
1465 if (a > b)
1466 return a;
1467 else
1468 return b;
1469}
1470
74e1efdd
VZ
1471//#define TRACE
1472
1473void Platform::DebugDisplay(const char *s) {
1474#ifdef TRACE
1475 wxLogDebug(stc2wx(s));
1476#else
1477 wxUnusedVar(s);
1478#endif
1479}
9ce192d4
RD
1480
1481void Platform::DebugPrintf(const char *format, ...) {
1482#ifdef TRACE
1483 char buffer[2000];
1484 va_list pArguments;
1485 va_start(pArguments, format);
1486 vsprintf(buffer,format,pArguments);
1487 va_end(pArguments);
1488 Platform::DebugDisplay(buffer);
8d3a5374
VZ
1489#else
1490 wxUnusedVar(format);
9ce192d4
RD
1491#endif
1492}
1493
65ec6247
RD
1494
1495static bool assertionPopUps = true;
1496
1497bool Platform::ShowAssertionPopUps(bool assertionPopUps_) {
7e126a07
WS
1498 bool ret = assertionPopUps;
1499 assertionPopUps = assertionPopUps_;
1500 return ret;
65ec6247
RD
1501}
1502
1503void Platform::Assert(const char *c, const char *file, int line) {
74e1efdd 1504#ifdef TRACE
7e126a07
WS
1505 char buffer[2000];
1506 sprintf(buffer, "Assertion [%s] failed at %s %d", c, file, line);
1507 if (assertionPopUps) {
1508 /*int idButton = */
1509 wxMessageBox(stc2wx(buffer),
1510 wxT("Assertion failure"),
1511 wxICON_HAND | wxOK);
7e126a07
WS
1512 } else {
1513 strcat(buffer, "\r\n");
1514 Platform::DebugDisplay(buffer);
1515 abort();
1516 }
74e1efdd
VZ
1517#else
1518 wxUnusedVar(c);
1519 wxUnusedVar(file);
1520 wxUnusedVar(line);
1521#endif
65ec6247
RD
1522}
1523
1524
9ce192d4
RD
1525int Platform::Clamp(int val, int minVal, int maxVal) {
1526 if (val > maxVal)
1527 val = maxVal;
1528 if (val < minVal)
1529 val = minVal;
1530 return val;
1531}
1532
1533
88a8b04e 1534bool Platform::IsDBCSLeadByte(int WXUNUSED(codePage), char WXUNUSED(ch)) {
1a2fb4cd
RD
1535 return false;
1536}
1537
88a8b04e 1538int Platform::DBCSCharLength(int WXUNUSED(codePage), const char *WXUNUSED(s)) {
215ef7ae 1539 return 1;
9e730a78
RD
1540}
1541
1542int Platform::DBCSCharMaxLength() {
215ef7ae 1543 return 1;
9e730a78 1544}
1a2fb4cd
RD
1545
1546
1547//----------------------------------------------------------------------
1548
1549ElapsedTime::ElapsedTime() {
1d94e268
WS
1550 wxLongLong localTime = wxGetLocalTimeMillis();
1551 littleBit = localTime.GetLo();
1552 bigBit = localTime.GetHi();
1a2fb4cd
RD
1553}
1554
1555double ElapsedTime::Duration(bool reset) {
1d94e268
WS
1556 wxLongLong prevTime(bigBit, littleBit);
1557 wxLongLong localTime = wxGetLocalTimeMillis();
1558 if(reset) {
1559 littleBit = localTime.GetLo();
1560 bigBit = localTime.GetHi();
1561 }
1562 wxLongLong duration = localTime - prevTime;
1563 double result = duration.ToDouble();
1a2fb4cd
RD
1564 result /= 1000.0;
1565 return result;
1566}
1567
1568
1569//----------------------------------------------------------------------
9ce192d4 1570
d99859e4 1571#if wxUSE_UNICODE
6636ac1e
RD
1572
1573#include "UniConversion.h"
1574
1575// Convert using Scintilla's functions instead of wx's, Scintilla's are more
1576// forgiving and won't assert...
c8b75e94 1577
d99859e4
RD
1578wxString stc2wx(const char* str, size_t len)
1579{
81bfa5ae
RD
1580 if (!len)
1581 return wxEmptyString;
8a07b43c 1582
7e0c58e9 1583 size_t wclen = UTF16Length(str, len);
6636ac1e
RD
1584 wxWCharBuffer buffer(wclen+1);
1585
7e0c58e9 1586 size_t actualLen = UTF16FromUTF8(str, len, buffer.data(), wclen+1);
6636ac1e
RD
1587 return wxString(buffer.data(), actualLen);
1588}
1589
d99859e4 1590
d99859e4 1591
6636ac1e
RD
1592wxString stc2wx(const char* str)
1593{
1594 return stc2wx(str, strlen(str));
d99859e4 1595}
6636ac1e
RD
1596
1597
1598const wxWX2MBbuf wx2stc(const wxString& str)
1599{
1600 const wchar_t* wcstr = str.c_str();
1601 size_t wclen = str.length();
1602 size_t len = UTF8Length(wcstr, wclen);
1603
1604 wxCharBuffer buffer(len+1);
7e0c58e9 1605 UTF8FromUTF16(wcstr, wclen, buffer.data(), len);
6636ac1e
RD
1606
1607 // TODO check NULL termination!!
1608
6636ac1e
RD
1609 return buffer;
1610}
1611
d99859e4 1612#endif
29825f5f
PC
1613
1614#endif // wxUSE_STC