diff options
author | Matthias Clasen <mclasen@redhat.com> | 2009-05-11 02:44:12 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2009-05-11 02:44:12 -0400 |
commit | ae94c371d186715ae78d97687b28ff78c5489673 (patch) | |
tree | d72ee0c1ecd4b94ae6572298acc857c7c123d2e8 /docs | |
parent | 2f60e18c700dca53ef2b64085880ae3c71f50f5f (diff) | |
download | gtk+-ae94c371d186715ae78d97687b28ff78c5489673.tar.gz |
Add a separate keybinding signal for activating links
Keeping the keybinding signal and the regular signal separate is
cleaner and allows us to pass the uri as a parameter to the
activate-link signal.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/gtk/migrating-GtkLabel-links.sgml | 4 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtklabel.sgml | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/docs/reference/gtk/migrating-GtkLabel-links.sgml b/docs/reference/gtk/migrating-GtkLabel-links.sgml index 3a94694f2b..350aa8fb3f 100644 --- a/docs/reference/gtk/migrating-GtkLabel-links.sgml +++ b/docs/reference/gtk/migrating-GtkLabel-links.sgml @@ -18,9 +18,7 @@ <para> One difference between the two APIs is that the ::url-activated signal from SexyUrlLabel has been replaced by the #GtkLabel::activate-link - signal. The activated URI is no longer passed as an argument to the - signal handler. Instead, call gtk_label_get_current_uri() to obtain it. - However, the need for connecting to this signal is greatly reduced, + signal. The need for connecting to this signal is greatly reduced, since GtkLabel has a default handler that calls gtk_show_uri(). </para> </chapter> diff --git a/docs/reference/gtk/tmpl/gtklabel.sgml b/docs/reference/gtk/tmpl/gtklabel.sgml index 130c6e62c8..958ad38c94 100644 --- a/docs/reference/gtk/tmpl/gtklabel.sgml +++ b/docs/reference/gtk/tmpl/gtklabel.sgml @@ -174,8 +174,8 @@ attribute is displayed as a tooltip on the link. An example looks like this: <informalexample><programlisting> gtk_label_set_markup (label, "Go to the <a href=\"http://www.gtk.org\" title=\"&lt;i&gt;Our&/i&gt; website\">GTK+ website</a> for more..."); </programlisting></informalexample> -It is possible to implement custom handling for links with the -#GtkLabel::activate-link signal and the gtk_label_get_current_uri() function. +It is possible to implement custom handling for links and their tooltips with +the #GtkLabel::activate-link signal and the gtk_label_get_current_uri() function. </para> </refsect2> |