regex: unicode: Update to Unicode 6.1.0
[glib.git] / gio / gmountoperation.h
blob8432b8019fcdf349307aa0aed29b4597cdcd537d
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Alexander Larsson <alexl@redhat.com>
23 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
24 #error "Only <gio/gio.h> can be included directly."
25 #endif
27 #ifndef __G_MOUNT_OPERATION_H__
28 #define __G_MOUNT_OPERATION_H__
30 #include <gio/giotypes.h>
32 G_BEGIN_DECLS
34 #define G_TYPE_MOUNT_OPERATION (g_mount_operation_get_type ())
35 #define G_MOUNT_OPERATION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_MOUNT_OPERATION, GMountOperation))
36 #define G_MOUNT_OPERATION_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_MOUNT_OPERATION, GMountOperationClass))
37 #define G_IS_MOUNT_OPERATION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_MOUNT_OPERATION))
38 #define G_IS_MOUNT_OPERATION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_MOUNT_OPERATION))
39 #define G_MOUNT_OPERATION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_MOUNT_OPERATION, GMountOperationClass))
41 /**
42 * GMountOperation:
44 * Class for providing authentication methods for mounting operations,
45 * such as mounting a file locally, or authenticating with a server.
46 **/
47 typedef struct _GMountOperationClass GMountOperationClass;
48 typedef struct _GMountOperationPrivate GMountOperationPrivate;
50 struct _GMountOperation
52 GObject parent_instance;
54 GMountOperationPrivate *priv;
57 struct _GMountOperationClass
59 GObjectClass parent_class;
61 /* signals: */
63 void (* ask_password) (GMountOperation *op,
64 const char *message,
65 const char *default_user,
66 const char *default_domain,
67 GAskPasswordFlags flags);
69 void (* ask_question) (GMountOperation *op,
70 const char *message,
71 const char *choices[]);
73 void (* reply) (GMountOperation *op,
74 GMountOperationResult result);
76 void (* aborted) (GMountOperation *op);
78 void (* show_processes) (GMountOperation *op,
79 const gchar *message,
80 GArray *processes,
81 const gchar *choices[]);
83 /*< private >*/
84 /* Padding for future expansion */
85 void (*_g_reserved1) (void);
86 void (*_g_reserved2) (void);
87 void (*_g_reserved3) (void);
88 void (*_g_reserved4) (void);
89 void (*_g_reserved5) (void);
90 void (*_g_reserved6) (void);
91 void (*_g_reserved7) (void);
92 void (*_g_reserved8) (void);
93 void (*_g_reserved9) (void);
94 void (*_g_reserved10) (void);
97 GType g_mount_operation_get_type (void) G_GNUC_CONST;
98 GMountOperation * g_mount_operation_new (void);
100 const char * g_mount_operation_get_username (GMountOperation *op);
101 void g_mount_operation_set_username (GMountOperation *op,
102 const char *username);
103 const char * g_mount_operation_get_password (GMountOperation *op);
104 void g_mount_operation_set_password (GMountOperation *op,
105 const char *password);
106 gboolean g_mount_operation_get_anonymous (GMountOperation *op);
107 void g_mount_operation_set_anonymous (GMountOperation *op,
108 gboolean anonymous);
109 const char * g_mount_operation_get_domain (GMountOperation *op);
110 void g_mount_operation_set_domain (GMountOperation *op,
111 const char *domain);
112 GPasswordSave g_mount_operation_get_password_save (GMountOperation *op);
113 void g_mount_operation_set_password_save (GMountOperation *op,
114 GPasswordSave save);
115 int g_mount_operation_get_choice (GMountOperation *op);
116 void g_mount_operation_set_choice (GMountOperation *op,
117 int choice);
118 void g_mount_operation_reply (GMountOperation *op,
119 GMountOperationResult result);
121 G_END_DECLS
123 #endif /* __G_MOUNT_OPERATION_H__ */