mount-operation: add show-unmount-progress signal
[platform/upstream/glib.git] / gio / gmountoperation.h
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  *
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.
9  *
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.
14  *
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.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  */
22
23 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
24 #error "Only <gio/gio.h> can be included directly."
25 #endif
26
27 #ifndef __G_MOUNT_OPERATION_H__
28 #define __G_MOUNT_OPERATION_H__
29
30 #include <gio/giotypes.h>
31
32 G_BEGIN_DECLS
33
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))
40
41 /**
42  * GMountOperation:
43  *
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;
49
50 struct _GMountOperation
51 {
52   GObject parent_instance;
53
54   GMountOperationPrivate *priv;
55 };
56
57 struct _GMountOperationClass
58 {
59   GObjectClass parent_class;
60
61   /* signals: */
62
63   void (* ask_password) (GMountOperation       *op,
64                          const char            *message,
65                          const char            *default_user,
66                          const char            *default_domain,
67                          GAskPasswordFlags      flags);
68
69   void (* ask_question) (GMountOperation       *op,
70                          const char            *message,
71                          const char            *choices[]);
72
73   void (* reply)        (GMountOperation       *op,
74                          GMountOperationResult  result);
75
76   void (* aborted)      (GMountOperation       *op);
77
78   void (* show_processes) (GMountOperation      *op,
79                            const gchar          *message,
80                            GArray               *processes,
81                            const gchar          *choices[]);
82
83   void (* show_unmount_progress) (GMountOperation *op,
84                                   const gchar     *message,
85                                   guint64          time_left,
86                                   guint64          bytes_left);
87
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);
99 };
100
101 GType             g_mount_operation_get_type      (void) G_GNUC_CONST;
102 GMountOperation * g_mount_operation_new           (void);
103
104 const char *  g_mount_operation_get_username      (GMountOperation *op);
105 void          g_mount_operation_set_username      (GMountOperation *op,
106                                                    const char      *username);
107 const char *  g_mount_operation_get_password      (GMountOperation *op);
108 void          g_mount_operation_set_password      (GMountOperation *op,
109                                                    const char      *password);
110 gboolean      g_mount_operation_get_anonymous     (GMountOperation *op);
111 void          g_mount_operation_set_anonymous     (GMountOperation *op,
112                                                    gboolean         anonymous);
113 const char *  g_mount_operation_get_domain        (GMountOperation *op);
114 void          g_mount_operation_set_domain        (GMountOperation *op,
115                                                    const char      *domain);
116 GPasswordSave g_mount_operation_get_password_save (GMountOperation *op);
117 void          g_mount_operation_set_password_save (GMountOperation *op,
118                                                    GPasswordSave    save);
119 int           g_mount_operation_get_choice        (GMountOperation *op);
120 void          g_mount_operation_set_choice        (GMountOperation *op,
121                                                    int              choice);
122 void          g_mount_operation_reply             (GMountOperation *op,
123                                                    GMountOperationResult result);
124
125 G_END_DECLS
126
127 #endif /* __G_MOUNT_OPERATION_H__ */