From 8c390bd7711f43968e3deffac36d70ddc15dca31 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20D=C5=82ugo=C5=82=C4=99cki?= Date: Sun, 2 Feb 2014 18:24:06 +0100 Subject: [PATCH] Fix name in comment. --- src/ui/drawing_area.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/ui/drawing_area.h diff --git a/src/ui/drawing_area.h b/src/ui/drawing_area.h new file mode 100644 index 0000000..f7ce1ec --- /dev/null +++ b/src/ui/drawing_area.h @@ -0,0 +1,36 @@ +/**************************************************************************** + * Familia Lignum - Genealogical program * + * Copyright (C) 2011-2012 Rafał Długołęcki * + * * + * 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; version 2 of the License. * + * * + * 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. * + * * + ****************************************************************************/ + +#ifndef _UI_DRAWING_AREA_H +#define _UI_DRAWING_AREA_H + +/** + * Function responsible for drawing content on each frame. + */ +gboolean drawing_area_draw(GtkWidget *widget, cairo_t *cr, + gpointer user_data); + +/** + * Function responsible for configuration of drawing area widget. + */ +gboolean drawing_area_configure_event (GtkWidget *widget, + GdkEventConfigure *event, gpointer data); + +#endif /* _UI_DRAWING_AREA_H */ + -- 2.30.2