aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-info-label.c
blob: 38b2368b1dd49ba6ad18ba969053b10dd8972b97 (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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 *  Authors: Michael Zucchi <notzed@ximian.com>
 *
 *  Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of version 2 of the GNU General Public
 *  License as published by the Free Software Foundation.
 *
 *  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.
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <string.h>

#include "e-info-label.h"

static GtkHBoxClass *el_parent;

static void
el_init(GObject *o)
{
    /*EInfoLabel *el = (EInfoLabel *)o;*/
}

static void
el_finalise(GObject *o)
{
    ((GObjectClass *)el_parent)->finalize(o);
}

static void
el_destroy (GtkObject *o)
{
    ((EInfoLabel *)o)->location = NULL;
    ((EInfoLabel *)o)->info = NULL;

    ((GtkObjectClass *)el_parent)->destroy(o);
}

static int
el_expose_event(GtkWidget *w, GdkEventExpose *event)
{
    int x = ((GtkContainer *)w)->border_width;

    /* This seems a hack to me, but playing with styles wouldn't affect the background */
    gtk_paint_flat_box(w->style, w->window,
               GTK_STATE_ACTIVE, GTK_SHADOW_NONE,
               &event->area, w, "EInfoLabel",
               w->allocation.x+x, w->allocation.y+x,
               w->allocation.width-x*2, w->allocation.height-x*2);

    return ((GtkWidgetClass *)el_parent)->expose_event(w, event);
}

static int
get_text_full_width (GtkWidget *label)
{
    PangoLayout *layout;
    PangoRectangle rect;
    int width;

    g_return_val_if_fail (GTK_IS_LABEL (label), 0);

    layout = gtk_label_get_layout (GTK_LABEL (label));

    if (!layout)
        return 0;

    width = pango_layout_get_width (layout);
    pango_layout_set_width (layout, -1);
    pango_layout_get_extents (layout, NULL, &rect);
    pango_layout_set_width (layout, width);

    return PANGO_PIXELS (rect.width);
}

static void
el_size_allocate (GtkWidget *widget, GtkAllocation *pallocation)
{
    EInfoLabel *el;
    GtkAllocation allocation;
    int full_loc, full_nfo;
    gint diff;

    /* let calculate parent class first, and then just make it not divide evenly */
    ((GtkWidgetClass *)el_parent)->size_allocate (widget, pallocation);

    g_return_if_fail (widget!= NULL);

    el = (EInfoLabel*) widget;

    if (!el->location)
        return;

    full_loc = get_text_full_width (el->location) + 1;
    full_nfo = get_text_full_width (el->info) + 1;

    /* do not know the width of text, thus return */
    if (full_loc == 1 && full_nfo == 1)
        return;

    if (el->location->allocation.width + el->info->allocation.width >= full_loc + full_nfo) {
        /* allocate for location only as many pixels as it requires to not ellipsize
           and keep rest for the info part */
        diff = el->location->allocation.width - full_loc;
    } else {
        /* make both shorter, but based on the ratio of its full widths */
        gint total_have = el->location->allocation.width + el->info->allocation.width;
        gint total_full = full_loc + full_nfo;

        diff = el->location->allocation.width - full_loc * total_have / total_full;
    }

    if (!diff)
        return;

    allocation = el->location->allocation;
    allocation.width -= diff;
    gtk_widget_size_allocate (el->location, &allocation);

    allocation = el->info->allocation;
    allocation.x -= diff;
    allocation.width += diff;
    gtk_widget_size_allocate (el->info, &allocation);
}

static void
el_class_init(GObjectClass *klass)
{
    klass->finalize = el_finalise;

    ((GtkObjectClass *)klass)->destroy = el_destroy;
    ((GtkWidgetClass *)klass)->expose_event = el_expose_event;
    ((GtkWidgetClass *)klass)->size_allocate = el_size_allocate;
}

GType
e_info_label_get_type(void)
{
    static GType type = 0;

    if (type == 0) {
        static const GTypeInfo info = {
            sizeof(EInfoLabelClass),
            NULL, NULL,
            (GClassInitFunc)el_class_init,
            NULL, NULL,
            sizeof(EInfoLabel), 0,
            (GInstanceInitFunc)el_init
        };
        el_parent = g_type_class_ref(gtk_hbox_get_type());
        type = g_type_register_static(gtk_hbox_get_type(), "EInfoLabel", &info, 0);
    }

    return type;
}

/**
 * e_info_label_new:
 * @icon:
 *
 * Create a new info label widget.  @icon is the name of the icon
 * (from the icon theme) to use for the icon image.
 *
 * Return value:
 **/
GtkWidget *
e_info_label_new(const char *icon)
{
    EInfoLabel *el = g_object_new(e_info_label_get_type(), NULL);
    GtkWidget *image;

    image = gtk_image_new_from_icon_name (icon, GTK_ICON_SIZE_MENU);
    gtk_misc_set_padding((GtkMisc *)image, 6, 6);
    gtk_box_pack_start((GtkBox *)el, image, FALSE, TRUE, 0);
    gtk_widget_show(image);

    gtk_container_set_border_width((GtkContainer *)el, 3);

    return (GtkWidget *)el;
}

/**
 * e_info_label_set_info:
 * @el:
 * @location:
 * @info:
 *
 * Set the information to show on the label.  @location is some
 * context about the current view.  e.g. the folder name.  If the
 * label is too wide, this will be truncated.
 *
 * @info is some info about this location.
 **/
void
e_info_label_set_info(EInfoLabel *el, const char *location, const char *info)
{
    gchar *markup;

    if (el->location == NULL) {
        el->location = gtk_label_new (NULL);
        el->info = gtk_label_new (NULL);

        gtk_label_set_ellipsize (GTK_LABEL (el->location), PANGO_ELLIPSIZE_END);
        gtk_misc_set_alignment (GTK_MISC (el->location), 0.0, 0.5);
        gtk_misc_set_padding (GTK_MISC (el->location), 0, 6);

        gtk_label_set_ellipsize (GTK_LABEL (el->info), PANGO_ELLIPSIZE_MIDDLE);
        gtk_misc_set_alignment (GTK_MISC (el->info), 1.0, 0.5);
        gtk_misc_set_padding (GTK_MISC (el->info), 0, 6);

        gtk_widget_show (el->location);
        gtk_widget_show (el->info);

        gtk_box_pack_start (
            GTK_BOX (el), GTK_WIDGET (el->location),
            TRUE, TRUE, 0);
        gtk_box_pack_end (
            GTK_BOX (el), GTK_WIDGET (el->info),
            TRUE, TRUE, 6);
        gtk_widget_set_state (GTK_WIDGET (el), GTK_STATE_ACTIVE);
    }

    markup = g_markup_printf_escaped ("<b>%s</b>", location);
    gtk_label_set_markup (GTK_LABEL (el->location), markup);
    g_free (markup);

    markup = g_markup_printf_escaped ("<small>%s</small>", info);
    gtk_label_set_markup (GTK_LABEL (el->info), markup);
    g_free (markup);
}