2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2003-07-02 17:47:26 -07:00
|
|
|
* Copyright (C) 1995-2003 Spencer Kimball and Peter Mattis
|
1997-11-24 14:05:25 -08:00
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1997-11-24 14:05:25 -08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1997-11-24 14:05:25 -08:00
|
|
|
* (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
|
2018-07-11 14:47:19 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1997-11-24 14:05:25 -08:00
|
|
|
*/
|
1999-04-26 21:57:59 -07:00
|
|
|
|
2007-01-09 02:52:47 -08:00
|
|
|
/* NOTE: This file is auto-generated by pdbgen.pl. */
|
1999-04-26 21:57:59 -07:00
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2001-08-17 07:27:31 -07:00
|
|
|
#include <glib-object.h>
|
2001-07-04 12:31:35 -07:00
|
|
|
|
2001-08-17 07:27:31 -07:00
|
|
|
#include "pdb-types.h"
|
2001-07-04 12:31:35 -07:00
|
|
|
|
2006-04-26 02:13:47 -07:00
|
|
|
#include "gimppdb.h"
|
1997-11-24 14:05:25 -08:00
|
|
|
|
2008-04-04 04:15:55 -07:00
|
|
|
#include "internal-procs.h"
|
1999-04-26 21:57:59 -07:00
|
|
|
|
2004-10-26 10:50:52 -07:00
|
|
|
|
2018-07-16 23:19:58 -07:00
|
|
|
/* 842 procedures registered total */
|
1999-03-27 22:55:29 -08:00
|
|
|
|
1997-11-24 14:05:25 -08:00
|
|
|
void
|
2006-04-26 02:13:47 -07:00
|
|
|
internal_procs_init (GimpPDB *pdb)
|
1997-11-24 14:05:25 -08:00
|
|
|
{
|
2006-04-26 02:13:47 -07:00
|
|
|
g_return_if_fail (GIMP_IS_PDB (pdb));
|
2004-03-26 08:38:44 -08:00
|
|
|
|
2006-04-26 02:13:47 -07:00
|
|
|
register_brush_procs (pdb);
|
|
|
|
|
register_brush_select_procs (pdb);
|
|
|
|
|
register_brushes_procs (pdb);
|
|
|
|
|
register_buffer_procs (pdb);
|
|
|
|
|
register_channel_procs (pdb);
|
|
|
|
|
register_color_procs (pdb);
|
|
|
|
|
register_context_procs (pdb);
|
pdb: add debug group; add debug-timer-{start,end} procs
Add a debug procedure group, living in 'debug.pdb', which would host
useful debug helper functions. Functions in this group are not part
of the stable API, and may be changed at any point.
All procedures added to 'debug.pdb' should have a 'debug_' prefix,
and use the new std_pdb_debug() macro, which adds the proper "here be
dragons" warning to their description.
Add two debug procedures: gimp-debug-timer-start() and
gimp-debug-timer-end(), which measure elapsed time, a la
GIMP_TIMER_{START,END}, and can be used to profile script-fu
commands.
2017-04-06 08:00:20 -07:00
|
|
|
register_debug_procs (pdb);
|
2006-04-26 02:13:47 -07:00
|
|
|
register_display_procs (pdb);
|
|
|
|
|
register_drawable_procs (pdb);
|
2014-01-12 13:11:15 -08:00
|
|
|
register_drawable_color_procs (pdb);
|
2018-04-15 05:57:25 -07:00
|
|
|
register_drawable_edit_procs (pdb);
|
2006-04-26 02:13:47 -07:00
|
|
|
register_drawable_transform_procs (pdb);
|
2011-10-31 14:22:19 -07:00
|
|
|
register_dynamics_procs (pdb);
|
2006-04-26 02:13:47 -07:00
|
|
|
register_edit_procs (pdb);
|
|
|
|
|
register_fileops_procs (pdb);
|
|
|
|
|
register_floating_sel_procs (pdb);
|
|
|
|
|
register_font_select_procs (pdb);
|
|
|
|
|
register_fonts_procs (pdb);
|
2011-03-08 04:58:56 -08:00
|
|
|
register_gimp_procs (pdb);
|
2006-04-26 02:13:47 -07:00
|
|
|
register_gimprc_procs (pdb);
|
|
|
|
|
register_gradient_procs (pdb);
|
|
|
|
|
register_gradient_select_procs (pdb);
|
|
|
|
|
register_gradients_procs (pdb);
|
|
|
|
|
register_help_procs (pdb);
|
|
|
|
|
register_image_procs (pdb);
|
2015-06-05 03:51:46 -07:00
|
|
|
register_image_color_profile_procs (pdb);
|
2015-05-30 06:09:57 -07:00
|
|
|
register_image_convert_procs (pdb);
|
2015-05-30 06:19:11 -07:00
|
|
|
register_image_grid_procs (pdb);
|
2015-05-30 06:27:16 -07:00
|
|
|
register_image_guides_procs (pdb);
|
2016-01-04 12:13:48 -08:00
|
|
|
register_image_sample_points_procs (pdb);
|
2010-10-30 13:06:20 -07:00
|
|
|
register_image_select_procs (pdb);
|
2015-05-30 14:55:58 -07:00
|
|
|
register_image_transform_procs (pdb);
|
2015-05-30 06:00:36 -07:00
|
|
|
register_image_undo_procs (pdb);
|
2010-07-09 00:34:44 -07:00
|
|
|
register_item_procs (pdb);
|
2010-09-07 17:48:37 -07:00
|
|
|
register_item_transform_procs (pdb);
|
2006-04-26 02:13:47 -07:00
|
|
|
register_layer_procs (pdb);
|
|
|
|
|
register_message_procs (pdb);
|
|
|
|
|
register_paint_tools_procs (pdb);
|
|
|
|
|
register_palette_procs (pdb);
|
|
|
|
|
register_palette_select_procs (pdb);
|
|
|
|
|
register_palettes_procs (pdb);
|
|
|
|
|
register_paths_procs (pdb);
|
|
|
|
|
register_pattern_procs (pdb);
|
|
|
|
|
register_pattern_select_procs (pdb);
|
|
|
|
|
register_patterns_procs (pdb);
|
|
|
|
|
register_plug_in_procs (pdb);
|
2012-03-27 12:06:13 -07:00
|
|
|
register_plug_in_compat_procs (pdb);
|
2006-04-26 02:13:47 -07:00
|
|
|
register_procedural_db_procs (pdb);
|
|
|
|
|
register_progress_procs (pdb);
|
|
|
|
|
register_selection_procs (pdb);
|
|
|
|
|
register_selection_tools_procs (pdb);
|
2008-04-02 13:53:51 -07:00
|
|
|
register_text_layer_procs (pdb);
|
2006-04-26 02:13:47 -07:00
|
|
|
register_text_tool_procs (pdb);
|
|
|
|
|
register_transform_tools_procs (pdb);
|
|
|
|
|
register_unit_procs (pdb);
|
|
|
|
|
register_vectors_procs (pdb);
|
1997-11-24 14:05:25 -08:00
|
|
|
}
|