1 // Scintilla source code edit control
2 // PlatGTK.cxx - implementation of platform facilities on GTK+/Linux
3 // Copyright 1998-2004 by Neil Hodgson <neilh@scintilla.org>
4 // The License.txt file describes the conditions under which this software may be distributed.
21 #include <gdk/gdkkeysyms.h>
25 #include "Scintilla.h"
26 #include "ScintillaWidget.h"
27 #include "StringCopy.h"
29 #include "UniConversion.h"
31 #if defined(__clang__)
32 // Clang 3.0 incorrectly displays sentinel warnings. Fixed by clang 3.1.
33 #pragma GCC diagnostic ignored "-Wsentinel"
36 #include "Converter.h"
38 static const double kPi
= 3.14159265358979323846;
40 // The Pango version guard for pango_units_from_double and pango_units_to_double
41 // is more complex than simply implementing these here.
43 static int pangoUnitsFromDouble(double d
) {
44 return static_cast<int>(d
* PANGO_SCALE
+ 0.5);
47 static double doubleFromPangoUnits(int pu
) {
48 return static_cast<double>(pu
) / PANGO_SCALE
;
51 static cairo_surface_t
*CreateSimilarSurface(GdkWindow
*window
, cairo_content_t content
, int width
, int height
) {
52 #if GTK_CHECK_VERSION(2,22,0)
53 return gdk_window_create_similar_surface(window
, content
, width
, height
);
55 cairo_surface_t
*window_surface
, *surface
;
57 g_return_val_if_fail(GDK_IS_WINDOW(window
), NULL
);
59 window_surface
= GDK_DRAWABLE_GET_CLASS(window
)->ref_cairo_surface(window
);
61 surface
= cairo_surface_create_similar(window_surface
, content
, width
, height
);
63 cairo_surface_destroy(window_surface
);
69 static GdkWindow
*WindowFromWidget(GtkWidget
*w
) {
70 return gtk_widget_get_window(w
);
74 // Ignore unreferenced local functions in GTK+ headers
75 #pragma warning(disable: 4505)
79 using namespace Scintilla
;
82 enum encodingType
{ singleByte
, UTF8
, dbcs
};
84 // Holds a PangoFontDescription*.
87 PangoFontDescription
*pfd
;
89 FontHandle() : pfd(0), characterSet(-1) {
91 FontHandle(PangoFontDescription
*pfd_
, int characterSet_
) {
93 characterSet
= characterSet_
;
97 pango_font_description_free(pfd
);
100 static FontHandle
*CreateNewFont(const FontParameters
&fp
);
103 FontHandle
*FontHandle::CreateNewFont(const FontParameters
&fp
) {
104 PangoFontDescription
*pfd
= pango_font_description_new();
106 pango_font_description_set_family(pfd
,
107 (fp
.faceName
[0] == '!') ? fp
.faceName
+1 : fp
.faceName
);
108 pango_font_description_set_size(pfd
, pangoUnitsFromDouble(fp
.size
));
109 pango_font_description_set_weight(pfd
, static_cast<PangoWeight
>(fp
.weight
));
110 pango_font_description_set_style(pfd
, fp
.italic
? PANGO_STYLE_ITALIC
: PANGO_STYLE_NORMAL
);
111 return new FontHandle(pfd
,fp
.characterSet
);
117 // X has a 16 bit coordinate space, so stop drawing here to avoid wrapping
118 static const int maxCoordinate
= 32000;
120 static FontHandle
*PFont(Font
&f
) {
121 return static_cast<FontHandle
*>(f
.GetID());
124 static GtkWidget
*PWidget(WindowID wid
) {
125 return static_cast<GtkWidget
*>(wid
);
128 Point
Point::FromLong(long lpoint
) {
130 Platform::LowShortFromLong(lpoint
),
131 Platform::HighShortFromLong(lpoint
));
134 Font::Font() : fid(0) {}
138 void Font::Create(const FontParameters
&fp
) {
140 fid
= FontHandle::CreateNewFont(fp
);
143 void Font::Release() {
145 delete static_cast<FontHandle
*>(fid
);
151 namespace Scintilla
{
154 // SurfaceID is a cairo_t*
155 class SurfaceImpl
: public Surface
{
158 cairo_surface_t
*psurf
;
163 PangoContext
*pcontext
;
167 void SetConverter(int characterSet_
);
170 virtual ~SurfaceImpl();
172 void Init(WindowID wid
);
173 void Init(SurfaceID sid
, WindowID wid
);
174 void InitPixMap(int width
, int height
, Surface
*surface_
, WindowID wid
);
178 void PenColour(ColourDesired fore
);
180 int DeviceHeightFont(int points
);
181 void MoveTo(int x_
, int y_
);
182 void LineTo(int x_
, int y_
);
183 void Polygon(Point
*pts
, int npts
, ColourDesired fore
, ColourDesired back
);
184 void RectangleDraw(PRectangle rc
, ColourDesired fore
, ColourDesired back
);
185 void FillRectangle(PRectangle rc
, ColourDesired back
);
186 void FillRectangle(PRectangle rc
, Surface
&surfacePattern
);
187 void RoundedRectangle(PRectangle rc
, ColourDesired fore
, ColourDesired back
);
188 void AlphaRectangle(PRectangle rc
, int cornerSize
, ColourDesired fill
, int alphaFill
,
189 ColourDesired outline
, int alphaOutline
, int flags
);
190 void DrawRGBAImage(PRectangle rc
, int width
, int height
, const unsigned char *pixelsImage
);
191 void Ellipse(PRectangle rc
, ColourDesired fore
, ColourDesired back
);
192 void Copy(PRectangle rc
, Point from
, Surface
&surfaceSource
);
194 void DrawTextBase(PRectangle rc
, Font
&font_
, XYPOSITION ybase
, const char *s
, int len
, ColourDesired fore
);
195 void DrawTextNoClip(PRectangle rc
, Font
&font_
, XYPOSITION ybase
, const char *s
, int len
, ColourDesired fore
, ColourDesired back
);
196 void DrawTextClipped(PRectangle rc
, Font
&font_
, XYPOSITION ybase
, const char *s
, int len
, ColourDesired fore
, ColourDesired back
);
197 void DrawTextTransparent(PRectangle rc
, Font
&font_
, XYPOSITION ybase
, const char *s
, int len
, ColourDesired fore
);
198 void MeasureWidths(Font
&font_
, const char *s
, int len
, XYPOSITION
*positions
);
199 XYPOSITION
WidthText(Font
&font_
, const char *s
, int len
);
200 XYPOSITION
WidthChar(Font
&font_
, char ch
);
201 XYPOSITION
Ascent(Font
&font_
);
202 XYPOSITION
Descent(Font
&font_
);
203 XYPOSITION
InternalLeading(Font
&font_
);
204 XYPOSITION
ExternalLeading(Font
&font_
);
205 XYPOSITION
Height(Font
&font_
);
206 XYPOSITION
AverageCharWidth(Font
&font_
);
208 void SetClip(PRectangle rc
);
209 void FlushCachedState();
211 void SetUnicodeMode(bool unicodeMode_
);
212 void SetDBCSMode(int codePage
);
218 const char *CharacterSetID(int characterSet
) {
219 switch (characterSet
) {
220 case SC_CHARSET_ANSI
:
222 case SC_CHARSET_DEFAULT
:
224 case SC_CHARSET_BALTIC
:
225 return "ISO-8859-13";
226 case SC_CHARSET_CHINESEBIG5
:
228 case SC_CHARSET_EASTEUROPE
:
230 case SC_CHARSET_GB2312
:
232 case SC_CHARSET_GREEK
:
234 case SC_CHARSET_HANGUL
:
240 case SC_CHARSET_RUSSIAN
:
242 case SC_CHARSET_OEM866
:
244 case SC_CHARSET_CYRILLIC
:
246 case SC_CHARSET_SHIFTJIS
:
248 case SC_CHARSET_SYMBOL
:
250 case SC_CHARSET_TURKISH
:
252 case SC_CHARSET_JOHAB
:
254 case SC_CHARSET_HEBREW
:
256 case SC_CHARSET_ARABIC
:
258 case SC_CHARSET_VIETNAMESE
:
260 case SC_CHARSET_THAI
:
261 return "ISO-8859-11";
262 case SC_CHARSET_8859_15
:
263 return "ISO-8859-15";
269 void SurfaceImpl::SetConverter(int characterSet_
) {
270 if (characterSet
!= characterSet_
) {
271 characterSet
= characterSet_
;
272 conv
.Open("UTF-8", CharacterSetID(characterSet
), false);
276 SurfaceImpl::SurfaceImpl() : et(singleByte
),
279 x(0), y(0), inited(false), createdGC(false)
280 , pcontext(0), layout(0), characterSet(-1) {
283 SurfaceImpl::~SurfaceImpl() {
287 void SurfaceImpl::Release() {
291 cairo_destroy(context
);
295 cairo_surface_destroy(psurf
);
298 g_object_unref(layout
);
301 g_object_unref(pcontext
);
311 bool SurfaceImpl::Initialised() {
312 #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 8, 0)
313 if (inited
&& context
) {
314 if (cairo_status(context
) == CAIRO_STATUS_SUCCESS
) {
315 // Even when status is success, the target surface may have been
316 // finished whch may cause an assertion to fail crashing the application.
317 // The cairo_surface_has_show_text_glyphs call checks the finished flag
318 // and when set, sets the status to CAIRO_STATUS_SURFACE_FINISHED
319 // which leads to warning messages instead of crashes.
320 // Performing the check in this method as it is called rarely and has no
321 // other side effects.
322 cairo_surface_t
*psurfContext
= cairo_get_target(context
);
324 cairo_surface_has_show_text_glyphs(psurfContext
);
327 return cairo_status(context
) == CAIRO_STATUS_SUCCESS
;
333 void SurfaceImpl::Init(WindowID wid
) {
335 PLATFORM_ASSERT(wid
);
336 // if we are only created from a window ID, we can't perform drawing
340 pcontext
= gtk_widget_create_pango_context(PWidget(wid
));
341 PLATFORM_ASSERT(pcontext
);
342 layout
= pango_layout_new(pcontext
);
343 PLATFORM_ASSERT(layout
);
347 void SurfaceImpl::Init(SurfaceID sid
, WindowID wid
) {
348 PLATFORM_ASSERT(sid
);
350 PLATFORM_ASSERT(wid
);
351 context
= cairo_reference(static_cast<cairo_t
*>(sid
));
352 pcontext
= gtk_widget_create_pango_context(PWidget(wid
));
353 // update the Pango context in case sid isn't the widget's surface
354 pango_cairo_update_context(context
, pcontext
);
355 layout
= pango_layout_new(pcontext
);
356 cairo_set_line_width(context
, 1);
361 void SurfaceImpl::InitPixMap(int width
, int height
, Surface
*surface_
, WindowID wid
) {
362 PLATFORM_ASSERT(surface_
);
364 SurfaceImpl
*surfImpl
= static_cast<SurfaceImpl
*>(surface_
);
365 PLATFORM_ASSERT(wid
);
366 context
= cairo_reference(surfImpl
->context
);
367 pcontext
= gtk_widget_create_pango_context(PWidget(wid
));
368 // update the Pango context in case surface_ isn't the widget's surface
369 pango_cairo_update_context(context
, pcontext
);
370 PLATFORM_ASSERT(pcontext
);
371 layout
= pango_layout_new(pcontext
);
372 PLATFORM_ASSERT(layout
);
373 if (height
> 0 && width
> 0)
374 psurf
= CreateSimilarSurface(
375 WindowFromWidget(PWidget(wid
)),
376 CAIRO_CONTENT_COLOR_ALPHA
, width
, height
);
377 cairo_destroy(context
);
378 context
= cairo_create(psurf
);
379 cairo_rectangle(context
, 0, 0, width
, height
);
380 cairo_set_source_rgb(context
, 1.0, 0, 0);
382 // This produces sharp drawing more similar to GDK:
383 //cairo_set_antialias(context, CAIRO_ANTIALIAS_NONE);
384 cairo_set_line_width(context
, 1);
390 void SurfaceImpl::PenColour(ColourDesired fore
) {
392 ColourDesired
cdFore(fore
.AsLong());
393 cairo_set_source_rgb(context
,
394 cdFore
.GetRed() / 255.0,
395 cdFore
.GetGreen() / 255.0,
396 cdFore
.GetBlue() / 255.0);
400 int SurfaceImpl::LogPixelsY() {
404 int SurfaceImpl::DeviceHeightFont(int points
) {
405 int logPix
= LogPixelsY();
406 return (points
* logPix
+ logPix
/ 2) / 72;
409 void SurfaceImpl::MoveTo(int x_
, int y_
) {
414 static int Delta(int difference
) {
417 else if (difference
> 0)
423 void SurfaceImpl::LineTo(int x_
, int y_
) {
424 // cairo_line_to draws the end position, unlike Win32 or GDK with GDK_CAP_NOT_LAST.
425 // For simple cases, move back one pixel from end.
428 int xDelta
= Delta(xDiff
);
430 int yDelta
= Delta(yDiff
);
431 if ((xDiff
== 0) || (yDiff
== 0)) {
432 // Horizontal or vertical lines can be more precisely drawn as a filled rectangle
433 int xEnd
= x_
- xDelta
;
434 int left
= Platform::Minimum(x
, xEnd
);
435 int width
= abs(x
- xEnd
) + 1;
436 int yEnd
= y_
- yDelta
;
437 int top
= Platform::Minimum(y
, yEnd
);
438 int height
= abs(y
- yEnd
) + 1;
439 cairo_rectangle(context
, left
, top
, width
, height
);
441 } else if ((abs(xDiff
) == abs(yDiff
))) {
443 cairo_move_to(context
, x
+ 0.5, y
+ 0.5);
444 cairo_line_to(context
, x_
+ 0.5 - xDelta
, y_
+ 0.5 - yDelta
);
446 // Line has a different slope so difficult to avoid last pixel
447 cairo_move_to(context
, x
+ 0.5, y
+ 0.5);
448 cairo_line_to(context
, x_
+ 0.5, y_
+ 0.5);
450 cairo_stroke(context
);
456 void SurfaceImpl::Polygon(Point
*pts
, int npts
, ColourDesired fore
,
457 ColourDesired back
) {
458 PLATFORM_ASSERT(context
);
460 cairo_move_to(context
, pts
[0].x
+ 0.5, pts
[0].y
+ 0.5);
461 for (int i
= 1; i
< npts
; i
++) {
462 cairo_line_to(context
, pts
[i
].x
+ 0.5, pts
[i
].y
+ 0.5);
464 cairo_close_path(context
);
465 cairo_fill_preserve(context
);
467 cairo_stroke(context
);
470 void SurfaceImpl::RectangleDraw(PRectangle rc
, ColourDesired fore
, ColourDesired back
) {
472 cairo_rectangle(context
, rc
.left
+ 0.5, rc
.top
+ 0.5,
473 rc
.right
- rc
.left
- 1, rc
.bottom
- rc
.top
- 1);
475 cairo_fill_preserve(context
);
477 cairo_stroke(context
);
481 void SurfaceImpl::FillRectangle(PRectangle rc
, ColourDesired back
) {
483 if (context
&& (rc
.left
< maxCoordinate
)) { // Protect against out of range
484 rc
.left
= lround(rc
.left
);
485 rc
.right
= lround(rc
.right
);
486 cairo_rectangle(context
, rc
.left
, rc
.top
,
487 rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
492 void SurfaceImpl::FillRectangle(PRectangle rc
, Surface
&surfacePattern
) {
493 SurfaceImpl
&surfi
= static_cast<SurfaceImpl
&>(surfacePattern
);
494 bool canDraw
= surfi
.psurf
!= NULL
;
496 PLATFORM_ASSERT(context
);
497 // Tile pattern over rectangle
498 // Currently assumes 8x8 pattern
501 for (int xTile
= rc
.left
; xTile
< rc
.right
; xTile
+= widthPat
) {
502 int widthx
= (xTile
+ widthPat
> rc
.right
) ? rc
.right
- xTile
: widthPat
;
503 for (int yTile
= rc
.top
; yTile
< rc
.bottom
; yTile
+= heightPat
) {
504 int heighty
= (yTile
+ heightPat
> rc
.bottom
) ? rc
.bottom
- yTile
: heightPat
;
505 cairo_set_source_surface(context
, surfi
.psurf
, xTile
, yTile
);
506 cairo_rectangle(context
, xTile
, yTile
, widthx
, heighty
);
511 // Something is wrong so try to show anyway
512 // Shows up black because colour not allocated
513 FillRectangle(rc
, ColourDesired(0));
517 void SurfaceImpl::RoundedRectangle(PRectangle rc
, ColourDesired fore
, ColourDesired back
) {
518 if (((rc
.right
- rc
.left
) > 4) && ((rc
.bottom
- rc
.top
) > 4)) {
519 // Approximate a round rect with some cut off corners
521 Point(rc
.left
+ 2, rc
.top
),
522 Point(rc
.right
- 2, rc
.top
),
523 Point(rc
.right
, rc
.top
+ 2),
524 Point(rc
.right
, rc
.bottom
- 2),
525 Point(rc
.right
- 2, rc
.bottom
),
526 Point(rc
.left
+ 2, rc
.bottom
),
527 Point(rc
.left
, rc
.bottom
- 2),
528 Point(rc
.left
, rc
.top
+ 2),
530 Polygon(pts
, ELEMENTS(pts
), fore
, back
);
532 RectangleDraw(rc
, fore
, back
);
536 static void PathRoundRectangle(cairo_t
*context
, double left
, double top
, double width
, double height
, int radius
) {
537 double degrees
= kPi
/ 180.0;
539 #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 2, 0)
540 cairo_new_sub_path(context
);
542 // First arc is in the top-right corner and starts from a point on the top line
543 cairo_move_to(context
, left
+ width
- radius
, top
);
545 cairo_arc(context
, left
+ width
- radius
, top
+ radius
, radius
, -90 * degrees
, 0 * degrees
);
546 cairo_arc(context
, left
+ width
- radius
, top
+ height
- radius
, radius
, 0 * degrees
, 90 * degrees
);
547 cairo_arc(context
, left
+ radius
, top
+ height
- radius
, radius
, 90 * degrees
, 180 * degrees
);
548 cairo_arc(context
, left
+ radius
, top
+ radius
, radius
, 180 * degrees
, 270 * degrees
);
549 cairo_close_path(context
);
552 void SurfaceImpl::AlphaRectangle(PRectangle rc
, int cornerSize
, ColourDesired fill
, int alphaFill
,
553 ColourDesired outline
, int alphaOutline
, int flags
) {
554 if (context
&& rc
.Width() > 0) {
555 ColourDesired
cdFill(fill
.AsLong());
556 cairo_set_source_rgba(context
,
557 cdFill
.GetRed() / 255.0,
558 cdFill
.GetGreen() / 255.0,
559 cdFill
.GetBlue() / 255.0,
562 PathRoundRectangle(context
, rc
.left
+ 1.0, rc
.top
+ 1.0, rc
.right
- rc
.left
- 2.0, rc
.bottom
- rc
.top
- 2.0, cornerSize
);
564 cairo_rectangle(context
, rc
.left
+ 1.0, rc
.top
+ 1.0, rc
.right
- rc
.left
- 2.0, rc
.bottom
- rc
.top
- 2.0);
567 ColourDesired
cdOutline(outline
.AsLong());
568 cairo_set_source_rgba(context
,
569 cdOutline
.GetRed() / 255.0,
570 cdOutline
.GetGreen() / 255.0,
571 cdOutline
.GetBlue() / 255.0,
572 alphaOutline
/ 255.0);
574 PathRoundRectangle(context
, rc
.left
+ 0.5, rc
.top
+ 0.5, rc
.right
- rc
.left
- 1, rc
.bottom
- rc
.top
- 1, cornerSize
);
576 cairo_rectangle(context
, rc
.left
+ 0.5, rc
.top
+ 0.5, rc
.right
- rc
.left
- 1, rc
.bottom
- rc
.top
- 1);
577 cairo_stroke(context
);
581 void SurfaceImpl::DrawRGBAImage(PRectangle rc
, int width
, int height
, const unsigned char *pixelsImage
) {
582 PLATFORM_ASSERT(context
);
583 if (rc
.Width() > width
)
584 rc
.left
+= (rc
.Width() - width
) / 2;
585 rc
.right
= rc
.left
+ width
;
586 if (rc
.Height() > height
)
587 rc
.top
+= (rc
.Height() - height
) / 2;
588 rc
.bottom
= rc
.top
+ height
;
590 #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,6,0)
591 int stride
= cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32
, width
);
593 int stride
= width
* 4;
595 int ucs
= stride
* height
;
596 std::vector
<unsigned char> image(ucs
);
597 for (int iy
=0; iy
<height
; iy
++) {
598 for (int ix
=0; ix
<width
; ix
++) {
599 unsigned char *pixel
= &image
[0] + iy
*stride
+ ix
* 4;
600 unsigned char alpha
= pixelsImage
[3];
601 pixel
[2] = (*pixelsImage
++) * alpha
/ 255;
602 pixel
[1] = (*pixelsImage
++) * alpha
/ 255;
603 pixel
[0] = (*pixelsImage
++) * alpha
/ 255;
604 pixel
[3] = *pixelsImage
++;
608 cairo_surface_t
*psurfImage
= cairo_image_surface_create_for_data(&image
[0], CAIRO_FORMAT_ARGB32
, width
, height
, stride
);
609 cairo_set_source_surface(context
, psurfImage
, rc
.left
, rc
.top
);
610 cairo_rectangle(context
, rc
.left
, rc
.top
, rc
.right
-rc
.left
, rc
.bottom
-rc
.top
);
613 cairo_surface_destroy(psurfImage
);
616 void SurfaceImpl::Ellipse(PRectangle rc
, ColourDesired fore
, ColourDesired back
) {
617 PLATFORM_ASSERT(context
);
619 cairo_arc(context
, (rc
.left
+ rc
.right
) / 2, (rc
.top
+ rc
.bottom
) / 2,
620 Platform::Minimum(rc
.Width(), rc
.Height()) / 2, 0, 2*kPi
);
621 cairo_fill_preserve(context
);
623 cairo_stroke(context
);
626 void SurfaceImpl::Copy(PRectangle rc
, Point from
, Surface
&surfaceSource
) {
627 SurfaceImpl
&surfi
= static_cast<SurfaceImpl
&>(surfaceSource
);
628 bool canDraw
= surfi
.psurf
!= NULL
;
630 PLATFORM_ASSERT(context
);
631 cairo_set_source_surface(context
, surfi
.psurf
,
632 rc
.left
- from
.x
, rc
.top
- from
.y
);
633 cairo_rectangle(context
, rc
.left
, rc
.top
, rc
.right
-rc
.left
, rc
.bottom
-rc
.top
);
638 std::string
UTF8FromLatin1(const char *s
, int len
) {
639 std::string
utfForm(len
*2 + 1, '\0');
641 for (int i
=0; i
<len
; i
++) {
642 unsigned int uch
= static_cast<unsigned char>(s
[i
]);
644 utfForm
[lenU
++] = uch
;
646 utfForm
[lenU
++] = static_cast<char>(0xC0 | (uch
>> 6));
647 utfForm
[lenU
++] = static_cast<char>(0x80 | (uch
& 0x3f));
650 utfForm
.resize(lenU
);
654 static std::string
UTF8FromIconv(const Converter
&conv
, const char *s
, int len
) {
656 std::string
utfForm(len
*3+1, '\0');
657 char *pin
= const_cast<char *>(s
);
659 char *putf
= &utfForm
[0];
661 gsize outLeft
= len
*3+1;
662 gsize conversions
= conv
.Convert(&pin
, &inLeft
, &pout
, &outLeft
);
663 if (conversions
!= sizeFailure
) {
665 utfForm
.resize(pout
- putf
);
669 return std::string();
672 // Work out how many bytes are in a character by trying to convert using iconv,
673 // returning the first length that succeeds.
674 static size_t MultiByteLenFromIconv(const Converter
&conv
, const char *s
, size_t len
) {
675 for (size_t lenMB
=1; (lenMB
<4) && (lenMB
<= len
); lenMB
++) {
677 char *pin
= const_cast<char *>(s
);
678 gsize inLeft
= lenMB
;
681 gsize conversions
= conv
.Convert(&pin
, &inLeft
, &pout
, &outLeft
);
682 if (conversions
!= sizeFailure
) {
689 void SurfaceImpl::DrawTextBase(PRectangle rc
, Font
&font_
, XYPOSITION ybase
, const char *s
, int len
,
690 ColourDesired fore
) {
693 XYPOSITION xText
= rc
.left
;
694 if (PFont(font_
)->pfd
) {
697 pango_layout_set_text(layout
, s
, len
);
699 SetConverter(PFont(font_
)->characterSet
);
700 utfForm
= UTF8FromIconv(conv
, s
, len
);
701 if (utfForm
.empty()) { // iconv failed so treat as Latin1
702 utfForm
= UTF8FromLatin1(s
, len
);
704 pango_layout_set_text(layout
, utfForm
.c_str(), utfForm
.length());
706 pango_layout_set_font_description(layout
, PFont(font_
)->pfd
);
707 pango_cairo_update_layout(context
, layout
);
709 PangoLayoutLine
*pll
= pango_layout_get_line_readonly(layout
,0);
711 PangoLayoutLine
*pll
= pango_layout_get_line(layout
,0);
713 cairo_move_to(context
, xText
, ybase
);
714 pango_cairo_show_layout_line(context
, pll
);
719 void SurfaceImpl::DrawTextNoClip(PRectangle rc
, Font
&font_
, XYPOSITION ybase
, const char *s
, int len
,
720 ColourDesired fore
, ColourDesired back
) {
721 FillRectangle(rc
, back
);
722 DrawTextBase(rc
, font_
, ybase
, s
, len
, fore
);
725 // On GTK+, exactly same as DrawTextNoClip
726 void SurfaceImpl::DrawTextClipped(PRectangle rc
, Font
&font_
, XYPOSITION ybase
, const char *s
, int len
,
727 ColourDesired fore
, ColourDesired back
) {
728 FillRectangle(rc
, back
);
729 DrawTextBase(rc
, font_
, ybase
, s
, len
, fore
);
732 void SurfaceImpl::DrawTextTransparent(PRectangle rc
, Font
&font_
, XYPOSITION ybase
, const char *s
, int len
,
733 ColourDesired fore
) {
734 // Avoid drawing spaces in transparent mode
735 for (int i
=0; i
<len
; i
++) {
737 DrawTextBase(rc
, font_
, ybase
, s
, len
, fore
);
743 class ClusterIterator
{
744 PangoLayoutIter
*iter
;
749 XYPOSITION positionStart
;
753 ClusterIterator(PangoLayout
*layout
, int len
) : lenPositions(len
), finished(false),
754 positionStart(0), position(0), distance(0), curIndex(0) {
755 iter
= pango_layout_get_iter(layout
);
756 pango_layout_iter_get_cluster_extents(iter
, NULL
, &pos
);
759 pango_layout_iter_free(iter
);
763 positionStart
= position
;
764 if (pango_layout_iter_next_cluster(iter
)) {
765 pango_layout_iter_get_cluster_extents(iter
, NULL
, &pos
);
766 position
= doubleFromPangoUnits(pos
.x
);
767 curIndex
= pango_layout_iter_get_index(iter
);
770 position
= doubleFromPangoUnits(pos
.x
+ pos
.width
);
771 curIndex
= lenPositions
;
773 distance
= position
- positionStart
;
777 void SurfaceImpl::MeasureWidths(Font
&font_
, const char *s
, int len
, XYPOSITION
*positions
) {
779 const int lenPositions
= len
;
780 if (PFont(font_
)->pfd
) {
781 pango_layout_set_font_description(layout
, PFont(font_
)->pfd
);
783 // Simple and direct as UTF-8 is native Pango encoding
785 pango_layout_set_text(layout
, s
, len
);
786 ClusterIterator
iti(layout
, lenPositions
);
787 while (!iti
.finished
) {
789 int places
= iti
.curIndex
- i
;
790 while (i
< iti
.curIndex
) {
791 // Evenly distribute space among bytes of this cluster.
792 // Would be better to find number of characters and then
793 // divide evenly between characters with each byte of a character
794 // being at the same position.
795 positions
[i
] = iti
.position
- (iti
.curIndex
- 1 - i
) * iti
.distance
/ places
;
799 PLATFORM_ASSERT(i
== lenPositions
);
801 int positionsCalculated
= 0;
803 SetConverter(PFont(font_
)->characterSet
);
804 std::string utfForm
= UTF8FromIconv(conv
, s
, len
);
805 if (!utfForm
.empty()) {
806 // Convert to UTF-8 so can ask Pango for widths, then
807 // Loop through UTF-8 and DBCS forms, taking account of different
808 // character byte lengths.
809 Converter
convMeasure("UCS-2", CharacterSetID(characterSet
), false);
810 pango_layout_set_text(layout
, utfForm
.c_str(), strlen(utfForm
.c_str()));
812 int clusterStart
= 0;
813 ClusterIterator
iti(layout
, strlen(utfForm
.c_str()));
814 while (!iti
.finished
) {
816 int clusterEnd
= iti
.curIndex
;
817 int places
= g_utf8_strlen(utfForm
.c_str() + clusterStart
, clusterEnd
- clusterStart
);
819 while (clusterStart
< clusterEnd
) {
820 size_t lenChar
= MultiByteLenFromIconv(convMeasure
, s
+i
, len
-i
);
822 positions
[i
++] = iti
.position
- (places
- place
) * iti
.distance
/ places
;
823 positionsCalculated
++;
825 clusterStart
+= UTF8CharLength(static_cast<unsigned char>(utfForm
.c_str()[clusterStart
]));
829 PLATFORM_ASSERT(i
== lenPositions
);
832 if (positionsCalculated
< 1 ) {
833 // Either 8-bit or DBCS conversion failed so treat as 8-bit.
834 SetConverter(PFont(font_
)->characterSet
);
835 const bool rtlCheck
= PFont(font_
)->characterSet
== SC_CHARSET_HEBREW
||
836 PFont(font_
)->characterSet
== SC_CHARSET_ARABIC
;
837 std::string utfForm
= UTF8FromIconv(conv
, s
, len
);
838 if (utfForm
.empty()) {
839 utfForm
= UTF8FromLatin1(s
, len
);
841 pango_layout_set_text(layout
, utfForm
.c_str(), utfForm
.length());
843 int clusterStart
= 0;
844 // Each 8-bit input character may take 1 or 2 bytes in UTF-8
845 // and groups of up to 3 may be represented as ligatures.
846 ClusterIterator
iti(layout
, utfForm
.length());
847 while (!iti
.finished
) {
849 int clusterEnd
= iti
.curIndex
;
850 int ligatureLength
= g_utf8_strlen(utfForm
.c_str() + clusterStart
, clusterEnd
- clusterStart
);
851 if (rtlCheck
&& ((clusterEnd
<= clusterStart
) || (ligatureLength
== 0) || (ligatureLength
> 3))) {
852 // Something has gone wrong: exit quickly but pretend all the characters are equally spaced:
854 pango_layout_get_size(layout
, &widthLayout
, NULL
);
855 XYPOSITION widthTotal
= doubleFromPangoUnits(widthLayout
);
856 for (int bytePos
=0; bytePos
<lenPositions
; bytePos
++) {
857 positions
[bytePos
] = widthTotal
/ lenPositions
* (bytePos
+ 1);
861 PLATFORM_ASSERT(ligatureLength
> 0 && ligatureLength
<= 3);
862 for (int charInLig
=0; charInLig
<ligatureLength
; charInLig
++) {
863 positions
[i
++] = iti
.position
- (ligatureLength
- 1 - charInLig
) * iti
.distance
/ ligatureLength
;
865 clusterStart
= clusterEnd
;
867 while (i
< lenPositions
) {
868 // If something failed, fill in rest of the positions
869 positions
[i
++] = clusterStart
;
871 PLATFORM_ASSERT(i
== lenPositions
);
876 // No font so return an ascending range of values
877 for (int i
= 0; i
< len
; i
++) {
878 positions
[i
] = i
+ 1;
883 XYPOSITION
SurfaceImpl::WidthText(Font
&font_
, const char *s
, int len
) {
885 if (PFont(font_
)->pfd
) {
887 pango_layout_set_font_description(layout
, PFont(font_
)->pfd
);
890 pango_layout_set_text(layout
, s
, len
);
892 SetConverter(PFont(font_
)->characterSet
);
893 utfForm
= UTF8FromIconv(conv
, s
, len
);
894 if (utfForm
.empty()) { // iconv failed so treat as Latin1
895 utfForm
= UTF8FromLatin1(s
, len
);
897 pango_layout_set_text(layout
, utfForm
.c_str(), utfForm
.length());
900 PangoLayoutLine
*pangoLine
= pango_layout_get_line_readonly(layout
,0);
902 PangoLayoutLine
*pangoLine
= pango_layout_get_line(layout
,0);
904 pango_layout_line_get_extents(pangoLine
, NULL
, &pos
);
905 return doubleFromPangoUnits(pos
.width
);
913 XYPOSITION
SurfaceImpl::WidthChar(Font
&font_
, char ch
) {
915 if (PFont(font_
)->pfd
) {
916 return WidthText(font_
, &ch
, 1);
924 // Ascent and descent determined by Pango font metrics.
926 XYPOSITION
SurfaceImpl::Ascent(Font
&font_
) {
927 if (!(font_
.GetID()))
930 if (PFont(font_
)->pfd
) {
931 PangoFontMetrics
*metrics
= pango_context_get_metrics(pcontext
,
932 PFont(font_
)->pfd
, pango_context_get_language(pcontext
));
934 doubleFromPangoUnits(pango_font_metrics_get_ascent(metrics
));
935 pango_font_metrics_unref(metrics
);
943 XYPOSITION
SurfaceImpl::Descent(Font
&font_
) {
944 if (!(font_
.GetID()))
946 if (PFont(font_
)->pfd
) {
947 PangoFontMetrics
*metrics
= pango_context_get_metrics(pcontext
,
948 PFont(font_
)->pfd
, pango_context_get_language(pcontext
));
949 int descent
= doubleFromPangoUnits(pango_font_metrics_get_descent(metrics
));
950 pango_font_metrics_unref(metrics
);
956 XYPOSITION
SurfaceImpl::InternalLeading(Font
&) {
960 XYPOSITION
SurfaceImpl::ExternalLeading(Font
&) {
964 XYPOSITION
SurfaceImpl::Height(Font
&font_
) {
965 return Ascent(font_
) + Descent(font_
);
968 XYPOSITION
SurfaceImpl::AverageCharWidth(Font
&font_
) {
969 return WidthChar(font_
, 'n');
972 void SurfaceImpl::SetClip(PRectangle rc
) {
973 PLATFORM_ASSERT(context
);
974 cairo_rectangle(context
, rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
978 void SurfaceImpl::FlushCachedState() {}
980 void SurfaceImpl::SetUnicodeMode(bool unicodeMode_
) {
985 void SurfaceImpl::SetDBCSMode(int codePage
) {
986 if (codePage
&& (codePage
!= SC_CP_UTF8
))
990 Surface
*Surface::Allocate(int) {
991 return new SurfaceImpl();
996 void Window::Destroy() {
998 ListBox
*listbox
= dynamic_cast<ListBox
*>(this);
1000 gtk_widget_hide(GTK_WIDGET(wid
));
1001 // clear up window content
1003 // resize the window to the smallest possible size for it to adapt
1004 // to future content
1005 gtk_window_resize(GTK_WINDOW(wid
), 1, 1);
1007 gtk_widget_destroy(GTK_WIDGET(wid
));
1013 bool Window::HasFocus() {
1014 return gtk_widget_has_focus(GTK_WIDGET(wid
));
1017 PRectangle
Window::GetPosition() {
1018 // Before any size allocated pretend its 1000 wide so not scrolled
1019 PRectangle
rc(0, 0, 1000, 1000);
1021 GtkAllocation allocation
;
1022 gtk_widget_get_allocation(PWidget(wid
), &allocation
);
1023 rc
.left
= allocation
.x
;
1024 rc
.top
= allocation
.y
;
1025 if (allocation
.width
> 20) {
1026 rc
.right
= rc
.left
+ allocation
.width
;
1027 rc
.bottom
= rc
.top
+ allocation
.height
;
1033 void Window::SetPosition(PRectangle rc
) {
1034 GtkAllocation alloc
;
1037 alloc
.width
= rc
.Width();
1038 alloc
.height
= rc
.Height();
1039 gtk_widget_size_allocate(PWidget(wid
), &alloc
);
1042 void Window::SetPositionRelative(PRectangle rc
, Window relativeTo
) {
1045 gdk_window_get_origin(WindowFromWidget(PWidget(relativeTo
.wid
)), &ox
, &oy
);
1053 /* do some corrections to fit into screen */
1054 int sizex
= rc
.right
- rc
.left
;
1055 int sizey
= rc
.bottom
- rc
.top
;
1056 int screenWidth
= gdk_screen_width();
1057 int screenHeight
= gdk_screen_height();
1058 if (sizex
> screenWidth
)
1059 ox
= 0; /* the best we can do */
1060 else if (ox
+ sizex
> screenWidth
)
1061 ox
= screenWidth
- sizex
;
1062 if (oy
+ sizey
> screenHeight
)
1063 oy
= screenHeight
- sizey
;
1065 gtk_window_move(GTK_WINDOW(PWidget(wid
)), ox
, oy
);
1067 gtk_window_resize(GTK_WINDOW(wid
), sizex
, sizey
);
1070 PRectangle
Window::GetClientPosition() {
1071 // On GTK+, the client position is the window position
1072 return GetPosition();
1075 void Window::Show(bool show
) {
1077 gtk_widget_show(PWidget(wid
));
1080 void Window::InvalidateAll() {
1082 gtk_widget_queue_draw(PWidget(wid
));
1086 void Window::InvalidateRectangle(PRectangle rc
) {
1088 gtk_widget_queue_draw_area(PWidget(wid
),
1090 rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
1094 void Window::SetFont(Font
&) {
1095 // Can not be done generically but only needed for ListBox
1098 void Window::SetCursor(Cursor curs
) {
1099 // We don't set the cursor to same value numerous times under gtk because
1100 // it stores the cursor in the window once it's set
1101 if (curs
== cursorLast
)
1105 GdkDisplay
*pdisplay
= gtk_widget_get_display(PWidget(wid
));
1110 gdkCurs
= gdk_cursor_new_for_display(pdisplay
, GDK_XTERM
);
1113 gdkCurs
= gdk_cursor_new_for_display(pdisplay
, GDK_LEFT_PTR
);
1116 gdkCurs
= gdk_cursor_new_for_display(pdisplay
, GDK_CENTER_PTR
);
1119 gdkCurs
= gdk_cursor_new_for_display(pdisplay
, GDK_WATCH
);
1122 gdkCurs
= gdk_cursor_new_for_display(pdisplay
, GDK_HAND2
);
1124 case cursorReverseArrow
:
1125 gdkCurs
= gdk_cursor_new_for_display(pdisplay
, GDK_RIGHT_PTR
);
1128 gdkCurs
= gdk_cursor_new_for_display(pdisplay
, GDK_LEFT_PTR
);
1129 cursorLast
= cursorArrow
;
1133 if (WindowFromWidget(PWidget(wid
)))
1134 gdk_window_set_cursor(WindowFromWidget(PWidget(wid
)), gdkCurs
);
1135 #if GTK_CHECK_VERSION(3,0,0)
1136 g_object_unref(gdkCurs
);
1138 gdk_cursor_unref(gdkCurs
);
1142 void Window::SetTitle(const char *s
) {
1143 gtk_window_set_title(GTK_WINDOW(wid
), s
);
1146 /* Returns rectangle of monitor pt is on, both rect and pt are in Window's
1147 gdk window coordinates */
1148 PRectangle
Window::GetMonitorRect(Point pt
) {
1149 gint x_offset
, y_offset
;
1151 gdk_window_get_origin(WindowFromWidget(PWidget(wid
)), &x_offset
, &y_offset
);
1157 screen
= gtk_widget_get_screen(PWidget(wid
));
1158 monitor_num
= gdk_screen_get_monitor_at_point(screen
, pt
.x
+ x_offset
, pt
.y
+ y_offset
);
1159 gdk_screen_get_monitor_geometry(screen
, monitor_num
, &rect
);
1162 return PRectangle(rect
.x
, rect
.y
, rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
1165 typedef std::map
<int, RGBAImage
*> ImageMap
;
1168 const RGBAImage
*rgba_data
;
1172 static void list_image_free(gpointer
, gpointer value
, gpointer
) {
1173 ListImage
*list_image
= static_cast<ListImage
*>(value
);
1174 if (list_image
->pixbuf
)
1175 g_object_unref(list_image
->pixbuf
);
1179 ListBox::ListBox() {
1182 ListBox::~ListBox() {
1191 class ListBoxX
: public ListBox
{
1197 GtkCellRenderer
* pixbuf_renderer
;
1198 GtkCellRenderer
* renderer
;
1199 RGBAImageSet images
;
1200 int desiredVisibleRows
;
1201 unsigned int maxItemCharacters
;
1202 unsigned int aveCharWidth
;
1203 #if GTK_CHECK_VERSION(3,0,0)
1204 GtkCssProvider
*cssProvider
;
1207 CallBackAction doubleClickAction
;
1208 void *doubleClickActionData
;
1210 ListBoxX() : widCached(0), frame(0), list(0), scroller(0), pixhash(NULL
), pixbuf_renderer(0),
1212 desiredVisibleRows(5), maxItemCharacters(0),
1214 #if GTK_CHECK_VERSION(3,0,0)
1217 doubleClickAction(NULL
), doubleClickActionData(NULL
) {
1219 virtual ~ListBoxX() {
1221 g_hash_table_foreach((GHashTable
*) pixhash
, list_image_free
, NULL
);
1222 g_hash_table_destroy((GHashTable
*) pixhash
);
1225 gtk_widget_destroy(GTK_WIDGET(widCached
));
1226 wid
= widCached
= 0;
1228 #if GTK_CHECK_VERSION(3,0,0)
1230 g_object_unref(cssProvider
);
1235 virtual void SetFont(Font
&font
);
1236 virtual void Create(Window
&parent
, int ctrlID
, Point location_
, int lineHeight_
, bool unicodeMode_
, int technology_
);
1237 virtual void SetAverageCharWidth(int width
);
1238 virtual void SetVisibleRows(int rows
);
1239 virtual int GetVisibleRows() const;
1241 virtual PRectangle
GetDesiredRect();
1242 virtual int CaretFromEdge();
1243 virtual void Clear();
1244 virtual void Append(char *s
, int type
= -1);
1245 virtual int Length();
1246 virtual void Select(int n
);
1247 virtual int GetSelection();
1248 virtual int Find(const char *prefix
);
1249 virtual void GetValue(int n
, char *value
, int len
);
1250 void RegisterRGBA(int type
, RGBAImage
*image
);
1251 virtual void RegisterImage(int type
, const char *xpm_data
);
1252 virtual void RegisterRGBAImage(int type
, int width
, int height
, const unsigned char *pixelsImage
);
1253 virtual void ClearRegisteredImages();
1254 virtual void SetDoubleClickAction(CallBackAction action
, void *data
) {
1255 doubleClickAction
= action
;
1256 doubleClickActionData
= data
;
1258 virtual void SetList(const char *listText
, char separator
, char typesep
);
1261 ListBox
*ListBox::Allocate() {
1262 ListBoxX
*lb
= new ListBoxX();
1266 static int treeViewGetRowHeight(GtkTreeView
*view
) {
1267 #if GTK_CHECK_VERSION(3,0,0)
1268 // This version sometimes reports erroneous results on GTK2, but the GTK2
1269 // version is inaccurate for GTK 3.14.
1271 GtkTreePath
*path
= gtk_tree_path_new_first();
1272 gtk_tree_view_get_background_area(view
, path
, NULL
, &rect
);
1273 gtk_tree_path_free(path
);
1277 int vertical_separator
=0;
1278 int expander_size
=0;
1279 GtkTreeViewColumn
*column
= gtk_tree_view_get_column(view
, 0);
1280 gtk_tree_view_column_cell_get_size(column
, NULL
, NULL
, NULL
, NULL
, &row_height
);
1281 gtk_widget_style_get(GTK_WIDGET(view
),
1282 "vertical-separator", &vertical_separator
,
1283 "expander-size", &expander_size
, NULL
);
1284 row_height
+= vertical_separator
;
1285 row_height
= Platform::Maximum(row_height
, expander_size
);
1290 // SmallScroller, a GtkScrolledWindow that can shrink very small, as
1291 // gtk_widget_set_size_request() cannot shrink widgets on GTK3
1293 GtkScrolledWindow parent
;
1294 /* Workaround ABI issue with Windows GTK2 bundle and GCC > 3.
1295 See http://lists.geany.org/pipermail/devel/2015-April/thread.html#9379
1297 GtkScrolledWindow contains a bitfield, and GCC 3.4 and 4.8 don't agree
1298 on the size of the structure (regardless of -mms-bitfields):
1299 - GCC 3.4 has sizeof(GtkScrolledWindow)=88
1300 - GCC 4.8 has sizeof(GtkScrolledWindow)=84
1301 As Windows GTK2 bundle is built with GCC 3, it requires types derived
1302 from GtkScrolledWindow to be at least 88 bytes, which means we need to
1303 add some fake padding to fill in the extra 4 bytes.
1304 There is however no other issue with the layout difference as we never
1305 access any GtkScrolledWindow fields ourselves. */
1308 typedef GtkScrolledWindowClass SmallScrollerClass
;
1310 G_DEFINE_TYPE(SmallScroller
, small_scroller
, GTK_TYPE_SCROLLED_WINDOW
)
1312 #if GTK_CHECK_VERSION(3,0,0)
1313 static void small_scroller_get_preferred_height(GtkWidget
*widget
, gint
*min
, gint
*nat
) {
1314 GtkWidget
*child
= gtk_bin_get_child(GTK_BIN(widget
));
1315 if (GTK_IS_TREE_VIEW(child
)) {
1316 GtkTreeModel
*model
= gtk_tree_view_get_model(GTK_TREE_VIEW(child
));
1317 int n_rows
= gtk_tree_model_iter_n_children(model
, NULL
);
1318 int row_height
= treeViewGetRowHeight(GTK_TREE_VIEW(child
));
1320 *min
= MAX(1, row_height
);
1321 *nat
= MAX(*min
, n_rows
* row_height
);
1323 GTK_WIDGET_CLASS(small_scroller_parent_class
)->get_preferred_height(widget
, min
, nat
);
1329 static void small_scroller_size_request(GtkWidget
*widget
, GtkRequisition
*req
) {
1330 GTK_WIDGET_CLASS(small_scroller_parent_class
)->size_request(widget
, req
);
1335 static void small_scroller_class_init(SmallScrollerClass
*klass
) {
1336 #if GTK_CHECK_VERSION(3,0,0)
1337 GTK_WIDGET_CLASS(klass
)->get_preferred_height
= small_scroller_get_preferred_height
;
1339 GTK_WIDGET_CLASS(klass
)->size_request
= small_scroller_size_request
;
1343 static void small_scroller_init(SmallScroller
*){}
1345 static gboolean
ButtonPress(GtkWidget
*, GdkEventButton
* ev
, gpointer p
) {
1347 ListBoxX
* lb
= static_cast<ListBoxX
*>(p
);
1348 if (ev
->type
== GDK_2BUTTON_PRESS
&& lb
->doubleClickAction
!= NULL
) {
1349 lb
->doubleClickAction(lb
->doubleClickActionData
);
1354 // No pointer back to Scintilla to save status
1359 /* Change the active color to the selected color so the listbox uses the color
1360 scheme that it would use if it had the focus. */
1361 static void StyleSet(GtkWidget
*w
, GtkStyle
*, void*) {
1363 g_return_if_fail(w
!= NULL
);
1365 /* Copy the selected color to active. Note that the modify calls will cause
1366 recursive calls to this function after the value is updated and w->style to
1367 be set to a new object */
1369 #if GTK_CHECK_VERSION(3,16,0)
1370 // On recent releases of GTK+, it does not appear necessary to set the list box colours.
1371 // This may be because of common themes and may be needed with other themes.
1372 // The *override* calls are deprecated now, so only call them for older versions of GTK+.
1373 #elif GTK_CHECK_VERSION(3,0,0)
1374 GtkStyleContext
*styleContext
= gtk_widget_get_style_context(w
);
1375 if (styleContext
== NULL
)
1378 GdkRGBA colourForeSelected
;
1379 gtk_style_context_get_color(styleContext
, GTK_STATE_FLAG_SELECTED
, &colourForeSelected
);
1380 GdkRGBA colourForeActive
;
1381 gtk_style_context_get_color(styleContext
, GTK_STATE_FLAG_ACTIVE
, &colourForeActive
);
1382 if (!gdk_rgba_equal(&colourForeSelected
, &colourForeActive
))
1383 gtk_widget_override_color(w
, GTK_STATE_FLAG_ACTIVE
, &colourForeSelected
);
1385 styleContext
= gtk_widget_get_style_context(w
);
1386 if (styleContext
== NULL
)
1389 GdkRGBA colourBaseSelected
;
1390 gtk_style_context_get_background_color(styleContext
, GTK_STATE_FLAG_SELECTED
, &colourBaseSelected
);
1391 GdkRGBA colourBaseActive
;
1392 gtk_style_context_get_background_color(styleContext
, GTK_STATE_FLAG_ACTIVE
, &colourBaseActive
);
1393 if (!gdk_rgba_equal(&colourBaseSelected
, &colourBaseActive
))
1394 gtk_widget_override_background_color(w
, GTK_STATE_FLAG_ACTIVE
, &colourBaseSelected
);
1396 GtkStyle
*style
= gtk_widget_get_style(w
);
1399 if (!gdk_color_equal(&style
->base
[GTK_STATE_SELECTED
], &style
->base
[GTK_STATE_ACTIVE
]))
1400 gtk_widget_modify_base(w
, GTK_STATE_ACTIVE
, &style
->base
[GTK_STATE_SELECTED
]);
1401 style
= gtk_widget_get_style(w
);
1404 if (!gdk_color_equal(&style
->text
[GTK_STATE_SELECTED
], &style
->text
[GTK_STATE_ACTIVE
]))
1405 gtk_widget_modify_text(w
, GTK_STATE_ACTIVE
, &style
->text
[GTK_STATE_SELECTED
]);
1409 void ListBoxX::Create(Window
&, int, Point
, int, bool, int) {
1410 if (widCached
!= 0) {
1415 #if GTK_CHECK_VERSION(3,0,0)
1417 cssProvider
= gtk_css_provider_new();
1421 wid
= widCached
= gtk_window_new(GTK_WINDOW_POPUP
);
1423 frame
= gtk_frame_new(NULL
);
1424 gtk_widget_show(PWidget(frame
));
1425 gtk_container_add(GTK_CONTAINER(GetID()), PWidget(frame
));
1426 gtk_frame_set_shadow_type(GTK_FRAME(frame
), GTK_SHADOW_OUT
);
1427 gtk_container_set_border_width(GTK_CONTAINER(frame
), 0);
1429 scroller
= g_object_new(small_scroller_get_type(), NULL
);
1430 gtk_container_set_border_width(GTK_CONTAINER(scroller
), 0);
1431 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroller
),
1432 GTK_POLICY_NEVER
, GTK_POLICY_AUTOMATIC
);
1433 gtk_container_add(GTK_CONTAINER(frame
), PWidget(scroller
));
1434 gtk_widget_show(PWidget(scroller
));
1436 /* Tree and its model */
1437 GtkListStore
*store
=
1438 gtk_list_store_new(N_COLUMNS
, GDK_TYPE_PIXBUF
, G_TYPE_STRING
);
1440 list
= gtk_tree_view_new_with_model(GTK_TREE_MODEL(store
));
1441 g_signal_connect(G_OBJECT(list
), "style-set", G_CALLBACK(StyleSet
), NULL
);
1443 #if GTK_CHECK_VERSION(3,0,0)
1444 GtkStyleContext
*styleContext
= gtk_widget_get_style_context(GTK_WIDGET(list
));
1446 gtk_style_context_add_provider(styleContext
, GTK_STYLE_PROVIDER(cssProvider
),
1447 GTK_STYLE_PROVIDER_PRIORITY_APPLICATION
);
1451 GtkTreeSelection
*selection
=
1452 gtk_tree_view_get_selection(GTK_TREE_VIEW(list
));
1453 gtk_tree_selection_set_mode(selection
, GTK_SELECTION_SINGLE
);
1454 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(list
), FALSE
);
1455 gtk_tree_view_set_reorderable(GTK_TREE_VIEW(list
), FALSE
);
1458 GtkTreeViewColumn
*column
= gtk_tree_view_column_new();
1459 gtk_tree_view_column_set_sizing(column
, GTK_TREE_VIEW_COLUMN_FIXED
);
1460 gtk_tree_view_column_set_title(column
, "Autocomplete");
1462 pixbuf_renderer
= gtk_cell_renderer_pixbuf_new();
1463 gtk_cell_renderer_set_fixed_size(pixbuf_renderer
, 0, -1);
1464 gtk_tree_view_column_pack_start(column
, pixbuf_renderer
, FALSE
);
1465 gtk_tree_view_column_add_attribute(column
, pixbuf_renderer
,
1466 "pixbuf", PIXBUF_COLUMN
);
1468 renderer
= gtk_cell_renderer_text_new();
1469 gtk_cell_renderer_text_set_fixed_height_from_font(GTK_CELL_RENDERER_TEXT(renderer
), 1);
1470 gtk_tree_view_column_pack_start(column
, renderer
, TRUE
);
1471 gtk_tree_view_column_add_attribute(column
, renderer
,
1472 "text", TEXT_COLUMN
);
1474 gtk_tree_view_append_column(GTK_TREE_VIEW(list
), column
);
1475 if (g_object_class_find_property(G_OBJECT_GET_CLASS(list
), "fixed-height-mode"))
1476 g_object_set(G_OBJECT(list
), "fixed-height-mode", TRUE
, NULL
);
1478 GtkWidget
*widget
= PWidget(list
); // No code inside the G_OBJECT macro
1479 gtk_container_add(GTK_CONTAINER(PWidget(scroller
)), widget
);
1480 gtk_widget_show(widget
);
1481 g_signal_connect(G_OBJECT(widget
), "button_press_event",
1482 G_CALLBACK(ButtonPress
), this);
1485 void ListBoxX::SetFont(Font
&scint_font
) {
1486 // Only do for Pango font as there have been crashes for GDK fonts
1487 if (Created() && PFont(scint_font
)->pfd
) {
1488 // Current font is Pango font
1489 #if GTK_CHECK_VERSION(3,0,0)
1491 PangoFontDescription
*pfd
= PFont(scint_font
)->pfd
;
1492 std::ostringstream ssFontSetting
;
1493 ssFontSetting
<< "GtkTreeView, treeview { ";
1494 ssFontSetting
<< "font-family: " << pango_font_description_get_family(pfd
) << "; ";
1495 ssFontSetting
<< "font-size:";
1496 ssFontSetting
<< static_cast<double>(pango_font_description_get_size(pfd
)) / PANGO_SCALE
;
1497 // On GTK < 3.21.0 the units are incorrectly parsed, so a font size in points
1498 // need to use the "px" unit. Normally we only get fonts in points here, so
1499 // don't bother to handle the case the font is actually in pixels on < 3.21.0.
1500 if (gtk_check_version(3, 21, 0) != NULL
|| // on < 3.21.0
1501 pango_font_description_get_size_is_absolute(pfd
)) {
1502 ssFontSetting
<< "px; ";
1504 ssFontSetting
<< "pt; ";
1506 ssFontSetting
<< "font-weight:"<< pango_font_description_get_weight(pfd
) << "; ";
1507 ssFontSetting
<< "}";
1508 gtk_css_provider_load_from_data(GTK_CSS_PROVIDER(cssProvider
),
1509 ssFontSetting
.str().c_str(), -1, NULL
);
1512 gtk_widget_modify_font(PWidget(list
), PFont(scint_font
)->pfd
);
1514 gtk_cell_renderer_text_set_fixed_height_from_font(GTK_CELL_RENDERER_TEXT(renderer
), -1);
1515 gtk_cell_renderer_text_set_fixed_height_from_font(GTK_CELL_RENDERER_TEXT(renderer
), 1);
1519 void ListBoxX::SetAverageCharWidth(int width
) {
1520 aveCharWidth
= width
;
1523 void ListBoxX::SetVisibleRows(int rows
) {
1524 desiredVisibleRows
= rows
;
1527 int ListBoxX::GetVisibleRows() const {
1528 return desiredVisibleRows
;
1531 int ListBoxX::GetRowHeight() {
1532 return treeViewGetRowHeight(GTK_TREE_VIEW(list
));
1535 PRectangle
ListBoxX::GetDesiredRect() {
1536 // Before any size allocated pretend its 100 wide so not scrolled
1537 PRectangle
rc(0, 0, 100, 100);
1539 int rows
= Length();
1540 if ((rows
== 0) || (rows
> desiredVisibleRows
))
1541 rows
= desiredVisibleRows
;
1544 // This, apparently unnecessary call, ensures gtk_tree_view_column_cell_get_size
1545 // returns reasonable values.
1546 #if GTK_CHECK_VERSION(3,0,0)
1547 gtk_widget_get_preferred_size(GTK_WIDGET(frame
), NULL
, &req
);
1549 gtk_widget_size_request(GTK_WIDGET(frame
), &req
);
1553 // First calculate height of the clist for our desired visible
1554 // row count otherwise it tries to expand to the total # of rows
1556 int row_height
= GetRowHeight();
1557 #if GTK_CHECK_VERSION(3,0,0)
1558 GtkStyleContext
*styleContextFrame
= gtk_widget_get_style_context(PWidget(frame
));
1559 GtkStateFlags stateFlagsFrame
= gtk_style_context_get_state(styleContextFrame
);
1560 GtkBorder padding
, border
, border_border
= { 0, 0, 0, 0 };
1561 gtk_style_context_get_padding(styleContextFrame
, stateFlagsFrame
, &padding
);
1562 gtk_style_context_get_border(styleContextFrame
, stateFlagsFrame
, &border
);
1564 # if GTK_CHECK_VERSION(3,20,0)
1565 // on GTK 3.20 the frame border is in a sub-node "border".
1566 // Unfortunately we need to be built against 3.20 to be able to support this, as it requires
1568 GtkStyleContext
*styleContextFrameBorder
= gtk_style_context_new();
1569 GtkWidgetPath
*widget_path
= gtk_widget_path_copy(gtk_style_context_get_path(styleContextFrame
));
1570 gtk_widget_path_append_type(widget_path
, GTK_TYPE_BORDER
); // dummy type
1571 gtk_widget_path_iter_set_object_name(widget_path
, -1, "border");
1572 gtk_style_context_set_path(styleContextFrameBorder
, widget_path
);
1573 gtk_widget_path_free(widget_path
);
1574 gtk_style_context_get_border(styleContextFrameBorder
, stateFlagsFrame
, &border_border
);
1575 g_object_unref(styleContextFrameBorder
);
1577 if (gtk_check_version(3, 20, 0) == NULL
) {
1578 // default to 1px all around as it's likely what it is, and so we don't miss 2px height
1579 // on GTK 3.20 when built against an earlier version.
1580 border_border
.top
= border_border
.bottom
= border_border
.left
= border_border
.right
= 1;
1584 height
= (rows
* row_height
1585 + padding
.top
+ padding
.bottom
1586 + border
.top
+ border
.bottom
1587 + border_border
.top
+ border_border
.bottom
1588 + 2 * gtk_container_get_border_width(GTK_CONTAINER(PWidget(list
))));
1590 height
= (rows
* row_height
1591 + 2 * (PWidget(frame
)->style
->ythickness
1592 + GTK_CONTAINER(PWidget(list
))->border_width
));
1596 int width
= maxItemCharacters
;
1599 rc
.right
= width
* (aveCharWidth
+ aveCharWidth
/ 3);
1600 // Add horizontal padding and borders
1601 int horizontal_separator
=0;
1602 gtk_widget_style_get(PWidget(list
),
1603 "horizontal-separator", &horizontal_separator
, NULL
);
1604 rc
.right
+= horizontal_separator
;
1605 #if GTK_CHECK_VERSION(3,0,0)
1606 rc
.right
+= (padding
.left
+ padding
.right
1607 + border
.left
+ border
.right
1608 + border_border
.left
+ border_border
.right
1609 + 2 * gtk_container_get_border_width(GTK_CONTAINER(PWidget(list
))));
1611 rc
.right
+= 2 * (PWidget(frame
)->style
->xthickness
1612 + GTK_CONTAINER(PWidget(list
))->border_width
);
1614 if (Length() > rows
) {
1615 // Add the width of the scrollbar
1616 GtkWidget
*vscrollbar
=
1617 gtk_scrolled_window_get_vscrollbar(GTK_SCROLLED_WINDOW(scroller
));
1618 #if GTK_CHECK_VERSION(3,0,0)
1619 gtk_widget_get_preferred_size(vscrollbar
, NULL
, &req
);
1621 gtk_widget_size_request(vscrollbar
, &req
);
1623 rc
.right
+= req
.width
;
1629 int ListBoxX::CaretFromEdge() {
1630 gint renderer_width
, renderer_height
;
1631 gtk_cell_renderer_get_fixed_size(pixbuf_renderer
, &renderer_width
,
1633 return 4 + renderer_width
;
1636 void ListBoxX::Clear() {
1637 GtkTreeModel
*model
= gtk_tree_view_get_model(GTK_TREE_VIEW(list
));
1638 gtk_list_store_clear(GTK_LIST_STORE(model
));
1639 maxItemCharacters
= 0;
1642 static void init_pixmap(ListImage
*list_image
) {
1643 if (list_image
->rgba_data
) {
1644 // Drop any existing pixmap/bitmap as data may have changed
1645 if (list_image
->pixbuf
)
1646 g_object_unref(list_image
->pixbuf
);
1647 list_image
->pixbuf
=
1648 gdk_pixbuf_new_from_data(list_image
->rgba_data
->Pixels(),
1652 list_image
->rgba_data
->GetWidth(),
1653 list_image
->rgba_data
->GetHeight(),
1654 list_image
->rgba_data
->GetWidth() * 4,
1662 void ListBoxX::Append(char *s
, int type
) {
1663 ListImage
*list_image
= NULL
;
1664 if ((type
>= 0) && pixhash
) {
1665 list_image
= static_cast<ListImage
*>(g_hash_table_lookup((GHashTable
*) pixhash
1666 , (gconstpointer
) GINT_TO_POINTER(type
)));
1669 GtkListStore
*store
=
1670 GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(list
)));
1671 gtk_list_store_append(GTK_LIST_STORE(store
), &iter
);
1673 if (NULL
== list_image
->pixbuf
)
1674 init_pixmap(list_image
);
1675 if (list_image
->pixbuf
) {
1676 gtk_list_store_set(GTK_LIST_STORE(store
), &iter
,
1677 PIXBUF_COLUMN
, list_image
->pixbuf
,
1678 TEXT_COLUMN
, s
, -1);
1680 gint pixbuf_width
= gdk_pixbuf_get_width(list_image
->pixbuf
);
1681 gint renderer_height
, renderer_width
;
1682 gtk_cell_renderer_get_fixed_size(pixbuf_renderer
,
1683 &renderer_width
, &renderer_height
);
1684 if (pixbuf_width
> renderer_width
)
1685 gtk_cell_renderer_set_fixed_size(pixbuf_renderer
,
1688 gtk_list_store_set(GTK_LIST_STORE(store
), &iter
,
1689 TEXT_COLUMN
, s
, -1);
1692 gtk_list_store_set(GTK_LIST_STORE(store
), &iter
,
1693 TEXT_COLUMN
, s
, -1);
1695 size_t len
= strlen(s
);
1696 if (maxItemCharacters
< len
)
1697 maxItemCharacters
= len
;
1700 int ListBoxX::Length() {
1702 return gtk_tree_model_iter_n_children(gtk_tree_view_get_model
1703 (GTK_TREE_VIEW(list
)), NULL
);
1707 void ListBoxX::Select(int n
) {
1709 GtkTreeModel
*model
= gtk_tree_view_get_model(GTK_TREE_VIEW(list
));
1710 GtkTreeSelection
*selection
=
1711 gtk_tree_view_get_selection(GTK_TREE_VIEW(list
));
1714 gtk_tree_selection_unselect_all(selection
);
1718 bool valid
= gtk_tree_model_iter_nth_child(model
, &iter
, NULL
, n
) != FALSE
;
1720 gtk_tree_selection_select_iter(selection
, &iter
);
1722 // Move the scrollbar to show the selection.
1723 int total
= Length();
1724 #if GTK_CHECK_VERSION(3,0,0)
1725 GtkAdjustment
*adj
=
1726 gtk_scrollable_get_vadjustment(GTK_SCROLLABLE(list
));
1728 GtkAdjustment
*adj
=
1729 gtk_tree_view_get_vadjustment(GTK_TREE_VIEW(list
));
1731 gfloat value
= ((gfloat
)n
/ total
) * (gtk_adjustment_get_upper(adj
) - gtk_adjustment_get_lower(adj
))
1732 + gtk_adjustment_get_lower(adj
) - gtk_adjustment_get_page_size(adj
) / 2;
1734 int row_height
= GetRowHeight();
1736 int rows
= Length();
1737 if ((rows
== 0) || (rows
> desiredVisibleRows
))
1738 rows
= desiredVisibleRows
;
1740 // Odd rows to display -- We are now in the middle.
1741 // Align it so that we don't chop off rows.
1742 value
+= (gfloat
)row_height
/ 2.0;
1745 value
= (value
< 0)? 0 : value
;
1746 value
= (value
> (gtk_adjustment_get_upper(adj
) - gtk_adjustment_get_page_size(adj
)))?
1747 (gtk_adjustment_get_upper(adj
) - gtk_adjustment_get_page_size(adj
)) : value
;
1750 gtk_adjustment_set_value(adj
, value
);
1752 gtk_tree_selection_unselect_all(selection
);
1756 int ListBoxX::GetSelection() {
1759 GtkTreeModel
*model
;
1760 GtkTreeSelection
*selection
;
1761 selection
= gtk_tree_view_get_selection(GTK_TREE_VIEW(list
));
1762 if (gtk_tree_selection_get_selected(selection
, &model
, &iter
)) {
1763 GtkTreePath
*path
= gtk_tree_model_get_path(model
, &iter
);
1764 int *indices
= gtk_tree_path_get_indices(path
);
1765 // Don't free indices.
1768 gtk_tree_path_free(path
);
1773 int ListBoxX::Find(const char *prefix
) {
1775 GtkTreeModel
*model
=
1776 gtk_tree_view_get_model(GTK_TREE_VIEW(list
));
1777 bool valid
= gtk_tree_model_get_iter_first(model
, &iter
) != FALSE
;
1781 gtk_tree_model_get(model
, &iter
, TEXT_COLUMN
, &s
, -1);
1782 if (s
&& (0 == strncmp(prefix
, s
, strlen(prefix
)))) {
1787 valid
= gtk_tree_model_iter_next(model
, &iter
) != FALSE
;
1793 void ListBoxX::GetValue(int n
, char *value
, int len
) {
1796 GtkTreeModel
*model
= gtk_tree_view_get_model(GTK_TREE_VIEW(list
));
1797 bool valid
= gtk_tree_model_iter_nth_child(model
, &iter
, NULL
, n
) != FALSE
;
1799 gtk_tree_model_get(model
, &iter
, TEXT_COLUMN
, &text
, -1);
1801 if (text
&& len
> 0) {
1802 g_strlcpy(value
, text
, len
);
1809 // g_return_if_fail causes unnecessary compiler warning in release compile.
1811 #pragma warning(disable: 4127)
1814 void ListBoxX::RegisterRGBA(int type
, RGBAImage
*image
) {
1815 images
.Add(type
, image
);
1818 pixhash
= g_hash_table_new(g_direct_hash
, g_direct_equal
);
1820 ListImage
*list_image
= static_cast<ListImage
*>(g_hash_table_lookup((GHashTable
*) pixhash
,
1821 (gconstpointer
) GINT_TO_POINTER(type
)));
1823 // Drop icon already registered
1824 if (list_image
->pixbuf
)
1825 g_object_unref(list_image
->pixbuf
);
1826 list_image
->pixbuf
= NULL
;
1827 list_image
->rgba_data
= image
;
1829 list_image
= g_new0(ListImage
, 1);
1830 list_image
->rgba_data
= image
;
1831 g_hash_table_insert((GHashTable
*) pixhash
, GINT_TO_POINTER(type
),
1832 (gpointer
) list_image
);
1836 void ListBoxX::RegisterImage(int type
, const char *xpm_data
) {
1837 g_return_if_fail(xpm_data
);
1838 XPM
xpmImage(xpm_data
);
1839 RegisterRGBA(type
, new RGBAImage(xpmImage
));
1842 void ListBoxX::RegisterRGBAImage(int type
, int width
, int height
, const unsigned char *pixelsImage
) {
1843 RegisterRGBA(type
, new RGBAImage(width
, height
, 1.0, pixelsImage
));
1846 void ListBoxX::ClearRegisteredImages() {
1850 void ListBoxX::SetList(const char *listText
, char separator
, char typesep
) {
1852 int count
= strlen(listText
) + 1;
1853 std::vector
<char> words(listText
, listText
+count
);
1854 char *startword
= &words
[0];
1855 char *numword
= NULL
;
1857 for (; words
[i
]; i
++) {
1858 if (words
[i
] == separator
) {
1862 Append(startword
, numword
?atoi(numword
+ 1):-1);
1863 startword
= &words
[0] + i
+ 1;
1865 } else if (words
[i
] == typesep
) {
1866 numword
= &words
[0] + i
;
1872 Append(startword
, numword
?atoi(numword
+ 1):-1);
1876 Menu::Menu() : mid(0) {}
1878 void Menu::CreatePopUp() {
1880 mid
= gtk_menu_new();
1881 g_object_ref_sink(G_OBJECT(mid
));
1884 void Menu::Destroy() {
1886 g_object_unref(G_OBJECT(mid
));
1890 static void MenuPositionFunc(GtkMenu
*, gint
*x
, gint
*y
, gboolean
*, gpointer userData
) {
1891 sptr_t intFromPointer
= GPOINTER_TO_INT(userData
);
1892 *x
= intFromPointer
& 0xffff;
1893 *y
= intFromPointer
>> 16;
1896 void Menu::Show(Point pt
, Window
&) {
1897 int screenHeight
= gdk_screen_height();
1898 int screenWidth
= gdk_screen_width();
1899 GtkMenu
*widget
= static_cast<GtkMenu
*>(mid
);
1900 gtk_widget_show_all(GTK_WIDGET(widget
));
1901 GtkRequisition requisition
;
1902 #if GTK_CHECK_VERSION(3,0,0)
1903 gtk_widget_get_preferred_size(GTK_WIDGET(widget
), NULL
, &requisition
);
1905 gtk_widget_size_request(GTK_WIDGET(widget
), &requisition
);
1907 if ((pt
.x
+ requisition
.width
) > screenWidth
) {
1908 pt
.x
= screenWidth
- requisition
.width
;
1910 if ((pt
.y
+ requisition
.height
) > screenHeight
) {
1911 pt
.y
= screenHeight
- requisition
.height
;
1913 gtk_menu_popup(widget
, NULL
, NULL
, MenuPositionFunc
,
1914 GINT_TO_POINTER((static_cast<int>(pt
.y
) << 16) | static_cast<int>(pt
.x
)), 0,
1915 gtk_get_current_event_time());
1918 ElapsedTime::ElapsedTime() {
1920 g_get_current_time(&curTime
);
1921 bigBit
= curTime
.tv_sec
;
1922 littleBit
= curTime
.tv_usec
;
1925 class DynamicLibraryImpl
: public DynamicLibrary
{
1929 explicit DynamicLibraryImpl(const char *modulePath
) {
1930 m
= g_module_open(modulePath
, G_MODULE_BIND_LAZY
);
1933 virtual ~DynamicLibraryImpl() {
1938 // Use g_module_symbol to get a pointer to the relevant function.
1939 virtual Function
FindFunction(const char *name
) {
1941 gpointer fn_address
= NULL
;
1942 gboolean status
= g_module_symbol(m
, name
, &fn_address
);
1944 return static_cast<Function
>(fn_address
);
1952 virtual bool IsValid() {
1957 DynamicLibrary
*DynamicLibrary::Load(const char *modulePath
) {
1958 return static_cast<DynamicLibrary
*>( new DynamicLibraryImpl(modulePath
) );
1961 double ElapsedTime::Duration(bool reset
) {
1963 g_get_current_time(&curTime
);
1964 long endBigBit
= curTime
.tv_sec
;
1965 long endLittleBit
= curTime
.tv_usec
;
1966 double result
= 1000000.0 * (endBigBit
- bigBit
);
1967 result
+= endLittleBit
- littleBit
;
1968 result
/= 1000000.0;
1971 littleBit
= endLittleBit
;
1976 ColourDesired
Platform::Chrome() {
1977 return ColourDesired(0xe0, 0xe0, 0xe0);
1980 ColourDesired
Platform::ChromeHighlight() {
1981 return ColourDesired(0xff, 0xff, 0xff);
1984 const char *Platform::DefaultFont() {
1986 return "Lucida Console";
1992 int Platform::DefaultFontSize() {
2000 unsigned int Platform::DoubleClickTime() {
2001 return 500; // Half a second
2004 bool Platform::MouseButtonBounce() {
2008 void Platform::DebugDisplay(const char *s
) {
2009 fprintf(stderr
, "%s", s
);
2012 bool Platform::IsKeyDown(int) {
2013 // TODO: discover state of keys in GTK+/X
2017 long Platform::SendScintilla(
2018 WindowID w
, unsigned int msg
, unsigned long wParam
, long lParam
) {
2019 return scintilla_send_message(SCINTILLA(w
), msg
, wParam
, lParam
);
2022 long Platform::SendScintillaPointer(
2023 WindowID w
, unsigned int msg
, unsigned long wParam
, void *lParam
) {
2024 return scintilla_send_message(SCINTILLA(w
), msg
, wParam
,
2025 reinterpret_cast<sptr_t
>(lParam
));
2028 bool Platform::IsDBCSLeadByte(int codePage
, char ch
) {
2029 // Byte ranges found in Wikipedia articles with relevant search strings in each case
2030 unsigned char uch
= static_cast<unsigned char>(ch
);
2034 return ((uch
>= 0x81) && (uch
<= 0x9F)) ||
2035 ((uch
>= 0xE0) && (uch
<= 0xFC));
2036 // Lead bytes F0 to FC may be a Microsoft addition.
2039 return (uch
>= 0x81) && (uch
<= 0xFE);
2042 return (uch
>= 0x81) && (uch
<= 0xFE);
2043 // Korean EUC-KR may be code page 949.
2048 int Platform::DBCSCharLength(int codePage
, const char *s
) {
2049 if (codePage
== 932 || codePage
== 936 || codePage
== 950) {
2050 return IsDBCSLeadByte(codePage
, s
[0]) ? 2 : 1;
2052 int bytes
= mblen(s
, MB_CUR_MAX
);
2060 int Platform::DBCSCharMaxLength() {
2065 // These are utility functions not really tied to a platform
2067 int Platform::Minimum(int a
, int b
) {
2074 int Platform::Maximum(int a
, int b
) {
2084 void Platform::DebugPrintf(const char *format
, ...) {
2087 va_start(pArguments
, format
);
2088 vsprintf(buffer
, format
, pArguments
);
2090 Platform::DebugDisplay(buffer
);
2093 void Platform::DebugPrintf(const char *, ...) {}
2097 // Not supported for GTK+
2098 static bool assertionPopUps
= true;
2100 bool Platform::ShowAssertionPopUps(bool assertionPopUps_
) {
2101 bool ret
= assertionPopUps
;
2102 assertionPopUps
= assertionPopUps_
;
2106 void Platform::Assert(const char *c
, const char *file
, int line
) {
2108 g_snprintf(buffer
, sizeof(buffer
), "Assertion [%s] failed at %s %d\r\n", c
, file
, line
);
2109 Platform::DebugDisplay(buffer
);
2113 int Platform::Clamp(int val
, int minVal
, int maxVal
) {
2121 void Platform_Initialise() {
2124 void Platform_Finalise() {