Fix name in comment.
authorRafał Długołęcki <rafal@dlugolecki.net.pl>
Sun, 2 Feb 2014 17:24:06 +0000 (18:24 +0100)
committerRafał Długołęcki <rafal@dlugolecki.net.pl>
Sun, 2 Feb 2014 17:24:06 +0000 (18:24 +0100)
src/ui/drawing_area.h [new file with mode: 0644]

diff --git a/src/ui/drawing_area.h b/src/ui/drawing_area.h
new file mode 100644 (file)
index 0000000..f7ce1ec
--- /dev/null
@@ -0,0 +1,36 @@
+/****************************************************************************
+ *  Familia Lignum - Genealogical program                                   *
+ *  Copyright (C) 2011-2012 Rafał Długołęcki <rafal@dlugolecki.net.pl>      *
+ *                                                                          *
+ *  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 */
+