1998-10-30 18:21:33 +08:00
|
|
|
/* gimpparasite.c: Copyright 1998 Jay Cox <jaycox@earthlink.net>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
Win32 portability changes:
* config.h.win32, README.win32: Small changes.
* tools/pdbgen/pdb/*.pdb: Include <string.h>.
* app/*_cmds.c: Autogenerated files reflect above changes.
* libgimp/makefile.msc app/makefile.msc: Various updates,
including new object files. Gtk+ directory now should be called
gtk+ (not gtk-plus). Use win32-specific gdk subdir. Glib directory
now should be called just glib.
* libgimp/gimp.def: Updates.
* libgimp/gimpfeatures.h.win32: Made current with
gimpfeatures.h.in.
* libgimp/gimpfileselection.c: Define S_ISDIR and S_ISREG if
necessary.
* tools/pdbgen/pdb/fileops.pdb: Must have a
statement (even an empty one) after a label.
* app/fileops_cmds.c: Autogenerated file reflects above changes.
* app/crop.c: Include <string.h>.
* app/{app_procs,batch,fileops,datafiles,errorconsole,general,
plug_in,temp_buf,tile_swap}.c: Test NATIVE_WIN32, not
_MSC_VER. (NATIVE_WIN32 means we are using the Microsoft C
runtime, even if we might be compiling with gcc.)
* app/fileops.c: Don't include <process.h> here.
* app/fileops.h: Do include <process.h> here.
* app/gimpparasite.c: Include config.h, guard inclusion of
<unistd.h>. (Is the inclusion of unistd.h in source files all over
the place really necessary?)
* app/ink.c: MSC doesn't handle conversion from unsigned __int64
to double, so cast to signed.
* app/lut_funcs.c: Include config.h, and define rint() if necessary.
* app/pixel_processor.c: Include config.h without "..", like in
all the other places. Include <string.h>
* app/text_tool.c: Guard the "POINTS" identifier that clashes with
<windows.h>, sigh.
1999-05-05 05:32:17 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
1998-10-30 18:21:33 +08:00
|
|
|
#include <glib.h>
|
1999-04-09 14:00:11 +08:00
|
|
|
#include <stdio.h>
|
Win32 portability changes:
* config.h.win32, README.win32: Small changes.
* tools/pdbgen/pdb/*.pdb: Include <string.h>.
* app/*_cmds.c: Autogenerated files reflect above changes.
* libgimp/makefile.msc app/makefile.msc: Various updates,
including new object files. Gtk+ directory now should be called
gtk+ (not gtk-plus). Use win32-specific gdk subdir. Glib directory
now should be called just glib.
* libgimp/gimp.def: Updates.
* libgimp/gimpfeatures.h.win32: Made current with
gimpfeatures.h.in.
* libgimp/gimpfileselection.c: Define S_ISDIR and S_ISREG if
necessary.
* tools/pdbgen/pdb/fileops.pdb: Must have a
statement (even an empty one) after a label.
* app/fileops_cmds.c: Autogenerated file reflects above changes.
* app/crop.c: Include <string.h>.
* app/{app_procs,batch,fileops,datafiles,errorconsole,general,
plug_in,temp_buf,tile_swap}.c: Test NATIVE_WIN32, not
_MSC_VER. (NATIVE_WIN32 means we are using the Microsoft C
runtime, even if we might be compiling with gcc.)
* app/fileops.c: Don't include <process.h> here.
* app/fileops.h: Do include <process.h> here.
* app/gimpparasite.c: Include config.h, guard inclusion of
<unistd.h>. (Is the inclusion of unistd.h in source files all over
the place really necessary?)
* app/ink.c: MSC doesn't handle conversion from unsigned __int64
to double, so cast to signed.
* app/lut_funcs.c: Include config.h, and define rint() if necessary.
* app/pixel_processor.c: Include config.h without "..", like in
all the other places. Include <string.h>
* app/text_tool.c: Guard the "POINTS" identifier that clashes with
<windows.h>, sigh.
1999-05-05 05:32:17 +08:00
|
|
|
#ifdef HAVE_UNISTD_H
|
1999-04-09 14:00:11 +08:00
|
|
|
#include <unistd.h>
|
Win32 portability changes:
* config.h.win32, README.win32: Small changes.
* tools/pdbgen/pdb/*.pdb: Include <string.h>.
* app/*_cmds.c: Autogenerated files reflect above changes.
* libgimp/makefile.msc app/makefile.msc: Various updates,
including new object files. Gtk+ directory now should be called
gtk+ (not gtk-plus). Use win32-specific gdk subdir. Glib directory
now should be called just glib.
* libgimp/gimp.def: Updates.
* libgimp/gimpfeatures.h.win32: Made current with
gimpfeatures.h.in.
* libgimp/gimpfileselection.c: Define S_ISDIR and S_ISREG if
necessary.
* tools/pdbgen/pdb/fileops.pdb: Must have a
statement (even an empty one) after a label.
* app/fileops_cmds.c: Autogenerated file reflects above changes.
* app/crop.c: Include <string.h>.
* app/{app_procs,batch,fileops,datafiles,errorconsole,general,
plug_in,temp_buf,tile_swap}.c: Test NATIVE_WIN32, not
_MSC_VER. (NATIVE_WIN32 means we are using the Microsoft C
runtime, even if we might be compiling with gcc.)
* app/fileops.c: Don't include <process.h> here.
* app/fileops.h: Do include <process.h> here.
* app/gimpparasite.c: Include config.h, guard inclusion of
<unistd.h>. (Is the inclusion of unistd.h in source files all over
the place really necessary?)
* app/ink.c: MSC doesn't handle conversion from unsigned __int64
to double, so cast to signed.
* app/lut_funcs.c: Include config.h, and define rint() if necessary.
* app/pixel_processor.c: Include config.h without "..", like in
all the other places. Include <string.h>
* app/text_tool.c: Guard the "POINTS" identifier that clashes with
<windows.h>, sigh.
1999-05-05 05:32:17 +08:00
|
|
|
#endif
|
|
|
|
|
gave parasite undo a MISC_UNDO class for now so it compiles
* app/gimpdrawable.c: gave parasite undo a MISC_UNDO class for now
so it compiles
* app/tools_cmds.c: fix crop invoker to give correct args to
crop_image
* app/color_cmds.c: s/GRAY/GRAY_LUT/g;
* app/brush_select.[ch]: removed PDB procs, export brush_active_dialogs,
brush_select_dialog, s/active_dialogs/brush_active_dialogs/
* app/gimage_cmds.[ch]
* app/channel_ops.[ch]: removed channel ops PDB procs, moved duplicate
function from gimage_cmds to channel_ops, export offset and duplicate
* app/gimpbrushlist.[ch]: removed PDB procs
* app/gradient.[ch]: removed PDB procs,
* app/gradient_header.h: exported G_SAMPLE, GradSelect, num_gradients,
grad_active_dialogs, gradient_select_dialog
* app/gradient_select.c: removed PDB procs,
s/active_dialogs/grad_active_dialogs/
* app/patterns.[ch]: removed PDB procs
* app/pattern_select.[ch]: removed PDB procs,
s/active_dialogs/pattern_active_dialogs/
* app/procedural_db.c: removed PDB procs and supporting functions
* app/procedrual_db.h: fiddled with enums
* app/channel_cmds.[ch]
* app/drawable_cmds.[ch]
* app/parasite_cmds.[ch]: pdbgenned now, removed header files
* app/gimpparasite.c: minor cleanup
* app/internal_procs.c: use pdbgen stuff
* app/tools_cmds.c
* app/text_tool_cmds.c: updated from pdbgen
* app/brushes_cmds.c
* app/brush_select_cmds.c
* app/gradient_cmds.c
* app/gradient_select_cmds.c
* app/patterns_cmds.c
* app/pattern_select_cmds.c
* app/procedural_db_cmds.c: new pdbgen files
* app/Makefile.am: file shuffle (see above)
-Yosh
1999-04-24 04:54:02 +08:00
|
|
|
#include "app_procs.h"
|
1998-10-30 18:21:33 +08:00
|
|
|
#include "parasitelist.h"
|
|
|
|
#include "gimpparasite.h"
|
1999-04-12 06:28:51 +08:00
|
|
|
#include "gimprc.h"
|
1999-04-09 14:00:11 +08:00
|
|
|
#include "libgimp/parasite.h"
|
|
|
|
#include "libgimp/gimpenv.h"
|
1999-04-12 06:28:51 +08:00
|
|
|
#include "libgimp/gimpintl.h"
|
1998-10-30 18:21:33 +08:00
|
|
|
|
|
|
|
static ParasiteList *parasites = NULL;
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_init_parasites()
|
|
|
|
{
|
|
|
|
g_return_if_fail(parasites == NULL);
|
|
|
|
parasites = parasite_list_new();
|
1999-04-09 14:00:11 +08:00
|
|
|
gimp_parasiterc_load();
|
1998-10-30 18:21:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-10-17 08:07:55 +08:00
|
|
|
gimp_parasite_attach (Parasite *p)
|
1998-10-30 18:21:33 +08:00
|
|
|
{
|
|
|
|
parasite_list_add(parasites, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-10-17 08:07:55 +08:00
|
|
|
gimp_parasite_detach (const char *name)
|
1998-10-30 18:21:33 +08:00
|
|
|
{
|
|
|
|
parasite_list_remove(parasites, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
Parasite *
|
1999-10-17 08:07:55 +08:00
|
|
|
gimp_parasite_find (const char *name)
|
1998-10-30 18:21:33 +08:00
|
|
|
{
|
|
|
|
return parasite_list_find(parasites, name);
|
|
|
|
}
|
|
|
|
|
1999-02-14 02:19:44 +08:00
|
|
|
static void list_func(char *key, Parasite *p, char ***cur)
|
|
|
|
{
|
|
|
|
*(*cur)++ = (char *) g_strdup (key);
|
|
|
|
}
|
|
|
|
|
|
|
|
char **
|
|
|
|
gimp_parasite_list (gint *count)
|
|
|
|
{
|
|
|
|
char **list, **cur;
|
|
|
|
|
|
|
|
*count = parasite_list_length (parasites);
|
|
|
|
cur = list = (char **) g_malloc (sizeof (char *) * *count);
|
|
|
|
|
|
|
|
parasite_list_foreach (parasites, (GHFunc)list_func, &cur);
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
1999-04-12 06:28:51 +08:00
|
|
|
static void save_func(char *key, Parasite *p, FILE *fp)
|
|
|
|
{
|
|
|
|
if (parasite_is_persistent (p))
|
|
|
|
{
|
|
|
|
gchar *s;
|
|
|
|
guint32 l;
|
|
|
|
|
|
|
|
fprintf (fp, "(parasite \"%s\" %lu \"", parasite_name (p), parasite_flags (p));
|
|
|
|
|
1999-07-30 09:21:04 +08:00
|
|
|
/*
|
|
|
|
* the current methodology is: never move the parasiterc from one
|
|
|
|
* system to another. If you want to do this you should probably
|
|
|
|
* write out parasites which contain any non-alphanumeric(+some)
|
|
|
|
* characters as \xHH sequences altogether.
|
|
|
|
*/
|
|
|
|
|
1999-04-12 06:28:51 +08:00
|
|
|
for (s = (gchar *)parasite_data (p), l = parasite_data_size (p);
|
|
|
|
l;
|
|
|
|
l--, s++)
|
|
|
|
{
|
|
|
|
switch (*s)
|
|
|
|
{
|
1999-07-30 09:21:04 +08:00
|
|
|
case '\\': fputs ("\\\\", fp); break;
|
1999-04-12 06:28:51 +08:00
|
|
|
case '\0': fputs ("\\0", fp); break;
|
|
|
|
case '"' : fputs ("\\\"", fp); break;
|
|
|
|
/* disabled, not portable! */
|
|
|
|
/* case '\n': fputs ("\\n", fp); break;*/
|
|
|
|
/* case '\r': fputs ("\\r", fp); break;*/
|
|
|
|
case 26 : fputs ("\\z", fp); break;
|
|
|
|
default : fputc (*s, fp); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fputs ("\")\n\n", fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-04-09 14:00:11 +08:00
|
|
|
void
|
gave parasite undo a MISC_UNDO class for now so it compiles
* app/gimpdrawable.c: gave parasite undo a MISC_UNDO class for now
so it compiles
* app/tools_cmds.c: fix crop invoker to give correct args to
crop_image
* app/color_cmds.c: s/GRAY/GRAY_LUT/g;
* app/brush_select.[ch]: removed PDB procs, export brush_active_dialogs,
brush_select_dialog, s/active_dialogs/brush_active_dialogs/
* app/gimage_cmds.[ch]
* app/channel_ops.[ch]: removed channel ops PDB procs, moved duplicate
function from gimage_cmds to channel_ops, export offset and duplicate
* app/gimpbrushlist.[ch]: removed PDB procs
* app/gradient.[ch]: removed PDB procs,
* app/gradient_header.h: exported G_SAMPLE, GradSelect, num_gradients,
grad_active_dialogs, gradient_select_dialog
* app/gradient_select.c: removed PDB procs,
s/active_dialogs/grad_active_dialogs/
* app/patterns.[ch]: removed PDB procs
* app/pattern_select.[ch]: removed PDB procs,
s/active_dialogs/pattern_active_dialogs/
* app/procedural_db.c: removed PDB procs and supporting functions
* app/procedrual_db.h: fiddled with enums
* app/channel_cmds.[ch]
* app/drawable_cmds.[ch]
* app/parasite_cmds.[ch]: pdbgenned now, removed header files
* app/gimpparasite.c: minor cleanup
* app/internal_procs.c: use pdbgen stuff
* app/tools_cmds.c
* app/text_tool_cmds.c: updated from pdbgen
* app/brushes_cmds.c
* app/brush_select_cmds.c
* app/gradient_cmds.c
* app/gradient_select_cmds.c
* app/patterns_cmds.c
* app/pattern_select_cmds.c
* app/procedural_db_cmds.c: new pdbgen files
* app/Makefile.am: file shuffle (see above)
-Yosh
1999-04-24 04:54:02 +08:00
|
|
|
gimp_parasiterc_save(void)
|
1999-04-09 14:00:11 +08:00
|
|
|
{
|
1999-04-12 06:28:51 +08:00
|
|
|
char *filename;
|
1999-04-09 14:00:11 +08:00
|
|
|
FILE *fp;
|
1999-04-12 06:28:51 +08:00
|
|
|
|
|
|
|
filename = gimp_personal_rc_file ("#parasiterc.tmp~");
|
|
|
|
|
|
|
|
fp = fopen (filename, "w");
|
|
|
|
g_free (filename);
|
|
|
|
if (!fp)
|
1999-04-09 14:00:11 +08:00
|
|
|
return;
|
1998-10-30 18:21:33 +08:00
|
|
|
|
1999-07-27 08:14:14 +08:00
|
|
|
fprintf (fp, _("# GIMP parasiterc\n"
|
|
|
|
"# This file will be entirely rewritten every time you quit the gimp.\n\n"));
|
1999-04-12 06:28:51 +08:00
|
|
|
|
|
|
|
parasite_list_foreach (parasites, (GHFunc)save_func, fp);
|
1998-10-30 18:21:33 +08:00
|
|
|
|
1999-04-12 06:28:51 +08:00
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
if (rename(gimp_personal_rc_file ("#parasiterc.tmp~"),
|
1999-04-09 14:00:11 +08:00
|
|
|
gimp_personal_rc_file("parasiterc")) != 0)
|
1999-04-12 06:28:51 +08:00
|
|
|
unlink(gimp_personal_rc_file ("#parasiterc.tmp~"));
|
1999-04-09 14:00:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_parasiterc_load()
|
|
|
|
{
|
1999-04-12 06:28:51 +08:00
|
|
|
char *filename;
|
1999-04-09 14:00:11 +08:00
|
|
|
|
1999-04-12 06:28:51 +08:00
|
|
|
filename = gimp_personal_rc_file ("parasiterc");
|
|
|
|
app_init_update_status(NULL, filename, -1);
|
|
|
|
parse_gimprc_file (filename);
|
|
|
|
g_free (filename);
|
1999-04-09 14:00:11 +08:00
|
|
|
}
|