From 0494d4c3c67403293c496d0ab6ce498b954a8a06 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 31 Mar 2013 09:58:52 -0400 Subject: Remove EUIManager. No longer needed. Use GtkUIManager directly. --- e-util/e-ui-manager.h | 78 --------------------------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 e-util/e-ui-manager.h (limited to 'e-util/e-ui-manager.h') diff --git a/e-util/e-ui-manager.h b/e-util/e-ui-manager.h deleted file mode 100644 index 65948d1678..0000000000 --- a/e-util/e-ui-manager.h +++ /dev/null @@ -1,78 +0,0 @@ -/* - * e-ui-manager.h - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) version 3. - * - * 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with the program; if not, see - * - */ - -#if !defined (__E_UTIL_H_INSIDE__) && !defined (LIBEUTIL_COMPILATION) -#error "Only should be included directly." -#endif - -#ifndef E_UI_MANAGER_H -#define E_UI_MANAGER_H - -#include - -/* Standard GObject macros */ -#define E_TYPE_UI_MANAGER \ - (e_ui_manager_get_type ()) -#define E_UI_MANAGER(obj) \ - (G_TYPE_CHECK_INSTANCE_CAST \ - ((obj), E_TYPE_UI_MANAGER, EUIManager)) -#define E_UI_MANAGER_CLASS(cls) \ - (G_TYPE_CHECK_CLASS_CAST \ - ((cls), E_TYPE_UI_MANAGER, EUIManagerClass)) -#define E_IS_UI_MANAGER(obj) \ - (G_TYPE_CHECK_INSTANCE_TYPE \ - ((obj), E_TYPE_UI_MANAGER)) -#define E_IS_UI_MANAGER_CLASS(cls) \ - (G_TYPE_CHECK_CLASS_TYPE \ - ((cls), E_TYPE_UI_MANAGER)) -#define E_UI_MANAGER_GET_CLASS(obj) \ - (G_TYPE_INSTANCE_GET_CLASS \ - ((obj), E_TYPE_UI_MANAGER, EUIManagerClass)) - -G_BEGIN_DECLS - -typedef struct _EUIManager EUIManager; -typedef struct _EUIManagerClass EUIManagerClass; -typedef struct _EUIManagerPrivate EUIManagerPrivate; - -struct _EUIManager { - GtkUIManager parent; - EUIManagerPrivate *priv; -}; - -struct _EUIManagerClass { - GtkUIManagerClass parent_class; - - gchar * (*filter_ui) (EUIManager *ui_manager, - const gchar *ui_definition); -}; - -GType e_ui_manager_get_type (void) G_GNUC_CONST; -GtkUIManager * e_ui_manager_new (void); -gboolean e_ui_manager_get_express_mode (EUIManager *ui_manager); -void e_ui_manager_set_express_mode (EUIManager *ui_manager, - gboolean express_mode); -guint e_ui_manager_add_ui_from_file (EUIManager *ui_manager, - const gchar *basename); -guint e_ui_manager_add_ui_from_string (EUIManager *ui_manager, - const gchar *ui_definition, - GError **error); - -G_END_DECLS - -#endif /* E_UI_MANAGER_H */ -- cgit v1.2.3