summaryrefslogtreecommitdiff
path: root/tikzit/src/gtk/tzstockitems.m
blob: 5eba9125272bd54eada628a1470d8471c0fa8e93 (plain)
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
/*
 * Copyright 2012  Alex Merry <dev@randomguy3.me.uk>
 *
 * 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 of
 * the License, 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, see <http://www.gnu.org/licenses/>.
 */

#include "tzstockitems.h"
#include <gtk/gtk.h>
#include <gdk-pixbuf/gdk-pixdata.h>

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpointer-sign"
#import "icondata.m"
#pragma GCC diagnostic pop

static GtkStockItem stock_items[] = {
    // gchar *stock_id;
    // gchar *label;
    // GdkModifierType modifier;
    // guint keyval;
    // gchar *translation_domain;
    { TIKZIT_STOCK_SELECT, "Select", 0, 0, NULL },
    { TIKZIT_STOCK_CREATE_NODE, "Create Node", 0, 0, NULL },
    { TIKZIT_STOCK_CREATE_EDGE, "Create Edge", 0, 0, NULL },
    { TIKZIT_STOCK_BOUNDING_BOX, "Bounding Box", 0, 0, NULL },
    { TIKZIT_STOCK_DRAG, "Drag", 0, 0, NULL },
};
static guint n_stock_items = G_N_ELEMENTS (stock_items);

static void icon_factory_add_pixdata (GtkIconFactory *factory,
                                      const gchar *stock_id,
                                      const GdkPixdata *image_data) {

    GdkPixbuf *buf = gdk_pixbuf_from_pixdata (image_data, FALSE, NULL);
    GtkIconSet *icon_set = gtk_icon_set_new_from_pixbuf (buf);
    gtk_icon_factory_add (factory, stock_id, icon_set);
    gtk_icon_set_unref (icon_set);
    g_object_unref (G_OBJECT (buf));
}

void tz_register_stock_items() {
    gtk_stock_add_static (stock_items, n_stock_items);

    GtkIconFactory *factory = gtk_icon_factory_new ();
    icon_factory_add_pixdata (factory, TIKZIT_STOCK_SELECT, &select_rectangular);
    icon_factory_add_pixdata (factory, TIKZIT_STOCK_CREATE_NODE, &draw_ellipse);
    icon_factory_add_pixdata (factory, TIKZIT_STOCK_CREATE_EDGE, &draw_path);
    icon_factory_add_pixdata (factory, TIKZIT_STOCK_BOUNDING_BOX, &transform_crop_and_resize);
    icon_factory_add_pixdata (factory, TIKZIT_STOCK_DRAG, &transform_move);
    gtk_icon_factory_add_default (factory);
}

// vim:ft=objc:ts=8:et:sts=4:sw=4:foldmethod=marker