Updated because of cvs conflict
[gpiv.git] / src / imgproc.h
blobfc820982cff5f942e1cb267a94a854224b527861
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) 2007 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 ----------------------------------------------------------------------*/
29 * (callback) functions for image processing
30 * $Log: imgproc.h,v $
31 * Revision 1.1 2008-09-16 11:04:47 gerber
32 * added imgproc routines
36 #ifndef IMGPROC_H
37 #define IMGPROC_H
39 gchar *
40 set_imgproc_filtervar (GpivConsole *gpiv,
41 gint id,
42 gint value);
44 void
45 exec_imgproc (GpivConsole *gpiv);
49 * Callback functions
51 void
52 on_button_filter_enter (GtkWidget *widget,
53 gpointer data);
55 void
56 on_button_filter (GtkWidget *widget,
57 gpointer data);
60 void
61 on_spinbutton_filtervar (GtkSpinButton *widget,
62 GtkWidget *entry);
64 void
65 on_button_imgproc_enter (GtkWidget *widget,
66 gpointer data);
68 void
69 on_button_imgproc (GtkWidget *widget,
70 gpointer data);
72 #endif /* IMGPROC_H */