aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-statusbar.c
blob: 1fbcb555e3f16104aefa191ed65fa096bd3f16f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
 *  Copyright © 2002 Jorn Baayen
 *  Copyright © 2003, 2004 Marco Pesenti Gritti
 *  Copyright © 2004, 2007 Christian Persch
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2, or (at your option)
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#include "config.h"

#include "ephy-statusbar.h"
#include "ephy-stock-icons.h"

#include <string.h>
#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);

#define EPHY_STATUSBAR_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_STATUSBAR, EphyStatusbarPrivate))

struct _EphyStatusbarPrivate
{
    GtkWidget *hbox;
    GtkWidget *icon_container;
};

G_DEFINE_TYPE (EphyStatusbar, ephy_statusbar, GTK_TYPE_STATUSBAR)

static void
ephy_statusbar_class_init (EphyStatusbarClass *klass)
{
    GObjectClass *object_class = G_OBJECT_CLASS (klass);

    g_type_class_add_private (object_class, sizeof (EphyStatusbarPrivate));
}

static void
ephy_statusbar_init (EphyStatusbar *t)
{
    GtkStatusbar *gstatusbar = GTK_STATUSBAR (t);
    EphyStatusbarPrivate *priv;

    priv = t->priv = EPHY_STATUSBAR_GET_PRIVATE (t);

    gtk_statusbar_set_has_resize_grip (gstatusbar, TRUE);

#if GTK_CHECK_VERSION (2, 19, 1)
    priv->hbox = gtk_statusbar_get_message_area (gstatusbar);
#else
    priv->hbox = gtk_hbox_new (FALSE, 4);
#endif
    priv->icon_container = gtk_hbox_new (FALSE, 4);
    gtk_box_pack_start (GTK_BOX (priv->hbox), priv->icon_container,
                FALSE, FALSE, 0);
    gtk_widget_show (priv->icon_container);

#if GTK_CHECK_VERSION (2, 19, 1)
    gtk_box_reorder_child (GTK_BOX (priv->hbox), priv->icon_container, 0);
#else
    /* Put the label in the hbox, and substitute the hbox into the frame */
    g_object_ref (gstatusbar->label);
    gtk_container_remove (GTK_CONTAINER (gstatusbar->frame), gstatusbar->label);
    gtk_box_pack_start (GTK_BOX (priv->hbox), gstatusbar->label, TRUE, TRUE, 0);
    g_object_unref (gstatusbar->label);
    gtk_container_add (GTK_CONTAINER (gstatusbar->frame), priv->hbox);
    gtk_widget_show (priv->hbox);
#endif
}

/**
 * ephy_statusbar_new:
 * 
 * Creates a new #EphyStatusbar.
 * 
 * Return value: the new #EphyStatusbar object
 **/
GtkWidget *
ephy_statusbar_new (void)
{
    return GTK_WIDGET (g_object_new (EPHY_TYPE_STATUSBAR, NULL));
}

static void
sync_visibility (GtkWidget *widget,
         GParamSpec *pspec,
         GtkWidget *separator)
{
    if (gtk_widget_get_visible (widget))
    {
        gtk_widget_show (separator);
    }
    else
    {
        gtk_widget_hide (separator);
    }
}

/**
 * ephy_statusbar_add_widget:
 * @statusbar: an #EphyStatusbar
 * @widget: a #GtkWidget
 * 
 * Adds the @widget to the statusbar. Use this function whenever you want to
 * add a widget to the statusbar. You can remove the widget again with
 * ephy_statusbar_remove_widget().
 **/
void
ephy_statusbar_add_widget (EphyStatusbar *statusbar,
               GtkWidget *widget)
{
    EphyStatusbarPrivate *priv;
    GtkWidget *vsep;

    g_return_if_fail (EPHY_IS_STATUSBAR (statusbar));
    g_return_if_fail (GTK_IS_WIDGET (widget));

    priv = statusbar->priv;

    gtk_box_pack_start (GTK_BOX (priv->icon_container),
                widget, FALSE, FALSE, 0);

    vsep = gtk_vseparator_new ();
    gtk_box_pack_start (GTK_BOX (priv->icon_container),
                vsep, FALSE, FALSE, 0);
    sync_visibility (widget, NULL, vsep);
    g_object_set_data (G_OBJECT (widget), "EphyStatusbar::separator", vsep);
    g_signal_connect (widget, "notify::visible",
              G_CALLBACK (sync_visibility), vsep);
}

/**
 * ephy_statusbar_remove_widget:
 * @statusbar: an #EphyStatusbar
 * @widget: a #GtkWidget
 *
 * Removes @widget, which must have been added to @statusbar using
 * ephy_statusbar_add_widget ().
 */
void
ephy_statusbar_remove_widget (EphyStatusbar *statusbar,
                  GtkWidget *widget)
{
    EphyStatusbarPrivate *priv;
    GtkWidget *vsep;

    g_return_if_fail (EPHY_IS_STATUSBAR (statusbar));
    g_return_if_fail (GTK_IS_WIDGET (widget));

    priv = statusbar->priv;

    vsep = g_object_steal_data (G_OBJECT (widget), "EphyStatusbar::separator");
    g_return_if_fail (vsep != NULL);

    g_signal_handlers_disconnect_by_func
        (widget, G_CALLBACK (sync_visibility), vsep);

    gtk_container_remove (GTK_CONTAINER (priv->icon_container), vsep);
    gtk_container_remove (GTK_CONTAINER (priv->icon_container), widget);
}