GIcon: add g_icon_[de]serialize()
[glib.git] / gio / gmountoperation.h
blob7f8baf19c02b0ebb5e0618e1dd6d25c6132f1b9d
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 #ifndef __G_MOUNT_OPERATION_H__
24 #define __G_MOUNT_OPERATION_H__
26 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27 #error "Only <gio/gio.h> can be included directly."
28 #endif
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 void (* show_unmount_progress) (GMountOperation *op,
84 const gchar *message,
85 gint64 time_left,
86 gint64 bytes_left);
88 /*< private >*/
89 /* Padding for future expansion */
90 void (*_g_reserved1) (void);
91 void (*_g_reserved2) (void);
92 void (*_g_reserved3) (void);
93 void (*_g_reserved4) (void);
94 void (*_g_reserved5) (void);
95 void (*_g_reserved6) (void);
96 void (*_g_reserved7) (void);
97 void (*_g_reserved8) (void);
98 void (*_g_reserved9) (void);
101 GLIB_AVAILABLE_IN_ALL
102 GType g_mount_operation_get_type (void) G_GNUC_CONST;
103 GLIB_AVAILABLE_IN_ALL
104 GMountOperation * g_mount_operation_new (void);
106 GLIB_AVAILABLE_IN_ALL
107 const char * g_mount_operation_get_username (GMountOperation *op);
108 GLIB_AVAILABLE_IN_ALL
109 void g_mount_operation_set_username (GMountOperation *op,
110 const char *username);
111 GLIB_AVAILABLE_IN_ALL
112 const char * g_mount_operation_get_password (GMountOperation *op);
113 GLIB_AVAILABLE_IN_ALL
114 void g_mount_operation_set_password (GMountOperation *op,
115 const char *password);
116 GLIB_AVAILABLE_IN_ALL
117 gboolean g_mount_operation_get_anonymous (GMountOperation *op);
118 GLIB_AVAILABLE_IN_ALL
119 void g_mount_operation_set_anonymous (GMountOperation *op,
120 gboolean anonymous);
121 GLIB_AVAILABLE_IN_ALL
122 const char * g_mount_operation_get_domain (GMountOperation *op);
123 GLIB_AVAILABLE_IN_ALL
124 void g_mount_operation_set_domain (GMountOperation *op,
125 const char *domain);
126 GLIB_AVAILABLE_IN_ALL
127 GPasswordSave g_mount_operation_get_password_save (GMountOperation *op);
128 GLIB_AVAILABLE_IN_ALL
129 void g_mount_operation_set_password_save (GMountOperation *op,
130 GPasswordSave save);
131 GLIB_AVAILABLE_IN_ALL
132 int g_mount_operation_get_choice (GMountOperation *op);
133 GLIB_AVAILABLE_IN_ALL
134 void g_mount_operation_set_choice (GMountOperation *op,
135 int choice);
136 GLIB_AVAILABLE_IN_ALL
137 void g_mount_operation_reply (GMountOperation *op,
138 GMountOperationResult result);
140 G_END_DECLS
142 #endif /* __G_MOUNT_OPERATION_H__ */