aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-stock-icons.c
blob: b6678312a40809538e1a5a52d6304d2623791b40 (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
/*
 *  Copyright © 2002 Jorn Baayen
 *
 *  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.
 *
 *  $Id$
 */

#include "config.h"

#include <gtk/gtk.h>
#include <glib.h>
#include <stdio.h>
#include <string.h>
#include <glib/gi18n.h>

#include "ephy-file-helpers.h"
#include "ephy-stock-icons.h"

void
ephy_stock_icons_init (void)
{
    GtkIconFactory *factory;
    GtkIconSet *icon_set;
    GtkIconSource *icon_source;
    int i;

    const char *icon_theme_items[] =
    {
        STOCK_NEW_TAB,
        STOCK_NEW_WINDOW,
        STOCK_SEND_MAIL,
        STOCK_NEW_MAIL,
        STOCK_ADD_BOOKMARK,
        STOCK_PRINT_SETUP,
    };

    static const GtkStockItem items[] =
    {
        { EPHY_STOCK_POPUPS,    N_("Popup Windows"),    0, 0, NULL },
        { EPHY_STOCK_HISTORY,   N_("History"),      0, 0, NULL },
        { EPHY_STOCK_BOOKMARK,  N_("Bookmark"),         0, 0, NULL },
        { EPHY_STOCK_BOOKMARKS, N_("Bookmarks"),    0, 0, NULL },
        { EPHY_STOCK_ENTRY, N_("Address Entry"),    0, 0, NULL },
        { STOCK_DOWNLOAD,   N_("_Download"),    0, 0, NULL },
        { STOCK_LOCK_INSECURE },
        { STOCK_LOCK_SECURE },
        { STOCK_LOCK_BROKEN }
    };

    factory = gtk_icon_factory_new ();

    for (i = 0; i < (int) G_N_ELEMENTS (items); i++)
    {
        icon_source = gtk_icon_source_new ();
        gtk_icon_source_set_icon_name (icon_source, items[i].stock_id);

        icon_set = gtk_icon_set_new ();
        gtk_icon_set_add_source (icon_set, icon_source);
        gtk_icon_source_free (icon_source);

        gtk_icon_factory_add (factory, items[i].stock_id, icon_set);
        gtk_icon_set_unref (icon_set);
    }

    gtk_stock_add_static (items, G_N_ELEMENTS (items));

    for (i = 0; i < (int) G_N_ELEMENTS (icon_theme_items); i++)
    {
        icon_source = gtk_icon_source_new ();
        gtk_icon_source_set_icon_name (icon_source, icon_theme_items[i]);

        icon_set = gtk_icon_set_new ();
        gtk_icon_set_add_source (icon_set, icon_source);
        gtk_icon_source_free (icon_source);

        gtk_icon_factory_add (factory, icon_theme_items[i], icon_set);
        gtk_icon_set_unref (icon_set);
    }

    gtk_icon_factory_add_default (factory);
    g_object_unref (factory);

    /* GtkIconTheme will then look in Ephy custom hicolor dir
     * for icons as well as the standard search paths
     */
    /* FIXME: multi-head! */
    gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
                       SHARE_DIR G_DIR_SEPARATOR_S "icons");
}