diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-10-17 21:39:12 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-10-17 21:39:12 +0800 |
commit | 611e5407571e19353a98292d953e90e63073ba61 (patch) | |
tree | cc306bde897a303c8f0974c6b9dd2ae0311b3947 /lib/ephy-shlib-loader.h | |
parent | c21eba3c01185673b2ab4e7ceee995f6f52b6f25 (diff) | |
download | gsoc2013-epiphany-611e5407571e19353a98292d953e90e63073ba61.tar gsoc2013-epiphany-611e5407571e19353a98292d953e90e63073ba61.tar.gz gsoc2013-epiphany-611e5407571e19353a98292d953e90e63073ba61.tar.bz2 gsoc2013-epiphany-611e5407571e19353a98292d953e90e63073ba61.tar.lz gsoc2013-epiphany-611e5407571e19353a98292d953e90e63073ba61.tar.xz gsoc2013-epiphany-611e5407571e19353a98292d953e90e63073ba61.tar.zst gsoc2013-epiphany-611e5407571e19353a98292d953e90e63073ba61.zip |
R lib/ephy-module-loader.c: R lib/ephy-module-loader.h: A
2004-10-17 Christian Persch <chpe@cvs.gnome.org>
* lib/Makefile.am:
R lib/ephy-module-loader.c:
R lib/ephy-module-loader.h:
A lib/ephy-module.c: (ephy_module_get_type), (ephy_module_load),
(ephy_module_unload), (ephy_module_get_path),
(ephy_module_new_object), (ephy_module_init),
(ephy_module_finalize), (ephy_module_class_init),
(ephy_module_new):
A lib/ephy-module.h:
s/EphyModuleLoader/EphyModule/g since "loader" now means something
different.
A lib/ephy-loader.c: (ephy_loader_get_type), (ephy_loader_type),
(ephy_loader_get_object), (ephy_loader_release_object):
A lib/ephy-loader.h:
Generic object loader.
A lib/ephy-shlib-loader.c: (ephy_shlib_loader_get_type),
(free_loader_data), (ephy_shlib_loader_init),
(ephy_shlib_loader_finalize), (find_library), (find_object),
(idle_unref), (impl_get_object), (impl_release_object),
(ephy_shlib_loader_iface_init), (ephy_shlib_loader_class_init):
A lib/ephy-shlib-loader.h:
A .so loader.
* src/Makefile.am:
* src/ephy-extensions-manager.c: (ephy_extensions_manager_load),
(ephy_extensions_manager_unload),
(ephy_extensions_manager_register),
(ephy_extensions_manager_get_extensions), (free_extension_info),
(free_loader_info), (find_extension_info),
(ephy_extensions_manager_load_file), (find_loader),
(get_loader_for_type), (attach_window), (load_extension),
(detach_window), (unload_extension),
(ephy_extensions_manager_load_dir), (active_extensions_notifier),
(ephy_extensions_manager_init), (ephy_extensions_manager_finalize),
(impl_attach_window), (impl_detach_window),
(ephy_extensions_manager_class_init):
* src/ephy-extensions-manager.h:
Read extension descriptions from .xml, load them with the specified
loader (for now, just only .so is supported).
* src/ephy-shell.c: (ephy_shell_finalize),
(ephy_shell_get_session), (ephy_shell_get_extensions_manager):
Minor API change in extensions manager.
* data/epiphany.schemas.in:
Add extensions-manager-ui as default active extension.
2004-10-10 Marco Pesenti Gritti <marco@gnome.org>
Diffstat (limited to 'lib/ephy-shlib-loader.h')
-rw-r--r-- | lib/ephy-shlib-loader.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/lib/ephy-shlib-loader.h b/lib/ephy-shlib-loader.h new file mode 100644 index 000000000..6f3d04977 --- /dev/null +++ b/lib/ephy-shlib-loader.h @@ -0,0 +1,57 @@ +/* + * Copyright (C) 2003 Marco Pesenti Gritti + * Copyright (C) 2003, 2004 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 EPHY_SHLIB_LOADER_H +#define EPHY_SHLIB_LOADER_H + +#include <glib-object.h> + +G_BEGIN_DECLS + +#define EPHY_TYPE_SHLIB_LOADER (ephy_shlib_loader_get_type ()) +#define EPHY_SHLIB_LOADER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_SHLIB_LOADER, EphyShlibLoader)) +#define EPHY_SHLIB_LOADER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_SHLIB_LOADER, EphyShlibLoaderClass)) +#define EPHY_IS_SHLIB_LOADER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_SHLIB_LOADER)) +#define EPHY_IS_SHLIB_LOADER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_SHLIB_LOADER)) +#define EPHY_SHLIB_LOADER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_SHLIB_LOADER, EphyShlibLoaderClass)) + +typedef struct _EphyShlibLoader EphyShlibLoader; +typedef struct _EphyShlibLoaderPrivate EphyShlibLoaderPrivate; +typedef struct _EphyShlibLoaderClass EphyShlibLoaderClass; + +struct _EphyShlibLoaderClass +{ + GObjectClass parent_class; +}; + +struct _EphyShlibLoader +{ + GObject parent_instance; + + /*< private >*/ + EphyShlibLoaderPrivate *priv; +}; + +GType ephy_shlib_loader_get_type (void); + +G_END_DECLS + +#endif |