forked from AuroraMiddleware/gtk
Move documentation to inline comments: GtkMountOperation
https://bugzilla.gnome.org/show_bug.cgi?id=597865
This commit is contained in:
parent
e62e7f76c9
commit
25e3329215
@ -1,106 +0,0 @@
|
|||||||
<!-- ##### SECTION Title ##### -->
|
|
||||||
Filesystem utilities
|
|
||||||
|
|
||||||
<!-- ##### SECTION Short_Description ##### -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SECTION Long_Description ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### SECTION See_Also ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### SECTION Stability_Level ##### -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### STRUCT GtkMountOperation ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### ARG GtkMountOperation:is-showing ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### ARG GtkMountOperation:parent ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### ARG GtkMountOperation:screen ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_mount_operation_new ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@parent:
|
|
||||||
@Returns:
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_mount_operation_is_showing ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@op:
|
|
||||||
@Returns:
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_mount_operation_set_parent ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@op:
|
|
||||||
@parent:
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_mount_operation_get_parent ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@op:
|
|
||||||
@Returns:
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_mount_operation_set_screen ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@op:
|
|
||||||
@screen:
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_mount_operation_get_screen ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@op:
|
|
||||||
@Returns:
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_show_uri ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@screen:
|
|
||||||
@uri:
|
|
||||||
@timestamp:
|
|
||||||
@error:
|
|
||||||
@Returns:
|
|
||||||
|
|
||||||
|
|
@ -58,25 +58,25 @@
|
|||||||
/**
|
/**
|
||||||
* SECTION:filesystem
|
* SECTION:filesystem
|
||||||
* @short_description: Functions for working with GIO
|
* @short_description: Functions for working with GIO
|
||||||
|
* @Title: Filesystem utilities
|
||||||
*
|
*
|
||||||
* The functions and objects described here make working with GTK+ and
|
* The functions and objects described here make working with GTK+ and
|
||||||
* GIO more convenient. #GtkMountOperation is needed when mounting volumes
|
* GIO more convenient.
|
||||||
* and gtk_show_uri() is a convenient way to launch applications for URIs.
|
|
||||||
* Another object that is worth mentioning in this context is
|
|
||||||
* #GdkAppLaunchContext, which provides visual feedback when lauching
|
|
||||||
* applications.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* GtkMountOperation:
|
|
||||||
*
|
*
|
||||||
* #GtkMountOperation is an implementation of #GMountOperation that
|
* #GtkMountOperation is needed when mounting volumes:
|
||||||
* can be used with GIO functions for mounting volumes such as
|
* It is an implementation of #GMountOperation that can be used with
|
||||||
|
* GIO functions for mounting volumes such as
|
||||||
* g_file_mount_enclosing_volume(), g_file_mount_mountable(),
|
* g_file_mount_enclosing_volume(), g_file_mount_mountable(),
|
||||||
* g_volume_mount(), g_mount_unmount() and others.
|
* g_volume_mount(), g_mount_unmount_with_operation() and others.
|
||||||
*
|
*
|
||||||
* When necessary, #GtkMountOperation shows dialogs to ask for
|
* When necessary, #GtkMountOperation shows dialogs to ask for
|
||||||
* passwords, questions or show processes blocking unmount.
|
* passwords, questions or show processes blocking unmount.
|
||||||
|
*
|
||||||
|
* gtk_show_uri() is a convenient way to launch applications for URIs.
|
||||||
|
*
|
||||||
|
* Another object that is worth mentioning in this context is
|
||||||
|
* #GdkAppLaunchContext, which provides visual feedback when lauching
|
||||||
|
* applications.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void gtk_mount_operation_finalize (GObject *object);
|
static void gtk_mount_operation_finalize (GObject *object);
|
||||||
|
@ -44,6 +44,11 @@ typedef struct _GtkMountOperation GtkMountOperation;
|
|||||||
typedef struct _GtkMountOperationClass GtkMountOperationClass;
|
typedef struct _GtkMountOperationClass GtkMountOperationClass;
|
||||||
typedef struct _GtkMountOperationPrivate GtkMountOperationPrivate;
|
typedef struct _GtkMountOperationPrivate GtkMountOperationPrivate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GtkMountOperation:
|
||||||
|
*
|
||||||
|
* This should not be accessed directly. Use the accessor functions below.
|
||||||
|
*/
|
||||||
struct _GtkMountOperation
|
struct _GtkMountOperation
|
||||||
{
|
{
|
||||||
GMountOperation parent_instance;
|
GMountOperation parent_instance;
|
||||||
|
Loading…
Reference in New Issue
Block a user