bugrepair: drag and drop
[gpiv.git] / src / display_image.h
blob2aee7d0f8350b31fef132c858a0cb1dbf939cc8a
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_IMAGE_H
30 #define DISPLAY_IMAGE_H
34 * Public image and background functions
35 * Image in a Gnome canvas
38 void
39 create_img (Display *disp);
41 void
42 hide_img1 (Display *disp);
44 void
45 show_img1 (Display *disp);
47 void
48 hide_img2 (Display *disp);
50 void
51 show_img2 (Display *disp);
53 void
54 destroy_img (Display *disp);
57 GnomeCanvasItem *
58 create_background (Display *disp);
60 void
61 destroy_background (GnomeCanvasItem *gci);
64 #endif /* DISPLAY_IMAGE_H */