X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/4011952cc6b338217e904e4a38d9a2414258fa36..b21345d458b5ea10f110a59b7522fe602cc1b9ea:/gtk.c diff --git a/gtk.c b/gtk.c index 0fd351b..1af877c 100644 --- a/gtk.c +++ b/gtk.c @@ -9,6 +9,7 @@ #include #include #include +#include #include @@ -35,7 +36,12 @@ #if !GTK_CHECK_VERSION(2,4,0) # define OLD_FILESEL #endif +#if GTK_CHECK_VERSION(2,8,0) +# define USE_CAIRO +#endif +/* #undef USE_CAIRO */ +/* #define NO_THICK_LINE */ #ifdef DEBUGGING static FILE *debug_fp = NULL; @@ -112,13 +118,22 @@ struct frontend { GtkWidget *area; GtkWidget *statusbar; guint statusctx; - GdkPixmap *pixmap; - GdkColor *colours; - int ncolours; - GdkColormap *colmap; int w, h; midend *me; +#ifdef USE_CAIRO + const float *colours; + cairo_t *cr; + cairo_surface_t *image; + GdkPixmap *pixmap; + GdkColor background; /* for painting outside puzzle area */ +#else + GdkPixmap *pixmap; GdkGC *gc; + GdkColor *colours; + GdkColormap *colmap; + int backgroundindex; /* which of colours[] is background */ +#endif + int ncolours; int bbox_l, bbox_r, bbox_u, bbox_d; int timer_active, timer_id; struct timeval last_time; @@ -141,6 +156,15 @@ struct frontend { GtkWidget *copy_menu_item; }; +struct blitter { +#ifdef USE_CAIRO + cairo_surface_t *image; +#else + GdkPixmap *pixmap; +#endif + int w, h, x, y; +}; + void get_random_seed(void **randseed, int *randseedsize) { struct timeval *tvp = snew(struct timeval); @@ -167,213 +191,363 @@ void gtk_status_bar(void *handle, char *text) gtk_statusbar_push(GTK_STATUSBAR(fe->statusbar), fe->statusctx, text); } -void gtk_start_draw(void *handle) +/* ---------------------------------------------------------------------- + * Cairo drawing functions. + */ + +#ifdef USE_CAIRO + +static void setup_drawing(frontend *fe) { - frontend *fe = (frontend *)handle; - fe->gc = gdk_gc_new(fe->area->window); - fe->bbox_l = fe->w; - fe->bbox_r = 0; - fe->bbox_u = fe->h; - fe->bbox_d = 0; + fe->cr = cairo_create(fe->image); + cairo_set_antialias(fe->cr, CAIRO_ANTIALIAS_GRAY); + cairo_set_line_width(fe->cr, 1.0); + cairo_set_line_cap(fe->cr, CAIRO_LINE_CAP_SQUARE); + cairo_set_line_join(fe->cr, CAIRO_LINE_JOIN_ROUND); } -void gtk_clip(void *handle, int x, int y, int w, int h) +static void teardown_drawing(frontend *fe) { - frontend *fe = (frontend *)handle; - GdkRectangle rect; + cairo_t *cr; - rect.x = x; - rect.y = y; - rect.width = w; - rect.height = h; + cairo_destroy(fe->cr); + fe->cr = NULL; - gdk_gc_set_clip_rectangle(fe->gc, &rect); + cr = gdk_cairo_create(fe->pixmap); + cairo_set_source_surface(cr, fe->image, 0, 0); + cairo_rectangle(cr, + fe->bbox_l - 1, + fe->bbox_u - 1, + fe->bbox_r - fe->bbox_l + 2, + fe->bbox_d - fe->bbox_u + 2); + cairo_fill(cr); + cairo_destroy(cr); } -void gtk_unclip(void *handle) +static void snaffle_colours(frontend *fe) { - frontend *fe = (frontend *)handle; - GdkRectangle rect; + fe->colours = midend_colours(fe->me, &fe->ncolours); +} - rect.x = 0; - rect.y = 0; - rect.width = fe->w; - rect.height = fe->h; +static void set_colour(frontend *fe, int colour) +{ + cairo_set_source_rgb(fe->cr, + fe->colours[3*colour + 0], + fe->colours[3*colour + 1], + fe->colours[3*colour + 2]); +} - gdk_gc_set_clip_rectangle(fe->gc, &rect); +static void set_window_background(frontend *fe, int colour) +{ + GdkColormap *colmap; + + colmap = gdk_colormap_get_system(); + fe->background.red = fe->colours[3*colour + 0] * 65535; + fe->background.green = fe->colours[3*colour + 1] * 65535; + fe->background.blue = fe->colours[3*colour + 2] * 65535; + if (!gdk_colormap_alloc_color(colmap, &fe->background, FALSE, FALSE)) { + g_error("couldn't allocate background (#%02x%02x%02x)\n", + fe->background.red >> 8, fe->background.green >> 8, + fe->background.blue >> 8); + } + gdk_window_set_background(fe->area->window, &fe->background); + gdk_window_set_background(fe->window->window, &fe->background); } -void gtk_draw_text(void *handle, int x, int y, int fonttype, int fontsize, - int align, int colour, char *text) +static PangoLayout *make_pango_layout(frontend *fe) { - frontend *fe = (frontend *)handle; - int i; + return (pango_cairo_create_layout(fe->cr)); +} - /* - * Find or create the font. - */ - for (i = 0; i < fe->nfonts; i++) - if (fe->fonts[i].type == fonttype && fe->fonts[i].size == fontsize) - break; +static void draw_pango_layout(frontend *fe, PangoLayout *layout, + int x, int y) +{ + cairo_move_to(fe->cr, x, y); + pango_cairo_show_layout(fe->cr, layout); +} - if (i == fe->nfonts) { - if (fe->fontsize <= fe->nfonts) { - fe->fontsize = fe->nfonts + 10; - fe->fonts = sresize(fe->fonts, fe->fontsize, struct font); - } +static void save_screenshot_png(frontend *fe, const char *screenshot_file) +{ + cairo_surface_write_to_png(fe->image, screenshot_file); +} - fe->nfonts++; +static void do_clip(frontend *fe, int x, int y, int w, int h) +{ + cairo_new_path(fe->cr); + cairo_rectangle(fe->cr, x, y, w, h); + cairo_clip(fe->cr); +} - fe->fonts[i].type = fonttype; - fe->fonts[i].size = fontsize; +static void do_unclip(frontend *fe) +{ + cairo_reset_clip(fe->cr); +} -#ifdef USE_PANGO - /* - * Use Pango to find the closest match to the requested - * font. - */ - { - PangoFontDescription *fd; - - fd = pango_font_description_new(); - /* `Monospace' and `Sans' are meta-families guaranteed to exist */ - pango_font_description_set_family(fd, fonttype == FONT_FIXED ? - "Monospace" : "Sans"); - pango_font_description_set_weight(fd, PANGO_WEIGHT_BOLD); - /* - * I found some online Pango documentation which - * described a function called - * pango_font_description_set_absolute_size(), which is - * _exactly_ what I want here. Unfortunately, none of - * my local Pango installations have it (presumably - * they're too old), so I'm going to have to hack round - * it by figuring out the point size myself. This - * limits me to X and probably also breaks in later - * Pango installations, so ideally I should add another - * CHECK_VERSION type ifdef and use set_absolute_size - * where available. All very annoying. - */ -#ifdef HAVE_SENSIBLE_ABSOLUTE_SIZE_FUNCTION - pango_font_description_set_absolute_size(fd, PANGO_SCALE*fontsize); -#else - { - Display *d = GDK_DISPLAY(); - int s = DefaultScreen(d); - double resolution = - (PANGO_SCALE * 72.27 / 25.4) * - ((double) DisplayWidthMM(d, s) / DisplayWidth (d, s)); - pango_font_description_set_size(fd, resolution * fontsize); - } -#endif - fe->fonts[i].desc = fd; - } +static void do_draw_rect(frontend *fe, int x, int y, int w, int h) +{ + cairo_save(fe->cr); + cairo_new_path(fe->cr); + cairo_set_antialias(fe->cr, CAIRO_ANTIALIAS_NONE); + cairo_rectangle(fe->cr, x, y, w, h); + cairo_fill(fe->cr); + cairo_restore(fe->cr); +} -#else - /* - * In GTK 1.2, I don't know of any plausible way to - * pick a suitable font, so I'm just going to be - * tedious. - */ - fe->fonts[i].font = gdk_font_load(fonttype == FONT_FIXED ? - "fixed" : "variable"); -#endif +static void do_draw_line(frontend *fe, int x1, int y1, int x2, int y2) +{ + cairo_new_path(fe->cr); + cairo_move_to(fe->cr, x1 + 0.5, y1 + 0.5); + cairo_line_to(fe->cr, x2 + 0.5, y2 + 0.5); + cairo_stroke(fe->cr); +} + +static void do_draw_thick_line(frontend *fe, float thickness, + float x1, float y1, float x2, float y2) +{ + cairo_save(fe->cr); + cairo_set_line_width(fe->cr, thickness); + cairo_new_path(fe->cr); + cairo_move_to(fe->cr, x1, y1); + cairo_line_to(fe->cr, x2, y2); + cairo_stroke(fe->cr); + cairo_restore(fe->cr); +} +static void do_draw_poly(frontend *fe, int *coords, int npoints, + int fillcolour, int outlinecolour) +{ + int i; + + cairo_new_path(fe->cr); + for (i = 0; i < npoints; i++) + cairo_line_to(fe->cr, coords[i*2] + 0.5, coords[i*2 + 1] + 0.5); + cairo_close_path(fe->cr); + if (fillcolour >= 0) { + set_colour(fe, fillcolour); + cairo_fill_preserve(fe->cr); } + assert(outlinecolour >= 0); + set_colour(fe, outlinecolour); + cairo_stroke(fe->cr); +} - /* - * Set the colour. - */ - gdk_gc_set_foreground(fe->gc, &fe->colours[colour]); +static void do_draw_circle(frontend *fe, int cx, int cy, int radius, + int fillcolour, int outlinecolour) +{ + cairo_new_path(fe->cr); + cairo_arc(fe->cr, cx + 0.5, cy + 0.5, radius, 0, 2*PI); + cairo_close_path(fe->cr); /* Just in case... */ + if (fillcolour >= 0) { + set_colour(fe, fillcolour); + cairo_fill_preserve(fe->cr); + } + assert(outlinecolour >= 0); + set_colour(fe, outlinecolour); + cairo_stroke(fe->cr); +} -#ifdef USE_PANGO +static void setup_blitter(blitter *bl, int w, int h) +{ + bl->image = cairo_image_surface_create(CAIRO_FORMAT_RGB24, w, h); +} - { - PangoLayout *layout; - PangoRectangle rect; +static void teardown_blitter(blitter *bl) +{ + cairo_surface_destroy(bl->image); +} - /* - * Create a layout. - */ - layout = pango_layout_new(gtk_widget_get_pango_context(fe->area)); - pango_layout_set_font_description(layout, fe->fonts[i].desc); - pango_layout_set_text(layout, text, strlen(text)); - pango_layout_get_pixel_extents(layout, NULL, &rect); +static void do_blitter_save(frontend *fe, blitter *bl, int x, int y) +{ + cairo_t *cr = cairo_create(bl->image); + + cairo_set_source_surface(cr, fe->image, -x, -y); + cairo_paint(cr); + cairo_destroy(cr); +} - if (align & ALIGN_VCENTRE) - rect.y -= rect.height / 2; - else - rect.y -= rect.height; +static void do_blitter_load(frontend *fe, blitter *bl, int x, int y) +{ + cairo_set_source_surface(fe->cr, bl->image, x, y); + cairo_paint(fe->cr); +} + +static void clear_backing_store(frontend *fe) +{ + fe->image = NULL; +} - if (align & ALIGN_HCENTRE) - rect.x -= rect.width / 2; - else if (align & ALIGN_HRIGHT) - rect.x -= rect.width; +static void setup_backing_store(frontend *fe) +{ + cairo_t *cr; + int i; - gdk_draw_layout(fe->pixmap, fe->gc, rect.x + x, rect.y + y, layout); + fe->pixmap = gdk_pixmap_new(fe->area->window, fe->pw, fe->ph, -1); + fe->image = cairo_image_surface_create(CAIRO_FORMAT_RGB24, + fe->pw, fe->ph); - g_object_unref(layout); + for (i = 0; i < 3; i++) { + switch (i) { + case 0: cr = cairo_create(fe->image); break; + case 1: cr = gdk_cairo_create(fe->pixmap); break; + case 2: cr = gdk_cairo_create(fe->area->window); break; + } + cairo_set_source_rgb(cr, + fe->colours[0], fe->colours[1], fe->colours[2]); + cairo_paint(cr); + cairo_destroy(cr); } +} -#else - /* - * Find string dimensions and process alignment. - */ - { - int lb, rb, wid, asc, desc; +static int backing_store_ok(frontend *fe) +{ + return (!!fe->image); +} - /* - * Measure vertical string extents with respect to the same - * string always... - */ - gdk_string_extents(fe->fonts[i].font, - "ABCDEFGHIJKLMNOPQRSTUVWXYZ", - &lb, &rb, &wid, &asc, &desc); - if (align & ALIGN_VCENTRE) - y += asc - (asc+desc)/2; - else - y += asc; +static void teardown_backing_store(frontend *fe) +{ + cairo_surface_destroy(fe->image); + gdk_pixmap_unref(fe->pixmap); + fe->image = NULL; +} - /* - * ... but horizontal extents with respect to the provided - * string. This means that multiple pieces of text centred - * on the same y-coordinate don't have different baselines. - */ - gdk_string_extents(fe->fonts[i].font, text, - &lb, &rb, &wid, &asc, &desc); +#endif - if (align & ALIGN_HCENTRE) - x -= wid / 2; - else if (align & ALIGN_HRIGHT) - x -= wid; +/* ---------------------------------------------------------------------- + * GDK drawing functions. + */ +#ifndef USE_CAIRO + +static void setup_drawing(frontend *fe) +{ + fe->gc = gdk_gc_new(fe->area->window); +} + +static void teardown_drawing(frontend *fe) +{ + gdk_gc_unref(fe->gc); + fe->gc = NULL; +} + +static void snaffle_colours(frontend *fe) +{ + int i, ncolours; + float *colours; + gboolean *success; + + fe->colmap = gdk_colormap_get_system(); + colours = midend_colours(fe->me, &ncolours); + fe->ncolours = ncolours; + fe->colours = snewn(ncolours, GdkColor); + for (i = 0; i < ncolours; i++) { + fe->colours[i].red = colours[i*3] * 0xFFFF; + fe->colours[i].green = colours[i*3+1] * 0xFFFF; + fe->colours[i].blue = colours[i*3+2] * 0xFFFF; + } + success = snewn(ncolours, gboolean); + gdk_colormap_alloc_colors(fe->colmap, fe->colours, ncolours, + FALSE, FALSE, success); + for (i = 0; i < ncolours; i++) { + if (!success[i]) { + g_error("couldn't allocate colour %d (#%02x%02x%02x)\n", + i, fe->colours[i].red >> 8, + fe->colours[i].green >> 8, + fe->colours[i].blue >> 8); + } } +} - /* - * Actually draw the text. - */ - gdk_draw_string(fe->pixmap, fe->fonts[i].font, fe->gc, x, y, text); +static void set_window_background(frontend *fe, int colour) +{ + fe->backgroundindex = colour; + gdk_window_set_background(fe->area->window, &fe->colours[colour]); + gdk_window_set_background(fe->window->window, &fe->colours[colour]); +} + +static void set_colour(frontend *fe, int colour) +{ + gdk_gc_set_foreground(fe->gc, &fe->colours[colour]); +} + +#ifdef USE_PANGO +static PangoLayout *make_pango_layout(frontend *fe) +{ + return (pango_layout_new(gtk_widget_get_pango_context(fe->area))); +} + +static void draw_pango_layout(frontend *fe, PangoLayout *layout, + int x, int y) +{ + gdk_draw_layout(fe->pixmap, fe->gc, x, y, layout); +} #endif +static void save_screenshot_png(frontend *fe, const char *screenshot_file) +{ + GdkPixbuf *pb; + GError *gerror = NULL; + + midend_redraw(fe->me); + + pb = gdk_pixbuf_get_from_drawable(NULL, fe->pixmap, + NULL, 0, 0, 0, 0, -1, -1); + gdk_pixbuf_save(pb, screenshot_file, "png", &gerror, NULL); } -void gtk_draw_rect(void *handle, int x, int y, int w, int h, int colour) +static void do_clip(frontend *fe, int x, int y, int w, int h) +{ + GdkRectangle rect; + + rect.x = x; + rect.y = y; + rect.width = w; + rect.height = h; + gdk_gc_set_clip_rectangle(fe->gc, &rect); +} + +static void do_unclip(frontend *fe) +{ + GdkRectangle rect; + + rect.x = 0; + rect.y = 0; + rect.width = fe->w; + rect.height = fe->h; + gdk_gc_set_clip_rectangle(fe->gc, &rect); +} + +static void do_draw_rect(frontend *fe, int x, int y, int w, int h) { - frontend *fe = (frontend *)handle; - gdk_gc_set_foreground(fe->gc, &fe->colours[colour]); gdk_draw_rectangle(fe->pixmap, fe->gc, 1, x, y, w, h); } -void gtk_draw_line(void *handle, int x1, int y1, int x2, int y2, int colour) +static void do_draw_line(frontend *fe, int x1, int y1, int x2, int y2) { - frontend *fe = (frontend *)handle; - gdk_gc_set_foreground(fe->gc, &fe->colours[colour]); gdk_draw_line(fe->pixmap, fe->gc, x1, y1, x2, y2); } -void gtk_draw_poly(void *handle, int *coords, int npoints, - int fillcolour, int outlinecolour) +static void do_draw_thick_line(frontend *fe, float thickness, + float x1, float y1, float x2, float y2) +{ + GdkGCValues save; + + gdk_gc_get_values(fe->gc, &save); + gdk_gc_set_line_attributes(fe->gc, + thickness, + GDK_LINE_SOLID, + GDK_CAP_BUTT, + GDK_JOIN_BEVEL); + gdk_draw_line(fe->pixmap, fe->gc, x1, y1, x2, y2); + gdk_gc_set_line_attributes(fe->gc, + save.line_width, + save.line_style, + save.cap_style, + save.join_style); +} + +static void do_draw_poly(frontend *fe, int *coords, int npoints, + int fillcolour, int outlinecolour) { - frontend *fe = (frontend *)handle; GdkPoint *points = snewn(npoints, GdkPoint); int i; @@ -383,11 +557,11 @@ void gtk_draw_poly(void *handle, int *coords, int npoints, } if (fillcolour >= 0) { - gdk_gc_set_foreground(fe->gc, &fe->colours[fillcolour]); + set_colour(fe, fillcolour); gdk_draw_polygon(fe->pixmap, fe->gc, TRUE, points, npoints); } assert(outlinecolour >= 0); - gdk_gc_set_foreground(fe->gc, &fe->colours[outlinecolour]); + set_colour(fe, outlinecolour); /* * In principle we ought to be able to use gdk_draw_polygon for @@ -403,38 +577,359 @@ void gtk_draw_poly(void *handle, int *coords, int npoints, sfree(points); } -void gtk_draw_circle(void *handle, int cx, int cy, int radius, - int fillcolour, int outlinecolour) +static void do_draw_circle(frontend *fe, int cx, int cy, int radius, + int fillcolour, int outlinecolour) { - frontend *fe = (frontend *)handle; if (fillcolour >= 0) { - gdk_gc_set_foreground(fe->gc, &fe->colours[fillcolour]); + set_colour(fe, fillcolour); gdk_draw_arc(fe->pixmap, fe->gc, TRUE, cx - radius, cy - radius, 2 * radius, 2 * radius, 0, 360 * 64); } assert(outlinecolour >= 0); - gdk_gc_set_foreground(fe->gc, &fe->colours[outlinecolour]); + set_colour(fe, outlinecolour); gdk_draw_arc(fe->pixmap, fe->gc, FALSE, cx - radius, cy - radius, 2 * radius, 2 * radius, 0, 360 * 64); } -struct blitter { - GdkPixmap *pixmap; - int w, h, x, y; -}; - -blitter *gtk_blitter_new(void *handle, int w, int h) +static void setup_blitter(blitter *bl, int w, int h) { /* * We can't create the pixmap right now, because fe->window * might not yet exist. So we just cache w and h and create it * during the firs call to blitter_save. */ - blitter *bl = snew(blitter); bl->pixmap = NULL; +} + +static void teardown_blitter(blitter *bl) +{ + if (bl->pixmap) + gdk_pixmap_unref(bl->pixmap); +} + +static void do_blitter_save(frontend *fe, blitter *bl, int x, int y) +{ + if (!bl->pixmap) + bl->pixmap = gdk_pixmap_new(fe->area->window, bl->w, bl->h, -1); + gdk_draw_pixmap(bl->pixmap, + fe->area->style->fg_gc[GTK_WIDGET_STATE(fe->area)], + fe->pixmap, + x, y, 0, 0, bl->w, bl->h); +} + +static void do_blitter_load(frontend *fe, blitter *bl, int x, int y) +{ + assert(bl->pixmap); + gdk_draw_pixmap(fe->pixmap, + fe->area->style->fg_gc[GTK_WIDGET_STATE(fe->area)], + bl->pixmap, + 0, 0, x, y, bl->w, bl->h); +} + +static void clear_backing_store(frontend *fe) +{ + fe->pixmap = NULL; +} + +static void setup_backing_store(frontend *fe) +{ + GdkGC *gc; + + fe->pixmap = gdk_pixmap_new(fe->area->window, fe->pw, fe->ph, -1); + + gc = gdk_gc_new(fe->area->window); + gdk_gc_set_foreground(gc, &fe->colours[0]); + gdk_draw_rectangle(fe->pixmap, gc, 1, 0, 0, fe->pw, fe->ph); + gdk_draw_rectangle(fe->area->window, gc, 1, 0, 0, fe->w, fe->h); + gdk_gc_unref(gc); +} + +static int backing_store_ok(frontend *fe) +{ + return (!!fe->pixmap); +} + +static void teardown_backing_store(frontend *fe) +{ + gdk_pixmap_unref(fe->pixmap); + fe->pixmap = NULL; +} + +#endif + +static void repaint_rectangle(frontend *fe, GtkWidget *widget, + int x, int y, int w, int h) +{ + GdkGC *gc = gdk_gc_new(widget->window); +#ifdef USE_CAIRO + gdk_gc_set_foreground(gc, &fe->background); +#else + gdk_gc_set_foreground(gc, &fe->colours[fe->backgroundindex]); +#endif + if (x < fe->ox) { + gdk_draw_rectangle(widget->window, gc, + TRUE, x, y, fe->ox - x, h); + w -= (fe->ox - x); + x = fe->ox; + } + if (y < fe->oy) { + gdk_draw_rectangle(widget->window, gc, + TRUE, x, y, w, fe->oy - y); + h -= (fe->oy - y); + y = fe->oy; + } + if (w > fe->pw) { + gdk_draw_rectangle(widget->window, gc, + TRUE, x + fe->pw, y, w - fe->pw, h); + w = fe->pw; + } + if (h > fe->ph) { + gdk_draw_rectangle(widget->window, gc, + TRUE, x, y + fe->ph, w, h - fe->ph); + h = fe->ph; + } + gdk_draw_pixmap(widget->window, gc, fe->pixmap, + x - fe->ox, y - fe->oy, x, y, w, h); + gdk_gc_unref(gc); +} + +/* ---------------------------------------------------------------------- + * Pango font functions. + */ + +#ifdef USE_PANGO + +static void add_font(frontend *fe, int index, int fonttype, int fontsize) +{ + /* + * Use Pango to find the closest match to the requested + * font. + */ + PangoFontDescription *fd; + + fd = pango_font_description_new(); + /* `Monospace' and `Sans' are meta-families guaranteed to exist */ + pango_font_description_set_family(fd, fonttype == FONT_FIXED ? + "Monospace" : "Sans"); + pango_font_description_set_weight(fd, PANGO_WEIGHT_BOLD); + /* + * I found some online Pango documentation which + * described a function called + * pango_font_description_set_absolute_size(), which is + * _exactly_ what I want here. Unfortunately, none of + * my local Pango installations have it (presumably + * they're too old), so I'm going to have to hack round + * it by figuring out the point size myself. This + * limits me to X and probably also breaks in later + * Pango installations, so ideally I should add another + * CHECK_VERSION type ifdef and use set_absolute_size + * where available. All very annoying. + */ +#ifdef HAVE_SENSIBLE_ABSOLUTE_SIZE_FUNCTION + pango_font_description_set_absolute_size(fd, PANGO_SCALE*fontsize); +#else + { + Display *d = GDK_DISPLAY(); + int s = DefaultScreen(d); + double resolution = + (PANGO_SCALE * 72.27 / 25.4) * + ((double) DisplayWidthMM(d, s) / DisplayWidth (d, s)); + pango_font_description_set_size(fd, resolution * fontsize); + } +#endif + fe->fonts[index].desc = fd; +} + +static void align_and_draw_text(frontend *fe, + int index, int align, int x, int y, + const char *text) +{ + PangoLayout *layout; + PangoRectangle rect; + + layout = make_pango_layout(fe); + + /* + * Create a layout. + */ + pango_layout_set_font_description(layout, fe->fonts[index].desc); + pango_layout_set_text(layout, text, strlen(text)); + pango_layout_get_pixel_extents(layout, NULL, &rect); + + if (align & ALIGN_VCENTRE) + rect.y -= rect.height / 2; + else + rect.y -= rect.height; + + if (align & ALIGN_HCENTRE) + rect.x -= rect.width / 2; + else if (align & ALIGN_HRIGHT) + rect.x -= rect.width; + + draw_pango_layout(fe, layout, rect.x + x, rect.y + y); + + g_object_unref(layout); +} + +#endif + +/* ---------------------------------------------------------------------- + * Old-fashioned font functions. + */ + +#ifndef USE_PANGO + +static void add_font(int index, int fonttype, int fontsize) +{ + /* + * In GTK 1.2, I don't know of any plausible way to + * pick a suitable font, so I'm just going to be + * tedious. + */ + fe->fonts[i].font = gdk_font_load(fonttype == FONT_FIXED ? + "fixed" : "variable"); +} + +static void align_and_draw_text(int index, int align, int x, int y, + const char *text) +{ + int lb, rb, wid, asc, desc; + + /* + * Measure vertical string extents with respect to the same + * string always... + */ + gdk_string_extents(fe->fonts[i].font, + "ABCDEFGHIJKLMNOPQRSTUVWXYZ", + &lb, &rb, &wid, &asc, &desc); + if (align & ALIGN_VCENTRE) + y += asc - (asc+desc)/2; + else + y += asc; + + /* + * ... but horizontal extents with respect to the provided + * string. This means that multiple pieces of text centred + * on the same y-coordinate don't have different baselines. + */ + gdk_string_extents(fe->fonts[i].font, text, + &lb, &rb, &wid, &asc, &desc); + + if (align & ALIGN_HCENTRE) + x -= wid / 2; + else if (align & ALIGN_HRIGHT) + x -= wid; + + /* + * Actually draw the text. + */ + gdk_draw_string(fe->pixmap, fe->fonts[i].font, fe->gc, x, y, text); +} + +#endif + +/* ---------------------------------------------------------------------- + * The exported drawing functions. + */ + +void gtk_start_draw(void *handle) +{ + frontend *fe = (frontend *)handle; + fe->bbox_l = fe->w; + fe->bbox_r = 0; + fe->bbox_u = fe->h; + fe->bbox_d = 0; + setup_drawing(fe); +} + +void gtk_clip(void *handle, int x, int y, int w, int h) +{ + frontend *fe = (frontend *)handle; + do_clip(fe, x, y, w, h); +} + +void gtk_unclip(void *handle) +{ + frontend *fe = (frontend *)handle; + do_unclip(fe); +} + +void gtk_draw_text(void *handle, int x, int y, int fonttype, int fontsize, + int align, int colour, char *text) +{ + frontend *fe = (frontend *)handle; + int i; + + /* + * Find or create the font. + */ + for (i = 0; i < fe->nfonts; i++) + if (fe->fonts[i].type == fonttype && fe->fonts[i].size == fontsize) + break; + + if (i == fe->nfonts) { + if (fe->fontsize <= fe->nfonts) { + fe->fontsize = fe->nfonts + 10; + fe->fonts = sresize(fe->fonts, fe->fontsize, struct font); + } + + fe->nfonts++; + + fe->fonts[i].type = fonttype; + fe->fonts[i].size = fontsize; + add_font(fe, i, fonttype, fontsize); + } + + /* + * Do the job. + */ + set_colour(fe, colour); + align_and_draw_text(fe, i, align, x, y, text); +} + +void gtk_draw_rect(void *handle, int x, int y, int w, int h, int colour) +{ + frontend *fe = (frontend *)handle; + set_colour(fe, colour); + do_draw_rect(fe, x, y, w, h); +} + +void gtk_draw_line(void *handle, int x1, int y1, int x2, int y2, int colour) +{ + frontend *fe = (frontend *)handle; + set_colour(fe, colour); + do_draw_line(fe, x1, y1, x2, y2); +} + +void gtk_draw_thick_line(void *handle, float thickness, + float x1, float y1, float x2, float y2, int colour) +{ + frontend *fe = (frontend *)handle; + set_colour(fe, colour); + do_draw_thick_line(fe, thickness, x1, y1, x2, y2); +} + +void gtk_draw_poly(void *handle, int *coords, int npoints, + int fillcolour, int outlinecolour) +{ + frontend *fe = (frontend *)handle; + do_draw_poly(fe, coords, npoints, fillcolour, outlinecolour); +} + +void gtk_draw_circle(void *handle, int cx, int cy, int radius, + int fillcolour, int outlinecolour) +{ + frontend *fe = (frontend *)handle; + do_draw_circle(fe, cx, cy, radius, fillcolour, outlinecolour); +} + +blitter *gtk_blitter_new(void *handle, int w, int h) +{ + blitter *bl = snew(blitter); + setup_blitter(bl, w, h); bl->w = w; bl->h = h; return bl; @@ -442,36 +937,26 @@ blitter *gtk_blitter_new(void *handle, int w, int h) void gtk_blitter_free(void *handle, blitter *bl) { - if (bl->pixmap) - gdk_pixmap_unref(bl->pixmap); + teardown_blitter(bl); sfree(bl); } void gtk_blitter_save(void *handle, blitter *bl, int x, int y) { frontend *fe = (frontend *)handle; - if (!bl->pixmap) - bl->pixmap = gdk_pixmap_new(fe->area->window, bl->w, bl->h, -1); + do_blitter_save(fe, bl, x, y); bl->x = x; bl->y = y; - gdk_draw_pixmap(bl->pixmap, - fe->area->style->fg_gc[GTK_WIDGET_STATE(fe->area)], - fe->pixmap, - x, y, 0, 0, bl->w, bl->h); } void gtk_blitter_load(void *handle, blitter *bl, int x, int y) { frontend *fe = (frontend *)handle; - assert(bl->pixmap); if (x == BLITTER_FROMSAVED && y == BLITTER_FROMSAVED) { x = bl->x; y = bl->y; } - gdk_draw_pixmap(fe->pixmap, - fe->area->style->fg_gc[GTK_WIDGET_STATE(fe->area)], - bl->pixmap, - 0, 0, x, y, bl->w, bl->h); + do_blitter_load(fe, bl, x, y); } void gtk_draw_update(void *handle, int x, int y, int w, int h) @@ -486,16 +971,15 @@ void gtk_draw_update(void *handle, int x, int y, int w, int h) void gtk_end_draw(void *handle) { frontend *fe = (frontend *)handle; - gdk_gc_unref(fe->gc); - fe->gc = NULL; + + teardown_drawing(fe); if (fe->bbox_l < fe->bbox_r && fe->bbox_u < fe->bbox_d) { - gdk_draw_pixmap(fe->area->window, - fe->area->style->fg_gc[GTK_WIDGET_STATE(fe->area)], - fe->pixmap, - fe->bbox_l, fe->bbox_u, - fe->ox + fe->bbox_l, fe->oy + fe->bbox_u, - fe->bbox_r - fe->bbox_l, fe->bbox_d - fe->bbox_u); + repaint_rectangle(fe, fe->area, + fe->bbox_l - 1 + fe->ox, + fe->bbox_u - 1 + fe->oy, + fe->bbox_r - fe->bbox_l + 2, + fe->bbox_d - fe->bbox_u + 2); } } @@ -533,6 +1017,11 @@ const struct drawing_api gtk_drawing = { #else NULL, #endif +#ifdef NO_THICK_LINE + NULL, +#else + gtk_draw_thick_line, +#endif }; static void destroy(GtkWidget *widget, gpointer data) @@ -550,7 +1039,7 @@ static gint key_event(GtkWidget *widget, GdkEventKey *event, gpointer data) int shift = (event->state & GDK_SHIFT_MASK) ? MOD_SHFT : 0; int ctrl = (event->state & GDK_CONTROL_MASK) ? MOD_CTRL : 0; - if (!fe->pixmap) + if (!backing_store_ok(fe)) return TRUE; #if !GTK_CHECK_VERSION(2,0,0) @@ -617,7 +1106,7 @@ static gint button_event(GtkWidget *widget, GdkEventButton *event, frontend *fe = (frontend *)data; int button; - if (!fe->pixmap) + if (!backing_store_ok(fe)) return TRUE; if (event->type != GDK_BUTTON_PRESS && event->type != GDK_BUTTON_RELEASE) @@ -648,7 +1137,7 @@ static gint motion_event(GtkWidget *widget, GdkEventMotion *event, frontend *fe = (frontend *)data; int button; - if (!fe->pixmap) + if (!backing_store_ok(fe)) return TRUE; if (event->state & (GDK_BUTTON2_MASK | GDK_SHIFT_MASK)) @@ -677,13 +1166,10 @@ static gint expose_area(GtkWidget *widget, GdkEventExpose *event, { frontend *fe = (frontend *)data; - if (fe->pixmap) { - gdk_draw_pixmap(widget->window, - widget->style->fg_gc[GTK_WIDGET_STATE(widget)], - fe->pixmap, - event->area.x - fe->ox, event->area.y - fe->oy, - event->area.x, event->area.y, - event->area.width, event->area.height); + if (backing_store_ok(fe)) { + repaint_rectangle(fe, widget, + event->area.x, event->area.y, + event->area.width, event->area.height); } return TRUE; } @@ -707,11 +1193,10 @@ static gint configure_area(GtkWidget *widget, GdkEventConfigure *event, gpointer data) { frontend *fe = (frontend *)data; - GdkGC *gc; int x, y; - if (fe->pixmap) - gdk_pixmap_unref(fe->pixmap); + if (backing_store_ok(fe)) + teardown_backing_store(fe); x = fe->w = event->width; y = fe->h = event->height; @@ -721,15 +1206,7 @@ static gint configure_area(GtkWidget *widget, fe->ox = (fe->w - fe->pw) / 2; fe->oy = (fe->h - fe->ph) / 2; - fe->pixmap = gdk_pixmap_new(widget->window, fe->pw, fe->ph, -1); - - gc = gdk_gc_new(fe->area->window); - gdk_gc_set_foreground(gc, &fe->colours[0]); - gdk_draw_rectangle(fe->pixmap, gc, 1, 0, 0, fe->pw, fe->ph); - gdk_draw_rectangle(widget->window, gc, 1, 0, 0, - event->width, event->height); - gdk_gc_unref(gc); - + setup_backing_store(fe); midend_force_redraw(fe->me); return TRUE; @@ -826,18 +1303,18 @@ int message_box(GtkWidget *parent, char *title, char *msg, int centre, gtk_label_set_line_wrap(GTK_LABEL(text), TRUE); if (type == MB_OK) { - titles = "OK\0"; + titles = GTK_STOCK_OK "\0"; def = cancel = 0; } else { assert(type == MB_YESNO); - titles = "Yes\0No\0"; - def = 0; - cancel = 1; + titles = GTK_STOCK_NO "\0" GTK_STOCK_YES "\0"; + def = 1; + cancel = 0; } i = 0; while (*titles) { - button = gtk_button_new_with_label(titles); + button = gtk_button_new_from_stock(titles); gtk_box_pack_end(GTK_BOX(GTK_DIALOG(window)->action_area), button, FALSE, FALSE, 0); gtk_widget_show(button); @@ -866,7 +1343,7 @@ int message_box(GtkWidget *parent, char *title, char *msg, int centre, gtk_widget_show(window); i = -1; gtk_main(); - return (type == MB_YESNO ? i == 0 : TRUE); + return (type == MB_YESNO ? i == 1 : TRUE); } void error_box(GtkWidget *parent, char *msg) @@ -956,22 +1433,22 @@ static int get_config(frontend *fe, int which) gtk_window_set_title(GTK_WINDOW(fe->cfgbox), title); sfree(title); - w = gtk_button_new_with_label("OK"); + w = gtk_button_new_from_stock(GTK_STOCK_CANCEL); gtk_box_pack_end(GTK_BOX(GTK_DIALOG(fe->cfgbox)->action_area), w, FALSE, FALSE, 0); gtk_widget_show(w); - GTK_WIDGET_SET_FLAGS(w, GTK_CAN_DEFAULT); - gtk_window_set_default(GTK_WINDOW(fe->cfgbox), w); gtk_signal_connect(GTK_OBJECT(w), "clicked", - GTK_SIGNAL_FUNC(config_ok_button_clicked), fe); + GTK_SIGNAL_FUNC(config_cancel_button_clicked), fe); + cancel = w; - w = gtk_button_new_with_label("Cancel"); + w = gtk_button_new_from_stock(GTK_STOCK_OK); gtk_box_pack_end(GTK_BOX(GTK_DIALOG(fe->cfgbox)->action_area), w, FALSE, FALSE, 0); gtk_widget_show(w); + GTK_WIDGET_SET_FLAGS(w, GTK_CAN_DEFAULT); + gtk_window_set_default(GTK_WINDOW(fe->cfgbox), w); gtk_signal_connect(GTK_OBJECT(w), "clicked", - GTK_SIGNAL_FUNC(config_cancel_button_clicked), fe); - cancel = w; + GTK_SIGNAL_FUNC(config_ok_button_clicked), fe); table = gtk_table_new(1, 2, FALSE); y = 0; @@ -1224,77 +1701,40 @@ static void menu_preset_event(GtkMenuItem *menuitem, gpointer data) GdkAtom compound_text_atom, utf8_string_atom; int paste_initialised = FALSE; -void init_paste() +static void set_selection(frontend *fe, GdkAtom selection) { - unsigned char empty[] = { 0 }; - - if (paste_initialised) - return; - - if (!compound_text_atom) - compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE); - if (!utf8_string_atom) - utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); + if (!paste_initialised) { + compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE); + utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); + paste_initialised = TRUE; + } /* - * Ensure that all the cut buffers exist - according to the - * ICCCM, we must do this before we start using cut buffers. + * For this simple application we can safely assume that the + * data passed to this function is pure ASCII, which means we + * can return precisely the same stuff for types STRING, + * COMPOUND_TEXT or UTF8_STRING. */ - XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(), - XA_CUT_BUFFER0, XA_STRING, 8, PropModeAppend, empty, 0); - XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(), - XA_CUT_BUFFER1, XA_STRING, 8, PropModeAppend, empty, 0); - XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(), - XA_CUT_BUFFER2, XA_STRING, 8, PropModeAppend, empty, 0); - XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(), - XA_CUT_BUFFER3, XA_STRING, 8, PropModeAppend, empty, 0); - XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(), - XA_CUT_BUFFER4, XA_STRING, 8, PropModeAppend, empty, 0); - XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(), - XA_CUT_BUFFER5, XA_STRING, 8, PropModeAppend, empty, 0); - XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(), - XA_CUT_BUFFER6, XA_STRING, 8, PropModeAppend, empty, 0); - XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(), - XA_CUT_BUFFER7, XA_STRING, 8, PropModeAppend, empty, 0); -} - -/* Store data in a cut-buffer. */ -void store_cutbuffer(char *ptr, int len) -{ - /* ICCCM says we must rotate the buffers before storing to buffer 0. */ - XRotateBuffers(GDK_DISPLAY(), 1); - XStoreBytes(GDK_DISPLAY(), ptr, len); + + if (gtk_selection_owner_set(fe->area, selection, CurrentTime)) { + gtk_selection_clear_targets(fe->area, selection); + gtk_selection_add_target(fe->area, selection, + GDK_SELECTION_TYPE_STRING, 1); + gtk_selection_add_target(fe->area, selection, compound_text_atom, 1); + gtk_selection_add_target(fe->area, selection, utf8_string_atom, 1); + } } void write_clip(frontend *fe, char *data) { - init_paste(); - if (fe->paste_data) sfree(fe->paste_data); - /* - * For this simple application we can safely assume that the - * data passed to this function is pure ASCII, which means we - * can return precisely the same stuff for types STRING, - * COMPOUND_TEXT or UTF8_STRING. - */ - fe->paste_data = data; fe->paste_data_len = strlen(data); - store_cutbuffer(fe->paste_data, fe->paste_data_len); - - if (gtk_selection_owner_set(fe->area, GDK_SELECTION_PRIMARY, - CurrentTime)) { - gtk_selection_clear_targets(fe->area, GDK_SELECTION_PRIMARY); - gtk_selection_add_target(fe->area, GDK_SELECTION_PRIMARY, - GDK_SELECTION_TYPE_STRING, 1); - gtk_selection_add_target(fe->area, GDK_SELECTION_PRIMARY, - compound_text_atom, 1); - gtk_selection_add_target(fe->area, GDK_SELECTION_PRIMARY, - utf8_string_atom, 1); - } + set_selection(fe, GDK_SELECTION_PRIMARY); + set_selection(fe, GDK_SELECTION_CLIPBOARD); } void selection_get(GtkWidget *widget, GtkSelectionData *seldata, @@ -1858,32 +2298,7 @@ static frontend *new_window(char *arg, int argtype, char **error) changed_preset(fe); - { - int i, ncolours; - float *colours; - gboolean *success; - - fe->colmap = gdk_colormap_get_system(); - colours = midend_colours(fe->me, &ncolours); - fe->ncolours = ncolours; - fe->colours = snewn(ncolours, GdkColor); - for (i = 0; i < ncolours; i++) { - fe->colours[i].red = colours[i*3] * 0xFFFF; - fe->colours[i].green = colours[i*3+1] * 0xFFFF; - fe->colours[i].blue = colours[i*3+2] * 0xFFFF; - } - success = snewn(ncolours, gboolean); - gdk_colormap_alloc_colors(fe->colmap, fe->colours, ncolours, - FALSE, FALSE, success); - for (i = 0; i < ncolours; i++) { - if (!success[i]) { - g_error("couldn't allocate colour %d (#%02x%02x%02x)\n", - i, fe->colours[i].red >> 8, - fe->colours[i].green >> 8, - fe->colours[i].blue >> 8); - } - } - } + snaffle_colours(fe); if (midend_wants_statusbar(fe->me)) { GtkWidget *viewport; @@ -1909,6 +2324,9 @@ static frontend *new_window(char *arg, int argtype, char **error) fe->statusbar = NULL; fe->area = gtk_drawing_area_new(); +#if GTK_CHECK_VERSION(2,0,0) + GTK_WIDGET_UNSET_FLAGS(fe->area, GTK_DOUBLE_BUFFERED); +#endif get_size(fe, &x, &y); gtk_drawing_area_size(GTK_DRAWING_AREA(fe->area), x, y); fe->w = x; @@ -1916,7 +2334,7 @@ static frontend *new_window(char *arg, int argtype, char **error) gtk_box_pack_end(vbox, fe->area, TRUE, TRUE, 0); - fe->pixmap = NULL; + clear_backing_store(fe); fe->fonts = NULL; fe->nfonts = fe->fontsize = 0; @@ -1974,9 +2392,7 @@ static frontend *new_window(char *arg, int argtype, char **error) * the window. */ gtk_drawing_area_size(GTK_DRAWING_AREA(fe->area), 1, 1); - - gdk_window_set_background(fe->area->window, &fe->colours[0]); - gdk_window_set_background(fe->window->window, &fe->colours[0]); + set_window_background(fe, 0); return fe; } @@ -2350,15 +2766,7 @@ int main(int argc, char **argv) } if (screenshot_file) { - GdkPixbuf *pb; - GError *gerror = NULL; - - midend_redraw(fe->me); - - pb = gdk_pixbuf_get_from_drawable(NULL, fe->pixmap, - NULL, 0, 0, 0, 0, -1, -1); - gdk_pixbuf_save(pb, screenshot_file, "png", &gerror, NULL); - + save_screenshot_png(fe, screenshot_file); exit(0); }