]> Pileus Git - grits/blob - src/objects/grits-poly.h
Improve performance of GritsPoly
[grits] / src / objects / grits-poly.h
1 /*
2  * Copyright (C) 2010 Andy Spencer <andy753421@gmail.com>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __GRITS_POLY_H__
19 #define __GRITS_POLY_H__
20
21 #include <glib.h>
22 #include <glib-object.h>
23 #include <cairo.h>
24 #include <objects/grits-object.h>
25
26 /* GritsPoly */
27 #define GRITS_TYPE_POLY            (grits_poly_get_type())
28 #define GRITS_POLY(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GRITS_TYPE_POLY, GritsPoly))
29 #define GRITS_IS_POLY(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GRITS_TYPE_POLY))
30 #define GRITS_POLY_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GRITS_TYPE_POLY, GritsPolyClass))
31 #define GRITS_IS_POLY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GRITS_TYPE_POLY))
32 #define GRITS_POLY_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GRITS_TYPE_POLY, GritsPolyClass))
33
34 typedef struct _GritsPoly      GritsPoly;
35 typedef struct _GritsPolyClass GritsPolyClass;
36
37 struct _GritsPoly {
38         GritsObject  parent_instance;
39         gdouble   (**points)[3];
40         gdouble      color[4];
41         gdouble      border[4];
42         gdouble      width;
43         guint        list[2];
44 };
45
46 struct _GritsPolyClass {
47         GritsObjectClass parent_class;
48 };
49
50 GType grits_poly_get_type(void);
51
52 GritsPoly *grits_poly_new(gdouble (**points)[3]);
53
54 GritsPoly *grits_poly_parse(const gchar *str,
55                 const gchar *poly_sep, const gchar *point_sep, const gchar *coord_sep);
56
57 #endif