]> Pileus Git - grits/blob - src/objects/gis-marker.c
Fix various memory leaks, mostly in plugins
[grits] / src / objects / gis-marker.c
1 /*
2  * Copyright (C) 2009-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 #include <config.h>
19 #include "gis-marker.h"
20
21 /* GisMarker */
22 GisMarker *gis_marker_new(const gchar *label)
23 {
24         //g_debug("GisMarker: new - %s", label);
25         static const int RADIUS =   4;
26         static const int WIDTH  = 100;
27         static const int HEIGHT =  20;
28
29         GisMarker *self = g_object_new(GIS_TYPE_MARKER, NULL);
30         self->xoff  = RADIUS;
31         self->yoff  = HEIGHT-RADIUS;
32         self->label = g_strdup(label);
33         self->cairo = cairo_create(cairo_image_surface_create(
34                                 CAIRO_FORMAT_ARGB32, WIDTH, HEIGHT));
35         cairo_set_source_rgba(self->cairo, 1, 1, 1, 1);
36         cairo_arc(self->cairo, self->xoff, self->yoff, RADIUS, 0, 2*G_PI);
37         cairo_fill(self->cairo);
38         cairo_move_to(self->cairo, self->xoff+4, self->yoff-8);
39         cairo_set_font_size(self->cairo, 10);
40         cairo_show_text(self->cairo, self->label);
41         return self;
42 }
43
44 G_DEFINE_TYPE(GisMarker, gis_marker, GIS_TYPE_OBJECT);
45 static void gis_marker_init(GisMarker *self) { }
46
47 static void gis_marker_finalize(GObject *_self)
48 {
49         GisMarker *self = GIS_MARKER(_self);
50         //g_debug("GisMarker: finalize - %s", self->label);
51         cairo_surface_t *surface = cairo_get_target(self->cairo);
52         cairo_surface_destroy(surface);
53         cairo_destroy(self->cairo);
54         g_free(self->label);
55 }
56
57 static void gis_marker_class_init(GisMarkerClass *klass)
58 {
59         G_OBJECT_CLASS(klass)->finalize = gis_marker_finalize;
60 }