aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets/ephy-toolbars-group.h
blob: 8be71cb239fbea445b425c068844c0918e218997 (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
/*
 *  Copyright (C) 2003 Marco Pesenti Gritti
 *
 *  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.
 */

#ifndef EPHY_TOOLBARS_GROUP_H
#define EPHY_TOOLBARS_GROUP_H

#include <gtk/gtkwidget.h>
#include <libxml/parser.h>

G_BEGIN_DECLS

typedef struct EphyToolbarsGroupClass EphyToolbarsGroupClass;

#define EPHY_TOOLBARS_GROUP_TYPE             (ephy_toolbars_group_get_type ())
#define EPHY_TOOLBARS_GROUP(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), EPHY_TOOLBARS_GROUP_TYPE, EphyToolbarsGroup))
#define EPHY_TOOLBARS_GROUP_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), EPHY_TOOLBARS_GROUP_TYPE, EphyToolbarsGroupClass))
#define IS_EPHY_TOOLBARS_GROUP(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EPHY_TOOLBARS_GROUP_TYPE))
#define IS_EPHY_TOOLBARS_GROUP_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), EPHY_TOOLBARS_GROUP_TYPE))
#define EPHY_TOOLBARS_GROUP_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), EPHY_TOOLBARS_GROUP_TYPE, EphyToolbarsGroupClass))


typedef struct EphyToolbarsGroup EphyToolbarsGroup;
typedef struct EphyToolbarsGroupPrivate EphyToolbarsGroupPrivate;

typedef struct
{
    char *id;
} EphyToolbarsToolbar;

typedef struct
{
    char *id;
    gboolean separator;
    char *action;
    EphyToolbarsToolbar *parent;
} EphyToolbarsItem;

typedef void (* EphyToolbarsGroupForeachToolbarFunc)     (EphyToolbarsToolbar *toolbar,
                              gpointer data);
typedef void (* EphyToolbarsGroupForeachItemFunc)        (EphyToolbarsItem *item,
                              gpointer data);

struct EphyToolbarsGroup
{
        GObject parent_object;
        EphyToolbarsGroupPrivate *priv;
};

struct EphyToolbarsGroupClass
{
        GObjectClass parent_class;

    void (* changed) (EphyToolbarsGroup *group);
};

GType           ephy_toolbars_group_get_type        (void);

EphyToolbarsGroup      *ephy_toolbars_group_new         (void);

void            ephy_toolbars_group_set_source      (EphyToolbarsGroup *group,
                                 const char *defaults,
                                 const char *user);

EphyToolbarsToolbar    *ephy_toolbars_group_add_toolbar     (EphyToolbarsGroup *t);

void            ephy_toolbars_group_add_item        (EphyToolbarsGroup *t,
                                 EphyToolbarsToolbar *parent,
                                 EphyToolbarsItem *sibling,
                                 const char *name);

void            ephy_toolbars_group_remove_toolbar  (EphyToolbarsGroup *t,
                                 EphyToolbarsToolbar *toolbar);

void            ephy_toolbars_group_remove_item     (EphyToolbarsGroup *t,
                                 EphyToolbarsItem *item);

void            ephy_toolbars_group_foreach_available   (EphyToolbarsGroup *group,
                                 EphyToolbarsGroupForeachItemFunc func,
                                 gpointer data);

void            ephy_toolbars_group_foreach_toolbar (EphyToolbarsGroup *group,
                                 EphyToolbarsGroupForeachToolbarFunc func,
                                 gpointer data);

void            ephy_toolbars_group_foreach_item    (EphyToolbarsGroup *group,
                                 EphyToolbarsGroupForeachItemFunc func,
                                 gpointer data);

char               *ephy_toolbars_group_to_string       (EphyToolbarsGroup *t);

char               *ephy_toolbars_group_get_path        (EphyToolbarsGroup *t,
                                 gpointer item);

G_END_DECLS

#endif