/* GIMP - The GNU Image Manipulation Program * Copyright (C) 1995 Spencer Kimball and Peter Mattis * * gimpimagemaptool-settings.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 3 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, see . */ #include "config.h" #include #include #include #include #include "libgimpbase/gimpbase.h" #include "libgimpconfig/gimpconfig.h" #include "libgimpwidgets/gimpwidgets.h" #include "tools-types.h" #include "core/gimp.h" #include "core/gimpcontext.h" #include "core/gimpimagemapconfig.h" #include "core/gimplist.h" #include "core/gimptoolinfo.h" #include "widgets/gimpsettingsbox.h" #include "gimpimagemapoptions.h" #include "gimpimagemaptool.h" #include "gimpimagemaptool-settings.h" #include "gimp-intl.h" /* local function prototypes */ static gboolean gimp_image_map_tool_settings_import (GimpSettingsBox *box, const gchar *filename, GimpImageMapTool *tool); static gboolean gimp_image_map_tool_settings_export (GimpSettingsBox *box, const gchar *filename, GimpImageMapTool *tool); /* public functions */ gboolean gimp_image_map_tool_add_settings_gui (GimpImageMapTool *image_map_tool) { GimpImageMapToolClass *klass; GimpToolInfo *tool_info; GtkWidget *hbox; GtkWidget *label; GtkWidget *settings_combo; gchar *filename; gchar *folder; klass = GIMP_IMAGE_MAP_TOOL_GET_CLASS (image_map_tool); tool_info = GIMP_TOOL (image_map_tool)->tool_info; hbox = gtk_hbox_new (FALSE, 6); gtk_box_pack_start (GTK_BOX (image_map_tool->main_vbox), hbox, FALSE, FALSE, 0); gtk_widget_show (hbox); label = gtk_label_new_with_mnemonic (_("Pre_sets:")); gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); gtk_widget_show (label); image_map_tool->label_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); gtk_size_group_add_widget (image_map_tool->label_group, label); g_object_unref (image_map_tool->label_group); filename = gimp_tool_info_build_options_filename (tool_info, ".settings"); folder = g_build_filename (gimp_directory (), klass->settings_name, NULL); image_map_tool->settings_box = gimp_settings_box_new (tool_info->gimp, image_map_tool->config, klass->recent_settings, filename, klass->import_dialog_title, klass->export_dialog_title, tool_info->help_id, folder, NULL); gtk_box_pack_start (GTK_BOX (hbox), image_map_tool->settings_box, TRUE, TRUE, 0); gtk_widget_show (image_map_tool->settings_box); g_free (filename); g_free (folder); settings_combo = gimp_settings_box_get_combo (GIMP_SETTINGS_BOX (image_map_tool->settings_box)); gtk_label_set_mnemonic_widget (GTK_LABEL (label), settings_combo); g_signal_connect (image_map_tool->settings_box, "import", G_CALLBACK (gimp_image_map_tool_settings_import), image_map_tool); g_signal_connect (image_map_tool->settings_box, "export", G_CALLBACK (gimp_image_map_tool_settings_export), image_map_tool); return TRUE; } gboolean gimp_image_map_tool_real_settings_import (GimpImageMapTool *tool, const gchar *filename, GError **error) { gboolean success; if (GIMP_TOOL (tool)->tool_info->gimp->be_verbose) g_print ("Parsing '%s'\n", gimp_filename_to_utf8 (filename)); success = gimp_config_deserialize_file (GIMP_CONFIG (tool->config), filename, NULL, error); return success; } gboolean gimp_image_map_tool_real_settings_export (GimpImageMapTool *tool, const gchar *filename, GError **error) { GimpImageMapToolClass *klass = GIMP_IMAGE_MAP_TOOL_GET_CLASS (tool); gchar *header; gchar *footer; gboolean success; header = g_strdup_printf ("GIMP %s tool settings", klass->settings_name); footer = g_strdup_printf ("end of %s tool settings", klass->settings_name); if (GIMP_TOOL (tool)->tool_info->gimp->be_verbose) g_print ("Writing '%s'\n", gimp_filename_to_utf8 (filename)); success = gimp_config_serialize_to_file (GIMP_CONFIG (tool->config), filename, header, footer, NULL, error); g_free (header); g_free (footer); return success; } /* private functions */ static gboolean gimp_image_map_tool_settings_import (GimpSettingsBox *box, const gchar *filename, GimpImageMapTool *tool) { GimpImageMapToolClass *tool_class = GIMP_IMAGE_MAP_TOOL_GET_CLASS (tool); GError *error = NULL; g_return_val_if_fail (tool_class->settings_import != NULL, FALSE); if (! tool_class->settings_import (tool, filename, &error)) { gimp_message_literal (GIMP_TOOL (tool)->tool_info->gimp, G_OBJECT (tool->dialog), GIMP_MESSAGE_ERROR, error->message); g_clear_error (&error); return FALSE; } gimp_image_map_tool_preview (tool); g_object_set (GIMP_TOOL_GET_OPTIONS (tool), "settings", filename, NULL); return TRUE; } static gboolean gimp_image_map_tool_settings_export (GimpSettingsBox *box, const gchar *filename, GimpImageMapTool *tool) { GimpImageMapToolClass *tool_class = GIMP_IMAGE_MAP_TOOL_GET_CLASS (tool); GError *error = NULL; gchar *display_name; g_return_val_if_fail (tool_class->settings_export != NULL, FALSE); if (! tool_class->settings_export (tool, filename, &error)) { gimp_message_literal (GIMP_TOOL (tool)->tool_info->gimp, G_OBJECT (tool->dialog), GIMP_MESSAGE_ERROR, error->message); g_clear_error (&error); return FALSE; } display_name = g_filename_display_name (filename); gimp_message (GIMP_TOOL (tool)->tool_info->gimp, G_OBJECT (GIMP_TOOL (tool)->display), GIMP_MESSAGE_INFO, _("Settings saved to '%s'"), display_name); g_free (display_name); g_object_set (GIMP_TOOL_GET_OPTIONS (tool), "settings", filename, NULL); return TRUE; }