2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* draw.h - draw functions header
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2009-08-25 20:24:38 +02:00
|
|
|
* Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2008-01-26 18:00:47 +01:00
|
|
|
#ifndef AWESOME_COMMON_DRAW_H
|
|
|
|
#define AWESOME_COMMON_DRAW_H
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
#include <xcb/xcb.h>
|
2012-05-27 19:20:34 +02:00
|
|
|
#include <cairo.h>
|
2012-10-14 17:03:00 +02:00
|
|
|
#include <lua.h>
|
2016-01-15 18:38:23 +01:00
|
|
|
#include <glib.h> /* for GError */
|
2010-08-20 11:56:23 +02:00
|
|
|
|
2017-03-06 15:50:51 +01:00
|
|
|
#include "common/array.h"
|
2010-10-06 20:06:49 +02:00
|
|
|
#include "common/util.h"
|
2008-01-03 15:57:07 +01:00
|
|
|
|
2018-01-18 18:10:35 +01:00
|
|
|
/* Forward definition */
|
|
|
|
typedef struct _GdkPixbuf GdkPixbuf;
|
|
|
|
|
2008-03-14 09:37:25 +01:00
|
|
|
typedef struct area_t area_t;
|
|
|
|
struct area_t
|
2007-12-29 21:44:44 +01:00
|
|
|
{
|
2008-01-28 18:30:23 +01:00
|
|
|
/** Co-ords of upper left corner */
|
2008-06-22 22:09:48 +02:00
|
|
|
int16_t x;
|
|
|
|
int16_t y;
|
|
|
|
uint16_t width;
|
|
|
|
uint16_t height;
|
2008-01-28 18:30:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#define AREA_LEFT(a) ((a).x)
|
|
|
|
#define AREA_TOP(a) ((a).y)
|
|
|
|
#define AREA_RIGHT(a) ((a).x + (a).width)
|
|
|
|
#define AREA_BOTTOM(a) ((a).y + (a).height)
|
2015-10-14 19:40:18 +02:00
|
|
|
#define AREA_EQUAL(a, b) ((a).x == (b).x && (a).y == (b).y && \
|
|
|
|
(a).width == (b).width && (a).height == (b).height)
|
2007-12-29 21:44:44 +01:00
|
|
|
|
2017-03-06 15:50:51 +01:00
|
|
|
static inline void
|
|
|
|
cairo_surface_array_destroy_surface(cairo_surface_t **s)
|
|
|
|
{
|
|
|
|
cairo_surface_destroy(*s);
|
|
|
|
}
|
|
|
|
DO_ARRAY(cairo_surface_t *, cairo_surface, cairo_surface_array_destroy_surface)
|
|
|
|
|
2012-05-28 09:29:47 +02:00
|
|
|
cairo_surface_t *draw_surface_from_data(int width, int height, uint32_t *data);
|
2010-08-20 11:56:23 +02:00
|
|
|
cairo_surface_t *draw_dup_image_surface(cairo_surface_t *surface);
|
2016-01-15 18:38:23 +01:00
|
|
|
cairo_surface_t *draw_load_image(lua_State *L, const char *path, GError **error);
|
2018-01-18 18:10:35 +01:00
|
|
|
cairo_surface_t *draw_surface_from_pixbuf(GdkPixbuf *buf);
|
2010-08-20 11:56:23 +02:00
|
|
|
|
2013-09-16 11:59:00 +02:00
|
|
|
xcb_visualtype_t *draw_find_visual(const xcb_screen_t *s, xcb_visualid_t visual);
|
2012-07-29 15:21:02 +02:00
|
|
|
xcb_visualtype_t *draw_default_visual(const xcb_screen_t *s);
|
|
|
|
xcb_visualtype_t *draw_argb_visual(const xcb_screen_t *s);
|
|
|
|
uint8_t draw_visual_depth(const xcb_screen_t *s, xcb_visualid_t vis);
|
|
|
|
|
2015-02-18 21:23:47 +01:00
|
|
|
void draw_test_cairo_xcb(void);
|
|
|
|
|
2007-09-05 20:15:00 +02:00
|
|
|
#endif
|
2011-09-11 16:50:01 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|