Blame gio/gdrive.h

Packit ae235b
/* GIO - GLib Input, Output and Streaming Library
Packit ae235b
 *
Packit ae235b
 * Copyright (C) 2006-2007 Red Hat, Inc.
Packit ae235b
 *
Packit ae235b
 * This library is free software; you can redistribute it and/or
Packit ae235b
 * modify it under the terms of the GNU Lesser General Public
Packit ae235b
 * License as published by the Free Software Foundation; either
Packit ae235b
 * version 2.1 of the License, or (at your option) any later version.
Packit ae235b
 *
Packit ae235b
 * This library is distributed in the hope that it will be useful,
Packit ae235b
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit ae235b
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit ae235b
 * Lesser General Public License for more details.
Packit ae235b
 *
Packit ae235b
 * You should have received a copy of the GNU Lesser General
Packit ae235b
 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
Packit ae235b
 *
Packit ae235b
 * Author: Alexander Larsson <alexl@redhat.com>
Packit ae235b
 *         David Zeuthen <davidz@redhat.com>
Packit ae235b
 */
Packit ae235b
Packit ae235b
#ifndef __G_DRIVE_H__
Packit ae235b
#define __G_DRIVE_H__
Packit ae235b
Packit ae235b
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
Packit ae235b
#error "Only <gio/gio.h> can be included directly."
Packit ae235b
#endif
Packit ae235b
Packit ae235b
#include <gio/giotypes.h>
Packit ae235b
Packit ae235b
G_BEGIN_DECLS
Packit ae235b
Packit ae235b
#define G_TYPE_DRIVE           (g_drive_get_type ())
Packit ae235b
#define G_DRIVE(obj)           (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_DRIVE, GDrive))
Packit ae235b
#define G_IS_DRIVE(obj)        (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_DRIVE))
Packit ae235b
#define G_DRIVE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_DRIVE, GDriveIface))
Packit ae235b
Packit ae235b
/**
Packit ae235b
 * GDriveIface:
Packit ae235b
 * @g_iface: The parent interface.
Packit ae235b
 * @changed: Signal emitted when the drive is changed.
Packit ae235b
 * @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.
Packit ae235b
 * @eject_button: Signal emitted when the physical eject button (if any) of a drive have been pressed.
Packit ae235b
 * @get_name: Returns the name for the given #GDrive.
Packit ae235b
 * @get_icon: Returns a #GIcon for the given #GDrive.
Packit ae235b
 * @has_volumes: Returns %TRUE if the #GDrive has mountable volumes.
Packit ae235b
 * @get_volumes: Returns a list #GList of #GVolume for the #GDrive.
Packit ae235b
 * @is_removable: Returns %TRUE if the #GDrive and/or its media is considered removable by the user. Since 2.50.
Packit ae235b
 * @is_media_removable: Returns %TRUE if the #GDrive supports removal and insertion of media.
Packit ae235b
 * @has_media: Returns %TRUE if the #GDrive has media inserted.
Packit ae235b
 * @is_media_check_automatic: Returns %TRUE if the #GDrive is capabable of automatically detecting media changes.
Packit ae235b
 * @can_poll_for_media: Returns %TRUE if the #GDrive is capable of manually polling for media change.
Packit ae235b
 * @can_eject: Returns %TRUE if the #GDrive can eject media.
Packit ae235b
 * @eject: Ejects a #GDrive.
Packit ae235b
 * @eject_finish: Finishes an eject operation.
Packit ae235b
 * @poll_for_media: Poll for media insertion/removal on a #GDrive.
Packit ae235b
 * @poll_for_media_finish: Finishes a media poll operation.
Packit ae235b
 * @get_identifier: Returns the identifier of the given kind, or %NULL if
Packit ae235b
 *    the #GDrive doesn't have one.
Packit ae235b
 * @enumerate_identifiers: Returns an array strings listing the kinds
Packit ae235b
 *    of identifiers which the #GDrive has.
Packit ae235b
 * @get_start_stop_type: Gets a #GDriveStartStopType with details about starting/stopping the drive. Since 2.22.
Packit ae235b
 * @can_stop: Returns %TRUE if a #GDrive can be stopped. Since 2.22.
Packit ae235b
 * @stop: Stops a #GDrive. Since 2.22.
Packit ae235b
 * @stop_finish: Finishes a stop operation. Since 2.22.
Packit ae235b
 * @can_start: Returns %TRUE if a #GDrive can be started. Since 2.22.
Packit ae235b
 * @can_start_degraded: Returns %TRUE if a #GDrive can be started degraded. Since 2.22.
Packit ae235b
 * @start: Starts a #GDrive. Since 2.22.
Packit ae235b
 * @start_finish: Finishes a start operation. Since 2.22.
Packit ae235b
 * @stop_button: Signal emitted when the physical stop button (if any) of a drive have been pressed. Since 2.22.
Packit ae235b
 * @eject_with_operation: Starts ejecting a #GDrive using a #GMountOperation. Since 2.22.
Packit ae235b
 * @eject_with_operation_finish: Finishes an eject operation using a #GMountOperation. Since 2.22.
Packit ae235b
 * @get_sort_key: Gets a key used for sorting #GDrive instances or %NULL if no such key exists. Since 2.32.
Packit ae235b
 * @get_symbolic_icon: Returns a symbolic #GIcon for the given #GDrive. Since 2.34.
Packit ae235b
 *
Packit ae235b
 * Interface for creating #GDrive implementations.
Packit ae235b
 */
Packit ae235b
typedef struct _GDriveIface    GDriveIface;
Packit ae235b
Packit ae235b
struct _GDriveIface
Packit ae235b
{
Packit ae235b
  GTypeInterface g_iface;
Packit ae235b
Packit ae235b
  /* signals */
Packit ae235b
  void     (* changed)                  (GDrive              *drive);
Packit ae235b
  void     (* disconnected)             (GDrive              *drive);
Packit ae235b
  void     (* eject_button)             (GDrive              *drive);
Packit ae235b
Packit ae235b
  /* Virtual Table */
Packit ae235b
  char *   (* get_name)                 (GDrive              *drive);
Packit ae235b
  GIcon *  (* get_icon)                 (GDrive              *drive);
Packit ae235b
  gboolean (* has_volumes)              (GDrive              *drive);
Packit ae235b
  GList *  (* get_volumes)              (GDrive              *drive);
Packit ae235b
  gboolean (* is_media_removable)       (GDrive              *drive);
Packit ae235b
  gboolean (* has_media)                (GDrive              *drive);
Packit ae235b
  gboolean (* is_media_check_automatic) (GDrive              *drive);
Packit ae235b
  gboolean (* can_eject)                (GDrive              *drive);
Packit ae235b
  gboolean (* can_poll_for_media)       (GDrive              *drive);
Packit ae235b
  void     (* eject)                    (GDrive              *drive,
Packit ae235b
                                         GMountUnmountFlags   flags,
Packit ae235b
                                         GCancellable        *cancellable,
Packit ae235b
                                         GAsyncReadyCallback  callback,
Packit ae235b
                                         gpointer             user_data);
Packit ae235b
  gboolean (* eject_finish)             (GDrive              *drive,
Packit ae235b
                                         GAsyncResult        *result,
Packit ae235b
                                         GError             **error);
Packit ae235b
  void     (* poll_for_media)           (GDrive              *drive,
Packit ae235b
                                         GCancellable        *cancellable,
Packit ae235b
                                         GAsyncReadyCallback  callback,
Packit ae235b
                                         gpointer             user_data);
Packit ae235b
  gboolean (* poll_for_media_finish)    (GDrive              *drive,
Packit ae235b
                                         GAsyncResult        *result,
Packit ae235b
                                         GError             **error);
Packit ae235b
Packit ae235b
  char *   (* get_identifier)           (GDrive              *drive,
Packit ae235b
                                         const char          *kind);
Packit ae235b
  char **  (* enumerate_identifiers)    (GDrive              *drive);
Packit ae235b
Packit ae235b
  GDriveStartStopType (* get_start_stop_type) (GDrive        *drive);
Packit ae235b
Packit ae235b
  gboolean (* can_start)                (GDrive              *drive);
Packit ae235b
  gboolean (* can_start_degraded)       (GDrive              *drive);
Packit ae235b
  void     (* start)                    (GDrive              *drive,
Packit ae235b
                                         GDriveStartFlags     flags,
Packit ae235b
                                         GMountOperation     *mount_operation,
Packit ae235b
                                         GCancellable        *cancellable,
Packit ae235b
                                         GAsyncReadyCallback  callback,
Packit ae235b
                                         gpointer             user_data);
Packit ae235b
  gboolean (* start_finish)             (GDrive              *drive,
Packit ae235b
                                         GAsyncResult        *result,
Packit ae235b
                                         GError             **error);
Packit ae235b
Packit ae235b
  gboolean (* can_stop)                 (GDrive              *drive);
Packit ae235b
  void     (* stop)                     (GDrive              *drive,
Packit ae235b
                                         GMountUnmountFlags   flags,
Packit ae235b
                                         GMountOperation     *mount_operation,
Packit ae235b
                                         GCancellable        *cancellable,
Packit ae235b
                                         GAsyncReadyCallback  callback,
Packit ae235b
                                         gpointer             user_data);
Packit ae235b
  gboolean (* stop_finish)              (GDrive              *drive,
Packit ae235b
                                         GAsyncResult        *result,
Packit ae235b
                                         GError             **error);
Packit ae235b
  /* signal, not VFunc */
Packit ae235b
  void     (* stop_button)              (GDrive              *drive);
Packit ae235b
Packit ae235b
  void        (* eject_with_operation)      (GDrive              *drive,
Packit ae235b
                                             GMountUnmountFlags   flags,
Packit ae235b
                                             GMountOperation     *mount_operation,
Packit ae235b
                                             GCancellable        *cancellable,
Packit ae235b
                                             GAsyncReadyCallback  callback,
Packit ae235b
                                             gpointer             user_data);
Packit ae235b
  gboolean    (* eject_with_operation_finish) (GDrive            *drive,
Packit ae235b
                                             GAsyncResult        *result,
Packit ae235b
                                             GError             **error);
Packit ae235b
Packit ae235b
  const gchar * (* get_sort_key)        (GDrive              *drive);
Packit ae235b
  GIcon *       (* get_symbolic_icon)   (GDrive              *drive);
Packit ae235b
  gboolean      (* is_removable)        (GDrive              *drive);
Packit ae235b
Packit ae235b
};
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
GType    g_drive_get_type                 (void) G_GNUC_CONST;
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
char *   g_drive_get_name                 (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
GIcon *  g_drive_get_icon                 (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
GIcon *  g_drive_get_symbolic_icon        (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_has_volumes              (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
GList *  g_drive_get_volumes              (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_2_50
Packit ae235b
gboolean g_drive_is_removable             (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_is_media_removable       (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_has_media                (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_is_media_check_automatic (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_can_poll_for_media       (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_can_eject                (GDrive               *drive);
Packit ae235b
GLIB_DEPRECATED_FOR(g_drive_eject_with_operation)
Packit ae235b
void     g_drive_eject                    (GDrive               *drive,
Packit ae235b
                                           GMountUnmountFlags    flags,
Packit ae235b
                                           GCancellable         *cancellable,
Packit ae235b
                                           GAsyncReadyCallback   callback,
Packit ae235b
                                           gpointer              user_data);
Packit ae235b
Packit ae235b
GLIB_DEPRECATED_FOR(g_drive_eject_with_operation_finish)
Packit ae235b
gboolean g_drive_eject_finish             (GDrive               *drive,
Packit ae235b
                                           GAsyncResult         *result,
Packit ae235b
                                           GError              **error);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
void     g_drive_poll_for_media           (GDrive               *drive,
Packit ae235b
                                           GCancellable         *cancellable,
Packit ae235b
                                           GAsyncReadyCallback   callback,
Packit ae235b
                                           gpointer              user_data);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_poll_for_media_finish    (GDrive               *drive,
Packit ae235b
                                           GAsyncResult         *result,
Packit ae235b
                                           GError              **error);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
char *   g_drive_get_identifier           (GDrive              *drive,
Packit ae235b
                                           const char          *kind);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
char **  g_drive_enumerate_identifiers    (GDrive              *drive);
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
GDriveStartStopType g_drive_get_start_stop_type (GDrive        *drive);
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_can_start                (GDrive              *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_can_start_degraded       (GDrive              *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
void     g_drive_start                    (GDrive              *drive,
Packit ae235b
                                           GDriveStartFlags     flags,
Packit ae235b
                                           GMountOperation     *mount_operation,
Packit ae235b
                                           GCancellable        *cancellable,
Packit ae235b
                                           GAsyncReadyCallback  callback,
Packit ae235b
                                           gpointer             user_data);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_start_finish             (GDrive               *drive,
Packit ae235b
                                           GAsyncResult         *result,
Packit ae235b
                                           GError              **error);
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_can_stop                 (GDrive               *drive);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
void     g_drive_stop                     (GDrive               *drive,
Packit ae235b
                                           GMountUnmountFlags    flags,
Packit ae235b
                                           GMountOperation      *mount_operation,
Packit ae235b
                                           GCancellable         *cancellable,
Packit ae235b
                                           GAsyncReadyCallback   callback,
Packit ae235b
                                           gpointer              user_data);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean g_drive_stop_finish              (GDrive               *drive,
Packit ae235b
                                           GAsyncResult         *result,
Packit ae235b
                                           GError              **error);
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
void        g_drive_eject_with_operation      (GDrive              *drive,
Packit ae235b
                                               GMountUnmountFlags   flags,
Packit ae235b
                                               GMountOperation     *mount_operation,
Packit ae235b
                                               GCancellable        *cancellable,
Packit ae235b
                                               GAsyncReadyCallback  callback,
Packit ae235b
                                               gpointer             user_data);
Packit ae235b
GLIB_AVAILABLE_IN_ALL
Packit ae235b
gboolean    g_drive_eject_with_operation_finish (GDrive            *drive,
Packit ae235b
                                               GAsyncResult        *result,
Packit ae235b
                                               GError             **error);
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_2_32
Packit ae235b
const gchar *g_drive_get_sort_key         (GDrive               *drive);
Packit ae235b
Packit ae235b
G_END_DECLS
Packit ae235b
Packit ae235b
#endif /* __G_DRIVE_H__ */