aboutsummaryrefslogtreecommitdiffstats
path: root/lib/egg/egg-editable-toolbar.h
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2011-12-15 01:01:14 +0800
committerXan Lopez <xan@igalia.com>2011-12-15 01:01:14 +0800
commit3295288a7292a74d14c6a5a20e41e2afe010f34e (patch)
treeb508743f41c1fe93f8997b295d1fa21df2ab3118 /lib/egg/egg-editable-toolbar.h
parent2db47fb32732e9613e5338d8c165ed5f771e819a (diff)
downloadgsoc2013-epiphany-3295288a7292a74d14c6a5a20e41e2afe010f34e.tar
gsoc2013-epiphany-3295288a7292a74d14c6a5a20e41e2afe010f34e.tar.gz
gsoc2013-epiphany-3295288a7292a74d14c6a5a20e41e2afe010f34e.tar.bz2
gsoc2013-epiphany-3295288a7292a74d14c6a5a20e41e2afe010f34e.tar.lz
gsoc2013-epiphany-3295288a7292a74d14c6a5a20e41e2afe010f34e.tar.xz
gsoc2013-epiphany-3295288a7292a74d14c6a5a20e41e2afe010f34e.tar.zst
gsoc2013-epiphany-3295288a7292a74d14c6a5a20e41e2afe010f34e.zip
Remove last traces of the EggToolbar code
Diffstat (limited to 'lib/egg/egg-editable-toolbar.h')
-rw-r--r--lib/egg/egg-editable-toolbar.h95
1 files changed, 0 insertions, 95 deletions
diff --git a/lib/egg/egg-editable-toolbar.h b/lib/egg/egg-editable-toolbar.h
deleted file mode 100644
index 9f975b805..000000000
--- a/lib/egg/egg-editable-toolbar.h
+++ /dev/null
@@ -1,95 +0,0 @@
-/*
- * Copyright (C) 2003, 2004 Marco Pesenti Gritti
- * Copyright (C) 2003, 2004, 2005 Christian Persch
- *
- * 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.
- *
- * $Id$
- */
-
-#ifndef EGG_EDITABLE_TOOLBAR_H
-#define EGG_EDITABLE_TOOLBAR_H
-
-#include "egg-toolbars-model.h"
-
-#include <gtk/gtk.h>
-
-G_BEGIN_DECLS
-
-#define EGG_TYPE_EDITABLE_TOOLBAR (egg_editable_toolbar_get_type ())
-#define EGG_EDITABLE_TOOLBAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EGG_TYPE_EDITABLE_TOOLBAR, EggEditableToolbar))
-#define EGG_EDITABLE_TOOLBAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EGG_TYPE_EDITABLE_TOOLBAR, EggEditableToolbarClass))
-#define EGG_IS_EDITABLE_TOOLBAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EGG_TYPE_EDITABLE_TOOLBAR))
-#define EGG_IS_EDITABLE_TOOLBAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EGG_TYPE_EDITABLE_TOOLBAR))
-#define EGG_EDITABLE_TOOLBAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EGG_TYPE_EDITABLE_TOOLBAR, EggEditableToolbarClass))
-
-typedef struct _EggEditableToolbar EggEditableToolbar;
-typedef struct _EggEditableToolbarPrivate EggEditableToolbarPrivate;
-typedef struct _EggEditableToolbarClass EggEditableToolbarClass;
-
-struct _EggEditableToolbar
-{
- GtkBox parent_object;
-
- /*< private >*/
- EggEditableToolbarPrivate *priv;
-};
-
-struct _EggEditableToolbarClass
-{
- GtkBoxClass parent_class;
-
- void (* action_request) (EggEditableToolbar *etoolbar,
- const char *action_name);
-};
-
-GType egg_editable_toolbar_get_type (void);
-GtkWidget *egg_editable_toolbar_new (GtkUIManager *manager,
- const char *visibility_path);
-GtkWidget *egg_editable_toolbar_new_with_model (GtkUIManager *manager,
- EggToolbarsModel *model,
- const char *visibility_path);
-void egg_editable_toolbar_set_model (EggEditableToolbar *etoolbar,
- EggToolbarsModel *model);
-EggToolbarsModel *egg_editable_toolbar_get_model (EggEditableToolbar *etoolbar);
-GtkUIManager *egg_editable_toolbar_get_manager (EggEditableToolbar *etoolbar);
-void egg_editable_toolbar_set_edit_mode (EggEditableToolbar *etoolbar,
- gboolean mode);
-gboolean egg_editable_toolbar_get_edit_mode (EggEditableToolbar *etoolbar);
-void egg_editable_toolbar_show (EggEditableToolbar *etoolbar,
- const char *name);
-void egg_editable_toolbar_hide (EggEditableToolbar *etoolbar,
- const char *name);
-void egg_editable_toolbar_set_fixed (EggEditableToolbar *etoolbar,
- GtkToolbar *fixed_toolbar);
-
-GtkWidget * egg_editable_toolbar_get_selected (EggEditableToolbar *etoolbar);
-void egg_editable_toolbar_set_selected (EggEditableToolbar *etoolbar,
- GtkWidget *widget);
-
-void egg_editable_toolbar_add_visibility (EggEditableToolbar *etoolbar,
- const char *path);
-
-void egg_editable_toolbar_set_primary_class (EggEditableToolbar *etoolbar,
- gboolean set,
- const gchar *path);
-
-/* Private Functions */
-
-GtkWidget *_egg_editable_toolbar_new_separator_image (void);
-
-G_END_DECLS
-
-#endif