Adapted for use on cluster (using MPI/OMP) parallelised gpiv_rr from gpivtools)
[gpiv.git] / src / dialog_interface.h
blob1b11979ee2831485cacc07903827e12124f3e37d
1 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 8 c-style: "K&R" -*- */
3 /*----------------------------------------------------------------------
5 gpiv - Graphic program for Particle Image Velocimetry, based on gtk/gnome
6 libraries.
8 Copyright (C) 2002 Gerber van der Graaf
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 * $Id: dialog_interface.h,v 1.1 2008-09-16 11:19:37 gerber Exp $
31 * widgets for small dialogs and message windows
33 #ifndef DIALOG_INTERFACE_H
34 #define DIALOG_INTERFACE_H
36 #include "gpiv_gui.h"
40 GtkWidget *
41 /* GnomeAbout * */
42 create_about (void);
44 GtkDialog *
45 create_exit_dialog (void);
47 GtkDialog *
48 create_message_dialog (gchar *message);
50 GtkDialog *
51 create_warning_dialog (gchar *message);
53 GtkDialog *
54 create_error_dialog (gchar *message);
56 GtkDialog *
57 create_close_buffer_dialog (GpivConsole *gpiv,
58 Display *disp,
59 char *message);
61 #endif /* DIALOG_INTERFACE_H */