2004-05-19 06:54:41 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpplugin.h
|
2019-07-31 06:12:36 +08:00
|
|
|
* Copyright (C) 2019 Michael Natterer <mitch@gimp.org>
|
2004-05-19 06:54:41 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2004-05-19 06:54:41 +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.
|
2004-05-19 06:54:41 +08:00
|
|
|
*
|
|
|
|
* This library 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
|
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/>.
|
2004-05-19 06:54:41 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-29 01:59:52 +08:00
|
|
|
#if !defined (__GIMP_H_INSIDE__) && !defined (GIMP_COMPILATION)
|
|
|
|
#error "Only <libgimp/gimp.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2004-05-19 06:54:41 +08:00
|
|
|
#ifndef __GIMP_PLUG_IN_H__
|
|
|
|
#define __GIMP_PLUG_IN_H__
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
|
|
|
|
2021-04-02 07:57:10 +08:00
|
|
|
#define GIMP_PLUG_IN_ERROR (gimp_plug_in_error_quark ())
|
|
|
|
|
2019-07-26 05:07:24 +08:00
|
|
|
#define GIMP_TYPE_PLUG_IN (gimp_plug_in_get_type ())
|
|
|
|
#define GIMP_PLUG_IN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_PLUG_IN, GimpPlugIn))
|
|
|
|
#define GIMP_PLUG_IN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_PLUG_IN, GimpPlugInClass))
|
|
|
|
#define GIMP_IS_PLUG_IN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_PLUG_IN))
|
|
|
|
#define GIMP_IS_PLUG_IN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_PLUG_IN))
|
|
|
|
#define GIMP_PLUG_IN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_PLUG_IN, GimpPlugInClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpPlugInClass GimpPlugInClass;
|
|
|
|
typedef struct _GimpPlugInPrivate GimpPlugInPrivate;
|
|
|
|
|
|
|
|
struct _GimpPlugIn
|
|
|
|
{
|
|
|
|
GObject parent_instance;
|
|
|
|
|
|
|
|
GimpPlugInPrivate *priv;
|
|
|
|
};
|
|
|
|
|
2019-09-10 02:53:39 +08:00
|
|
|
/**
|
|
|
|
* GimpPlugInClass:
|
2019-09-10 21:22:54 +08:00
|
|
|
*
|
2019-09-22 01:10:46 +08:00
|
|
|
* A class which every plug-in should subclass, while overriding
|
2021-11-29 02:36:07 +08:00
|
|
|
* [vfunc@PlugIn.query_procedures] and/or [vfunc@PlugIn.init_procedures], as
|
|
|
|
* well as [vfunc@PlugIn.create_procedure].
|
2019-09-10 02:53:39 +08:00
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
2019-07-26 05:07:24 +08:00
|
|
|
struct _GimpPlugInClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
|
2019-09-10 21:22:54 +08:00
|
|
|
/**
|
|
|
|
* GimpPlugInClass::query_procedures:
|
|
|
|
* @plug_in: a #GimpPlugIn.
|
|
|
|
*
|
2021-11-29 02:36:07 +08:00
|
|
|
* This method can be overridden by all plug-ins to return a newly allocated
|
|
|
|
* list of allocated strings naming the procedures registered by this
|
|
|
|
* plug-in. See documentation of [vfunc@PlugIn.init_procedures] for
|
|
|
|
* differences.
|
|
|
|
*
|
|
|
|
* Returns: (element-type gchar*) (transfer full): the names of the procedures registered by @plug_in.
|
|
|
|
*/
|
2019-08-03 01:10:13 +08:00
|
|
|
GList * (* query_procedures) (GimpPlugIn *plug_in);
|
2019-09-10 21:22:54 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GimpPlugInClass::init_procedures:
|
|
|
|
* @plug_in: a #GimpPlugIn.
|
|
|
|
*
|
2021-11-29 02:36:07 +08:00
|
|
|
* This method can be overridden by all plug-ins to return a newly allocated
|
|
|
|
* list of allocated strings naming procedures registered by this plug-in.
|
|
|
|
* It is different from [vfunc@PlugIn.query_procedures] in that init happens
|
|
|
|
* at every startup, whereas query happens only once in the life of a plug-in
|
|
|
|
* (right after installation or update). Hence [vfunc@PlugIn.init_procedures]
|
|
|
|
* typically returns procedures dependent to runtime conditions (such as the
|
|
|
|
* presence of a third-party tool), whereas [vfunc@PlugIn.query_procedures]
|
|
|
|
* would usually return procedures that are always available unconditionally.
|
|
|
|
*
|
|
|
|
* Most of the time, you only want to override
|
|
|
|
* [vfunc@PlugIn.query_procedures] and leave [vfunc@PlugIn.init_procedures]
|
|
|
|
* untouched.
|
|
|
|
*
|
|
|
|
* Returns: (element-type gchar*) (transfer full): the names of the procedures registered by @plug_in.
|
2019-09-11 02:00:42 +08:00
|
|
|
**/
|
2019-08-03 01:10:13 +08:00
|
|
|
GList * (* init_procedures) (GimpPlugIn *plug_in);
|
2019-08-02 23:04:24 +08:00
|
|
|
|
2019-09-10 21:22:54 +08:00
|
|
|
/**
|
|
|
|
* GimpPlugInClass::create_procedure:
|
|
|
|
* @plug_in: a #GimpPlugIn.
|
|
|
|
* @procedure_name: procedure name.
|
|
|
|
*
|
2021-11-29 02:36:07 +08:00
|
|
|
* This method must be overridden by all plug-ins and return a newly
|
|
|
|
* allocated #GimpProcedure named @name.
|
|
|
|
*
|
|
|
|
* This method will be called for every @name as returned by
|
|
|
|
* [vfunc@PlugIn.query_procedures] and [vfunc@PlugIn.init_procedures] so care
|
|
|
|
* must be taken to handle them all. Upon procedure registration,
|
|
|
|
* [vfunc@PlugIn.create_procedure] will be called in the order of the lists
|
|
|
|
* returned by [vfunc@PlugIn.query_procedures] and
|
|
|
|
* [vfunc@PlugIn.init_procedures]
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the procedure to be registered or executed by @plug_in.
|
|
|
|
*/
|
2019-07-26 08:05:11 +08:00
|
|
|
GimpProcedure * (* create_procedure) (GimpPlugIn *plug_in,
|
2019-08-08 04:05:12 +08:00
|
|
|
const gchar *procedure_name);
|
2019-07-26 05:07:24 +08:00
|
|
|
|
2019-09-10 21:22:54 +08:00
|
|
|
/**
|
|
|
|
* GimpPlugInClass::quit:
|
|
|
|
* @plug_in: a #GimpPlugIn.
|
2021-11-29 02:36:07 +08:00
|
|
|
*
|
|
|
|
* This method can be overridden by a plug-in which needs to perform some
|
|
|
|
* actions upon quitting.
|
|
|
|
*/
|
2019-08-02 18:05:28 +08:00
|
|
|
void (* quit) (GimpPlugIn *plug_in);
|
|
|
|
|
2019-07-26 05:07:24 +08:00
|
|
|
/* Padding for future expansion */
|
2019-12-28 02:56:21 +08:00
|
|
|
/*< private >*/
|
2019-07-26 05:07:24 +08:00
|
|
|
void (* _gimp_reserved1) (void);
|
|
|
|
void (* _gimp_reserved2) (void);
|
|
|
|
void (* _gimp_reserved3) (void);
|
|
|
|
void (* _gimp_reserved4) (void);
|
|
|
|
void (* _gimp_reserved5) (void);
|
|
|
|
void (* _gimp_reserved6) (void);
|
|
|
|
void (* _gimp_reserved7) (void);
|
|
|
|
void (* _gimp_reserved8) (void);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2021-04-02 07:57:10 +08:00
|
|
|
GQuark gimp_plug_in_error_quark (void);
|
|
|
|
|
2019-07-31 01:21:57 +08:00
|
|
|
GType gimp_plug_in_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
void gimp_plug_in_set_translation_domain (GimpPlugIn *plug_in,
|
|
|
|
const gchar *domain_name,
|
|
|
|
GFile *domain_path);
|
|
|
|
void gimp_plug_in_set_help_domain (GimpPlugIn *plug_in,
|
|
|
|
const gchar *domain_name,
|
|
|
|
GFile *domain_uri);
|
|
|
|
|
|
|
|
void gimp_plug_in_add_menu_branch (GimpPlugIn *plug_in,
|
|
|
|
const gchar *menu_path,
|
|
|
|
const gchar *menu_label);
|
|
|
|
|
2019-07-31 03:02:58 +08:00
|
|
|
void gimp_plug_in_add_temp_procedure (GimpPlugIn *plug_in,
|
2019-07-31 01:21:57 +08:00
|
|
|
GimpProcedure *procedure);
|
2019-07-31 03:02:58 +08:00
|
|
|
void gimp_plug_in_remove_temp_procedure (GimpPlugIn *plug_in,
|
2019-08-07 16:43:07 +08:00
|
|
|
const gchar *procedure_name);
|
2019-07-31 01:21:57 +08:00
|
|
|
|
2019-07-31 03:02:58 +08:00
|
|
|
GList * gimp_plug_in_get_temp_procedures (GimpPlugIn *plug_in);
|
|
|
|
GimpProcedure * gimp_plug_in_get_temp_procedure (GimpPlugIn *plug_in,
|
2019-08-07 16:43:07 +08:00
|
|
|
const gchar *procedure_name);
|
2019-07-26 05:07:24 +08:00
|
|
|
|
2019-08-02 17:06:48 +08:00
|
|
|
void gimp_plug_in_extension_enable (GimpPlugIn *plug_in);
|
|
|
|
void gimp_plug_in_extension_process (GimpPlugIn *plug_in,
|
|
|
|
guint timeout);
|
|
|
|
|
2019-08-07 17:01:53 +08:00
|
|
|
void gimp_plug_in_set_pdb_error_handler (GimpPlugIn *plug_in,
|
|
|
|
GimpPDBErrorHandler handler);
|
|
|
|
GimpPDBErrorHandler
|
|
|
|
gimp_plug_in_get_pdb_error_handler (GimpPlugIn *plug_in);
|
|
|
|
|
2021-11-27 15:57:30 +08:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC (GimpPlugIn, g_object_unref);
|
2019-07-26 05:07:24 +08:00
|
|
|
|
2004-05-19 06:54:41 +08:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GIMP_PLUG_IN_H__ */
|