bug repair: loading .png image, from Adrian Daerr
[gpiv.git] / src / pivpost.h
blob7b341128999545dd81a88d7b57ca0f725e4a51aa
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
5 libraries.
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)
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 Piv post-processing window/tabulator
30 * $Log: pivpost.h,v $
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_*.
45 * Resizing console.
46 * See Changelog for further info.
48 * Revision 1.1.1.1 2003/06/17 17:10:52 gerber
49 * Imported gpiv
53 #ifndef PIVPOST_H
54 #define PIVPOST_H
58 * Public post-processing functions
61 void
62 exec_scale (PivPost *pivpost);
64 void
65 exec_savg (PivPost *pivpost);
67 void
68 exec_subavg (PivPost *pivpost);
70 void
71 exec_vorstra (void);
75 * Piv post-processing callback functions
79 void
80 on_spinbutton_post_scale (GtkSpinButton *widget,
81 GtkWidget *entry);
83 /* void */
84 /* on_checkbutton_post_scale_enter (GtkWidget *widget, */
85 /* gpointer data); */
87 /* void */
88 /* on_checkbutton_post_scale (GtkWidget *widget, */
89 /* gpointer data); */
92 void
93 on_button_post_scale_enter (GtkWidget *widget,
94 gpointer data);
96 void
97 on_button_post_scale (GtkWidget *widget,
98 gpointer data);
100 void
101 on_button_post_savg_enter (GtkWidget *widget,
102 gpointer data);
104 void
105 on_spinbutton_post_suavg (GtkSpinButton *widget,
106 GtkWidget *entry);
108 void
109 on_spinbutton_post_svavg (GtkSpinButton *widget,
110 GtkWidget *entry);
112 void
113 on_button_post_savg (GtkWidget *widget,
114 gpointer data);
116 void
117 on_button_post_subavg_enter (GtkWidget *widget,
118 gpointer data);
120 void
121 on_button_post_subavg (GtkWidget *widget,
122 gpointer data);
124 void
125 on_radiobutton_post_vorstra_output_enter (GtkWidget *widget,
126 gpointer data);
128 void
129 on_radiobutton_post_vorstra_output (GtkWidget *widget,
130 gpointer data);
132 void
133 on_radiobutton_post_vorstra_diffscheme_enter (GtkWidget *widget,
134 gpointer data);
136 void
137 on_radiobutton_post_vorstra_diffscheme (GtkWidget *widget,
138 gpointer data);
140 void
141 on_button_post_vorstra_enter (GtkWidget *widget,
142 gpointer data);
144 void
145 on_button_post_vorstra (GtkWidget *widget,
146 gpointer data);
150 #endif /* PIVPOST_H */