paralellized with OMP and MPI
[gpiv.git] / src / display_event.h
blob2b18e399557d0510d96dec4594ed482ee17f2056
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 Gerber van der Graaf
10 This file is part of gpiv.
12 Gpiv is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2, or (at your option)
15 any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software Foundation,
24 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 ----------------------------------------------------------------------*/
28 #ifndef DISPLAY_EVENT_H
29 #define DISPLAY_EVENT_H
31 gboolean
32 canvas_display_enter_notify (GtkWidget *widget,
33 GdkEventMotion *event,
34 gpointer data
37 gboolean
38 canvas_display_motion_notify (GtkWidget *widget,
39 GdkEventMotion *event,
40 gpointer data
43 gboolean
44 canvas_display_button_press (GtkWidget *widget,
45 GdkEventButton *event,
46 gpointer data
49 gboolean
50 canvas_display_button_release (GtkWidget *widget,
51 GdkEventButton *event,
52 gpointer data
54 gboolean
55 canvas_display_leave_notify (GtkWidget *widget,
56 GdkEventMotion *event,
57 gpointer data
61 #endif /* DISPLAY_EVENT_H */