aboutsummaryrefslogtreecommitdiffstats
path: root/lib/toolbar/ephy-tbi-std-toolitem.c
blob: deb468ecbd78c5b0c84621c3e5cfd661e243f441 (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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/*
 *  Copyright (C) 2002  Ricardo Fernández Pascual
 *
 *  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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <libgnome/gnome-i18n.h>
#include <bonobo/bonobo-ui-toolbar-button-item.h>
#include <bonobo/bonobo-property-bag.h>
#include <gtk/gtkstock.h>
#include <string.h>

#include "ephy-tbi-std-toolitem.h"
#include "ephy-gobject-misc.h"
#include "ephy-marshal.h"
#include "ephy-bonobo-extensions.h"

#define NOT_IMPLEMENTED g_warning ("not implemented: " G_STRLOC);
//#define DEBUG_MSG(x) g_print x
#define DEBUG_MSG(x)

/**
 * Private data
 */
struct _EphyTbiStdToolitemPrivate 
{
    GtkWidget *widget;
    
    EphyTbiStdToolitemItem item;
};


/**
 * Private functions, only availble from this file
 */
static void     ephy_tbi_std_toolitem_class_init    (EphyTbiStdToolitemClass *klass);
static void     ephy_tbi_std_toolitem_init      (EphyTbiStdToolitem *tb);
static void     ephy_tbi_std_toolitem_finalize_impl (GObject *o);
static GtkWidget *  ephy_tbi_std_toolitem_get_widget_impl (EphyTbItem *i);
static GdkPixbuf *  ephy_tbi_std_toolitem_get_icon_impl (EphyTbItem *i);
static gchar *      ephy_tbi_std_toolitem_get_name_human_impl (EphyTbItem *i);
static gchar *      ephy_tbi_std_toolitem_to_string_impl (EphyTbItem *i);
static gboolean     ephy_tbi_std_toolitem_is_unique_impl (EphyTbItem *i);
static EphyTbItem * ephy_tbi_std_toolitem_clone_impl    (EphyTbItem *i);
static void     ephy_tbi_std_toolitem_parse_properties_impl (EphyTbItem *i, const gchar *props);
static void     ephy_tbi_std_toolitem_add_to_bonobo_tb_impl (EphyTbItem *i, 
                                    BonoboUIComponent *ui, 
                                    const char *container_path,
                                    guint index);

static gpointer ephy_tb_item_class;

/**
 * TbiStdToolitem object
 */

MAKE_GET_TYPE (ephy_tbi_std_toolitem, "EphyTbiStdToolitem", EphyTbiStdToolitem, 
           ephy_tbi_std_toolitem_class_init, 
           ephy_tbi_std_toolitem_init, EPHY_TYPE_TB_ITEM);

static void
ephy_tbi_std_toolitem_class_init (EphyTbiStdToolitemClass *klass)
{
    G_OBJECT_CLASS (klass)->finalize = ephy_tbi_std_toolitem_finalize_impl;
    
    EPHY_TB_ITEM_CLASS (klass)->get_widget = ephy_tbi_std_toolitem_get_widget_impl;
    EPHY_TB_ITEM_CLASS (klass)->get_icon = ephy_tbi_std_toolitem_get_icon_impl;
    EPHY_TB_ITEM_CLASS (klass)->get_name_human = ephy_tbi_std_toolitem_get_name_human_impl;
    EPHY_TB_ITEM_CLASS (klass)->to_string = ephy_tbi_std_toolitem_to_string_impl;
    EPHY_TB_ITEM_CLASS (klass)->is_unique = ephy_tbi_std_toolitem_is_unique_impl;
    EPHY_TB_ITEM_CLASS (klass)->clone = ephy_tbi_std_toolitem_clone_impl;
    EPHY_TB_ITEM_CLASS (klass)->parse_properties = ephy_tbi_std_toolitem_parse_properties_impl;
    EPHY_TB_ITEM_CLASS (klass)->add_to_bonobo_tb = ephy_tbi_std_toolitem_add_to_bonobo_tb_impl;
    
    ephy_tb_item_class = g_type_class_peek_parent (klass);
}

static void 
ephy_tbi_std_toolitem_init (EphyTbiStdToolitem *tb)
{
    EphyTbiStdToolitemPrivate *p = g_new0 (EphyTbiStdToolitemPrivate, 1);
    tb->priv = p;

    p->item = EPHY_TBI_STD_TOOLITEM_BACK;
}

EphyTbiStdToolitem *
ephy_tbi_std_toolitem_new (void)
{
    EphyTbiStdToolitem *ret = g_object_new (EPHY_TYPE_TBI_STD_TOOLITEM, NULL);
    return ret;
}

static void
ephy_tbi_std_toolitem_finalize_impl (GObject *o)
{
    EphyTbiStdToolitem *it = EPHY_TBI_STD_TOOLITEM (o);
    EphyTbiStdToolitemPrivate *p = it->priv;

    if (p->widget)
    {
        g_object_unref (p->widget);
    }

    g_free (p);
    
    DEBUG_MSG (("EphyTbiStdToolitem finalized\n"));
    
    G_OBJECT_CLASS (ephy_tb_item_class)->finalize (o);
}

static GtkWidget *
ephy_tbi_std_toolitem_get_widget_impl (EphyTbItem *i)
{
    /* no widget avaible ... */
    return NULL;
}

static GdkPixbuf *
ephy_tbi_std_toolitem_get_icon_impl (EphyTbItem *i)
{
    EphyTbiStdToolitemPrivate *p = EPHY_TBI_STD_TOOLITEM (i)->priv;

    static GdkPixbuf *pb_up = NULL;
    static GdkPixbuf *pb_back = NULL;
    static GdkPixbuf *pb_forward = NULL;
    static GdkPixbuf *pb_stop = NULL;
    static GdkPixbuf *pb_reload = NULL;
    static GdkPixbuf *pb_home = NULL;
    static GdkPixbuf *pb_go = NULL;
    static GdkPixbuf *pb_new = NULL;
    
    if (!pb_up)
    {
        /* what's the easier way? */
        GtkWidget *b = gtk_spin_button_new_with_range (0, 1, 0.5);
        pb_up = gtk_widget_render_icon (b,
                        GTK_STOCK_GO_UP,
                        GTK_ICON_SIZE_SMALL_TOOLBAR,
                        NULL);
        pb_back = gtk_widget_render_icon (b,
                          GTK_STOCK_GO_BACK,
                          GTK_ICON_SIZE_SMALL_TOOLBAR,
                          NULL);
        pb_forward = gtk_widget_render_icon (b,
                             GTK_STOCK_GO_FORWARD,
                             GTK_ICON_SIZE_SMALL_TOOLBAR,
                             NULL);
        pb_stop = gtk_widget_render_icon (b,
                          GTK_STOCK_STOP,
                          GTK_ICON_SIZE_SMALL_TOOLBAR,
                          NULL);
        pb_reload = gtk_widget_render_icon (b,
                            GTK_STOCK_REFRESH,
                            GTK_ICON_SIZE_SMALL_TOOLBAR,
                            NULL);
        pb_home = gtk_widget_render_icon (b,
                          GTK_STOCK_HOME,
                          GTK_ICON_SIZE_SMALL_TOOLBAR,
                          NULL);
        pb_go = gtk_widget_render_icon (b, 
                        GTK_STOCK_JUMP_TO,
                        GTK_ICON_SIZE_SMALL_TOOLBAR,
                        NULL);
        pb_new = gtk_widget_render_icon (b, 
                         GTK_STOCK_NEW,
                         GTK_ICON_SIZE_SMALL_TOOLBAR,
                         NULL);
        gtk_widget_destroy (b);
    }

    switch (p->item)
    {
    case EPHY_TBI_STD_TOOLITEM_BACK:
        return g_object_ref (pb_back);
        break;
    case EPHY_TBI_STD_TOOLITEM_FORWARD:
        return g_object_ref (pb_forward);
        break;
    case EPHY_TBI_STD_TOOLITEM_UP:
        return g_object_ref (pb_up);
        break;
    case EPHY_TBI_STD_TOOLITEM_STOP:
        return g_object_ref (pb_stop);
        break;
    case EPHY_TBI_STD_TOOLITEM_RELOAD:
        return g_object_ref (pb_reload);
        break;
    case EPHY_TBI_STD_TOOLITEM_HOME:
        return g_object_ref (pb_home);
        break;
    case EPHY_TBI_STD_TOOLITEM_GO:
        return g_object_ref (pb_go);
        break;
    case EPHY_TBI_STD_TOOLITEM_NEW:
        return g_object_ref (pb_new);
        break;
    default:
        g_assert_not_reached ();
        return NULL;
    }
}

static gchar *
ephy_tbi_std_toolitem_get_name_human_impl (EphyTbItem *i)
{
    EphyTbiStdToolitemPrivate *p = EPHY_TBI_STD_TOOLITEM (i)->priv;
    const gchar *ret;

    switch (p->item)
    {
    case EPHY_TBI_STD_TOOLITEM_BACK:
        ret = _("Back");
        break;
    case EPHY_TBI_STD_TOOLITEM_FORWARD:
        ret = _("Forward");
        break;
    case EPHY_TBI_STD_TOOLITEM_UP:
        ret = _("Up");
        break;
    case EPHY_TBI_STD_TOOLITEM_STOP:
        ret = _("Stop");
        break;
    case EPHY_TBI_STD_TOOLITEM_RELOAD:
        ret = _("Reload");
        break;
    case EPHY_TBI_STD_TOOLITEM_HOME:
        ret = _("Home");
        break;
    case EPHY_TBI_STD_TOOLITEM_GO:
        ret = _("Go");
        break;
    case EPHY_TBI_STD_TOOLITEM_NEW:
        ret = _("New");
        break;
    default:
        g_assert_not_reached ();
        ret = "unknown";
    }

    return g_strdup (ret);
}

static gchar *
ephy_tbi_std_toolitem_to_string_impl (EphyTbItem *i)
{
    EphyTbiStdToolitemPrivate *p = EPHY_TBI_STD_TOOLITEM (i)->priv;

    /* if it had any properties, the string should include them */
    const char *sitem;

    switch (p->item)
    {
    case EPHY_TBI_STD_TOOLITEM_BACK:
        sitem = "back";
        break;
    case EPHY_TBI_STD_TOOLITEM_FORWARD:
        sitem = "forward";
        break;
    case EPHY_TBI_STD_TOOLITEM_UP:
        sitem = "up";
        break;
    case EPHY_TBI_STD_TOOLITEM_STOP:
        sitem = "stop";
        break;
    case EPHY_TBI_STD_TOOLITEM_RELOAD:
        sitem = "reload";
        break;
    case EPHY_TBI_STD_TOOLITEM_HOME:
        sitem = "home";
        break;
    case EPHY_TBI_STD_TOOLITEM_GO:
        sitem = "go";
        break;
    case EPHY_TBI_STD_TOOLITEM_NEW:
        sitem = "new";
        break;
    default:
        g_assert_not_reached ();
        sitem = "unknown";
    }

    return g_strdup_printf ("%s=std_toolitem(item=%s)", i->id, sitem);
}

static gboolean
ephy_tbi_std_toolitem_is_unique_impl (EphyTbItem *i)
{
    return TRUE;
}

static EphyTbItem *
ephy_tbi_std_toolitem_clone_impl (EphyTbItem *i)
{
    EphyTbiStdToolitemPrivate *p = EPHY_TBI_STD_TOOLITEM (i)->priv;

    EphyTbItem *ret = EPHY_TB_ITEM (ephy_tbi_std_toolitem_new ());
    
    ephy_tb_item_set_id (ret, i->id);

    /* should copy properties too, if any */
    ephy_tbi_std_toolitem_set_item (EPHY_TBI_STD_TOOLITEM (ret), p->item);

    return ret;
}


static void
ephy_tbi_std_toolitem_add_to_bonobo_tb_impl (EphyTbItem *i, BonoboUIComponent *ui, 
                        const char *container_path, guint index)
{
    EphyTbiStdToolitemPrivate *p = EPHY_TBI_STD_TOOLITEM (i)->priv;
    gchar *xml_item;

    switch (p->item)
    {
    case EPHY_TBI_STD_TOOLITEM_BACK:
        xml_item = g_strdup_printf  
            ("<toolitem name=\"Back\" "
             "label=\"%s\" "
             "pixtype=\"stock\" pixname=\"gtk-go-back\" "
             "priority=\"1\" "
             "verb=\"GoBack\"/>", _("Back"));;
        break;
    case EPHY_TBI_STD_TOOLITEM_FORWARD:
        xml_item = g_strdup_printf 
            ("<toolitem name=\"Forward\" "
             "label=\"%s\" "
             "pixtype=\"stock\" pixname=\"gtk-go-forward\" "
             "verb=\"GoForward\"/>", _("Forward"));
        break;
    case EPHY_TBI_STD_TOOLITEM_UP:
        xml_item = g_strdup_printf
            ("<toolitem name=\"Up\" "
             "label=\"%s\" "
             "pixtype=\"stock\" pixname=\"gtk-go-up\" "
             "verb=\"GoUp\"/>", _("Up"));;
        break;
    case EPHY_TBI_STD_TOOLITEM_STOP:
        xml_item = g_strdup_printf 
            ("<toolitem name=\"Stop\" "
             "label=\"%s\" "
             "pixtype=\"stock\" pixname=\"gtk-stop\" "
             "verb=\"GoStop\"/>", _("Stop"));
        break;
    case EPHY_TBI_STD_TOOLITEM_RELOAD:
        xml_item = g_strdup_printf
            ("<toolitem name=\"Reload\" "
             "label=\"%s\" "
             "pixtype=\"stock\" pixname=\"gtk-refresh\" "
             "verb=\"GoReload\"/>", _("Reload"));
        break;
    case EPHY_TBI_STD_TOOLITEM_HOME:
        xml_item = g_strdup_printf
            ("<toolitem name=\"Home\" "
             "label=\"%s\" "
             "pixtype=\"stock\" pixname=\"gtk-home\" "
             "priority=\"1\" "
             "verb=\"GoHome\"/>", _("Home"));;
        break;
    case EPHY_TBI_STD_TOOLITEM_GO:
        xml_item = g_strdup_printf
            ("<toolitem name=\"Go\" "
             "label=\"%s\" "
             "pixtype=\"stock\" pixname=\"gtk-jump-to\" "
             "verb=\"GoGo\"/>", _("Go"));;
        break;
    case EPHY_TBI_STD_TOOLITEM_NEW:
        xml_item = g_strdup_printf
            ("<toolitem name=\"New\" "
             "label=\"%s\" "
             "pixtype=\"stock\" pixname=\"gtk-new\" "
             "verb=\"FileNew\"/>", _("New"));;
        break;

    default:
        g_assert_not_reached ();
        xml_item = g_strdup ("");
    }

    bonobo_ui_component_set (ui, container_path, xml_item, NULL);
    g_free (xml_item);
}

static void
ephy_tbi_std_toolitem_parse_properties_impl (EphyTbItem *it, const gchar *props)
{
    EphyTbiStdToolitem *a = EPHY_TBI_STD_TOOLITEM (it);

    /* yes, this is quite hacky, but works */

    /* we have one property */
    const gchar *item_prop;

    item_prop = strstr (props, "item=");
    if (item_prop)
    {
        item_prop += strlen ("item=");
        if (!strncmp (item_prop, "back", 4))
        {
            ephy_tbi_std_toolitem_set_item (a, EPHY_TBI_STD_TOOLITEM_BACK);
        }
        else if (!strncmp (item_prop, "forward", 4))
        {
            ephy_tbi_std_toolitem_set_item (a, EPHY_TBI_STD_TOOLITEM_FORWARD);
        }
        else if (!strncmp (item_prop, "up", 2))
        {
            ephy_tbi_std_toolitem_set_item (a, EPHY_TBI_STD_TOOLITEM_UP);
        }
        else if (!strncmp (item_prop, "stop", 4))
        {
            ephy_tbi_std_toolitem_set_item (a, EPHY_TBI_STD_TOOLITEM_STOP);
        }
        else if (!strncmp (item_prop, "home", 4))
        {
            ephy_tbi_std_toolitem_set_item (a, EPHY_TBI_STD_TOOLITEM_HOME);
        }
        else if (!strncmp (item_prop, "go", 2))
        {
            ephy_tbi_std_toolitem_set_item (a, EPHY_TBI_STD_TOOLITEM_GO);
        }
        else if (!strncmp (item_prop, "reload", 6))
        {
            ephy_tbi_std_toolitem_set_item (a, EPHY_TBI_STD_TOOLITEM_RELOAD);
        }
        else if (!strncmp (item_prop, "new", 3))
        {
            ephy_tbi_std_toolitem_set_item (a, EPHY_TBI_STD_TOOLITEM_NEW);
        }

    }
}

void
ephy_tbi_std_toolitem_set_item (EphyTbiStdToolitem *a, EphyTbiStdToolitemItem i)
{
    EphyTbiStdToolitemPrivate *p = a->priv;

    g_return_if_fail (i == EPHY_TBI_STD_TOOLITEM_UP
              || i == EPHY_TBI_STD_TOOLITEM_BACK
              || i == EPHY_TBI_STD_TOOLITEM_FORWARD
              || i == EPHY_TBI_STD_TOOLITEM_STOP
              || i == EPHY_TBI_STD_TOOLITEM_RELOAD
              || i == EPHY_TBI_STD_TOOLITEM_GO
              || i == EPHY_TBI_STD_TOOLITEM_HOME
              || i == EPHY_TBI_STD_TOOLITEM_NEW);

    p->item = i;
}