aboutsummaryrefslogtreecommitdiffstats
path: root/lib/toolbar/ephy-toolbar-item.c
blob: f9c452f029c9611d565c6fcc2b870c77e54be1e0 (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
/*
 *  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 "ephy-gobject-misc.h"
#include "ephy-marshal.h"
#include "ephy-toolbar-item.h"

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

/**
 * Private data
 */
struct _EphyTbItemPrivate
{
};

/**
 * Private functions, only availble from this file
 */
static void     ephy_tb_item_class_init         (EphyTbItemClass *klass);
static void     ephy_tb_item_init           (EphyTbItem *tb);
static void     ephy_tb_item_finalize_impl      (GObject *o);

static gpointer g_object_class;

/**
 * TbItem object
 */

MAKE_GET_TYPE (ephy_tb_item, "EphyTbItem", EphyTbItem, ephy_tb_item_class_init,
           ephy_tb_item_init, G_TYPE_OBJECT);

static void
ephy_tb_item_class_init (EphyTbItemClass *klass)
{
    G_OBJECT_CLASS (klass)->finalize = ephy_tb_item_finalize_impl;

    g_object_class = g_type_class_peek_parent (klass);
}

static void
ephy_tb_item_init (EphyTbItem *it)
{
    EphyTbItemPrivate *p = g_new0 (EphyTbItemPrivate, 1);
    it->priv = p;
    it->id = g_strdup ("");
}

static void
ephy_tb_item_finalize_impl (GObject *o)
{
    EphyTbItem *it = EPHY_TB_ITEM (o);
    EphyTbItemPrivate *p = it->priv;

    g_free (it->id);
    g_free (p);

    DEBUG_MSG (("EphyTbItem finalized\n"));

    G_OBJECT_CLASS (g_object_class)->finalize (o);
}

GtkWidget *
ephy_tb_item_get_widget (EphyTbItem *i)
{
    return EPHY_TB_ITEM_GET_CLASS (i)->get_widget (i);
}

GdkPixbuf *
ephy_tb_item_get_icon (EphyTbItem *i)
{
    return EPHY_TB_ITEM_GET_CLASS (i)->get_icon (i);
}

gchar *
ephy_tb_item_get_name_human (EphyTbItem *i)
{
    return EPHY_TB_ITEM_GET_CLASS (i)->get_name_human (i);
}

gchar *
ephy_tb_item_to_string (EphyTbItem *i)
{
    return EPHY_TB_ITEM_GET_CLASS (i)->to_string (i);
}

gboolean
ephy_tb_item_is_unique (EphyTbItem *i)
{
    return EPHY_TB_ITEM_GET_CLASS (i)->is_unique (i);
}

EphyTbItem *
ephy_tb_item_clone (EphyTbItem *i)
{
    return EPHY_TB_ITEM_GET_CLASS (i)->clone (i);
}

void
ephy_tb_item_add_to_bonobo_tb (EphyTbItem *i, BonoboUIComponent *ui,
                  const char *container_path, guint index)
{
    EPHY_TB_ITEM_GET_CLASS (i)->add_to_bonobo_tb (i, ui, container_path, index);
}

void
ephy_tb_item_set_id (EphyTbItem *i, const gchar *id)
{
    g_return_if_fail (EPHY_IS_TB_ITEM (i));

    g_free (i->id);
    i->id = g_strdup (id);
}

void
ephy_tb_item_parse_properties (EphyTbItem *i, const gchar *props)
{
    EPHY_TB_ITEM_GET_CLASS (i)->parse_properties (i, props);
}