diff options
author | Diego Escalante Urrelo <diegoe@gnome.org> | 2009-12-02 11:03:11 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@gnome.org> | 2009-12-03 06:47:16 +0800 |
commit | deac403a8eb8f1ad00333b47f6c0df448110972e (patch) | |
tree | 70675e138deddbbe9e1284c46b03e4cb1c2acdd0 /src/ephy-statusbar.c | |
parent | 86d5198f311fc40dc0d22cfa0e2643fcde46317f (diff) | |
download | gsoc2013-epiphany-deac403a8eb8f1ad00333b47f6c0df448110972e.tar.gz gsoc2013-epiphany-deac403a8eb8f1ad00333b47f6c0df448110972e.tar.zst gsoc2013-epiphany-deac403a8eb8f1ad00333b47f6c0df448110972e.zip |
docs: ephy-statusbar
Bug #503852
Diffstat (limited to 'src/ephy-statusbar.c')
-rw-r--r-- | src/ephy-statusbar.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/ephy-statusbar.c b/src/ephy-statusbar.c index c3c7abbab..af2b2348d 100644 --- a/src/ephy-statusbar.c +++ b/src/ephy-statusbar.c @@ -28,6 +28,13 @@ #include <glib/gi18n.h> #include <gtk/gtk.h> +/** + * SECTION:ephy-statusbar + * @short_description: A statusbar widget for Epiphany + * + * #EphyStatusbar is Epiphany's default statusbar for all windows. + */ + static void ephy_statusbar_class_init (EphyStatusbarClass *klass); static void ephy_statusbar_init (EphyStatusbar *t); @@ -60,6 +67,13 @@ ephy_statusbar_class_init (EphyStatusbarClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); + /** + * EphyStatusbar::lock-clicked: + * @statusbar: the object which received the signal. + * + * This signal corresponds to the user clicking on the lock icon on the + * @statusbar. + */ signals[LOCK_CLICKED] = g_signal_new ("lock-clicked", @@ -197,7 +211,7 @@ ephy_statusbar_new (void) /** * ephy_statusbar_set_caret_mode: * @statusbar: an #EphyStatusbar - * @enabled: + * @enabled: %TRUE to show the caret browsing mode indicator * * Sets the statusbar's caret browsing mode indicator. **/ |