bugrepair VFS, update autotools files
[gpiv.git] / src / display_event.h
blob89d5e07336ae0fdd50d7f18854d3e4a77d75bba7
1 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 c-style: "K&R" -*- */
3 /*----------------------------------------------------------------------
5 gpiv - Graphic program for Particle Image Velocimetry, based on gtk/gnome
6 libraries.
8 Copyright (C) 2006, 2007, 2008
9 Gerber van der Graaf <gerber_graaf@users.sourceforge.net>
11 This file is part of gpiv.
13 Gpiv is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2, or (at your option)
16 any later version.
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software Foundation,
25 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 ----------------------------------------------------------------------*/
29 #ifndef DISPLAY_EVENT_H
30 #define DISPLAY_EVENT_H
32 gboolean
33 canvas_display_enter_notify (GtkWidget *widget,
34 GdkEventMotion *event,
35 gpointer data
38 gboolean
39 canvas_display_motion_notify (GtkWidget *widget,
40 GdkEventMotion *event,
41 gpointer data
44 gboolean
45 canvas_display_button_press (GtkWidget *widget,
46 GdkEventButton *event,
47 gpointer data
50 gboolean
51 canvas_display_button_release (GtkWidget *widget,
52 GdkEventButton *event,
53 gpointer data
55 gboolean
56 canvas_display_leave_notify (GtkWidget *widget,
57 GdkEventMotion *event,
58 gpointer data
62 #endif /* DISPLAY_EVENT_H */