2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2004-03-09 09:37:56 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* The GIMP Help plug-in
|
2008-05-17 00:56:33 +08:00
|
|
|
* Copyright (C) 1999-2008 Sven Neumann <sven@gimp.org>
|
2004-03-09 09:37:56 +08:00
|
|
|
* Michael Natterer <mitch@gimp.org>
|
|
|
|
* Henrik Brix Andersen <brix@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2004-03-09 09:37:56 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-03-09 09:37:56 +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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-03-09 09:37:56 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <string.h> /* strlen */
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "libgimp/gimp.h"
|
|
|
|
|
2006-11-21 05:46:21 +08:00
|
|
|
#include "gimphelp.h"
|
2004-03-09 09:37:56 +08:00
|
|
|
|
2004-03-09 09:45:21 +08:00
|
|
|
#include "libgimp/stdplugins-intl.h"
|
|
|
|
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
/* defines */
|
|
|
|
|
2005-08-12 23:46:46 +08:00
|
|
|
#define GIMP_HELP_EXT_PROC "extension-gimp-help"
|
|
|
|
#define GIMP_HELP_TEMP_EXT_PROC "extension-gimp-help-temp"
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gchar *procedure;
|
|
|
|
gchar *help_domain;
|
2004-03-18 08:11:03 +08:00
|
|
|
gchar *help_locales;
|
2004-03-09 09:37:56 +08:00
|
|
|
gchar *help_id;
|
|
|
|
} IdleHelp;
|
|
|
|
|
|
|
|
|
|
|
|
/* forward declarations */
|
|
|
|
|
|
|
|
static void query (void);
|
|
|
|
static void run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals);
|
|
|
|
|
|
|
|
static void temp_proc_install (void);
|
|
|
|
static void temp_proc_run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals);
|
|
|
|
|
|
|
|
static void load_help (const gchar *procedure,
|
|
|
|
const gchar *help_domain,
|
2004-03-18 08:11:03 +08:00
|
|
|
const gchar *help_locales,
|
2004-03-09 09:37:56 +08:00
|
|
|
const gchar *help_id);
|
|
|
|
static gboolean load_help_idle (gpointer data);
|
|
|
|
|
2008-06-10 18:25:56 +08:00
|
|
|
static GimpHelpProgress * load_help_progress_new (void);
|
|
|
|
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
/* local variables */
|
|
|
|
|
2004-12-06 03:50:37 +08:00
|
|
|
static GMainLoop *main_loop = NULL;
|
|
|
|
|
2006-05-16 20:26:20 +08:00
|
|
|
const GimpPlugInInfo PLUG_IN_INFO =
|
2004-03-09 09:37:56 +08:00
|
|
|
{
|
|
|
|
NULL, /* init_proc */
|
|
|
|
NULL, /* quit_proc */
|
|
|
|
query, /* query_proc */
|
|
|
|
run, /* run_proc */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
MAIN ()
|
|
|
|
|
|
|
|
static void
|
|
|
|
query (void)
|
|
|
|
{
|
2006-05-16 20:26:20 +08:00
|
|
|
static const GimpParamDef args[] =
|
2004-03-09 09:37:56 +08:00
|
|
|
{
|
2005-08-12 23:46:46 +08:00
|
|
|
{ GIMP_PDB_INT32, "num-domain-names", "" },
|
|
|
|
{ GIMP_PDB_STRINGARRAY, "domain-names", "" },
|
|
|
|
{ GIMP_PDB_INT32, "num-domain-uris", "" },
|
|
|
|
{ GIMP_PDB_STRINGARRAY, "domain-uris", "" }
|
2004-03-09 09:37:56 +08:00
|
|
|
};
|
|
|
|
|
2005-08-12 23:46:46 +08:00
|
|
|
gimp_install_procedure (GIMP_HELP_EXT_PROC,
|
2004-03-09 09:37:56 +08:00
|
|
|
"", /* FIXME */
|
|
|
|
"", /* FIXME */
|
|
|
|
"Sven Neumann <sven@gimp.org>, "
|
|
|
|
"Michael Natterer <mitch@gimp.org>, "
|
|
|
|
"Henrik Brix Andersen <brix@gimp.org>",
|
|
|
|
"Sven Neumann, Michael Natterer & Henrik Brix Andersen",
|
2008-05-17 00:56:33 +08:00
|
|
|
"1999-2008",
|
2004-03-09 09:37:56 +08:00
|
|
|
NULL,
|
|
|
|
"",
|
|
|
|
GIMP_EXTENSION,
|
|
|
|
G_N_ELEMENTS (args), 0,
|
|
|
|
args, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals)
|
|
|
|
{
|
2006-11-21 05:46:21 +08:00
|
|
|
static GimpParam values[1];
|
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
2004-03-09 09:37:56 +08:00
|
|
|
|
2004-03-09 09:45:21 +08:00
|
|
|
INIT_I18N ();
|
|
|
|
|
2004-03-09 09:37:56 +08:00
|
|
|
/* make sure all the arguments are there */
|
|
|
|
if (nparams == 4)
|
|
|
|
{
|
2006-11-21 05:46:21 +08:00
|
|
|
if (! gimp_help_init (param[0].data.d_int32,
|
|
|
|
param[1].data.d_stringarray,
|
|
|
|
param[2].data.d_int32,
|
|
|
|
param[3].data.d_stringarray))
|
2004-03-09 09:37:56 +08:00
|
|
|
{
|
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_printerr ("help: wrong number of arguments in procedure call.\n");
|
|
|
|
|
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status == GIMP_PDB_SUCCESS)
|
|
|
|
{
|
2004-12-06 03:50:37 +08:00
|
|
|
main_loop = g_main_loop_new (NULL, FALSE);
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
temp_proc_install ();
|
|
|
|
|
|
|
|
gimp_extension_ack ();
|
|
|
|
gimp_extension_enable ();
|
|
|
|
|
2004-12-06 03:50:37 +08:00
|
|
|
g_main_loop_run (main_loop);
|
|
|
|
|
|
|
|
g_main_loop_unref (main_loop);
|
|
|
|
main_loop = NULL;
|
2004-03-18 20:18:12 +08:00
|
|
|
|
2005-08-12 23:46:46 +08:00
|
|
|
gimp_uninstall_temp_proc (GIMP_HELP_TEMP_EXT_PROC);
|
2004-03-09 09:37:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
values[0].type = GIMP_PDB_STATUS;
|
|
|
|
values[0].data.d_status = status;
|
|
|
|
|
|
|
|
*nreturn_vals = 1;
|
|
|
|
*return_vals = values;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
temp_proc_install (void)
|
|
|
|
{
|
2006-05-16 20:26:20 +08:00
|
|
|
static const GimpParamDef args[] =
|
2004-03-09 09:37:56 +08:00
|
|
|
{
|
2004-03-18 08:11:03 +08:00
|
|
|
{ GIMP_PDB_STRING, "procedure", "The procedure of the browser to use" },
|
2005-08-12 23:46:46 +08:00
|
|
|
{ GIMP_PDB_STRING, "help-domain", "Help domain to use" },
|
|
|
|
{ GIMP_PDB_STRING, "help-locales", "Language to use" },
|
|
|
|
{ GIMP_PDB_STRING, "help-id", "Help ID to open" }
|
2004-03-09 09:37:56 +08:00
|
|
|
};
|
|
|
|
|
2005-08-12 23:46:46 +08:00
|
|
|
gimp_install_temp_proc (GIMP_HELP_TEMP_EXT_PROC,
|
2004-03-09 09:37:56 +08:00
|
|
|
"DON'T USE THIS ONE",
|
|
|
|
"(Temporary procedure)",
|
|
|
|
"Sven Neumann <sven@gimp.org>, "
|
|
|
|
"Michael Natterer <mitch@gimp.org>"
|
|
|
|
"Henrik Brix Andersen <brix@gimp.org",
|
|
|
|
"Sven Neumann, Michael Natterer & Henrik Brix Andersen",
|
2008-05-17 00:56:33 +08:00
|
|
|
"1999-2008",
|
2004-03-09 09:37:56 +08:00
|
|
|
NULL,
|
|
|
|
"",
|
|
|
|
GIMP_TEMPORARY,
|
|
|
|
G_N_ELEMENTS (args), 0,
|
|
|
|
args, NULL,
|
|
|
|
temp_proc_run);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
temp_proc_run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals)
|
|
|
|
{
|
|
|
|
static GimpParam values[1];
|
2004-03-18 08:11:03 +08:00
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
|
|
|
const gchar *procedure = NULL;
|
|
|
|
const gchar *help_domain = GIMP_HELP_DEFAULT_DOMAIN;
|
|
|
|
const gchar *help_locales = NULL;
|
|
|
|
const gchar *help_id = GIMP_HELP_DEFAULT_ID;
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
*nreturn_vals = 1;
|
|
|
|
*return_vals = values;
|
|
|
|
|
|
|
|
/* make sure all the arguments are there */
|
|
|
|
if (nparams == 4)
|
|
|
|
{
|
|
|
|
if (param[0].data.d_string && strlen (param[0].data.d_string))
|
|
|
|
procedure = param[0].data.d_string;
|
|
|
|
|
|
|
|
if (param[1].data.d_string && strlen (param[1].data.d_string))
|
|
|
|
help_domain = param[1].data.d_string;
|
|
|
|
|
|
|
|
if (param[2].data.d_string && strlen (param[2].data.d_string))
|
2004-03-18 08:11:03 +08:00
|
|
|
help_locales = param[2].data.d_string;
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
if (param[3].data.d_string && strlen (param[3].data.d_string))
|
|
|
|
help_id = param[3].data.d_string;
|
|
|
|
}
|
|
|
|
|
2004-03-18 08:11:03 +08:00
|
|
|
if (! procedure)
|
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
|
|
|
|
|
|
|
values[0].type = GIMP_PDB_STATUS;
|
|
|
|
values[0].data.d_status = status;
|
|
|
|
|
|
|
|
if (status == GIMP_PDB_SUCCESS)
|
|
|
|
load_help (procedure, help_domain, help_locales, help_id);
|
2004-03-09 09:37:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
load_help (const gchar *procedure,
|
|
|
|
const gchar *help_domain,
|
2004-03-18 08:11:03 +08:00
|
|
|
const gchar *help_locales,
|
2004-03-09 09:37:56 +08:00
|
|
|
const gchar *help_id)
|
|
|
|
{
|
2007-05-23 21:59:51 +08:00
|
|
|
IdleHelp *idle_help = g_slice_new (IdleHelp);
|
2004-03-09 09:37:56 +08:00
|
|
|
|
2004-03-18 08:11:03 +08:00
|
|
|
idle_help->procedure = g_strdup (procedure);
|
|
|
|
idle_help->help_domain = g_strdup (help_domain);
|
|
|
|
idle_help->help_locales = g_strdup (help_locales);
|
|
|
|
idle_help->help_id = g_strdup (help_id);
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
g_idle_add (load_help_idle, idle_help);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
load_help_idle (gpointer data)
|
|
|
|
{
|
2006-11-21 05:46:21 +08:00
|
|
|
IdleHelp *idle_help = data;
|
|
|
|
GimpHelpDomain *domain;
|
2004-03-09 09:37:56 +08:00
|
|
|
|
2006-11-21 05:46:21 +08:00
|
|
|
domain = gimp_help_lookup_domain (idle_help->help_domain);
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
if (domain)
|
|
|
|
{
|
2008-06-12 01:43:57 +08:00
|
|
|
GimpHelpProgress *progress = NULL;
|
2008-06-10 18:25:56 +08:00
|
|
|
GList *locales;
|
2008-06-12 01:43:57 +08:00
|
|
|
gchar *uri;
|
2008-06-10 18:25:56 +08:00
|
|
|
gboolean fatal_error;
|
2004-03-18 08:11:03 +08:00
|
|
|
|
2008-06-12 01:43:57 +08:00
|
|
|
locales = gimp_help_parse_locales (idle_help->help_locales);
|
|
|
|
|
|
|
|
if (! g_str_has_prefix (domain->help_uri, "file:"))
|
|
|
|
progress = load_help_progress_new ();
|
|
|
|
|
|
|
|
uri = gimp_help_domain_map (domain, locales, idle_help->help_id,
|
|
|
|
progress, NULL, &fatal_error);
|
|
|
|
|
|
|
|
if (progress)
|
|
|
|
gimp_help_progress_free (progress);
|
2004-03-18 08:11:03 +08:00
|
|
|
|
|
|
|
g_list_foreach (locales, (GFunc) g_free, NULL);
|
|
|
|
g_list_free (locales);
|
2004-03-09 09:37:56 +08:00
|
|
|
|
2008-06-12 01:43:57 +08:00
|
|
|
if (uri)
|
2004-03-09 09:37:56 +08:00
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint n_return_vals;
|
|
|
|
|
2004-03-18 08:11:03 +08:00
|
|
|
#ifdef GIMP_HELP_DEBUG
|
2004-03-09 09:37:56 +08:00
|
|
|
g_printerr ("help: calling '%s' for '%s'\n",
|
2008-06-12 01:43:57 +08:00
|
|
|
idle_help->procedure, uri);
|
2004-03-18 08:11:03 +08:00
|
|
|
#endif
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
return_vals = gimp_run_procedure (idle_help->procedure,
|
|
|
|
&n_return_vals,
|
2008-06-12 01:43:57 +08:00
|
|
|
GIMP_PDB_STRING, uri,
|
2004-03-09 09:37:56 +08:00
|
|
|
GIMP_PDB_END);
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, n_return_vals);
|
|
|
|
|
2008-06-12 01:43:57 +08:00
|
|
|
g_free (uri);
|
2004-03-09 09:37:56 +08:00
|
|
|
}
|
2006-11-21 05:46:21 +08:00
|
|
|
else if (fatal_error)
|
|
|
|
{
|
|
|
|
g_main_loop_quit (main_loop);
|
|
|
|
}
|
2004-03-09 09:37:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free (idle_help->procedure);
|
|
|
|
g_free (idle_help->help_domain);
|
2004-03-18 08:11:03 +08:00
|
|
|
g_free (idle_help->help_locales);
|
2004-03-09 09:37:56 +08:00
|
|
|
g_free (idle_help->help_id);
|
2007-05-23 21:59:51 +08:00
|
|
|
|
|
|
|
g_slice_free (IdleHelp, idle_help);
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-06-10 18:25:56 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
load_help_progress_start (const gchar *message,
|
|
|
|
gboolean cancelable,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gimp_progress_init (message);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
load_help_progress_update (gdouble value,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gimp_progress_update (value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
load_help_progress_end (gpointer user_data)
|
|
|
|
{
|
|
|
|
gimp_progress_end ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static GimpHelpProgress *
|
|
|
|
load_help_progress_new (void)
|
|
|
|
{
|
|
|
|
static const GimpHelpProgressVTable vtable =
|
|
|
|
{
|
|
|
|
load_help_progress_start,
|
|
|
|
load_help_progress_end,
|
|
|
|
load_help_progress_update
|
|
|
|
};
|
|
|
|
|
|
|
|
return gimp_help_progress_new (&vtable, NULL);
|
|
|
|
}
|