diff options
author | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-02-11 06:13:02 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-02-11 06:13:02 +0800 |
commit | c4464cadae6923fc42bfa205e5c701cf5eb0277d (patch) | |
tree | d83db99863e043b72e587c4a4af54be6267cb1a1 /lib/widgets/ephy-toolbars-group.h | |
parent | 8dbf2a4cd47e215ffbe9a673920622181db920b3 (diff) | |
download | gsoc2013-epiphany-c4464cadae6923fc42bfa205e5c701cf5eb0277d.tar gsoc2013-epiphany-c4464cadae6923fc42bfa205e5c701cf5eb0277d.tar.gz gsoc2013-epiphany-c4464cadae6923fc42bfa205e5c701cf5eb0277d.tar.bz2 gsoc2013-epiphany-c4464cadae6923fc42bfa205e5c701cf5eb0277d.tar.lz gsoc2013-epiphany-c4464cadae6923fc42bfa205e5c701cf5eb0277d.tar.xz gsoc2013-epiphany-c4464cadae6923fc42bfa205e5c701cf5eb0277d.tar.zst gsoc2013-epiphany-c4464cadae6923fc42bfa205e5c701cf5eb0277d.zip |
*** empty log message ***
Diffstat (limited to 'lib/widgets/ephy-toolbars-group.h')
-rwxr-xr-x | lib/widgets/ephy-toolbars-group.h | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/lib/widgets/ephy-toolbars-group.h b/lib/widgets/ephy-toolbars-group.h new file mode 100755 index 000000000..e997efbf0 --- /dev/null +++ b/lib/widgets/ephy-toolbars-group.h @@ -0,0 +1,96 @@ +/* + * 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 +{ + GtkWidget *widget; +} EphyToolbarsToolbar; + +typedef struct +{ + gboolean separator; + char *action; + GtkWidget *widget; +} EphyToolbarsItem; + +typedef void (*EphyToolbarsGroupForeachToolbarFunc) (EphyToolbarsToolbar *toolbar); +typedef void (*EphyToolbarsGroupForeachItemFunc) (EphyToolbarsItem *item); + +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 *filename); + +EphyToolbarsToolbar *ephy_toolbars_group_add_toolbar (EphyToolbarsGroup *t); + +void ephy_toolbars_group_add_item (EphyToolbarsGroup *t, + EphyToolbarsToolbar *parent, + EphyToolbarsItem *sibling, + const char *type, + const char *name); + +void ephy_toolbars_group_foreach_available (EphyToolbarsGroup *group, + EphyToolbarsGroupForeachToolbarFunc func); + +void ephy_toolbars_group_foreach_toolbar (EphyToolbarsGroup *group, + EphyToolbarsGroupForeachToolbarFunc func); + +void ephy_toolbars_group_foreach_item (EphyToolbarsGroup *group, + EphyToolbarsGroupForeachItemFunc func); + +char *ephy_toolbars_group_to_string (EphyToolbarsGroup *t); + +G_END_DECLS + +#endif |