diff options
author | Adam Hooper <adamh@src.gnome.org> | 2004-03-27 06:10:03 +0800 |
---|---|---|
committer | Adam Hooper <adamh@src.gnome.org> | 2004-03-27 06:10:03 +0800 |
commit | ea323c1d7f28e2a03b7b1752de25a975218a488d (patch) | |
tree | 7f8f06dd5555efc1ccffe475541aaece3a0864c2 /embed | |
parent | 392862972143af3915942456b6a6665d95a79fcb (diff) | |
download | gsoc2013-epiphany-ea323c1d7f28e2a03b7b1752de25a975218a488d.tar.gz gsoc2013-epiphany-ea323c1d7f28e2a03b7b1752de25a975218a488d.tar.zst gsoc2013-epiphany-ea323c1d7f28e2a03b7b1752de25a975218a488d.zip |
Documented EphyEmbedSingle
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed-single.c | 59 | ||||
-rw-r--r-- | embed/ephy-embed-single.h | 18 | ||||
-rw-r--r-- | embed/ephy-embed.c | 4 |
3 files changed, 47 insertions, 34 deletions
diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c index c0303af7c..72891edf8 100644 --- a/embed/ephy-embed-single.c +++ b/embed/ephy-embed-single.c @@ -57,17 +57,19 @@ ephy_embed_single_iface_init (gpointer g_class) if (initialised == FALSE) { - /** - * EphyEmbedSingle::handle_content - * @single: the #EphyEmbedSingle - * @mime_type: the mime type of the content - * @address: the address of the content - * - * The handle_content signal is emitted when encountering content - * of a mime type Epiphany is unable to handle itself. - * - * Returning TRUE will stop the signal emission. - **/ +/** + * EphyEmbedSingle::handle_content: + * @single: + * @mime_type: the MIME type of the content + * @address: the URL to the content + * + * The ::handle_content signal is emitted when encountering content of a mime + * type Epiphany is unable to handle itself. + * + * If a connected callback returns %TRUE, the signal will stop propagating. For + * example, this could be used by a download manager to prevent other + * ::handle_content listeners from being called. + **/ g_signal_new ("handle_content", EPHY_TYPE_EMBED_SINGLE, G_SIGNAL_RUN_LAST, @@ -87,7 +89,7 @@ ephy_embed_single_iface_init (gpointer g_class) * ephy_embed_single_clear_cache: * @single: the #EphyEmbedSingle * - * Clears the mozilla cache. + * Clears the Mozilla cache (temporarily saved web pages). **/ void ephy_embed_single_clear_cache (EphyEmbedSingle *single) @@ -100,7 +102,15 @@ ephy_embed_single_clear_cache (EphyEmbedSingle *single) * ephy_embed_single_clear_auth_cache: * @single: the #EphyEmbedSingle * - * Clears the mozilla http authentication cache. + * Clears the Mozilla HTTP authentication cache. + * + * This does not clear regular website passwords; it only clears the HTTP + * authentication cache. Websites which use HTTP authentication require the + * browser to send a password along with every HTTP request; the browser will + * ask the user for the password once and then cache the password for subsequent + * HTTP requests. This function will clear the HTTP authentication cache, + * meaning the user will have to re-enter a username and password the next time + * Epiphany requests a web page secured with HTTP authentication. **/ void ephy_embed_single_clear_auth_cache (EphyEmbedSingle *single) @@ -112,9 +122,9 @@ ephy_embed_single_clear_auth_cache (EphyEmbedSingle *single) /** * ephy_embed_single_set_offline_mode: * @single: the #EphyEmbedSingle - * @offline: whether being off-line + * @offline: %TRUE to disable networking * - * Sets the state of the net connection. + * Sets the state of the network connection. **/ void ephy_embed_single_set_offline_mode (EphyEmbedSingle *single, @@ -127,32 +137,35 @@ ephy_embed_single_set_offline_mode (EphyEmbedSingle *single, /** * ephy_embed_single_load_proxy_autoconf: * @single: the #EphyEmbedSingle - * @address: the address of the PAC file + * @url: a URL to a PAC file * * Sets the address of the PAC file, and loads the proxy configuration from it. **/ void ephy_embed_single_load_proxy_autoconf (EphyEmbedSingle *single, - const char* address) + const char* url) { EphyEmbedSingleIface *iface = EPHY_EMBED_SINGLE_GET_IFACE (single); - iface->load_proxy_autoconf (single, address); + iface->load_proxy_autoconf (single, url); } /** * ephy_embed_single_get_font_list: * @single: the #EphyEmbedSingle - * @langGroup: a mozilla font language group name, or NULL + * @lang_group: a mozilla font language group name, or %NULL * - * Returns the list of fonts matching @langGroup, or all fonts if @langGroup is - * NULL. + * Returns the list of fonts matching @lang_group, or all fonts if @lang_group + * is %NULL. + * + * The available @lang_group arguments are listed in Epiphany's Fonts and Colors + * preferences. * * Return value: a list of font names **/ GList * ephy_embed_single_get_font_list (EphyEmbedSingle *single, - const char *langGroup) + const char *lang_group) { EphyEmbedSingleIface *iface = EPHY_EMBED_SINGLE_GET_IFACE (single); - return iface->get_font_list (single, langGroup); + return iface->get_font_list (single, lang_group); } diff --git a/embed/ephy-embed-single.h b/embed/ephy-embed-single.h index f9db7cfb9..f78910e90 100644 --- a/embed/ephy-embed-single.h +++ b/embed/ephy-embed-single.h @@ -33,10 +33,10 @@ G_BEGIN_DECLS #define EPHY_IS_EMBED_SINGLE_IFACE(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_EMBED_SINGLE)) #define EPHY_EMBED_SINGLE_GET_IFACE(i) (G_TYPE_INSTANCE_GET_INTERFACE ((i), EPHY_TYPE_EMBED_SINGLE, EphyEmbedSingleIface)) -typedef struct EphyEmbedSingle EphyEmbedSingle; -typedef struct EphyEmbedSingleIface EphyEmbedSingleIface; +typedef struct _EphyEmbedSingle EphyEmbedSingle; +typedef struct _EphyEmbedSingleIface EphyEmbedSingleIface; -struct EphyEmbedSingleIface +struct _EphyEmbedSingleIface { GTypeInterface base_iface; @@ -60,18 +60,18 @@ struct EphyEmbedSingleIface GType ephy_embed_single_get_type (void); -void ephy_embed_single_clear_cache (EphyEmbedSingle *shell); +void ephy_embed_single_clear_cache (EphyEmbedSingle *single); -void ephy_embed_single_clear_auth_cache (EphyEmbedSingle *shell); +void ephy_embed_single_clear_auth_cache (EphyEmbedSingle *single); -void ephy_embed_single_set_offline_mode (EphyEmbedSingle *shell, +void ephy_embed_single_set_offline_mode (EphyEmbedSingle *single, gboolean offline); -void ephy_embed_single_load_proxy_autoconf (EphyEmbedSingle *shell, +void ephy_embed_single_load_proxy_autoconf (EphyEmbedSingle *single, const char* url); -GList *ephy_embed_single_get_font_list (EphyEmbedSingle *shell, - const char *langGroup); +GList *ephy_embed_single_get_font_list (EphyEmbedSingle *single, + const char *lang_group); G_END_DECLS diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 6156051f4..00f8b25d8 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -536,7 +536,7 @@ ephy_embed_shistory_n_items (EphyEmbed *embed) * @url: returned value of the history entry's URL * @title: returned value of the history entry's title * - * Returns the @url and @title of the @nth item in @embed's session history. + * Fetches the @url and @title of the @nth item in @embed's session history. * If @is_relative is %TRUE, @nth is an offset from the browser's current * history position. For example, calling this function with @is_relative %TRUE * and @nth %0 will return the URL and title of the current page. @@ -590,7 +590,7 @@ ephy_embed_shistory_go_nth (EphyEmbed *embed, * @level: return value of security level * @description: return value of the description of the security level * - * Returns the an #EmbedSecurityLevel and a newly-allocated string description + * Fetches the #EmbedSecurityLevel and a newly-allocated string description * of the security state of @embed. **/ void |