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.1 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, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
19 * David Zeuthen <davidz@redhat.com>
25 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
26 #error "Only <gio/gio.h> can be included directly."
29 #include <gio/giotypes.h>
34 * G_DRIVE_IDENTIFIER_KIND_UNIX_DEVICE:
36 * The string used to obtain a Unix device path with g_drive_get_identifier().
40 #define G_DRIVE_IDENTIFIER_KIND_UNIX_DEVICE "unix-device"
42 #define G_TYPE_DRIVE (g_drive_get_type ())
43 #define G_DRIVE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_DRIVE, GDrive))
44 #define G_IS_DRIVE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_DRIVE))
45 #define G_DRIVE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_DRIVE, GDriveIface))
49 * @g_iface: The parent interface.
50 * @changed: Signal emitted when the drive is changed.
51 * @disconnected: The removed signal that is emitted when the #GDrive have been disconnected. If the recipient is holding references to the object they should release them so the object can be finalized.
52 * @eject_button: Signal emitted when the physical eject button (if any) of a drive have been pressed.
53 * @get_name: Returns the name for the given #GDrive.
54 * @get_icon: Returns a #GIcon for the given #GDrive.
55 * @has_volumes: Returns %TRUE if the #GDrive has mountable volumes.
56 * @get_volumes: Returns a list #GList of #GVolume for the #GDrive.
57 * @is_removable: Returns %TRUE if the #GDrive and/or its media is considered removable by the user. Since 2.50.
58 * @is_media_removable: Returns %TRUE if the #GDrive supports removal and insertion of media.
59 * @has_media: Returns %TRUE if the #GDrive has media inserted.
60 * @is_media_check_automatic: Returns %TRUE if the #GDrive is capabable of automatically detecting media changes.
61 * @can_poll_for_media: Returns %TRUE if the #GDrive is capable of manually polling for media change.
62 * @can_eject: Returns %TRUE if the #GDrive can eject media.
63 * @eject: Ejects a #GDrive.
64 * @eject_finish: Finishes an eject operation.
65 * @poll_for_media: Poll for media insertion/removal on a #GDrive.
66 * @poll_for_media_finish: Finishes a media poll operation.
67 * @get_identifier: Returns the identifier of the given kind, or %NULL if
68 * the #GDrive doesn't have one.
69 * @enumerate_identifiers: Returns an array strings listing the kinds
70 * of identifiers which the #GDrive has.
71 * @get_start_stop_type: Gets a #GDriveStartStopType with details about starting/stopping the drive. Since 2.22.
72 * @can_stop: Returns %TRUE if a #GDrive can be stopped. Since 2.22.
73 * @stop: Stops a #GDrive. Since 2.22.
74 * @stop_finish: Finishes a stop operation. Since 2.22.
75 * @can_start: Returns %TRUE if a #GDrive can be started. Since 2.22.
76 * @can_start_degraded: Returns %TRUE if a #GDrive can be started degraded. Since 2.22.
77 * @start: Starts a #GDrive. Since 2.22.
78 * @start_finish: Finishes a start operation. Since 2.22.
79 * @stop_button: Signal emitted when the physical stop button (if any) of a drive have been pressed. Since 2.22.
80 * @eject_with_operation: Starts ejecting a #GDrive using a #GMountOperation. Since 2.22.
81 * @eject_with_operation_finish: Finishes an eject operation using a #GMountOperation. Since 2.22.
82 * @get_sort_key: Gets a key used for sorting #GDrive instances or %NULL if no such key exists. Since 2.32.
83 * @get_symbolic_icon: Returns a symbolic #GIcon for the given #GDrive. Since 2.34.
85 * Interface for creating #GDrive implementations.
87 typedef struct _GDriveIface GDriveIface
;
91 GTypeInterface g_iface
;
94 void (* changed
) (GDrive
*drive
);
95 void (* disconnected
) (GDrive
*drive
);
96 void (* eject_button
) (GDrive
*drive
);
99 char * (* get_name
) (GDrive
*drive
);
100 GIcon
* (* get_icon
) (GDrive
*drive
);
101 gboolean (* has_volumes
) (GDrive
*drive
);
102 GList
* (* get_volumes
) (GDrive
*drive
);
103 gboolean (* is_media_removable
) (GDrive
*drive
);
104 gboolean (* has_media
) (GDrive
*drive
);
105 gboolean (* is_media_check_automatic
) (GDrive
*drive
);
106 gboolean (* can_eject
) (GDrive
*drive
);
107 gboolean (* can_poll_for_media
) (GDrive
*drive
);
108 void (* eject
) (GDrive
*drive
,
109 GMountUnmountFlags flags
,
110 GCancellable
*cancellable
,
111 GAsyncReadyCallback callback
,
113 gboolean (* eject_finish
) (GDrive
*drive
,
114 GAsyncResult
*result
,
116 void (* poll_for_media
) (GDrive
*drive
,
117 GCancellable
*cancellable
,
118 GAsyncReadyCallback callback
,
120 gboolean (* poll_for_media_finish
) (GDrive
*drive
,
121 GAsyncResult
*result
,
124 char * (* get_identifier
) (GDrive
*drive
,
126 char ** (* enumerate_identifiers
) (GDrive
*drive
);
128 GDriveStartStopType (* get_start_stop_type
) (GDrive
*drive
);
130 gboolean (* can_start
) (GDrive
*drive
);
131 gboolean (* can_start_degraded
) (GDrive
*drive
);
132 void (* start
) (GDrive
*drive
,
133 GDriveStartFlags flags
,
134 GMountOperation
*mount_operation
,
135 GCancellable
*cancellable
,
136 GAsyncReadyCallback callback
,
138 gboolean (* start_finish
) (GDrive
*drive
,
139 GAsyncResult
*result
,
142 gboolean (* can_stop
) (GDrive
*drive
);
143 void (* stop
) (GDrive
*drive
,
144 GMountUnmountFlags flags
,
145 GMountOperation
*mount_operation
,
146 GCancellable
*cancellable
,
147 GAsyncReadyCallback callback
,
149 gboolean (* stop_finish
) (GDrive
*drive
,
150 GAsyncResult
*result
,
152 /* signal, not VFunc */
153 void (* stop_button
) (GDrive
*drive
);
155 void (* eject_with_operation
) (GDrive
*drive
,
156 GMountUnmountFlags flags
,
157 GMountOperation
*mount_operation
,
158 GCancellable
*cancellable
,
159 GAsyncReadyCallback callback
,
161 gboolean (* eject_with_operation_finish
) (GDrive
*drive
,
162 GAsyncResult
*result
,
165 const gchar
* (* get_sort_key
) (GDrive
*drive
);
166 GIcon
* (* get_symbolic_icon
) (GDrive
*drive
);
167 gboolean (* is_removable
) (GDrive
*drive
);
171 GLIB_AVAILABLE_IN_ALL
172 GType
g_drive_get_type (void) G_GNUC_CONST
;
174 GLIB_AVAILABLE_IN_ALL
175 char * g_drive_get_name (GDrive
*drive
);
176 GLIB_AVAILABLE_IN_ALL
177 GIcon
* g_drive_get_icon (GDrive
*drive
);
178 GLIB_AVAILABLE_IN_ALL
179 GIcon
* g_drive_get_symbolic_icon (GDrive
*drive
);
180 GLIB_AVAILABLE_IN_ALL
181 gboolean
g_drive_has_volumes (GDrive
*drive
);
182 GLIB_AVAILABLE_IN_ALL
183 GList
* g_drive_get_volumes (GDrive
*drive
);
184 GLIB_AVAILABLE_IN_2_50
185 gboolean
g_drive_is_removable (GDrive
*drive
);
186 GLIB_AVAILABLE_IN_ALL
187 gboolean
g_drive_is_media_removable (GDrive
*drive
);
188 GLIB_AVAILABLE_IN_ALL
189 gboolean
g_drive_has_media (GDrive
*drive
);
190 GLIB_AVAILABLE_IN_ALL
191 gboolean
g_drive_is_media_check_automatic (GDrive
*drive
);
192 GLIB_AVAILABLE_IN_ALL
193 gboolean
g_drive_can_poll_for_media (GDrive
*drive
);
194 GLIB_AVAILABLE_IN_ALL
195 gboolean
g_drive_can_eject (GDrive
*drive
);
196 GLIB_DEPRECATED_FOR(g_drive_eject_with_operation
)
197 void g_drive_eject (GDrive
*drive
,
198 GMountUnmountFlags flags
,
199 GCancellable
*cancellable
,
200 GAsyncReadyCallback callback
,
203 GLIB_DEPRECATED_FOR(g_drive_eject_with_operation_finish
)
204 gboolean
g_drive_eject_finish (GDrive
*drive
,
205 GAsyncResult
*result
,
207 GLIB_AVAILABLE_IN_ALL
208 void g_drive_poll_for_media (GDrive
*drive
,
209 GCancellable
*cancellable
,
210 GAsyncReadyCallback callback
,
212 GLIB_AVAILABLE_IN_ALL
213 gboolean
g_drive_poll_for_media_finish (GDrive
*drive
,
214 GAsyncResult
*result
,
216 GLIB_AVAILABLE_IN_ALL
217 char * g_drive_get_identifier (GDrive
*drive
,
219 GLIB_AVAILABLE_IN_ALL
220 char ** g_drive_enumerate_identifiers (GDrive
*drive
);
222 GLIB_AVAILABLE_IN_ALL
223 GDriveStartStopType
g_drive_get_start_stop_type (GDrive
*drive
);
225 GLIB_AVAILABLE_IN_ALL
226 gboolean
g_drive_can_start (GDrive
*drive
);
227 GLIB_AVAILABLE_IN_ALL
228 gboolean
g_drive_can_start_degraded (GDrive
*drive
);
229 GLIB_AVAILABLE_IN_ALL
230 void g_drive_start (GDrive
*drive
,
231 GDriveStartFlags flags
,
232 GMountOperation
*mount_operation
,
233 GCancellable
*cancellable
,
234 GAsyncReadyCallback callback
,
236 GLIB_AVAILABLE_IN_ALL
237 gboolean
g_drive_start_finish (GDrive
*drive
,
238 GAsyncResult
*result
,
241 GLIB_AVAILABLE_IN_ALL
242 gboolean
g_drive_can_stop (GDrive
*drive
);
243 GLIB_AVAILABLE_IN_ALL
244 void g_drive_stop (GDrive
*drive
,
245 GMountUnmountFlags flags
,
246 GMountOperation
*mount_operation
,
247 GCancellable
*cancellable
,
248 GAsyncReadyCallback callback
,
250 GLIB_AVAILABLE_IN_ALL
251 gboolean
g_drive_stop_finish (GDrive
*drive
,
252 GAsyncResult
*result
,
255 GLIB_AVAILABLE_IN_ALL
256 void g_drive_eject_with_operation (GDrive
*drive
,
257 GMountUnmountFlags flags
,
258 GMountOperation
*mount_operation
,
259 GCancellable
*cancellable
,
260 GAsyncReadyCallback callback
,
262 GLIB_AVAILABLE_IN_ALL
263 gboolean
g_drive_eject_with_operation_finish (GDrive
*drive
,
264 GAsyncResult
*result
,
267 GLIB_AVAILABLE_IN_2_32
268 const gchar
*g_drive_get_sort_key (GDrive
*drive
);
272 #endif /* __G_DRIVE_H__ */