app/plug-in/Makefile.am new files containing plug_ins_query().
2005-04-05 Michael Natterer <mitch@gimp.org> * app/plug-in/Makefile.am * app/plug-in/plug-ins-query.[ch]: new files containing plug_ins_query(). * tools/pdbgen/pdb/plug_in.pdb (plugins_query): remove all code and use above function. * app/pdb/plug_in_cmds.c: regenerated.
This commit is contained in:
committed by
Michael Natterer
parent
b07c86050f
commit
60e3e02e8b
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
||||
2005-04-05 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/plug-in/Makefile.am
|
||||
* app/plug-in/plug-ins-query.[ch]: new files containing
|
||||
plug_ins_query().
|
||||
|
||||
* tools/pdbgen/pdb/plug_in.pdb (plugins_query): remove all code
|
||||
and use above function.
|
||||
|
||||
* app/pdb/plug_in_cmds.c: regenerated.
|
||||
|
||||
2005-04-05 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* tools/pdbgen/pdb/plug_in.pdb (plugins_query): strip the menu
|
||||
|
||||
@ -36,14 +36,9 @@
|
||||
#include "plug-in/plug-in-params.h"
|
||||
#include "plug-in/plug-in-proc-def.h"
|
||||
#include "plug-in/plug-in.h"
|
||||
#include "plug-in/plug-ins-query.h"
|
||||
#include "plug-in/plug-ins.h"
|
||||
|
||||
#ifdef HAVE_GLIBC_REGEX
|
||||
#include <regex.h>
|
||||
#else
|
||||
#include "regexrepl/regex.h"
|
||||
#endif
|
||||
|
||||
static ProcRecord plugins_query_proc;
|
||||
static ProcRecord plugin_domain_register_proc;
|
||||
static ProcRecord plugin_help_register_proc;
|
||||
@ -62,13 +57,6 @@ register_plug_in_procs (Gimp *gimp)
|
||||
procedural_db_register (gimp, &plugin_icon_register_proc);
|
||||
}
|
||||
|
||||
static int
|
||||
match_strings (regex_t *preg,
|
||||
gchar *a)
|
||||
{
|
||||
return regexec (preg, a, 0, NULL, 0);
|
||||
}
|
||||
|
||||
static Argument *
|
||||
plugins_query_invoker (Gimp *gimp,
|
||||
GimpContext *context,
|
||||
@ -84,94 +72,16 @@ plugins_query_invoker (Gimp *gimp,
|
||||
gchar **types_strs;
|
||||
gint32 *time_ints;
|
||||
gchar **realname_strs;
|
||||
GSList *list;
|
||||
GSList *matched = NULL;
|
||||
gint i = 0;
|
||||
regex_t sregex;
|
||||
|
||||
search_str = (gchar *) args[0].value.pdb_pointer;
|
||||
|
||||
if (search_str && strlen (search_str))
|
||||
regcomp (&sregex, search_str, REG_ICASE);
|
||||
else
|
||||
search_str = NULL;
|
||||
|
||||
/* count number of plugin entries, then allocate arrays of correct size
|
||||
* where we can store the strings.
|
||||
*/
|
||||
|
||||
for (list = gimp->plug_in_proc_defs; list; list = g_slist_next (list))
|
||||
{
|
||||
PlugInProcDef *proc_def = list->data;
|
||||
|
||||
if (proc_def->prog && proc_def->menu_paths)
|
||||
{
|
||||
gchar *name;
|
||||
|
||||
if (proc_def->menu_label)
|
||||
{
|
||||
name = proc_def->menu_label;
|
||||
}
|
||||
else
|
||||
{
|
||||
name = strrchr (proc_def->menu_paths->data, '/');
|
||||
|
||||
if (name)
|
||||
name = name + 1;
|
||||
else
|
||||
name = proc_def->menu_paths->data;
|
||||
}
|
||||
|
||||
name = gimp_strip_uline (name);
|
||||
|
||||
if (! search_str || ! match_strings (&sregex, name))
|
||||
{
|
||||
num_plugins++;
|
||||
matched = g_slist_prepend (matched, proc_def);
|
||||
}
|
||||
|
||||
g_free (name);
|
||||
}
|
||||
}
|
||||
|
||||
menu_strs = g_new (gchar *, num_plugins);
|
||||
accel_strs = g_new (gchar *, num_plugins);
|
||||
prog_strs = g_new (gchar *, num_plugins);
|
||||
types_strs = g_new (gchar *, num_plugins);
|
||||
realname_strs = g_new (gchar *, num_plugins);
|
||||
time_ints = g_new (gint , num_plugins);
|
||||
|
||||
matched = g_slist_reverse (matched);
|
||||
|
||||
for (list = matched; list; list = g_slist_next (list))
|
||||
{
|
||||
PlugInProcDef *proc_def = list->data;
|
||||
ProcRecord *proc_rec = &proc_def->db_info;
|
||||
gchar *name;
|
||||
|
||||
if (proc_def->menu_label)
|
||||
name = g_strdup_printf ("%s/%s",
|
||||
(gchar *) proc_def->menu_paths->data,
|
||||
proc_def->menu_label);
|
||||
else
|
||||
name = g_strdup (proc_def->menu_paths->data);
|
||||
|
||||
menu_strs[i] = gimp_strip_uline (name);
|
||||
accel_strs[i] = NULL;
|
||||
prog_strs[i] = g_strdup (proc_def->prog);
|
||||
types_strs[i] = g_strdup (proc_def->image_types);
|
||||
realname_strs[i] = g_strdup (proc_rec->name);
|
||||
time_ints[i] = proc_def->mtime;
|
||||
|
||||
g_free (name);
|
||||
|
||||
i++;
|
||||
}
|
||||
|
||||
g_slist_free (matched);
|
||||
|
||||
if (search_str)
|
||||
regfree (&sregex);
|
||||
num_plugins = plug_ins_query (gimp, search_str,
|
||||
&menu_strs,
|
||||
&accel_strs,
|
||||
&prog_strs,
|
||||
&types_strs,
|
||||
&realname_strs,
|
||||
&time_ints);
|
||||
|
||||
return_args = procedural_db_return_args (&plugins_query_proc, TRUE);
|
||||
|
||||
|
||||
@ -19,8 +19,6 @@ libappplug_in_a_SOURCES = \
|
||||
plug-in-types.h \
|
||||
plug-in.c \
|
||||
plug-in.h \
|
||||
plug-ins.c \
|
||||
plug-ins.h \
|
||||
plug-in-context.c \
|
||||
plug-in-context.h \
|
||||
plug-in-debug.c \
|
||||
@ -42,6 +40,10 @@ libappplug_in_a_SOURCES = \
|
||||
plug-in-run.c \
|
||||
plug-in-run.h \
|
||||
plug-in-shm.c \
|
||||
plug-in-shm.h
|
||||
plug-in-shm.h \
|
||||
plug-ins.c \
|
||||
plug-ins.h \
|
||||
plug-ins-query.c \
|
||||
plug-ins-query.h
|
||||
|
||||
EXTRA_DIST = makefile.msc
|
||||
|
||||
158
app/plug-in/gimppluginmanager-query.c
Normal file
158
app/plug-in/gimppluginmanager-query.c
Normal file
@ -0,0 +1,158 @@
|
||||
/* The GIMP -- an image manipulation program
|
||||
* Copyright (C) 1995-2003 Spencer Kimball and Peter Mattis
|
||||
*
|
||||
* plug-ins-query.c
|
||||
*
|
||||
* 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 of the License, 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.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#ifdef HAVE_GLIBC_REGEX
|
||||
#include <regex.h>
|
||||
#else
|
||||
#include "regexrepl/regex.h"
|
||||
#endif
|
||||
|
||||
#include <glib-object.h>
|
||||
|
||||
#include "libgimpbase/gimpbase.h"
|
||||
|
||||
#include "plug-in-types.h"
|
||||
|
||||
#include "core/gimp.h"
|
||||
|
||||
#include "pdb/procedural_db.h"
|
||||
|
||||
#include "plug-in-proc-def.h"
|
||||
|
||||
|
||||
static int
|
||||
match_strings (regex_t *preg,
|
||||
gchar *a)
|
||||
{
|
||||
return regexec (preg, a, 0, NULL, 0);
|
||||
}
|
||||
|
||||
gint
|
||||
plug_ins_query (Gimp *gimp,
|
||||
const gchar *search_str,
|
||||
gchar ***menu_strs,
|
||||
gchar ***accel_strs,
|
||||
gchar ***prog_strs,
|
||||
gchar ***types_strs,
|
||||
gchar ***realname_strs,
|
||||
gint32 **time_ints)
|
||||
{
|
||||
gint32 num_plugins = 0;
|
||||
GSList *list;
|
||||
GSList *matched = NULL;
|
||||
gint i = 0;
|
||||
regex_t sregex;
|
||||
|
||||
g_return_val_if_fail (GIMP_IS_GIMP (gimp), 0);
|
||||
g_return_val_if_fail (menu_strs != NULL, 0);
|
||||
g_return_val_if_fail (accel_strs != NULL, 0);
|
||||
g_return_val_if_fail (prog_strs != NULL, 0);
|
||||
g_return_val_if_fail (types_strs != NULL, 0);
|
||||
g_return_val_if_fail (realname_strs != NULL, 0);
|
||||
g_return_val_if_fail (time_ints != NULL, 0);
|
||||
|
||||
if (search_str && strlen (search_str))
|
||||
regcomp (&sregex, search_str, REG_ICASE);
|
||||
else
|
||||
search_str = NULL;
|
||||
|
||||
/* count number of plugin entries, then allocate arrays of correct size
|
||||
* where we can store the strings.
|
||||
*/
|
||||
|
||||
for (list = gimp->plug_in_proc_defs; list; list = g_slist_next (list))
|
||||
{
|
||||
PlugInProcDef *proc_def = list->data;
|
||||
|
||||
if (proc_def->prog && proc_def->menu_paths)
|
||||
{
|
||||
gchar *name;
|
||||
|
||||
if (proc_def->menu_label)
|
||||
{
|
||||
name = proc_def->menu_label;
|
||||
}
|
||||
else
|
||||
{
|
||||
name = strrchr (proc_def->menu_paths->data, '/');
|
||||
|
||||
if (name)
|
||||
name = name + 1;
|
||||
else
|
||||
name = proc_def->menu_paths->data;
|
||||
}
|
||||
|
||||
name = gimp_strip_uline (name);
|
||||
|
||||
if (! search_str || ! match_strings (&sregex, name))
|
||||
{
|
||||
num_plugins++;
|
||||
matched = g_slist_prepend (matched, proc_def);
|
||||
}
|
||||
|
||||
g_free (name);
|
||||
}
|
||||
}
|
||||
|
||||
*menu_strs = g_new (gchar *, num_plugins);
|
||||
*accel_strs = g_new (gchar *, num_plugins);
|
||||
*prog_strs = g_new (gchar *, num_plugins);
|
||||
*types_strs = g_new (gchar *, num_plugins);
|
||||
*realname_strs = g_new (gchar *, num_plugins);
|
||||
*time_ints = g_new (gint, num_plugins);
|
||||
|
||||
matched = g_slist_reverse (matched);
|
||||
|
||||
for (list = matched; list; list = g_slist_next (list))
|
||||
{
|
||||
PlugInProcDef *proc_def = list->data;
|
||||
ProcRecord *proc_rec = &proc_def->db_info;
|
||||
gchar *name;
|
||||
|
||||
if (proc_def->menu_label)
|
||||
name = g_strdup_printf ("%s/%s",
|
||||
(gchar *) proc_def->menu_paths->data,
|
||||
proc_def->menu_label);
|
||||
else
|
||||
name = g_strdup (proc_def->menu_paths->data);
|
||||
|
||||
(*menu_strs)[i] = gimp_strip_uline (name);
|
||||
(*accel_strs)[i] = NULL;
|
||||
(*prog_strs)[i] = g_strdup (proc_def->prog);
|
||||
(*types_strs)[i] = g_strdup (proc_def->image_types);
|
||||
(*realname_strs)[i] = g_strdup (proc_rec->name);
|
||||
(*time_ints)[i] = proc_def->mtime;
|
||||
|
||||
g_free (name);
|
||||
|
||||
i++;
|
||||
}
|
||||
|
||||
g_slist_free (matched);
|
||||
|
||||
if (search_str)
|
||||
regfree (&sregex);
|
||||
|
||||
return num_plugins;
|
||||
}
|
||||
35
app/plug-in/gimppluginmanager-query.h
Normal file
35
app/plug-in/gimppluginmanager-query.h
Normal file
@ -0,0 +1,35 @@
|
||||
/* The GIMP -- an image manipulation program
|
||||
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
||||
*
|
||||
* plug-ins-query.h
|
||||
*
|
||||
* 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 of the License, 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.
|
||||
*/
|
||||
|
||||
#ifndef __PLUG_INS_QUERY_H__
|
||||
#define __PLUG_INS_QUERY_H__
|
||||
|
||||
|
||||
gint plug_ins_query (Gimp *gimp,
|
||||
const gchar *search_str,
|
||||
gchar ***menu_strs,
|
||||
gchar ***accel_strs,
|
||||
gchar ***prog_strs,
|
||||
gchar ***types_strs,
|
||||
gchar ***realname_strs,
|
||||
gint32 **time_ints);
|
||||
|
||||
|
||||
#endif /* __PLUG_INS_QUERY_H__ */
|
||||
158
app/plug-in/plug-ins-query.c
Normal file
158
app/plug-in/plug-ins-query.c
Normal file
@ -0,0 +1,158 @@
|
||||
/* The GIMP -- an image manipulation program
|
||||
* Copyright (C) 1995-2003 Spencer Kimball and Peter Mattis
|
||||
*
|
||||
* plug-ins-query.c
|
||||
*
|
||||
* 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 of the License, 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.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#ifdef HAVE_GLIBC_REGEX
|
||||
#include <regex.h>
|
||||
#else
|
||||
#include "regexrepl/regex.h"
|
||||
#endif
|
||||
|
||||
#include <glib-object.h>
|
||||
|
||||
#include "libgimpbase/gimpbase.h"
|
||||
|
||||
#include "plug-in-types.h"
|
||||
|
||||
#include "core/gimp.h"
|
||||
|
||||
#include "pdb/procedural_db.h"
|
||||
|
||||
#include "plug-in-proc-def.h"
|
||||
|
||||
|
||||
static int
|
||||
match_strings (regex_t *preg,
|
||||
gchar *a)
|
||||
{
|
||||
return regexec (preg, a, 0, NULL, 0);
|
||||
}
|
||||
|
||||
gint
|
||||
plug_ins_query (Gimp *gimp,
|
||||
const gchar *search_str,
|
||||
gchar ***menu_strs,
|
||||
gchar ***accel_strs,
|
||||
gchar ***prog_strs,
|
||||
gchar ***types_strs,
|
||||
gchar ***realname_strs,
|
||||
gint32 **time_ints)
|
||||
{
|
||||
gint32 num_plugins = 0;
|
||||
GSList *list;
|
||||
GSList *matched = NULL;
|
||||
gint i = 0;
|
||||
regex_t sregex;
|
||||
|
||||
g_return_val_if_fail (GIMP_IS_GIMP (gimp), 0);
|
||||
g_return_val_if_fail (menu_strs != NULL, 0);
|
||||
g_return_val_if_fail (accel_strs != NULL, 0);
|
||||
g_return_val_if_fail (prog_strs != NULL, 0);
|
||||
g_return_val_if_fail (types_strs != NULL, 0);
|
||||
g_return_val_if_fail (realname_strs != NULL, 0);
|
||||
g_return_val_if_fail (time_ints != NULL, 0);
|
||||
|
||||
if (search_str && strlen (search_str))
|
||||
regcomp (&sregex, search_str, REG_ICASE);
|
||||
else
|
||||
search_str = NULL;
|
||||
|
||||
/* count number of plugin entries, then allocate arrays of correct size
|
||||
* where we can store the strings.
|
||||
*/
|
||||
|
||||
for (list = gimp->plug_in_proc_defs; list; list = g_slist_next (list))
|
||||
{
|
||||
PlugInProcDef *proc_def = list->data;
|
||||
|
||||
if (proc_def->prog && proc_def->menu_paths)
|
||||
{
|
||||
gchar *name;
|
||||
|
||||
if (proc_def->menu_label)
|
||||
{
|
||||
name = proc_def->menu_label;
|
||||
}
|
||||
else
|
||||
{
|
||||
name = strrchr (proc_def->menu_paths->data, '/');
|
||||
|
||||
if (name)
|
||||
name = name + 1;
|
||||
else
|
||||
name = proc_def->menu_paths->data;
|
||||
}
|
||||
|
||||
name = gimp_strip_uline (name);
|
||||
|
||||
if (! search_str || ! match_strings (&sregex, name))
|
||||
{
|
||||
num_plugins++;
|
||||
matched = g_slist_prepend (matched, proc_def);
|
||||
}
|
||||
|
||||
g_free (name);
|
||||
}
|
||||
}
|
||||
|
||||
*menu_strs = g_new (gchar *, num_plugins);
|
||||
*accel_strs = g_new (gchar *, num_plugins);
|
||||
*prog_strs = g_new (gchar *, num_plugins);
|
||||
*types_strs = g_new (gchar *, num_plugins);
|
||||
*realname_strs = g_new (gchar *, num_plugins);
|
||||
*time_ints = g_new (gint, num_plugins);
|
||||
|
||||
matched = g_slist_reverse (matched);
|
||||
|
||||
for (list = matched; list; list = g_slist_next (list))
|
||||
{
|
||||
PlugInProcDef *proc_def = list->data;
|
||||
ProcRecord *proc_rec = &proc_def->db_info;
|
||||
gchar *name;
|
||||
|
||||
if (proc_def->menu_label)
|
||||
name = g_strdup_printf ("%s/%s",
|
||||
(gchar *) proc_def->menu_paths->data,
|
||||
proc_def->menu_label);
|
||||
else
|
||||
name = g_strdup (proc_def->menu_paths->data);
|
||||
|
||||
(*menu_strs)[i] = gimp_strip_uline (name);
|
||||
(*accel_strs)[i] = NULL;
|
||||
(*prog_strs)[i] = g_strdup (proc_def->prog);
|
||||
(*types_strs)[i] = g_strdup (proc_def->image_types);
|
||||
(*realname_strs)[i] = g_strdup (proc_rec->name);
|
||||
(*time_ints)[i] = proc_def->mtime;
|
||||
|
||||
g_free (name);
|
||||
|
||||
i++;
|
||||
}
|
||||
|
||||
g_slist_free (matched);
|
||||
|
||||
if (search_str)
|
||||
regfree (&sregex);
|
||||
|
||||
return num_plugins;
|
||||
}
|
||||
35
app/plug-in/plug-ins-query.h
Normal file
35
app/plug-in/plug-ins-query.h
Normal file
@ -0,0 +1,35 @@
|
||||
/* The GIMP -- an image manipulation program
|
||||
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
||||
*
|
||||
* plug-ins-query.h
|
||||
*
|
||||
* 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 of the License, 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.
|
||||
*/
|
||||
|
||||
#ifndef __PLUG_INS_QUERY_H__
|
||||
#define __PLUG_INS_QUERY_H__
|
||||
|
||||
|
||||
gint plug_ins_query (Gimp *gimp,
|
||||
const gchar *search_str,
|
||||
gchar ***menu_strs,
|
||||
gchar ***accel_strs,
|
||||
gchar ***prog_strs,
|
||||
gchar ***types_strs,
|
||||
gchar ***realname_strs,
|
||||
gint32 **time_ints);
|
||||
|
||||
|
||||
#endif /* __PLUG_INS_QUERY_H__ */
|
||||
@ -64,92 +64,15 @@ sub plugins_query {
|
||||
delete $outargs[0]->{array}->{no_declare};
|
||||
|
||||
%invoke = (
|
||||
headers => [ qw("libgimpbase/gimpbase.h") ],
|
||||
vars => [ 'GSList *list', 'GSList *matched = NULL', 'gint i = 0',
|
||||
'regex_t sregex' ],
|
||||
code => <<'CODE'
|
||||
{
|
||||
if (search_str && strlen (search_str))
|
||||
regcomp (&sregex, search_str, REG_ICASE);
|
||||
else
|
||||
search_str = NULL;
|
||||
|
||||
/* count number of plugin entries, then allocate arrays of correct size
|
||||
* where we can store the strings.
|
||||
*/
|
||||
|
||||
for (list = gimp->plug_in_proc_defs; list; list = g_slist_next (list))
|
||||
{
|
||||
PlugInProcDef *proc_def = list->data;
|
||||
|
||||
if (proc_def->prog && proc_def->menu_paths)
|
||||
{
|
||||
gchar *name;
|
||||
|
||||
if (proc_def->menu_label)
|
||||
{
|
||||
name = proc_def->menu_label;
|
||||
}
|
||||
else
|
||||
{
|
||||
name = strrchr (proc_def->menu_paths->data, '/');
|
||||
|
||||
if (name)
|
||||
name = name + 1;
|
||||
else
|
||||
name = proc_def->menu_paths->data;
|
||||
}
|
||||
|
||||
name = gimp_strip_uline (name);
|
||||
|
||||
if (! search_str || ! match_strings (&sregex, name))
|
||||
{
|
||||
num_plugins++;
|
||||
matched = g_slist_prepend (matched, proc_def);
|
||||
}
|
||||
|
||||
g_free (name);
|
||||
}
|
||||
}
|
||||
|
||||
menu_strs = g_new (gchar *, num_plugins);
|
||||
accel_strs = g_new (gchar *, num_plugins);
|
||||
prog_strs = g_new (gchar *, num_plugins);
|
||||
types_strs = g_new (gchar *, num_plugins);
|
||||
realname_strs = g_new (gchar *, num_plugins);
|
||||
time_ints = g_new (gint , num_plugins);
|
||||
|
||||
matched = g_slist_reverse (matched);
|
||||
|
||||
for (list = matched; list; list = g_slist_next (list))
|
||||
{
|
||||
PlugInProcDef *proc_def = list->data;
|
||||
ProcRecord *proc_rec = &proc_def->db_info;
|
||||
gchar *name;
|
||||
|
||||
if (proc_def->menu_label)
|
||||
name = g_strdup_printf ("%s/%s",
|
||||
(gchar *) proc_def->menu_paths->data,
|
||||
proc_def->menu_label);
|
||||
else
|
||||
name = g_strdup (proc_def->menu_paths->data);
|
||||
|
||||
menu_strs[i] = gimp_strip_uline (name);
|
||||
accel_strs[i] = NULL;
|
||||
prog_strs[i] = g_strdup (proc_def->prog);
|
||||
types_strs[i] = g_strdup (proc_def->image_types);
|
||||
realname_strs[i] = g_strdup (proc_rec->name);
|
||||
time_ints[i] = proc_def->mtime;
|
||||
|
||||
g_free (name);
|
||||
|
||||
i++;
|
||||
}
|
||||
|
||||
g_slist_free (matched);
|
||||
|
||||
if (search_str)
|
||||
regfree (&sregex);
|
||||
num_plugins = plug_ins_query (gimp, search_str,
|
||||
&menu_strs,
|
||||
&accel_strs,
|
||||
&prog_strs,
|
||||
&types_strs,
|
||||
&realname_strs,
|
||||
&time_ints);
|
||||
}
|
||||
CODE
|
||||
);
|
||||
@ -488,18 +411,11 @@ CODE
|
||||
}
|
||||
|
||||
|
||||
$extra{app}->{code} = <<'CODE';
|
||||
static int
|
||||
match_strings (regex_t *preg,
|
||||
gchar *a)
|
||||
{
|
||||
return regexec (preg, a, 0, NULL, 0);
|
||||
}
|
||||
CODE
|
||||
|
||||
@headers = qw(<string.h> <stdlib.h> "regexrepl/regex.h"
|
||||
"libgimpbase/gimpprotocol.h" "core/gimp.h"
|
||||
@headers = qw(<string.h> <stdlib.h>
|
||||
"libgimpbase/gimpbase.h" "libgimpbase/gimpprotocol.h"
|
||||
"core/gimp.h"
|
||||
"plug-in/plug-in.h" "plug-in/plug-ins.h"
|
||||
"plug-in/plug-ins-query.h"
|
||||
"plug-in/plug-in-def.h" "plug-in/plug-in-params.h"
|
||||
"plug-in/plug-in-proc-def.h");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user