forked from AuroraMiddleware/gtk
open-with: add docs and integrate with the build GTK+ conventions
This commit is contained in:
parent
8c8f7f83ba
commit
77b5fcfa93
@ -199,6 +199,7 @@
|
|||||||
<xi:include href="xml/gtkfontbutton.xml" />
|
<xi:include href="xml/gtkfontbutton.xml" />
|
||||||
<xi:include href="xml/gtkfontsel.xml" />
|
<xi:include href="xml/gtkfontsel.xml" />
|
||||||
<xi:include href="xml/gtkfontseldlg.xml" />
|
<xi:include href="xml/gtkfontseldlg.xml" />
|
||||||
|
<xi:include href="xml/gtkopenwithdialog.xml" />
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|
||||||
<chapter id="LayoutContainers">
|
<chapter id="LayoutContainers">
|
||||||
|
@ -6397,3 +6397,31 @@ GTK_GRID_GET_CLASS
|
|||||||
GtkGridPrivate
|
GtkGridPrivate
|
||||||
gtk_grid_get_type
|
gtk_grid_get_type
|
||||||
</SECTION>
|
</SECTION>
|
||||||
|
|
||||||
|
<SECTION>
|
||||||
|
<FILE>gtkopenwithdialog</FILE>
|
||||||
|
<TITLE>GtkOpenWithDialog</TITLE>
|
||||||
|
GtkOpenWithDialog
|
||||||
|
GtkOpenWithDialogMode
|
||||||
|
gtk_open_with_dialog_new
|
||||||
|
gtk_open_with_dialog_new_for_content_type
|
||||||
|
gtk_open_with_dialog_get_mode
|
||||||
|
gtk_open_with_dialog_get_selected_application
|
||||||
|
gtk_open_with_dialog_set_show_set_as_default_button
|
||||||
|
gtk_open_with_dialog_get_show_set_as_default_button
|
||||||
|
gtk_open_with_dialog_set_show_other_applications
|
||||||
|
gtk_open_with_dialog_get_show_other_applications
|
||||||
|
|
||||||
|
<SUBSECTION Standard>
|
||||||
|
GtkOpenWithDialogClass
|
||||||
|
GTK_TYPE_OPEN_WITH_DIALOG
|
||||||
|
GTK_OPEN_WITH_DIALOG
|
||||||
|
GTK_OPEN_WITH_DIALOG_CLASS
|
||||||
|
GTK_IS_OPEN_WITH_DIALOG
|
||||||
|
GTK_IS_OPEN_WITH_DIALOG_CLASS
|
||||||
|
GTK_OPEN_WITH_DIALOG_GET_CLASS
|
||||||
|
|
||||||
|
<SUBSECTION Private>
|
||||||
|
GtkOpenWithDialogPrivate
|
||||||
|
gtk_open_with_dialog_get_type
|
||||||
|
</SECTION>
|
||||||
|
@ -95,6 +95,7 @@ gtk_misc_get_type
|
|||||||
gtk_mount_operation_get_type
|
gtk_mount_operation_get_type
|
||||||
gtk_notebook_get_type
|
gtk_notebook_get_type
|
||||||
gtk_offscreen_window_get_type
|
gtk_offscreen_window_get_type
|
||||||
|
gtk_open_with_dialog_get_type
|
||||||
gtk_orientable_get_type
|
gtk_orientable_get_type
|
||||||
gtk_page_setup_get_type
|
gtk_page_setup_get_type
|
||||||
gtk_page_setup_unix_dialog_get_type
|
gtk_page_setup_unix_dialog_get_type
|
||||||
|
@ -4560,3 +4560,17 @@ gtk_grid_set_column_spacing
|
|||||||
gtk_grid_get_column_spacing
|
gtk_grid_get_column_spacing
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if IN_HEADER(__GTK_OPEN_WITH_DIALOG_H__)
|
||||||
|
#if IN_FILE(__GTK_OPEN_WITH_DIALOG_C__)
|
||||||
|
gtk_open_with_dialog_get_type G_GNUC_CONST
|
||||||
|
gtk_open_with_dialog_new
|
||||||
|
gtk_open_with_dialog_new_for_content_type
|
||||||
|
gtk_open_with_dialog_get_mode
|
||||||
|
gtk_open_with_dialog_get_selected_application
|
||||||
|
gtk_open_with_dialog_set_show_set_as_default_button
|
||||||
|
gtk_open_with_dialog_get_show_set_as_default_button
|
||||||
|
gtk_open_with_dialog_set_show_other_applications
|
||||||
|
gtk_open_with_dialog_get_show_other_applications
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
@ -1111,6 +1111,12 @@ gtk_open_with_dialog_class_init (GtkOpenWithDialogClass *klass)
|
|||||||
gobject_class->get_property = gtk_open_with_dialog_get_property;
|
gobject_class->get_property = gtk_open_with_dialog_get_property;
|
||||||
gobject_class->constructed = gtk_open_with_dialog_constructed;
|
gobject_class->constructed = gtk_open_with_dialog_constructed;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GtkOpenWithDialog:gfile:
|
||||||
|
*
|
||||||
|
* The #GFile for this dialog, or %NULL in case the dialog has
|
||||||
|
* been constructed for a content type.
|
||||||
|
**/
|
||||||
properties[PROP_GFILE] =
|
properties[PROP_GFILE] =
|
||||||
g_param_spec_object ("gfile",
|
g_param_spec_object ("gfile",
|
||||||
P_("A GFile object"),
|
P_("A GFile object"),
|
||||||
@ -1118,6 +1124,12 @@ gtk_open_with_dialog_class_init (GtkOpenWithDialogClass *klass)
|
|||||||
G_TYPE_FILE,
|
G_TYPE_FILE,
|
||||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
||||||
G_PARAM_STATIC_STRINGS);
|
G_PARAM_STATIC_STRINGS);
|
||||||
|
/**
|
||||||
|
* GtkOpenWithDialog:content-type:
|
||||||
|
*
|
||||||
|
* The content type string for this dialog, or %NULL in case
|
||||||
|
* the dialog has been created for a #GFile.
|
||||||
|
**/
|
||||||
properties[PROP_CONTENT_TYPE] =
|
properties[PROP_CONTENT_TYPE] =
|
||||||
g_param_spec_string ("content-type",
|
g_param_spec_string ("content-type",
|
||||||
P_("A content type string"),
|
P_("A content type string"),
|
||||||
@ -1125,6 +1137,11 @@ gtk_open_with_dialog_class_init (GtkOpenWithDialogClass *klass)
|
|||||||
NULL,
|
NULL,
|
||||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
||||||
G_PARAM_STATIC_STRINGS);
|
G_PARAM_STATIC_STRINGS);
|
||||||
|
/**
|
||||||
|
* GtkOpenWithDialog:mode:
|
||||||
|
*
|
||||||
|
* The #GtkOpenWithDialogMode for this dialog.
|
||||||
|
**/
|
||||||
properties[PROP_MODE] =
|
properties[PROP_MODE] =
|
||||||
g_param_spec_enum ("mode",
|
g_param_spec_enum ("mode",
|
||||||
P_("The dialog mode"),
|
P_("The dialog mode"),
|
||||||
@ -1133,6 +1150,12 @@ gtk_open_with_dialog_class_init (GtkOpenWithDialogClass *klass)
|
|||||||
GTK_OPEN_WITH_DIALOG_MODE_SELECT_ONE,
|
GTK_OPEN_WITH_DIALOG_MODE_SELECT_ONE,
|
||||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
||||||
G_PARAM_STATIC_STRINGS);
|
G_PARAM_STATIC_STRINGS);
|
||||||
|
/**
|
||||||
|
* GtkOpenWithDialog::show-other-applications:
|
||||||
|
*
|
||||||
|
* Whether the dialog should show a list of all the possible applications or
|
||||||
|
* only the recommended list.
|
||||||
|
**/
|
||||||
properties[PROP_SHOW_OTHER_APPLICATIONS] =
|
properties[PROP_SHOW_OTHER_APPLICATIONS] =
|
||||||
g_param_spec_boolean ("show-other-applications",
|
g_param_spec_boolean ("show-other-applications",
|
||||||
P_("Whether to show other applications"),
|
P_("Whether to show other applications"),
|
||||||
@ -1140,6 +1163,12 @@ gtk_open_with_dialog_class_init (GtkOpenWithDialogClass *klass)
|
|||||||
TRUE,
|
TRUE,
|
||||||
G_PARAM_CONSTRUCT | G_PARAM_READWRITE |
|
G_PARAM_CONSTRUCT | G_PARAM_READWRITE |
|
||||||
G_PARAM_STATIC_STRINGS);
|
G_PARAM_STATIC_STRINGS);
|
||||||
|
/**
|
||||||
|
* GtkOpenWithDialog:show-set-as-default:
|
||||||
|
*
|
||||||
|
* Whether the dialog in #GTK_OPEN_WITH_DIALOG_MODE_SELECT_ONE mode should show
|
||||||
|
* a button to remember the choice for the future.
|
||||||
|
**/
|
||||||
properties[PROP_SHOW_SET_AS_DEFAULT] =
|
properties[PROP_SHOW_SET_AS_DEFAULT] =
|
||||||
g_param_spec_boolean ("show-set-as-default",
|
g_param_spec_boolean ("show-set-as-default",
|
||||||
P_("Whether to show the set as default button"),
|
P_("Whether to show the set as default button"),
|
||||||
@ -1328,6 +1357,28 @@ gtk_open_with_dialog_refilter (GtkOpenWithDialog *self)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_open_with_dialog_new:
|
||||||
|
* @parent: (allow-none): a #GtkWindow, or %NULL
|
||||||
|
* @flags: flags for this dialog
|
||||||
|
* @mode: a #GtkOpenWithDialogMode for this dialog
|
||||||
|
* @file: a #GFile
|
||||||
|
*
|
||||||
|
* Creates a new #GtkOpenWithDialog for the provided #GFile, to allow
|
||||||
|
* the user to select a default application for it.
|
||||||
|
* The @mode specifies the kind of interaction with the dialog:
|
||||||
|
* - in #GTK_OPEN_WITH_DIALOG_MODE_SELECT_ONE mode, the dialog is intended to
|
||||||
|
* be used to select an application for a single file, and it will provide an
|
||||||
|
* optional button to remember the selection for all files of that kind.
|
||||||
|
* - in #GTK_OPEN_WITH_DIALOG_MODE_SELECT_DEFAULT mode, the dialog is intended
|
||||||
|
* to be used to select an application for the content type of a file, similar
|
||||||
|
* to #gtk_open_with_dialog_new_for_content_type. In this case, the file
|
||||||
|
* is used both as a hint for the content type and to give feedback in the UI elements.
|
||||||
|
*
|
||||||
|
* Returns: a newly created #GtkOpenWithDialog
|
||||||
|
*
|
||||||
|
* Since: 3.0
|
||||||
|
**/
|
||||||
GtkWidget *
|
GtkWidget *
|
||||||
gtk_open_with_dialog_new (GtkWindow *parent,
|
gtk_open_with_dialog_new (GtkWindow *parent,
|
||||||
GtkDialogFlags flags,
|
GtkDialogFlags flags,
|
||||||
@ -1348,6 +1399,21 @@ gtk_open_with_dialog_new (GtkWindow *parent,
|
|||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_open_with_dialog_new_for_content_type:
|
||||||
|
* @parent: (allow-none): a #GtkWindow, or %NULL
|
||||||
|
* @flags: flags for this dialog
|
||||||
|
* @mode: a #GtkOpenWithDialogMode for this dialog
|
||||||
|
* @content_type: a content type string
|
||||||
|
*
|
||||||
|
* Creates a new #GtkOpenWithDialog for the provided content type, to allow
|
||||||
|
* the user to select a default application for it; see #gtk_open_with_dialog_new
|
||||||
|
* for more information.
|
||||||
|
*
|
||||||
|
* Returns: a newly created #GtkOpenWithDialog
|
||||||
|
*
|
||||||
|
* Since: 3.0
|
||||||
|
**/
|
||||||
GtkWidget *
|
GtkWidget *
|
||||||
gtk_open_with_dialog_new_for_content_type (GtkWindow *parent,
|
gtk_open_with_dialog_new_for_content_type (GtkWindow *parent,
|
||||||
GtkDialogFlags flags,
|
GtkDialogFlags flags,
|
||||||
@ -1368,6 +1434,16 @@ gtk_open_with_dialog_new_for_content_type (GtkWindow *parent,
|
|||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_open_with_dialog_set_show_other_applications:
|
||||||
|
* @self: a #GtkOpenWithDialogMode
|
||||||
|
* @show_other_applications: whether to show all the applications
|
||||||
|
*
|
||||||
|
* Sets whether the dialog should show all the possible applications or only
|
||||||
|
* the recommended list, i.e. those returned by #g_app_info_get_all_for_type
|
||||||
|
*
|
||||||
|
* Since: 3.0
|
||||||
|
**/
|
||||||
void
|
void
|
||||||
gtk_open_with_dialog_set_show_other_applications (GtkOpenWithDialog *self,
|
gtk_open_with_dialog_set_show_other_applications (GtkOpenWithDialog *self,
|
||||||
gboolean show_other_applications)
|
gboolean show_other_applications)
|
||||||
@ -1383,6 +1459,17 @@ gtk_open_with_dialog_set_show_other_applications (GtkOpenWithDialog *self,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_open_with_dialog_get_show_other_applications:
|
||||||
|
* @self: a #GtkOpenWithDialog
|
||||||
|
*
|
||||||
|
* Returns whether the dialog shows all the possible applications or
|
||||||
|
* only the recommended list, i.e. those returned by #g_app_info_get_all_for_type
|
||||||
|
*
|
||||||
|
* Returns: %TRUE if the dialog shows all the possible applications
|
||||||
|
*
|
||||||
|
* Since: 3.0
|
||||||
|
**/
|
||||||
gboolean
|
gboolean
|
||||||
gtk_open_with_dialog_get_show_other_applications (GtkOpenWithDialog *self)
|
gtk_open_with_dialog_get_show_other_applications (GtkOpenWithDialog *self)
|
||||||
{
|
{
|
||||||
@ -1391,6 +1478,17 @@ gtk_open_with_dialog_get_show_other_applications (GtkOpenWithDialog *self)
|
|||||||
return self->priv->show_other_applications;
|
return self->priv->show_other_applications;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_open_with_dialog_get_selected_application:
|
||||||
|
* @self: a #GtkOpenWithDialog
|
||||||
|
*
|
||||||
|
* Returns a #GAppInfo for the currently selected application in the dialog,
|
||||||
|
* or %NULL if there are none.
|
||||||
|
*
|
||||||
|
* Returns: (transfer full): a #GAppInfo
|
||||||
|
*
|
||||||
|
* Since: 3.0
|
||||||
|
**/
|
||||||
GAppInfo *
|
GAppInfo *
|
||||||
gtk_open_with_dialog_get_selected_application (GtkOpenWithDialog *self)
|
gtk_open_with_dialog_get_selected_application (GtkOpenWithDialog *self)
|
||||||
{
|
{
|
||||||
@ -1402,6 +1500,16 @@ gtk_open_with_dialog_get_selected_application (GtkOpenWithDialog *self)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_open_with_dialog_set_show_set_as_default_button:
|
||||||
|
* @self: a #GtkOpenWithDialog
|
||||||
|
* @show_button: whether the button should be visible or not
|
||||||
|
*
|
||||||
|
* If the dialog is in #GTK_OPEN_WITH_DIALOG_MODE_SELECT_ONE mode,
|
||||||
|
* shows a button to set the selected application as default.
|
||||||
|
*
|
||||||
|
* Since: 3.0
|
||||||
|
**/
|
||||||
void
|
void
|
||||||
gtk_open_with_dialog_set_show_set_as_default_button (GtkOpenWithDialog *self,
|
gtk_open_with_dialog_set_show_set_as_default_button (GtkOpenWithDialog *self,
|
||||||
gboolean show_button)
|
gboolean show_button)
|
||||||
@ -1420,6 +1528,19 @@ gtk_open_with_dialog_set_show_set_as_default_button (GtkOpenWithDialog *self,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_open_with_dialog_get_show_set_as_default_button:
|
||||||
|
* @self: a #GtkOpenWithDialog
|
||||||
|
*
|
||||||
|
* Returns whether the dialog is showing a button to set the selected
|
||||||
|
* application as the default for the provided content type. Note that
|
||||||
|
* this always returns %FALSE if the dialog is in #GTK_OPEN_WITH_DIALOG_MODE_SELECT_DEFAULT
|
||||||
|
* mode.
|
||||||
|
*
|
||||||
|
* Returns: %TRUE if the button is visible.
|
||||||
|
*
|
||||||
|
* Since: 3.0
|
||||||
|
**/
|
||||||
gboolean
|
gboolean
|
||||||
gtk_open_with_dialog_get_show_set_as_default_button (GtkOpenWithDialog *self)
|
gtk_open_with_dialog_get_show_set_as_default_button (GtkOpenWithDialog *self)
|
||||||
{
|
{
|
||||||
|
@ -24,6 +24,10 @@
|
|||||||
* Cosimo Cecchi <ccecchi@redhat.com>
|
* Cosimo Cecchi <ccecchi@redhat.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
||||||
|
#error "Only <gtk/gtk.h> can be included directly."
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef __GTK_OPEN_WITH_DIALOG_H__
|
#ifndef __GTK_OPEN_WITH_DIALOG_H__
|
||||||
#define __GTK_OPEN_WITH_DIALOG_H__
|
#define __GTK_OPEN_WITH_DIALOG_H__
|
||||||
|
|
||||||
@ -38,6 +42,11 @@
|
|||||||
(G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_OPEN_WITH_DIALOG, GtkOpenWithDialogClass))
|
(G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_OPEN_WITH_DIALOG, GtkOpenWithDialogClass))
|
||||||
#define GTK_IS_OPEN_WITH_DIALOG(obj)\
|
#define GTK_IS_OPEN_WITH_DIALOG(obj)\
|
||||||
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_OPEN_WITH_DIALOG))
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_OPEN_WITH_DIALOG))
|
||||||
|
#define GTK_IS_OPEN_WITH_DIALOG_CLASS(klass)\
|
||||||
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_OPEN_WITH_DIALOG))
|
||||||
|
#define GTK_OPEN_WITH_DIALOG_GET_CLASS(obj)\
|
||||||
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_OPEN_WITH_DIALOG, GtkOpenWithDialogClass))
|
||||||
|
|
||||||
|
|
||||||
typedef struct _GtkOpenWithDialog GtkOpenWithDialog;
|
typedef struct _GtkOpenWithDialog GtkOpenWithDialog;
|
||||||
typedef struct _GtkOpenWithDialogClass GtkOpenWithDialogClass;
|
typedef struct _GtkOpenWithDialogClass GtkOpenWithDialogClass;
|
||||||
@ -60,12 +69,19 @@ struct _GtkOpenWithDialogClass {
|
|||||||
gpointer padding[16];
|
gpointer padding[16];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GtkOpenWithDialogMode:
|
||||||
|
* @GTK_OPEN_WITH_DIALOG_MODE_SELECT_ONE: the dialog is used for a single file
|
||||||
|
* or content type; a checkbox can be used to remember the selection for all similar items.
|
||||||
|
* @GTK_OPEN_WITH_DIALOG_MODE_SELECT_DEFAULT: the dialog is used to set a default
|
||||||
|
* application for a given file, or content type.
|
||||||
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
GTK_OPEN_WITH_DIALOG_MODE_OPEN_FILE = 0,
|
GTK_OPEN_WITH_DIALOG_MODE_SELECT_ONE,
|
||||||
GTK_OPEN_WITH_DIALOG_MODE_SELECT_DEFAULT
|
GTK_OPEN_WITH_DIALOG_MODE_SELECT_DEFAULT
|
||||||
} GtkOpenWithDialogMode;
|
} GtkOpenWithDialogMode;
|
||||||
|
|
||||||
GType gtk_open_with_dialog_get_type (void);
|
GType gtk_open_with_dialog_get_type (void) G_GNUC_CONST;
|
||||||
|
|
||||||
GtkWidget * gtk_open_with_dialog_new (GtkWindow *parent,
|
GtkWidget * gtk_open_with_dialog_new (GtkWindow *parent,
|
||||||
GtkDialogFlags flags,
|
GtkDialogFlags flags,
|
||||||
|
Loading…
Reference in New Issue
Block a user