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
|
/* vi:set et ai sw=2 sts=2 ts=2: */
/*-
* Copyright (c) 2005-2007 Benedikt Meurer <benny@xfce.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program 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 General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __THUNAR_DIALOGS_H__
#define __THUNAR_DIALOGS_H__
#include <thunar/thunar-enum-types.h>
#include <thunar/thunar-file.h>
#include <thunar/thunar-job.h>
G_BEGIN_DECLS;
gchar *thunar_dialogs_show_create (gpointer parent,
const gchar *content_type,
const gchar *filename,
const gchar *title);
ThunarJob *thunar_dialogs_show_rename_file (gpointer parent,
ThunarFile *file);
void thunar_dialogs_show_about (GtkWindow *parent,
const gchar *title,
const gchar *format,
...) G_GNUC_PRINTF (3, 4);
void thunar_dialogs_show_error (gpointer parent,
const GError *error,
const gchar *format,
...) G_GNUC_PRINTF (3, 4);
ThunarJobResponse thunar_dialogs_show_job_ask (GtkWindow *parent,
const gchar *question,
ThunarJobResponse choices);
ThunarJobResponse thunar_dialogs_show_job_ask_replace (GtkWindow *parent,
ThunarFile *src_file,
ThunarFile *dst_file);
void thunar_dialogs_show_job_error (GtkWindow *parent,
GError *error);
gboolean thunar_dialogs_show_insecure_program (gpointer parent,
const gchar *title,
ThunarFile *file,
const gchar *command);
G_END_DECLS;
#endif /* !__THUNAR_DIALOGS_H__ */
|