1 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 c-style: "K&R" -*- */
3 /*---------------------------------------------------------------------
4 gpiv - Graphic program for Particle Image Velocimetry, based on gtk/gnome
7 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
8 Gerber van der Graaf <gerber_graaf@users.sourceforge.net>
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)
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 Piv post-processing window/tabulator
31 * Revision 1.5 2007-11-23 16:24:08 gerber
32 * release 0.5.0: Kafka
34 * Revision 1.4 2006-09-18 07:27:06 gerber
35 * *** empty log message ***
37 * Revision 1.3 2004/10/15 19:24:05 gerber
38 * GPIV_ and Gpiv prefix to defines and structure names of libgpiv
40 * Revision 1.2 2004/06/14 21:19:23 gerber
41 * Image depth up to 16 bits.
42 * Improvement "single int" and "drag int" in Eval tab.
43 * Viewer's pop-up menu.
44 * Adaption for gpiv_matrix_* and gpiv_vector_*.
46 * See Changelog for further info.
48 * Revision 1.1.1.1 2003/06/17 17:10:52 gerber
58 * Public post-processing functions
62 exec_scale (PivPost
*pivpost
);
65 exec_savg (PivPost
*pivpost
);
68 exec_subavg (PivPost
*pivpost
);
75 * Piv post-processing callback functions
80 on_spinbutton_post_scale (GtkSpinButton
*widget
,
84 /* on_checkbutton_post_scale_enter (GtkWidget *widget, */
88 /* on_checkbutton_post_scale (GtkWidget *widget, */
93 on_button_post_scale_enter (GtkWidget
*widget
,
97 on_button_post_scale (GtkWidget
*widget
,
101 on_button_post_savg_enter (GtkWidget
*widget
,
105 on_spinbutton_post_suavg (GtkSpinButton
*widget
,
109 on_spinbutton_post_svavg (GtkSpinButton
*widget
,
113 on_button_post_savg (GtkWidget
*widget
,
117 on_button_post_subavg_enter (GtkWidget
*widget
,
121 on_button_post_subavg (GtkWidget
*widget
,
125 on_radiobutton_post_vorstra_output_enter (GtkWidget
*widget
,
129 on_radiobutton_post_vorstra_output (GtkWidget
*widget
,
133 on_radiobutton_post_vorstra_diffscheme_enter (GtkWidget
*widget
,
137 on_radiobutton_post_vorstra_diffscheme (GtkWidget
*widget
,
141 on_button_post_vorstra_enter (GtkWidget
*widget
,
145 on_button_post_vorstra (GtkWidget
*widget
,
150 #endif /* PIVPOST_H */