bugrepair: drag and drop
[gpiv.git] / src / display_intregs.h
blob99773b4fa14b1e0d3071b5c5659faecf6f402520
1 /*
2 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 c-style: "K&R" -*- */
4 /*----------------------------------------------------------------------
6 gpiv - Graphic program for Particle Image Velocimetry, based on gtk/gnome
7 libraries.
9 Copyright (C) 2006, 2007, 2008
10 Gerber van der Graaf <gerber_graaf@users.sourceforge.net>
12 This file is part of gpiv.
14 Gpiv is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 2, or (at your option)
17 any later version.
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 ----------------------------------------------------------------------*/
30 #ifndef DISPLAY_INTREGS_H
31 #define DISPLAY_INTREGS_H
35 * Interrogation regions of first and second image frame in a Gnome canvas
38 void
39 create_all_intregs (Display *disp);
41 void
42 destroy_all_intregs (Display *disp);
44 GpivPivData *
45 create_intreg_data (Display *disp);
47 void
48 destroy_intreg_data (Display *disp);
50 void
51 show_all_intregs (Display *disp);
53 void
54 hide_all_intregs (Display *disp);
56 void
57 create_all_intregs1 (Display *disp);
59 void
60 create_intreg1 (Display *disp,
61 gint i,
62 gint j);
64 void
65 update_intreg1 (Display *disp,
66 gint i,
67 gint j);
69 void
70 destroy_intreg1 (Display *disp,
71 gint i,
72 gint j);
74 void
75 show_all_intregs1 (Display *disp);
77 void
78 hide_all_intregs1 (Display *disp);
80 void
81 destroy_all_intregs1 (Display *disp);
83 void
84 create_all_intregs2 (Display *disp);
86 void
87 create_intreg2 (Display *disp,
88 gint i,
89 gint j);
91 void
92 update_intreg2 (Display *disp,
93 gint i,
94 gint j);
96 void
97 destroy_intreg2 (Display *disp,
98 gint i,
99 gint j);
101 void
102 show_all_intregs2 (Display *disp);
104 void
105 hide_all_intregs2 (Display *disp);
107 void
108 destroy_all_intregs2 (Display *disp);
111 #endif /* DISPLAY_INTREGS_H */