bugrepair VFS, update autotools files
[gpiv.git] / src / dialog_interface.h
blob072da1dc622b6513d88f4e8207c11b8999136744
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, 2003, 2004, 2005, 2006, 2007, 2008
9 Gerber van der Graaf <gerber_graaf@users.sourceforge.net>
11 This file is part of gpiv.
13 Gpiv is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2, or (at your option)
16 any later version.
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software Foundation,
25 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 -----------------------------------------------------------------------------*/
30 * $Id: dialog_interface.h,v 1.1 2008-09-16 11:19:37 gerber Exp $
32 * widgets for small dialogs and message windows
34 #ifndef DIALOG_INTERFACE_H
35 #define DIALOG_INTERFACE_H
37 #include "gpiv_gui.h"
41 GtkWidget *
42 /* GnomeAbout * */
43 create_about (void);
45 GtkDialog *
46 create_exit_dialog (void);
48 GtkDialog *
49 create_message_dialog (gchar *message);
51 GtkDialog *
52 create_warning_dialog (gchar *message);
54 GtkDialog *
55 create_error_dialog (gchar *message);
57 GtkDialog *
58 create_close_buffer_dialog (GpivConsole *gpiv,
59 Display *disp,
60 char *message);
62 #endif /* DIALOG_INTERFACE_H */