2003-11-23 23:35:27 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
2001-10-19 01:27:36 +08:00
|
|
|
*
|
2002-10-21 22:15:02 +08:00
|
|
|
* gimpmodule.h
|
2001-10-19 01:27:36 +08:00
|
|
|
* (C) 1999 Austin Donnelly <austin@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2003-11-23 23:35:27 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2001-10-19 01:27:36 +08:00
|
|
|
*
|
2003-11-23 23:35:27 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2001-10-19 01:27:36 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2003-11-23 23:35:27 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-10-19 01:27:36 +08:00
|
|
|
*
|
2003-11-23 23:35:27 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2001-10-19 01:27:36 +08:00
|
|
|
*/
|
|
|
|
|
2002-10-21 22:15:02 +08:00
|
|
|
#ifndef __GIMP_MODULE_H__
|
|
|
|
#define __GIMP_MODULE_H__
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2020-05-21 22:02:55 +08:00
|
|
|
#include <gio/gio.h>
|
2002-10-21 22:15:02 +08:00
|
|
|
#include <gmodule.h>
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#define __GIMP_MODULE_H_INSIDE__
|
|
|
|
|
2002-10-21 22:15:02 +08:00
|
|
|
#include <libgimpmodule/gimpmoduletypes.h>
|
|
|
|
|
2002-10-23 22:55:07 +08:00
|
|
|
#include <libgimpmodule/gimpmoduledb.h>
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#undef __GIMP_MODULE_H_INSIDE__
|
|
|
|
|
2002-10-21 22:15:02 +08:00
|
|
|
G_BEGIN_DECLS
|
2001-10-19 01:27:36 +08:00
|
|
|
|
|
|
|
|
2010-06-30 04:35:34 +08:00
|
|
|
/**
|
|
|
|
* GIMP_MODULE_ABI_VERSION:
|
|
|
|
*
|
|
|
|
* The version of the module system's ABI. Modules put this value into
|
|
|
|
* #GimpModuleInfo's @abi_version field so the code loading the modules
|
|
|
|
* can check if it was compiled against the same module ABI the modules
|
|
|
|
* are compiled against.
|
|
|
|
*
|
|
|
|
* GIMP_MODULE_ABI_VERSION is incremented each time one of the
|
|
|
|
* following changes:
|
2003-01-03 01:44:28 +08:00
|
|
|
*
|
|
|
|
* - the libgimpmodule implementation (if the change affects modules).
|
2010-06-30 04:35:34 +08:00
|
|
|
*
|
|
|
|
* - one of the classes implemented by modules (currently #GimpColorDisplay,
|
|
|
|
* #GimpColorSelector and #GimpController).
|
|
|
|
**/
|
2018-07-16 06:24:39 +08:00
|
|
|
#define GIMP_MODULE_ABI_VERSION 0x0005
|
2003-01-03 01:44:28 +08:00
|
|
|
|
|
|
|
|
2010-06-30 04:35:34 +08:00
|
|
|
/**
|
|
|
|
* GimpModuleState:
|
|
|
|
* @GIMP_MODULE_STATE_ERROR: Missing gimp_module_register() function
|
|
|
|
* or other error.
|
|
|
|
* @GIMP_MODULE_STATE_LOADED: An instance of a type implemented by
|
|
|
|
* this module is allocated.
|
|
|
|
* @GIMP_MODULE_STATE_LOAD_FAILED: gimp_module_register() returned %FALSE.
|
|
|
|
* @GIMP_MODULE_STATE_NOT_LOADED: There are no instances allocated of
|
|
|
|
* types implemented by this module.
|
|
|
|
*
|
|
|
|
* The possible states a #GimpModule can be in.
|
|
|
|
**/
|
2001-10-19 01:27:36 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
2010-06-30 04:35:34 +08:00
|
|
|
GIMP_MODULE_STATE_ERROR,
|
|
|
|
GIMP_MODULE_STATE_LOADED,
|
|
|
|
GIMP_MODULE_STATE_LOAD_FAILED,
|
|
|
|
GIMP_MODULE_STATE_NOT_LOADED
|
2001-10-19 01:27:36 +08:00
|
|
|
} GimpModuleState;
|
|
|
|
|
|
|
|
|
2008-11-12 19:19:31 +08:00
|
|
|
#define GIMP_MODULE_ERROR (gimp_module_error_quark ())
|
|
|
|
|
|
|
|
GQuark gimp_module_error_quark (void) G_GNUC_CONST;
|
|
|
|
|
2019-07-24 07:18:30 +08:00
|
|
|
/**
|
|
|
|
* GimpModuleError:
|
|
|
|
* @GIMP_MODULE_FAILED: Generic error condition
|
|
|
|
*
|
|
|
|
* Types of errors returned by modules
|
|
|
|
**/
|
2008-11-12 19:19:31 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
2019-07-24 07:18:30 +08:00
|
|
|
GIMP_MODULE_FAILED
|
2008-11-12 19:19:31 +08:00
|
|
|
} GimpModuleError;
|
|
|
|
|
|
|
|
|
2010-06-30 04:35:34 +08:00
|
|
|
/**
|
|
|
|
* GimpModuleInfo:
|
|
|
|
* @abi_version: The #GIMP_MODULE_ABI_VERSION the module was compiled against.
|
|
|
|
* @purpose: The module's general purpose.
|
|
|
|
* @author: The module's author.
|
|
|
|
* @version: The module's version.
|
|
|
|
* @copyright: The module's copyright.
|
|
|
|
* @date: The module's release date.
|
|
|
|
*
|
|
|
|
* This structure contains information about a loadable module.
|
|
|
|
**/
|
2002-10-21 22:15:02 +08:00
|
|
|
struct _GimpModuleInfo
|
|
|
|
{
|
2003-01-03 01:44:28 +08:00
|
|
|
guint32 abi_version;
|
|
|
|
gchar *purpose;
|
|
|
|
gchar *author;
|
|
|
|
gchar *version;
|
|
|
|
gchar *copyright;
|
|
|
|
gchar *date;
|
2002-10-21 22:15:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-06-30 04:35:34 +08:00
|
|
|
/**
|
|
|
|
* GimpModuleQueryFunc:
|
2021-12-29 18:21:19 +08:00
|
|
|
* @module: The module responsible for this loadable module.
|
2010-06-30 04:35:34 +08:00
|
|
|
*
|
|
|
|
* The signature of the query function a loadable GIMP module must
|
2021-12-29 18:21:19 +08:00
|
|
|
* implement. In the module, the function must be called [func@Module.query].
|
2010-06-30 04:35:34 +08:00
|
|
|
*
|
2021-12-29 18:21:19 +08:00
|
|
|
* [class@Module] will copy the returned [struct@ModuleInfo], so the
|
2010-06-30 04:35:34 +08:00
|
|
|
* module doesn't need to keep these values around (however in most
|
|
|
|
* cases the module will just return a pointer to a constant
|
|
|
|
* structure).
|
2021-12-29 18:21:19 +08:00
|
|
|
*
|
|
|
|
* Returns: The info struct describing the module.
|
2010-06-30 04:35:34 +08:00
|
|
|
**/
|
2002-10-21 22:15:02 +08:00
|
|
|
typedef const GimpModuleInfo * (* GimpModuleQueryFunc) (GTypeModule *module);
|
2010-06-30 04:35:34 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GimpModuleRegisterFunc:
|
2021-12-29 18:21:19 +08:00
|
|
|
* @module: The module responsible for this loadable module.
|
2010-06-30 04:35:34 +08:00
|
|
|
*
|
|
|
|
* The signature of the register function a loadable GIMP module must
|
|
|
|
* implement. In the module, the function must be called
|
2021-12-29 18:21:19 +08:00
|
|
|
* [func@Module.register].
|
2010-06-30 04:35:34 +08:00
|
|
|
*
|
|
|
|
* When this function is called, the module should register all the types
|
|
|
|
* it implements with the passed @module.
|
2021-12-29 18:21:19 +08:00
|
|
|
*
|
|
|
|
* Returns: Whether the registration was succesfull
|
2010-06-30 04:35:34 +08:00
|
|
|
**/
|
2002-10-21 22:15:02 +08:00
|
|
|
typedef gboolean (* GimpModuleRegisterFunc) (GTypeModule *module);
|
|
|
|
|
2010-06-30 04:35:34 +08:00
|
|
|
|
2006-11-25 06:20:00 +08:00
|
|
|
/* GimpModules have to implement these */
|
|
|
|
G_MODULE_EXPORT const GimpModuleInfo * gimp_module_query (GTypeModule *module);
|
|
|
|
G_MODULE_EXPORT gboolean gimp_module_register (GTypeModule *module);
|
|
|
|
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2024-08-03 10:48:07 +08:00
|
|
|
#define GIMP_TYPE_MODULE (gimp_module_get_type ())
|
|
|
|
G_DECLARE_DERIVABLE_TYPE (GimpModule, gimp_module, GIMP, MODULE, GTypeModule)
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2002-10-21 22:15:02 +08:00
|
|
|
struct _GimpModuleClass
|
2001-10-19 01:27:36 +08:00
|
|
|
{
|
2002-10-20 18:14:17 +08:00
|
|
|
GTypeModuleClass parent_class;
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2002-10-21 22:15:02 +08:00
|
|
|
void (* modified) (GimpModule *module);
|
2004-01-29 08:21:33 +08:00
|
|
|
|
|
|
|
/* Padding for future expansion */
|
|
|
|
void (* _gimp_reserved1) (void);
|
|
|
|
void (* _gimp_reserved2) (void);
|
|
|
|
void (* _gimp_reserved3) (void);
|
|
|
|
void (* _gimp_reserved4) (void);
|
2018-05-03 18:51:36 +08:00
|
|
|
void (* _gimp_reserved5) (void);
|
|
|
|
void (* _gimp_reserved6) (void);
|
|
|
|
void (* _gimp_reserved7) (void);
|
|
|
|
void (* _gimp_reserved8) (void);
|
2001-10-19 01:27:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-09-13 19:11:23 +08:00
|
|
|
GimpModule * gimp_module_new (GFile *file,
|
|
|
|
gboolean auto_load,
|
|
|
|
gboolean verbose);
|
2002-10-21 22:15:02 +08:00
|
|
|
|
2019-09-13 19:11:23 +08:00
|
|
|
GFile * gimp_module_get_file (GimpModule *module);
|
2002-10-21 22:15:02 +08:00
|
|
|
|
2019-09-13 19:11:23 +08:00
|
|
|
void gimp_module_set_auto_load (GimpModule *module,
|
|
|
|
gboolean auto_load);
|
|
|
|
gboolean gimp_module_get_auto_load (GimpModule *module);
|
2002-10-21 22:15:02 +08:00
|
|
|
|
2019-09-13 19:11:23 +08:00
|
|
|
gboolean gimp_module_is_on_disk (GimpModule *module);
|
|
|
|
gboolean gimp_module_is_loaded (GimpModule *module);
|
2004-07-05 00:29:28 +08:00
|
|
|
|
2019-09-13 19:11:23 +08:00
|
|
|
const GimpModuleInfo * gimp_module_get_info (GimpModule *module);
|
|
|
|
GimpModuleState gimp_module_get_state (GimpModule *module);
|
|
|
|
const gchar * gimp_module_get_last_error (GimpModule *module);
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2019-09-13 19:11:23 +08:00
|
|
|
gboolean gimp_module_query_module (GimpModule *module);
|
2001-10-19 01:27:36 +08:00
|
|
|
|
|
|
|
|
2002-10-21 22:15:02 +08:00
|
|
|
G_END_DECLS
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2006-11-09 21:07:11 +08:00
|
|
|
#endif /* __GIMP_MODULE_H__ */
|