Release 0.6.0 using parallelized code
[gpiv.git] / src / display_image.h
blob93c38db63d2b1494c56a5499c3a2271eb71c251a
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_IMAGE_H
29 #define DISPLAY_IMAGE_H
33 * Public image and background functions
34 * Image in a Gnome canvas
37 void
38 create_img (Display *disp);
40 void
41 hide_img1 (Display *disp);
43 void
44 show_img1 (Display *disp);
46 void
47 hide_img2 (Display *disp);
49 void
50 show_img2 (Display *disp);
52 void
53 destroy_img (Display *disp);
56 GnomeCanvasItem *
57 create_background (Display *disp);
59 void
60 destroy_background (GnomeCanvasItem *gci);
63 #endif /* DISPLAY_IMAGE_H */