]> git.saurik.com Git - wxWidgets.git/blob - contrib/src/stc/PlatWX.cpp
Updated to version 1.40 of Scintilla
[wxWidgets.git] / contrib / 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 "Platform.h"
10 #include "wx/stc/stc.h"
11
12
13 #ifdef __WXGTK__
14 #include <gtk/gtk.h>
15 #endif
16
17 Point Point::FromLong(long lpoint) {
18 return Point(lpoint & 0xFFFF, lpoint >> 16);
19 }
20
21 wxRect wxRectFromPRectangle(PRectangle prc) {
22 wxRect rc(prc.left, prc.top,
23 prc.right-prc.left, prc.bottom-prc.top);
24 return rc;
25 }
26
27 PRectangle PRectangleFromwxRect(wxRect rc) {
28 return PRectangle(rc.GetLeft(), rc.GetTop(), rc.GetRight(), rc.GetBottom());
29 }
30
31 Colour::Colour(long lcol) {
32 co.Set(lcol & 0xff, (lcol >> 8) & 0xff, (lcol >> 16) & 0xff);
33 }
34
35 Colour::Colour(unsigned int red, unsigned int green, unsigned int blue) {
36 co.Set(red, green, blue);
37 }
38
39 bool Colour::operator==(const Colour &other) const {
40 return co == other.co;
41 }
42
43 long Colour::AsLong() const {
44 return (((long)co.Blue() << 16) |
45 ((long)co.Green() << 8) |
46 ((long)co.Red()));
47 }
48
49 unsigned int Colour::GetRed() {
50 return co.Red();
51 }
52
53 unsigned int Colour::GetGreen() {
54 return co.Green();
55 }
56
57 unsigned int Colour::GetBlue() {
58 return co.Blue();
59 }
60
61 Palette::Palette() {
62 used = 0;
63 allowRealization = false;
64 }
65
66 Palette::~Palette() {
67 Release();
68 }
69
70 void Palette::Release() {
71 used = 0;
72 }
73
74 // This method either adds a colour to the list of wanted colours (want==true)
75 // or retrieves the allocated colour back to the ColourPair.
76 // This is one method to make it easier to keep the code for wanting and retrieving in sync.
77 void Palette::WantFind(ColourPair &cp, bool want) {
78 if (want) {
79 for (int i=0; i < used; i++) {
80 if (entries[i].desired == cp.desired)
81 return;
82 }
83
84 if (used < numEntries) {
85 entries[used].desired = cp.desired;
86 entries[used].allocated = cp.desired;
87 used++;
88 }
89 } else {
90 for (int i=0; i < used; i++) {
91 if (entries[i].desired == cp.desired) {
92 cp.allocated = entries[i].allocated;
93 return;
94 }
95 }
96 cp.allocated = cp.desired;
97 }
98 }
99
100 void Palette::Allocate(Window &) {
101 if (allowRealization) {
102 }
103 }
104
105
106 Font::Font() {
107 id = 0;
108 ascent = 0;
109 }
110
111 Font::~Font() {
112 }
113
114 void Font::Create(const char *faceName, int characterSet, int size, bool bold, bool italic) {
115 // TODO: what to do about the characterSet?
116
117 Release();
118 id = new wxFont(size,
119 wxDEFAULT,
120 italic ? wxITALIC : wxNORMAL,
121 bold ? wxBOLD : wxNORMAL,
122 false,
123 faceName,
124 wxFONTENCODING_DEFAULT);
125 }
126
127
128 void Font::Release() {
129 if (id)
130 delete id;
131 id = 0;
132 }
133
134
135 Surface::Surface() :
136 hdc(0), hdcOwned(0), bitmap(0),
137 x(0), y(0) {
138 }
139
140 Surface::~Surface() {
141 Release();
142 }
143
144 void Surface::Release() {
145 if (bitmap) {
146 ((wxMemoryDC*)hdc)->SelectObject(wxNullBitmap);
147 delete bitmap;
148 bitmap = 0;
149 }
150 if (hdcOwned) {
151 delete hdc;
152 hdc = 0;
153 hdcOwned = false;
154 }
155 }
156
157
158 bool Surface::Initialised() {
159 return hdc != 0;
160 }
161
162 void Surface::Init() {
163 Release();
164 hdc = new wxMemoryDC();
165 hdcOwned = true;
166 }
167
168 void Surface::Init(SurfaceID hdc_) {
169 Release();
170 hdc = hdc_;
171 }
172
173 void Surface::InitPixMap(int width, int height, Surface *surface_) {
174 Release();
175 hdc = new wxMemoryDC(surface_->hdc);
176 hdcOwned = true;
177 if (width < 1) width = 1;
178 if (height < 1) height = 1;
179 bitmap = new wxBitmap(width, height);
180 ((wxMemoryDC*)hdc)->SelectObject(*bitmap);
181 }
182
183 void Surface::PenColour(Colour fore) {
184 hdc->SetPen(wxPen(fore.co, 1, wxSOLID));
185 }
186
187 void Surface::BrushColor(Colour back) {
188 hdc->SetBrush(wxBrush(back.co, wxSOLID));
189 }
190
191 void Surface::SetFont(Font &font_) {
192 if (font_.GetID()) {
193 hdc->SetFont(*font_.GetID());
194 }
195 }
196
197 int Surface::LogPixelsY() {
198 return hdc->GetPPI().y;
199 }
200
201
202 int Surface::DeviceHeightFont(int points) {
203 return points;
204 }
205
206
207 void Surface::MoveTo(int x_, int y_) {
208 x = x_;
209 y = y_;
210 }
211
212 void Surface::LineTo(int x_, int y_) {
213 hdc->DrawLine(x,y, x_,y_);
214 x = x_;
215 y = y_;
216 }
217
218 void Surface::Polygon(Point *pts, int npts, Colour fore,
219 Colour back) {
220 PenColour(fore);
221 BrushColor(back);
222 hdc->DrawPolygon(npts, (wxPoint*)pts);
223 }
224
225 void Surface::RectangleDraw(PRectangle rc, Colour fore, Colour back) {
226 PenColour(fore);
227 BrushColor(back);
228 hdc->DrawRectangle(wxRectFromPRectangle(rc));
229 }
230
231 void Surface::FillRectangle(PRectangle rc, Colour back) {
232 BrushColor(back);
233 hdc->SetPen(*wxTRANSPARENT_PEN);
234 hdc->DrawRectangle(wxRectFromPRectangle(rc));
235 }
236
237 void Surface::FillRectangle(PRectangle rc, Surface &surfacePattern) {
238 wxBrush br;
239 if (surfacePattern.bitmap)
240 br = wxBrush(*surfacePattern.bitmap);
241 else // Something is wrong so display in red
242 br = wxBrush(*wxRED, wxSOLID);
243 hdc->SetPen(*wxTRANSPARENT_PEN);
244 hdc->SetBrush(br);
245 hdc->DrawRectangle(wxRectFromPRectangle(rc));
246 }
247
248 void Surface::RoundedRectangle(PRectangle rc, Colour fore, Colour back) {
249 PenColour(fore);
250 BrushColor(back);
251 hdc->DrawRoundedRectangle(wxRectFromPRectangle(rc), 4);
252 }
253
254 void Surface::Ellipse(PRectangle rc, Colour fore, Colour back) {
255 PenColour(fore);
256 BrushColor(back);
257 hdc->DrawEllipse(wxRectFromPRectangle(rc));
258 }
259
260 void Surface::Copy(PRectangle rc, Point from, Surface &surfaceSource) {
261 wxRect r = wxRectFromPRectangle(rc);
262 hdc->Blit(r.x, r.y, r.width, r.height,
263 surfaceSource.hdc, from.x, from.y, wxCOPY);
264 }
265
266 void Surface::DrawText(PRectangle rc, Font &font, int ybase,
267 const char *s, int len, Colour fore, Colour back) {
268 SetFont(font);
269 hdc->SetTextForeground(fore.co);
270 hdc->SetTextBackground(back.co);
271 FillRectangle(rc, back);
272
273 // ybase is where the baseline should be, but wxWin uses the upper left
274 // corner, so I need to calculate the real position for the text...
275 hdc->DrawText(wxString(s, len), rc.left, ybase - font.ascent);
276 }
277
278 void Surface::DrawTextClipped(PRectangle rc, Font &font, int ybase, const char *s, int len, Colour fore, Colour back) {
279 SetFont(font);
280 hdc->SetTextForeground(fore.co);
281 hdc->SetTextBackground(back.co);
282 FillRectangle(rc, back);
283 hdc->SetClippingRegion(wxRectFromPRectangle(rc));
284
285 // see comments above
286 hdc->DrawText(wxString(s, len), rc.left, ybase - font.ascent);
287 hdc->DestroyClippingRegion();
288 }
289
290 int Surface::WidthText(Font &font, const char *s, int len) {
291 SetFont(font);
292 int w;
293 int h;
294 hdc->GetTextExtent(wxString(s, len), &w, &h);
295 return w;
296 }
297
298 void Surface::MeasureWidths(Font &font, const char *s, int len, int *positions) {
299 SetFont(font);
300 int totalWidth = 0;
301 for (int i=0; i<len; i++) {
302 int w;
303 int h;
304 hdc->GetTextExtent(s[i], &w, &h);
305 totalWidth += w;
306 positions[i] = totalWidth;
307 }
308 }
309
310 int Surface::WidthChar(Font &font, char ch) {
311 SetFont(font);
312 int w;
313 int h;
314 hdc->GetTextExtent(ch, &w, &h);
315 return w;
316 }
317
318 #define EXTENT_TEST " `~!@#$%^&*()-_=+\\|[]{};:\"\'<,>.?/1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
319
320 int Surface::Ascent(Font &font) {
321 SetFont(font);
322 int w, h, d, e;
323 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
324 font.ascent = h - d;
325 return font.ascent;
326 }
327
328 int Surface::Descent(Font &font) {
329 SetFont(font);
330 int w, h, d, e;
331 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
332 return d;
333 }
334
335 int Surface::InternalLeading(Font &font) {
336 return 0;
337 }
338
339 int Surface::ExternalLeading(Font &font) {
340 SetFont(font);
341 int w, h, d, e;
342 hdc->GetTextExtent(EXTENT_TEST, &w, &h, &d, &e);
343 return e;
344 }
345
346 int Surface::Height(Font &font) {
347 SetFont(font);
348 return hdc->GetCharHeight();
349 }
350
351 int Surface::AverageCharWidth(Font &font) {
352 SetFont(font);
353 return hdc->GetCharWidth();
354 }
355
356 int Surface::SetPalette(Palette *pal, bool inBackGround) {
357 return 0;
358 }
359
360 void Surface::SetClip(PRectangle rc) {
361 hdc->SetClippingRegion(wxRectFromPRectangle(rc));
362 }
363
364 void Surface::FlushCachedState() {
365 }
366
367 Window::~Window() {
368 }
369
370 void Window::Destroy() {
371 if (id)
372 id->Destroy();
373 id = 0;
374 }
375
376 bool Window::HasFocus() {
377 return wxWindow::FindFocus() == id;
378 }
379
380 PRectangle Window::GetPosition() {
381 wxRect rc(id->GetPosition(), id->GetSize());
382 return PRectangleFromwxRect(rc);
383 }
384
385 void Window::SetPosition(PRectangle rc) {
386 wxRect r = wxRectFromPRectangle(rc);
387 id->SetSize(r);
388 }
389
390 void Window::SetPositionRelative(PRectangle rc, Window) {
391 SetPosition(rc); // ????
392 }
393
394 PRectangle Window::GetClientPosition() {
395 wxSize sz = id->GetClientSize();
396 return PRectangle(0, 0, sz.x, sz.y);
397 }
398
399 void Window::Show(bool show) {
400 id->Show(show);
401 }
402
403 void Window::InvalidateAll() {
404 id->Refresh(false);
405 }
406
407 void Window::InvalidateRectangle(PRectangle rc) {
408 wxRect r = wxRectFromPRectangle(rc);
409 id->Refresh(false, &r);
410 }
411
412 void Window::SetFont(Font &font) {
413 id->SetFont(*font.GetID());
414 }
415
416 void Window::SetCursor(Cursor curs) {
417 int cursorId;
418
419 switch (curs) {
420 case cursorText:
421 cursorId = wxCURSOR_IBEAM;
422 break;
423 case cursorArrow:
424 cursorId = wxCURSOR_ARROW;
425 break;
426 case cursorUp:
427 cursorId = wxCURSOR_ARROW; // ** no up arrow... wxCURSOR_UPARROW;
428 break;
429 case cursorWait:
430 cursorId = wxCURSOR_WAIT;
431 break;
432 case cursorHoriz:
433 cursorId = wxCURSOR_SIZEWE;
434 break;
435 case cursorVert:
436 cursorId = wxCURSOR_SIZENS;
437 break;
438 case cursorReverseArrow:
439 cursorId = wxCURSOR_POINT_RIGHT;
440 break;
441 default:
442 cursorId = wxCURSOR_ARROW;
443 break;
444 }
445
446 id->SetCursor(wxCursor(cursorId));
447 }
448
449
450 void Window::SetTitle(const char *s) {
451 id->SetTitle(s);
452 }
453
454
455 class wxSTCListBox : public wxListBox {
456 public:
457 wxSTCListBox(wxWindow* parent, wxWindowID id)
458 : wxListBox(parent, id, wxDefaultPosition, wxDefaultSize,
459 0, NULL, wxLB_SINGLE | wxSIMPLE_BORDER | wxLB_SORT )
460 {}
461
462 void OnFocus(wxFocusEvent& event) {
463 GetParent()->SetFocus();
464 event.Skip();
465 }
466
467 #if 0 // #ifdef __WXGTK__
468 void DoSetFirstItem(int n);
469 #endif
470
471 private:
472 DECLARE_EVENT_TABLE()
473 };
474
475 BEGIN_EVENT_TABLE(wxSTCListBox, wxListBox)
476 EVT_SET_FOCUS(wxSTCListBox::OnFocus)
477 END_EVENT_TABLE()
478
479
480
481
482 #if 0 // #ifdef __WXGTK__
483 // This can be removed after 2.2.2 I think
484 void wxSTCListBox::DoSetFirstItem( int n )
485 {
486 wxCHECK_RET( m_list, wxT("invalid listbox") );
487
488 if (gdk_pointer_is_grabbed () && GTK_WIDGET_HAS_GRAB (m_list))
489 return;
490
491 // terribly efficient
492 const gchar *vadjustment_key = "gtk-vadjustment";
493 guint vadjustment_key_id = g_quark_from_static_string (vadjustment_key);
494
495 GtkAdjustment *adjustment =
496 (GtkAdjustment*) gtk_object_get_data_by_id (GTK_OBJECT (m_list), vadjustment_key_id);
497 wxCHECK_RET( adjustment, wxT("invalid listbox code") );
498
499 GList *target = g_list_nth( m_list->children, n );
500 wxCHECK_RET( target, wxT("invalid listbox index") );
501
502 GtkWidget *item = GTK_WIDGET(target->data);
503 wxCHECK_RET( item, wxT("invalid listbox code") );
504
505 // find the last item before this one which is already realized
506 size_t nItemsBefore;
507 for ( nItemsBefore = 0; item && (item->allocation.y == -1); nItemsBefore++ )
508 {
509 target = target->prev;
510 if ( !target )
511 {
512 // nothing we can do if there are no allocated items yet
513 return;
514 }
515
516 item = GTK_WIDGET(target->data);
517 }
518
519 gtk_adjustment_set_value(adjustment,
520 item->allocation.y +
521 nItemsBefore*item->allocation.height);
522 }
523 #endif
524
525
526 ListBox::ListBox() {
527 }
528
529 ListBox::~ListBox() {
530 }
531
532 void ListBox::Create(Window &parent, int ctrlID) {
533 id = new wxSTCListBox(parent.id, ctrlID);
534 }
535
536 void ListBox::SetVisibleRows(int rows) {
537 desiredVisibleRows = rows;
538 }
539
540 PRectangle ListBox::GetDesiredRect() {
541 wxSize sz = ((wxListBox*)id)->GetBestSize();
542 PRectangle rc;
543 rc.top = 0;
544 rc.left = 0;
545 if (sz.x > 400)
546 sz.x = 400;
547 if (sz.y > 150) // TODO: Use desiredVisibleRows??
548 sz.y = 150;
549 rc.right = sz.x;
550 rc.bottom = sz.y;
551
552 return rc;
553 }
554
555 void ListBox::SetAverageCharWidth(int width) {
556 aveCharWidth = width;
557 }
558
559 void ListBox::SetFont(Font &font) {
560 Window::SetFont(font);
561 }
562
563 void ListBox::Clear() {
564 ((wxListBox*)id)->Clear();
565 }
566
567 void ListBox::Append(char *s) {
568 ((wxListBox*)id)->Append(s);
569 }
570
571 int ListBox::Length() {
572 return ((wxListBox*)id)->GetCount();
573 }
574
575 void ListBox::Select(int n) {
576 ((wxListBox*)id)->SetSelection(n);
577 #ifdef __WXGTK__
578 if (n > 4)
579 n = n - 4;
580 else
581 n = 1;
582 ((wxListBox*)id)->SetFirstItem(n);
583 #endif
584 }
585
586 int ListBox::GetSelection() {
587 return ((wxListBox*)id)->GetSelection();
588 }
589
590 int ListBox::Find(const char *prefix) {
591 // No longer used
592 return -1;
593 }
594
595 void ListBox::GetValue(int n, char *value, int len) {
596 wxString text = ((wxListBox*)id)->GetString(n);
597 strncpy(value, text.c_str(), len);
598 value[len-1] = '\0';
599 }
600
601 void ListBox::Sort() {
602 // wxWindows keeps sorted so no need to sort
603 }
604
605
606 Menu::Menu() : id(0) {
607 }
608
609 void Menu::CreatePopUp() {
610 Destroy();
611 id = new wxMenu();
612 }
613
614 void Menu::Destroy() {
615 if (id)
616 delete id;
617 id = 0;
618 }
619
620 void Menu::Show(Point pt, Window &w) {
621 w.GetID()->PopupMenu(id, pt.x - 4, pt.y);
622 Destroy();
623 }
624
625
626 Colour Platform::Chrome() {
627 wxColour c;
628 c = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE);
629 return Colour(c.Red(), c.Green(), c.Blue());
630 }
631
632 Colour Platform::ChromeHighlight() {
633 wxColour c;
634 c = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DHIGHLIGHT);
635 return Colour(c.Red(), c.Green(), c.Blue());
636 }
637
638 const char *Platform::DefaultFont() {
639 return wxNORMAL_FONT->GetFaceName();
640 }
641
642 int Platform::DefaultFontSize() {
643 return 8;
644 }
645
646 unsigned int Platform::DoubleClickTime() {
647 return 500; // **** ::GetDoubleClickTime();
648 }
649
650 void Platform::DebugDisplay(const char *s) {
651 wxLogDebug(s);
652 }
653
654 bool Platform::IsKeyDown(int key) {
655 return false; // I don't think we'll need this.
656 }
657
658 long Platform::SendScintilla(WindowID w,
659 unsigned int msg,
660 unsigned long wParam,
661 long lParam) {
662
663 wxStyledTextCtrl* stc = (wxStyledTextCtrl*)w;
664 return stc->SendMsg(msg, wParam, lParam);
665 }
666
667
668 // These are utility functions not really tied to a platform
669
670 int Platform::Minimum(int a, int b) {
671 if (a < b)
672 return a;
673 else
674 return b;
675 }
676
677 int Platform::Maximum(int a, int b) {
678 if (a > b)
679 return a;
680 else
681 return b;
682 }
683
684 #define TRACE
685
686 void Platform::DebugPrintf(const char *format, ...) {
687 #ifdef TRACE
688 char buffer[2000];
689 va_list pArguments;
690 va_start(pArguments, format);
691 vsprintf(buffer,format,pArguments);
692 va_end(pArguments);
693 Platform::DebugDisplay(buffer);
694 #endif
695 }
696
697
698 static bool assertionPopUps = true;
699
700 bool Platform::ShowAssertionPopUps(bool assertionPopUps_) {
701 bool ret = assertionPopUps;
702 assertionPopUps = assertionPopUps_;
703 return ret;
704 }
705
706 void Platform::Assert(const char *c, const char *file, int line) {
707 char buffer[2000];
708 sprintf(buffer, "Assertion [%s] failed at %s %d", c, file, line);
709 if (assertionPopUps) {
710 int idButton = wxMessageBox(buffer, "Assertion failure",
711 wxICON_HAND | wxOK);
712 // if (idButton == IDRETRY) {
713 // ::DebugBreak();
714 // } else if (idButton == IDIGNORE) {
715 // // all OK
716 // } else {
717 // abort();
718 // }
719 } else {
720 strcat(buffer, "\r\n");
721 Platform::DebugDisplay(buffer);
722 abort();
723 }
724 }
725
726
727 int Platform::Clamp(int val, int minVal, int maxVal) {
728 if (val > maxVal)
729 val = maxVal;
730 if (val < minVal)
731 val = minVal;
732 return val;
733 }
734
735
736
737
738
739