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