mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 23:16:14 +01:00
Merge branch 'volume-docs' into 'main'
docs: Clarify distinction between GDrive, GVolume and GMount See merge request GNOME/glib!4193
This commit is contained in:
commit
b540bdd961
@ -33,10 +33,10 @@ base classes for I/O and files:
|
|||||||
: list files in directories
|
: list files in directories
|
||||||
|
|
||||||
[iface@Gio.Drive]
|
[iface@Gio.Drive]
|
||||||
: represents a drive
|
: represents a drive, which may contain zero or more volumes
|
||||||
|
|
||||||
[iface@Gio.Volume]
|
[iface@Gio.Volume]
|
||||||
: represents a file system in an abstract way
|
: represents a file system, which may have a mount
|
||||||
|
|
||||||
[iface@Gio.Mount]
|
[iface@Gio.Mount]
|
||||||
: represents a mounted file system
|
: represents a mounted file system
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
*
|
*
|
||||||
* `GDrive` represents a piece of hardware connected to the machine.
|
* `GDrive` represents a piece of hardware connected to the machine.
|
||||||
* It’s generally only created for removable hardware or hardware with
|
* It’s generally only created for removable hardware or hardware with
|
||||||
* removable media.
|
* removable media. For example, an optical disc drive, or a USB flash drive.
|
||||||
*
|
*
|
||||||
* `GDrive` is a container class for [iface@Gio.Volume] objects that stem from
|
* `GDrive` is a container class for [iface@Gio.Volume] objects that stem from
|
||||||
* the same piece of media. As such, `GDrive` abstracts a drive with
|
* the same piece of media. As such, `GDrive` abstracts a drive with
|
||||||
|
14
gio/gmount.c
14
gio/gmount.c
@ -39,14 +39,15 @@
|
|||||||
/**
|
/**
|
||||||
* GMount:
|
* GMount:
|
||||||
*
|
*
|
||||||
* The `GMount` interface represents user-visible mounts. Note, when
|
* The `GMount` interface represents a user-visible mount, such as a mounted
|
||||||
* [porting from GnomeVFS](migrating-gnome-vfs.html), `GMount` is the moral
|
* file system.
|
||||||
* equivalent of `GnomeVFSVolume`.
|
|
||||||
*
|
*
|
||||||
* `GMount` is a ‘mounted’ filesystem that you can access. Mounted is in
|
* `GMount` is a ‘mounted’ filesystem that you can access. Mounted is in
|
||||||
* quotes because it’s not the same as a UNIX mount, it might be a GVFS
|
* quotes because it’s not the same as a UNIX mount, it might be a GVFS
|
||||||
* mount, but you can still access the files on it if you use GIO. Might or
|
* mount, but you can still access the files on it if you use GIO.
|
||||||
* might not be related to a volume object.
|
*
|
||||||
|
* A `GMount` might be associated with a [iface@Gio.Volume] (such as a USB flash
|
||||||
|
* drive) which hosts it.
|
||||||
*
|
*
|
||||||
* Unmounting a `GMount` instance is an asynchronous operation. For
|
* Unmounting a `GMount` instance is an asynchronous operation. For
|
||||||
* more information about asynchronous operations, see [iface@Gio.AsyncResult]
|
* more information about asynchronous operations, see [iface@Gio.AsyncResult]
|
||||||
@ -60,6 +61,9 @@
|
|||||||
* operation was completed successfully. If an `error` is present when
|
* operation was completed successfully. If an `error` is present when
|
||||||
* [method@Gio.Mount.unmount_with_operation_finish] is called, then it will be
|
* [method@Gio.Mount.unmount_with_operation_finish] is called, then it will be
|
||||||
* filled with any error information.
|
* filled with any error information.
|
||||||
|
*
|
||||||
|
* Note, when [porting from GnomeVFS](migrating-gnome-vfs.html), `GMount` is the
|
||||||
|
* moral equivalent of `GnomeVFSVolume`.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
typedef GMountIface GMountInterface;
|
typedef GMountIface GMountInterface;
|
||||||
|
@ -35,8 +35,11 @@
|
|||||||
* GVolume:
|
* GVolume:
|
||||||
*
|
*
|
||||||
* The `GVolume` interface represents user-visible objects that can be
|
* The `GVolume` interface represents user-visible objects that can be
|
||||||
* mounted. Note, when [porting from GnomeVFS](migrating-gnome-vfs.html),
|
* mounted. For example, a file system partition on a USB flash drive, or an
|
||||||
* `GVolume` is the moral equivalent of `GnomeVFSDrive`.
|
* optical disc inserted into a disc drive.
|
||||||
|
*
|
||||||
|
* If a `GVolume` is currently mounted, the corresponding [iface@Gio.Mount] can
|
||||||
|
* be retrieved using [method@Gio.Volume.get_mount].
|
||||||
*
|
*
|
||||||
* Mounting a `GVolume` instance is an asynchronous operation. For more
|
* Mounting a `GVolume` instance is an asynchronous operation. For more
|
||||||
* information about asynchronous operations, see [iface@Gio.AsyncResult] and
|
* information about asynchronous operations, see [iface@Gio.AsyncResult] and
|
||||||
@ -58,6 +61,9 @@
|
|||||||
* [method@Gio.Volume.mount_finish] is called, then it will be filled with any
|
* [method@Gio.Volume.mount_finish] is called, then it will be filled with any
|
||||||
* error information.
|
* error information.
|
||||||
*
|
*
|
||||||
|
* Note, when [porting from GnomeVFS](migrating-gnome-vfs.html),
|
||||||
|
* `GVolume` is the moral equivalent of `GnomeVFSDrive`.
|
||||||
|
*
|
||||||
* ## Volume Identifiers
|
* ## Volume Identifiers
|
||||||
*
|
*
|
||||||
* It is sometimes necessary to directly access the underlying
|
* It is sometimes necessary to directly access the underlying
|
||||||
|
Loading…
Reference in New Issue
Block a user