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
|
|
|
*
|
|
|
|
* 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-09-10 16:11:57 +02:00
|
|
|
#ifndef AWESOME_DRAW_H
|
|
|
|
#define AWESOME_DRAW_H
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-09-15 15:26:51 +02:00
|
|
|
#include "config.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-10-11 16:29:20 +02:00
|
|
|
void drawtext(Display *, int, int, int, int, int, Drawable, int, int, XftFont *, const char *, XColor []);
|
2007-10-11 15:44:30 +02:00
|
|
|
void drawrectangle(Display *, int, int, int, int, int, Drawable, int, int, Bool, XColor);
|
2007-10-11 17:06:55 +02:00
|
|
|
void drawcircle(Display *, int, int, int, int, Drawable, int, int, Bool, XColor);
|
2007-11-11 22:27:00 +01:00
|
|
|
Drawable draw_rotate(Display *, int, Drawable, int, int, double, int, int);
|
2007-10-16 01:20:03 +02:00
|
|
|
unsigned short textwidth(Display *, XftFont *, char *);
|
2007-09-05 20:15:00 +02:00
|
|
|
#endif
|
2007-10-15 13:56:24 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|