1 /*----------------------------------------------------------------------
3 gpiv - Graphic program for Particle Image Velocimetry, based on gtk/gnome
6 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
7 Gerber van der Graaf <gerber_graaf@users.sourceforge.net>
9 This file is part of gpiv.
11 Gpiv is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software Foundation,
23 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 ----------------------------------------------------------------------*/
29 * $Log: pivpost_interface.h,v $
30 * Revision 1.6 2007-11-23 16:24:08 gerber
31 * release 0.5.0: Kafka
33 * Revision 1.5 2007-06-06 17:00:48 gerber
34 * Retreives images/data from URI using Gnome Virtual File System.
36 * Revision 1.4 2006/01/31 14:28:12 gerber
39 * Revision 1.3 2005/01/19 15:53:42 gerber
40 * Initiation of Data Acquisition (DAC); trigerring of lasers and camera
41 * by using RTAI and Realtime Linux, recording images from IEEE1394
42 * (Firewire) IIDC compliant camera's
44 * Revision 1.2 2004/06/14 21:19:23 gerber
45 * Image depth up to 16 bits.
46 * Improvement "single int" and "drag int" in Eval tab.
47 * Viewer's pop-up menu.
48 * Adaption for gpiv_matrix_* and gpiv_vector_*.
50 * See Changelog for further info.
52 * Revision 1.1.1.1 2003/06/17 17:10:52 gerber
57 #ifndef GPIV_PIVPOST_INTERFACE_H
58 #define GPIV_PIVPOST_INTERFACE_H
61 typedef struct _PivPost PivPost
;
63 GtkWidget
*vbox_label
;
64 GtkWidget
*label_title
;
65 GtkWidget
*vbox_scroll
;
66 GtkWidget
*scrolledwindow
;
70 GtkWidget
*frame_scale
;
71 GtkWidget
*table_scale
;
72 GtkWidget
*label_sscale
;
73 /* GtkObject *spinbutton_adj_sscale; */
74 GtkWidget
*spinbutton_sscale
;
75 GtkWidget
*label_tscale
;
76 /* GtkObject *spinbutton_adj_tscale; */
77 GtkWidget
*spinbutton_tscale
;
78 GtkWidget
*label_colpos
;
79 /* GtkObject *spinbutton_adj_colpos; */
80 GtkWidget
*spinbutton_colpos
;
81 GtkWidget
*label_rowpos
;
82 /* GtkObject *spinbutton_adj_rowpos; */
83 GtkWidget
*spinbutton_rowpos
;
84 GtkWidget
*button_scale
;
86 GtkWidget
*frame_savg
;
87 GtkWidget
*table_savg
;
88 GtkWidget
*label_suavg
;
89 GtkObject
*spinbutton_adj_suavg
;
90 GtkWidget
*spinbutton_suavg
;
91 GtkWidget
*label_svavg
;
92 GtkObject
*spinbutton_adj_svavg
;
93 GtkWidget
*spinbutton_svavg
;
94 GtkWidget
*button_savg
;
95 GtkWidget
*button_subavg
;
97 GtkWidget
*frame_vorstra
;
98 GtkWidget
*vbox_vorstra
;
99 GtkWidget
*frame_vorstra_output
;
100 GtkWidget
*vbox_vorstra_output
;
101 GSList
*vbox_vorstra_output_group
;
103 GtkWidget
*radiobutton_vorstra_output_1
;
104 GtkWidget
*radiobutton_vorstra_output_2
;
105 GtkWidget
*radiobutton_vorstra_output_3
;
106 GtkWidget
*frame_vorstra_diffscheme
;
107 GtkWidget
*vbox_vorstra_diffscheme
;
108 GSList
*vbox_vorstra_diffscheme_group
/* = NULL */;
109 GtkWidget
*radiobutton_vorstra_diffscheme_1
;
110 GtkWidget
*radiobutton_vorstra_diffscheme_2
;
111 GtkWidget
*radiobutton_vorstra_diffscheme_3
;
112 GtkWidget
*radiobutton_vorstra_diffscheme_4
;
113 GtkWidget
*button_vorstra
;
117 create_pivpost (GnomeApp
*main_window
,
118 GtkWidget
*container
);
120 #endif /* GPIV_PIVPOST_INTERFACE_H */