summaryrefslogtreecommitdiff
path: root/libnautilus-private/nautilus-stock-dialogs.h
blob: 6ce9fe993796867d27cb05f4377ca6e3d66f13d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */

/* nautilus-stock-dialogs.h: Various standard dialogs for Nautilus.

   Copyright (C) 2000 Eazel, Inc.

   The Gnome Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public License as
   published by the Free Software Foundation; either version 2 of the
   License, or (at your option) any later version.

   The Gnome Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public
   License along with the Gnome Library; see the file COPYING.LIB.  If not,
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.

   Authors: Darin Adler <darin@eazel.com>
*/

#ifndef NAUTILUS_STOCK_DIALOGS_H
#define NAUTILUS_STOCK_DIALOGS_H

#include <libgnomeui/gnome-dialog.h>

typedef void (* NautilusCancelCallback) (gpointer callback_data);

/* Dialog for cancelling something that normally is fast enough not to need a dialog. */
void         nautilus_timed_wait_start          (NautilusCancelCallback  cancel_callback,
						 gpointer                callback_data,
						 const char             *window_title,
						 const char             *wait_message,
						 GtkWindow              *parent_window);
void         nautilus_timed_wait_stop           (NautilusCancelCallback  cancel_callback,
						 gpointer                callback_data);

/* Basic dialog with buttons. */
int          nautilus_simple_dialog             (GtkWidget              *parent,
						 const char             *text,
						 const char             *title,
						 ...);

/* Variations on gnome stock dialogs; these do line wrapping, we don't
 * bother with non-parented versions, and we return GnomeDialog
 * pointers instead of GtkWidget pointers.
 */
GnomeDialog *nautilus_info_dialog               (const char             *informative_message,
						 GtkWindow              *parent);
GnomeDialog *nautilus_warning_dialog            (const char             *warning_message,
						 GtkWindow              *parent);
GnomeDialog *nautilus_error_dialog              (const char             *error_message,
						 GtkWindow              *parent);
GnomeDialog *nautilus_error_dialog_with_details (const char             *error_message,
						 const char             *detailed_error_message,
						 GtkWindow              *parent);
GnomeDialog *nautilus_yes_no_dialog             (const char             *question,
						 const char             *yes_label,
						 const char             *no_label,
						 GtkWindow              *parent);

#endif /* NAUTILUS_STOCK_DIALOGS_H */