2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* draw.c - draw functions
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* Copyright © 2007 Julien Danjou <julien@danjou.info>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2007-09-12 14:29:51 +02:00
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-10-10 19:59:14 +02:00
|
|
|
#include <cairo.h>
|
2007-10-16 01:20:03 +02:00
|
|
|
#include <cairo-ft.h>
|
2007-10-10 19:59:14 +02:00
|
|
|
#include <cairo-xlib.h>
|
2007-10-11 17:06:55 +02:00
|
|
|
#include <math.h>
|
2007-09-05 20:15:00 +02:00
|
|
|
#include "layout.h"
|
2007-09-15 15:16:53 +02:00
|
|
|
#include "util.h"
|
|
|
|
#include "draw.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-12-15 00:12:17 +01:00
|
|
|
DrawCtx *
|
|
|
|
draw_get_context(Display *display, int phys_screen, int width, int height)
|
|
|
|
{
|
|
|
|
DrawCtx *d;
|
|
|
|
d = p_new(DrawCtx, 1);
|
|
|
|
d->phys_screen = phys_screen;
|
|
|
|
d->display = display;
|
|
|
|
d->width = width;
|
|
|
|
d->height = height;
|
|
|
|
d->depth = DefaultDepth(display, phys_screen);
|
|
|
|
d->visual = DefaultVisual(display, phys_screen);
|
|
|
|
d->drawable = XCreatePixmap(display,
|
|
|
|
RootWindow(display, phys_screen),
|
|
|
|
width, height, d->depth);
|
|
|
|
return d;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
draw_free_context(DrawCtx *ctx)
|
|
|
|
{
|
|
|
|
XFreePixmap(ctx->display, ctx->drawable);
|
|
|
|
p_delete(&ctx);
|
|
|
|
}
|
|
|
|
|
2007-09-15 15:16:53 +02:00
|
|
|
void
|
2007-12-15 00:12:17 +01:00
|
|
|
drawtext(DrawCtx *ctx, int x, int y, int w, int h, XftFont *font, const char *text, XColor color[ColLast])
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-10-09 21:29:19 +02:00
|
|
|
int nw = 0;
|
2007-09-05 20:15:00 +02:00
|
|
|
static char buf[256];
|
2007-09-20 20:11:33 +02:00
|
|
|
size_t len, olen;
|
2007-10-16 01:20:03 +02:00
|
|
|
cairo_font_face_t *font_face;
|
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cr;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-12-15 00:12:17 +01:00
|
|
|
drawrectangle(ctx, x, y, w, h, True, color[ColBG]);
|
2007-10-15 12:42:48 +02:00
|
|
|
if(!a_strlen(text))
|
2007-09-05 20:15:00 +02:00
|
|
|
return;
|
2007-10-16 01:20:03 +02:00
|
|
|
|
2007-12-15 00:12:17 +01:00
|
|
|
surface = cairo_xlib_surface_create(ctx->display, ctx->drawable, ctx->visual, ctx->width, ctx->height);
|
2007-10-16 01:20:03 +02:00
|
|
|
cr = cairo_create(surface);
|
2007-10-16 18:54:58 +02:00
|
|
|
font_face = cairo_ft_font_face_create_for_pattern(font->pattern);
|
2007-10-16 01:20:03 +02:00
|
|
|
cairo_set_font_face(cr, font_face);
|
|
|
|
cairo_set_font_size(cr, font->height);
|
|
|
|
cairo_set_source_rgb(cr, color[ColFG].red / 65535.0, color[ColFG].green / 65535.0, color[ColFG].blue / 65535.0);
|
|
|
|
|
2007-09-11 14:00:49 +02:00
|
|
|
olen = len = a_strlen(text);
|
2007-09-20 20:11:33 +02:00
|
|
|
if(len >= sizeof(buf))
|
|
|
|
len = sizeof(buf) - 1;
|
2007-09-05 20:15:00 +02:00
|
|
|
memcpy(buf, text, len);
|
|
|
|
buf[len] = 0;
|
2007-12-15 00:12:17 +01:00
|
|
|
while(len && (nw = textwidth(ctx, font, buf)) > w)
|
2007-09-05 20:15:00 +02:00
|
|
|
buf[--len] = 0;
|
2007-10-09 21:29:19 +02:00
|
|
|
if(nw > w)
|
2007-09-11 17:46:25 +02:00
|
|
|
return; /* too long */
|
2007-09-05 20:15:00 +02:00
|
|
|
if(len < olen)
|
|
|
|
{
|
|
|
|
if(len > 1)
|
|
|
|
buf[len - 1] = '.';
|
|
|
|
if(len > 2)
|
|
|
|
buf[len - 2] = '.';
|
|
|
|
if(len > 3)
|
|
|
|
buf[len - 3] = '.';
|
|
|
|
}
|
2007-10-16 01:20:03 +02:00
|
|
|
|
2007-12-15 00:12:17 +01:00
|
|
|
cairo_move_to(cr, x + font->height / 2, y + font->ascent + (ctx->height - font->height) / 2);
|
2007-10-16 01:20:03 +02:00
|
|
|
cairo_show_text(cr, buf);
|
|
|
|
|
|
|
|
cairo_font_face_destroy(font_face);
|
|
|
|
cairo_destroy(cr);
|
|
|
|
cairo_surface_destroy(surface);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2007-09-15 15:16:53 +02:00
|
|
|
void
|
2007-12-15 00:12:17 +01:00
|
|
|
drawrectangle(DrawCtx *ctx, int x, int y, int w, int h, Bool filled, XColor color)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-10-10 19:59:14 +02:00
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cr;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-12-15 00:12:17 +01:00
|
|
|
surface = cairo_xlib_surface_create(ctx->display, ctx->drawable, ctx->visual, ctx->width, ctx->height);
|
2007-10-10 19:59:14 +02:00
|
|
|
cr = cairo_create (surface);
|
|
|
|
|
|
|
|
cairo_set_antialias(cr, CAIRO_ANTIALIAS_NONE);
|
|
|
|
cairo_set_line_width(cr, 1.0);
|
2007-10-11 16:29:20 +02:00
|
|
|
cairo_set_source_rgb(cr, color.red / 65535.0, color.green / 65535.0, color.blue / 65535.0);
|
2007-09-05 20:15:00 +02:00
|
|
|
if(filled)
|
|
|
|
{
|
2007-10-11 16:29:20 +02:00
|
|
|
cairo_rectangle(cr, x, y, w + 1, h + 1);
|
2007-10-10 19:59:14 +02:00
|
|
|
cairo_fill(cr);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
2007-09-20 20:11:33 +02:00
|
|
|
else
|
2007-10-11 16:29:20 +02:00
|
|
|
cairo_rectangle(cr, x + 1, y, w, h);
|
2007-10-11 17:06:55 +02:00
|
|
|
|
2007-10-10 19:59:14 +02:00
|
|
|
cairo_stroke(cr);
|
|
|
|
|
|
|
|
cairo_destroy(cr);
|
|
|
|
cairo_surface_destroy(surface);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2007-10-11 17:06:55 +02:00
|
|
|
void
|
2007-12-15 00:12:17 +01:00
|
|
|
drawcircle(DrawCtx *ctx, int x, int y, int r, Bool filled, XColor color)
|
2007-10-11 17:06:55 +02:00
|
|
|
{
|
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
2007-12-15 00:12:17 +01:00
|
|
|
surface = cairo_xlib_surface_create(ctx->display, ctx->drawable, ctx->visual, ctx->width, ctx->height);
|
2007-10-11 17:06:55 +02:00
|
|
|
cr = cairo_create (surface);
|
|
|
|
cairo_set_line_width(cr, 1.0);
|
|
|
|
cairo_set_source_rgb(cr, color.red / 65535.0, color.green / 65535.0, color.blue / 65535.0);
|
|
|
|
if(filled)
|
|
|
|
{
|
|
|
|
cairo_arc (cr, x + r, y + r, r, 0, 2 * M_PI);
|
|
|
|
cairo_fill(cr);
|
|
|
|
}
|
|
|
|
else
|
2007-10-11 17:09:38 +02:00
|
|
|
cairo_arc (cr, x + r, y + r, r - 1, 0, 2 * M_PI);
|
2007-10-11 17:06:55 +02:00
|
|
|
|
|
|
|
cairo_stroke(cr);
|
|
|
|
|
|
|
|
cairo_destroy(cr);
|
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
}
|
2007-09-06 22:09:00 +02:00
|
|
|
|
2007-11-11 22:27:00 +01:00
|
|
|
Drawable
|
2007-12-15 00:12:17 +01:00
|
|
|
draw_rotate(DrawCtx *ctx, int screen, double angle, int tx, int ty)
|
2007-11-11 18:59:11 +01:00
|
|
|
{
|
|
|
|
cairo_surface_t *surface, *source;
|
|
|
|
cairo_t *cr;
|
2007-11-11 22:27:00 +01:00
|
|
|
Drawable newdrawable;
|
|
|
|
|
2007-12-15 00:12:17 +01:00
|
|
|
newdrawable = XCreatePixmap(ctx->display,
|
|
|
|
RootWindow(ctx->display, screen),
|
|
|
|
ctx->height, ctx->width,
|
|
|
|
ctx->depth);
|
|
|
|
surface = cairo_xlib_surface_create(ctx->display, newdrawable, ctx->visual, ctx->height, ctx->width);
|
|
|
|
source = cairo_xlib_surface_create(ctx->display, ctx->drawable, ctx->visual, ctx->width, ctx->height);
|
2007-11-11 18:59:11 +01:00
|
|
|
cr = cairo_create (surface);
|
2007-11-11 19:49:42 +01:00
|
|
|
|
|
|
|
cairo_translate(cr, tx, ty);
|
2007-11-11 21:13:37 +01:00
|
|
|
cairo_rotate(cr, angle);
|
2007-11-11 18:59:11 +01:00
|
|
|
|
|
|
|
cairo_set_source_surface(cr, source, 0.0, 0.0);
|
2007-11-11 19:49:42 +01:00
|
|
|
cairo_paint(cr);
|
2007-11-11 18:59:11 +01:00
|
|
|
|
|
|
|
cairo_destroy(cr);
|
|
|
|
cairo_surface_destroy(source);
|
2007-11-11 22:38:29 +01:00
|
|
|
cairo_surface_destroy(surface);
|
2007-11-11 22:27:00 +01:00
|
|
|
|
|
|
|
return newdrawable;
|
2007-11-11 18:59:11 +01:00
|
|
|
}
|
|
|
|
|
2007-12-15 00:12:17 +01:00
|
|
|
|
2007-10-01 19:22:57 +02:00
|
|
|
unsigned short
|
2007-12-15 00:12:17 +01:00
|
|
|
textwidth_primitive(Display *display, XftFont *font, char *text)
|
2007-10-01 19:22:57 +02:00
|
|
|
{
|
2007-10-16 01:20:03 +02:00
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cr;
|
|
|
|
cairo_font_face_t *font_face;
|
|
|
|
cairo_text_extents_t te;
|
|
|
|
|
2007-12-15 00:12:17 +01:00
|
|
|
surface = cairo_xlib_surface_create(display, DefaultScreen(display),
|
|
|
|
DefaultVisual(display, DefaultScreen(display)),
|
|
|
|
DisplayWidth(display, DefaultScreen(display)),
|
|
|
|
DisplayHeight(display, DefaultScreen(display)));
|
2007-10-16 01:20:03 +02:00
|
|
|
cr = cairo_create(surface);
|
|
|
|
font_face = cairo_ft_font_face_create_for_pattern(font->pattern);
|
|
|
|
cairo_set_font_face(cr, font_face);
|
|
|
|
cairo_set_font_size(cr, font->height);
|
|
|
|
cairo_text_extents(cr, text, &te);
|
|
|
|
cairo_destroy(cr);
|
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
cairo_font_face_destroy(font_face);
|
|
|
|
|
|
|
|
return MAX(te.x_advance, te.width) + font->height;
|
2007-09-06 22:09:00 +02:00
|
|
|
}
|
2007-10-15 13:40:52 +02:00
|
|
|
|
2007-12-15 00:12:17 +01:00
|
|
|
unsigned short
|
|
|
|
textwidth(DrawCtx *ctx, XftFont *font, char *text)
|
|
|
|
{
|
2007-12-17 10:57:17 +01:00
|
|
|
if (!text)
|
|
|
|
return 0;
|
2007-12-15 00:12:17 +01:00
|
|
|
return textwidth_primitive(ctx->display, font, text);
|
|
|
|
}
|
|
|
|
|
2007-10-15 13:56:24 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|