bugrepair: drag and drop
[gpiv.git] / src / imgproc.h
blobc17e651b96f3779d360c9f56746927523005ca13
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, 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 ----------------------------------------------------------------------*/
30 * (callback) functions for image processing
31 * $Log: imgproc.h,v $
32 * Revision 1.1 2008-09-16 11:04:47 gerber
33 * added imgproc routines
37 #ifndef IMGPROC_H
38 #define IMGPROC_H
40 gchar *
41 set_imgproc_filtervar (GpivConsole *gpiv,
42 gint id,
43 gint value);
45 void
46 exec_imgproc (GpivConsole *gpiv);
50 * Callback functions
52 void
53 on_button_filter_enter (GtkWidget *widget,
54 gpointer data);
56 void
57 on_button_filter (GtkWidget *widget,
58 gpointer data);
61 void
62 on_spinbutton_filtervar (GtkSpinButton *widget,
63 GtkWidget *entry);
65 void
66 on_button_imgproc_enter (GtkWidget *widget,
67 gpointer data);
69 void
70 on_button_imgproc (GtkWidget *widget,
71 gpointer data);
73 #endif /* IMGPROC_H */