2003-01-13 22:08:10 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
|
|
|
#include "gui-types.h"
|
|
|
|
|
|
|
|
#include "core/gimp.h"
|
2003-01-31 19:54:16 +08:00
|
|
|
#include "core/gimpdrawable.h"
|
2003-01-13 22:08:10 +08:00
|
|
|
|
|
|
|
#include "plug-in/plug-in-proc.h"
|
|
|
|
|
|
|
|
#include "widgets/gimpitemfactory.h"
|
|
|
|
|
|
|
|
#include "file-commands.h"
|
|
|
|
#include "file-save-menu.h"
|
|
|
|
#include "menus.h"
|
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
2003-01-13 22:08:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
GimpItemFactoryEntry file_save_menu_entries[] =
|
|
|
|
{
|
|
|
|
{ { N_("/By Extension"), NULL,
|
|
|
|
file_save_by_extension_cmd_callback, 0 },
|
|
|
|
NULL,
|
|
|
|
"save_by_extension.html", NULL },
|
|
|
|
|
|
|
|
MENU_SEPARATOR ("/---")
|
|
|
|
};
|
|
|
|
|
|
|
|
gint n_file_save_menu_entries = G_N_ELEMENTS (file_save_menu_entries);
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
file_save_menu_setup (GimpItemFactory *factory)
|
|
|
|
{
|
|
|
|
GimpItemFactoryEntry entry;
|
|
|
|
PlugInProcDef *file_proc;
|
|
|
|
GSList *list;
|
|
|
|
|
|
|
|
for (list = factory->gimp->save_procs; list; list = g_slist_next (list))
|
|
|
|
{
|
|
|
|
gchar *basename;
|
|
|
|
gchar *lowercase_basename;
|
|
|
|
gchar *help_page;
|
|
|
|
|
|
|
|
file_proc = (PlugInProcDef *) list->data;
|
|
|
|
|
|
|
|
basename = g_path_get_basename (file_proc->prog);
|
|
|
|
|
|
|
|
lowercase_basename = g_ascii_strdown (basename, -1);
|
|
|
|
|
|
|
|
g_free (basename);
|
|
|
|
|
|
|
|
/* NOT g_build_filename() because this is a relative URI */
|
|
|
|
help_page = g_strconcat ("filters/",
|
|
|
|
lowercase_basename,
|
|
|
|
".html",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_free (lowercase_basename);
|
|
|
|
|
|
|
|
entry.entry.path = strstr (file_proc->menu_path, "/");
|
|
|
|
entry.entry.accelerator = NULL;
|
|
|
|
entry.entry.callback = file_save_type_cmd_callback;
|
|
|
|
entry.entry.callback_action = 0;
|
|
|
|
entry.entry.item_type = NULL;
|
|
|
|
entry.quark_string = NULL;
|
|
|
|
entry.help_page = help_page;
|
|
|
|
entry.description = NULL;
|
|
|
|
|
|
|
|
gimp_item_factory_create_item (factory,
|
|
|
|
&entry,
|
|
|
|
NULL,
|
|
|
|
file_proc, 2,
|
|
|
|
TRUE, FALSE);
|
|
|
|
|
|
|
|
g_free (help_page);
|
|
|
|
}
|
|
|
|
}
|
2003-01-31 19:54:16 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
file_save_menu_update (GtkItemFactory *item_factory,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
PlugInImageType plug_in_image_type = 0;
|
|
|
|
GSList *procs;
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (data);
|
|
|
|
|
|
|
|
switch (gimp_drawable_type (drawable))
|
|
|
|
{
|
|
|
|
case GIMP_RGB_IMAGE:
|
|
|
|
plug_in_image_type = PLUG_IN_RGB_IMAGE;
|
|
|
|
break;
|
|
|
|
case GIMP_RGBA_IMAGE:
|
|
|
|
plug_in_image_type = PLUG_IN_RGBA_IMAGE;
|
|
|
|
break;
|
|
|
|
case GIMP_GRAY_IMAGE:
|
|
|
|
plug_in_image_type = PLUG_IN_GRAY_IMAGE;
|
|
|
|
break;
|
|
|
|
case GIMP_GRAYA_IMAGE:
|
|
|
|
plug_in_image_type = PLUG_IN_GRAYA_IMAGE;
|
|
|
|
break;
|
|
|
|
case GIMP_INDEXED_IMAGE:
|
|
|
|
plug_in_image_type = PLUG_IN_INDEXED_IMAGE;
|
|
|
|
break;
|
|
|
|
case GIMP_INDEXEDA_IMAGE:
|
|
|
|
plug_in_image_type = PLUG_IN_INDEXEDA_IMAGE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (procs = GIMP_ITEM_FACTORY (item_factory)->gimp->save_procs;
|
|
|
|
procs;
|
|
|
|
procs = g_slist_next (procs))
|
|
|
|
{
|
|
|
|
PlugInProcDef *file_proc;
|
|
|
|
|
|
|
|
file_proc = (PlugInProcDef *) procs->data;
|
|
|
|
|
|
|
|
if (file_proc->db_info.proc_type != GIMP_EXTENSION)
|
|
|
|
{
|
|
|
|
gimp_item_factory_set_sensitive (item_factory,
|
|
|
|
file_proc->menu_path,
|
|
|
|
(file_proc->image_types_val &
|
|
|
|
plug_in_image_type));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|