2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2003-09-18 21:51:10 +08:00
|
|
|
* Copyright (C) 1995-2001 Spencer Kimball, Peter Mattis and others
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2003-09-18 21:51:10 +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
|
2003-09-18 21:51:10 +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/>.
|
2003-09-18 21:51:10 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2008-01-23 17:51:43 +08:00
|
|
|
#include <gegl.h>
|
2003-09-18 21:51:10 +08:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpbase/gimpbase.h"
|
2005-01-26 03:11:26 +08:00
|
|
|
#include "libgimpconfig/gimpconfig.h"
|
2006-08-31 18:33:31 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
|
|
|
|
#include "tools-types.h"
|
|
|
|
|
2010-10-31 20:05:15 +08:00
|
|
|
#include "widgets/gimpwidgets-utils.h"
|
|
|
|
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "core/gimp.h"
|
2005-09-04 18:44:04 +08:00
|
|
|
#include "core/gimp-contexts.h"
|
2011-03-23 16:27:29 +08:00
|
|
|
#include "core/gimplist.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "core/gimptoolinfo.h"
|
|
|
|
#include "core/gimptooloptions.h"
|
|
|
|
|
|
|
|
#include "gimp-tools.h"
|
|
|
|
#include "gimptooloptions-gui.h"
|
|
|
|
#include "tool_manager.h"
|
|
|
|
|
|
|
|
#include "gimpairbrushtool.h"
|
2005-06-04 01:05:01 +08:00
|
|
|
#include "gimpaligntool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "gimpblendtool.h"
|
|
|
|
#include "gimpbrightnesscontrasttool.h"
|
|
|
|
#include "gimpbucketfilltool.h"
|
|
|
|
#include "gimpbycolorselecttool.h"
|
2010-06-15 05:25:08 +08:00
|
|
|
#include "gimpcagetool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "gimpclonetool.h"
|
|
|
|
#include "gimpcolorbalancetool.h"
|
|
|
|
#include "gimpcolorizetool.h"
|
|
|
|
#include "gimpcolorpickertool.h"
|
|
|
|
#include "gimpconvolvetool.h"
|
|
|
|
#include "gimpcroptool.h"
|
|
|
|
#include "gimpcurvestool.h"
|
|
|
|
#include "gimpdodgeburntool.h"
|
|
|
|
#include "gimpellipseselecttool.h"
|
|
|
|
#include "gimperasertool.h"
|
|
|
|
#include "gimpfliptool.h"
|
|
|
|
#include "gimpfreeselecttool.h"
|
2005-07-29 09:48:56 +08:00
|
|
|
#include "gimpforegroundselecttool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "gimpfuzzyselecttool.h"
|
2008-02-05 07:32:45 +08:00
|
|
|
#include "gimpgegltool.h"
|
2015-03-05 19:29:19 +08:00
|
|
|
#include "gimphandletransformtool.h"
|
2006-09-03 02:54:35 +08:00
|
|
|
#include "gimphealtool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "gimphuesaturationtool.h"
|
|
|
|
#include "gimpinktool.h"
|
|
|
|
#include "gimpiscissorstool.h"
|
|
|
|
#include "gimplevelstool.h"
|
2012-03-27 04:56:53 +08:00
|
|
|
#include "gimpoperationtool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "gimpmagnifytool.h"
|
|
|
|
#include "gimpmeasuretool.h"
|
|
|
|
#include "gimpmovetool.h"
|
2014-04-06 21:48:53 +08:00
|
|
|
#include "gimpmybrushtool.h"
|
2013-07-31 06:45:19 +08:00
|
|
|
#include "gimpnpointdeformationtool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "gimppaintbrushtool.h"
|
|
|
|
#include "gimppenciltool.h"
|
2006-09-08 01:10:22 +08:00
|
|
|
#include "gimpperspectiveclonetool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "gimpperspectivetool.h"
|
|
|
|
#include "gimpthresholdtool.h"
|
2006-06-11 05:34:12 +08:00
|
|
|
#include "gimprectangleselecttool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "gimprotatetool.h"
|
2011-08-06 19:15:02 +08:00
|
|
|
#include "gimpseamlessclonetool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "gimpscaletool.h"
|
|
|
|
#include "gimpsheartool.h"
|
|
|
|
#include "gimpsmudgetool.h"
|
|
|
|
#include "gimptexttool.h"
|
2011-08-06 06:00:35 +08:00
|
|
|
#include "gimpunifiedtransformtool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
#include "gimpvectortool.h"
|
2011-05-24 03:11:08 +08:00
|
|
|
#include "gimpwarptool.h"
|
2003-09-18 21:51:10 +08:00
|
|
|
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* local function prototypes */
|
|
|
|
|
|
|
|
static void gimp_tools_register (GType tool_type,
|
|
|
|
GType tool_options_type,
|
|
|
|
GimpToolOptionsGUIFunc options_gui_func,
|
|
|
|
GimpContextPropMask context_props,
|
|
|
|
const gchar *identifier,
|
|
|
|
const gchar *blurb,
|
|
|
|
const gchar *help,
|
2012-02-14 17:00:26 +08:00
|
|
|
const gchar *menu_label,
|
2003-09-18 21:51:10 +08:00
|
|
|
const gchar *menu_accel,
|
|
|
|
const gchar *help_domain,
|
|
|
|
const gchar *help_data,
|
2014-05-07 07:01:56 +08:00
|
|
|
const gchar *icon_name,
|
2003-09-18 21:51:10 +08:00
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
|
2005-04-12 05:17:59 +08:00
|
|
|
/* private variables */
|
|
|
|
|
|
|
|
static gboolean tool_options_deleted = FALSE;
|
|
|
|
|
|
|
|
|
2003-09-18 21:51:10 +08:00
|
|
|
/* public functions */
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_tools_init (Gimp *gimp)
|
|
|
|
{
|
|
|
|
GimpToolRegisterFunc register_funcs[] =
|
|
|
|
{
|
2016-05-01 22:05:44 +08:00
|
|
|
/* selection tools */
|
2003-09-18 21:51:10 +08:00
|
|
|
|
2016-05-01 22:05:44 +08:00
|
|
|
gimp_rectangle_select_tool_register,
|
|
|
|
gimp_ellipse_select_tool_register,
|
|
|
|
gimp_free_select_tool_register,
|
|
|
|
gimp_fuzzy_select_tool_register,
|
|
|
|
gimp_by_color_select_tool_register,
|
|
|
|
gimp_iscissors_tool_register,
|
|
|
|
gimp_foreground_select_tool_register,
|
2003-09-18 21:51:10 +08:00
|
|
|
|
2016-05-01 22:05:44 +08:00
|
|
|
/* path tool */
|
2003-09-18 21:51:10 +08:00
|
|
|
|
2016-05-01 22:05:44 +08:00
|
|
|
gimp_vector_tool_register,
|
2003-09-18 21:51:10 +08:00
|
|
|
|
|
|
|
/* non-modifying tools */
|
|
|
|
|
|
|
|
gimp_color_picker_tool_register,
|
2016-05-01 22:05:44 +08:00
|
|
|
gimp_magnify_tool_register,
|
|
|
|
gimp_measure_tool_register,
|
2003-09-18 21:51:10 +08:00
|
|
|
|
2016-05-01 22:05:44 +08:00
|
|
|
/* transform tools */
|
2003-09-18 21:51:10 +08:00
|
|
|
|
2016-05-01 22:05:44 +08:00
|
|
|
gimp_move_tool_register,
|
|
|
|
gimp_align_tool_register,
|
|
|
|
gimp_crop_tool_register,
|
|
|
|
gimp_unified_transform_tool_register,
|
|
|
|
gimp_rotate_tool_register,
|
|
|
|
gimp_scale_tool_register,
|
|
|
|
gimp_shear_tool_register,
|
|
|
|
gimp_handle_transform_tool_register,
|
|
|
|
gimp_perspective_tool_register,
|
|
|
|
gimp_flip_tool_register,
|
|
|
|
gimp_cage_tool_register,
|
|
|
|
gimp_warp_tool_register,
|
|
|
|
gimp_n_point_deformation_tool_register,
|
2003-09-18 21:51:10 +08:00
|
|
|
|
2016-05-01 22:05:44 +08:00
|
|
|
/* paint tools */
|
2003-09-18 21:51:10 +08:00
|
|
|
|
2016-05-01 22:05:44 +08:00
|
|
|
gimp_seamless_clone_tool_register,
|
|
|
|
gimp_text_tool_register,
|
|
|
|
gimp_bucket_fill_tool_register,
|
|
|
|
gimp_blend_tool_register,
|
|
|
|
gimp_pencil_tool_register,
|
|
|
|
gimp_paintbrush_tool_register,
|
|
|
|
gimp_eraser_tool_register,
|
|
|
|
gimp_airbrush_tool_register,
|
|
|
|
gimp_ink_tool_register,
|
|
|
|
gimp_mybrush_tool_register,
|
|
|
|
gimp_clone_tool_register,
|
|
|
|
gimp_heal_tool_register,
|
|
|
|
gimp_perspective_clone_tool_register,
|
|
|
|
gimp_convolve_tool_register,
|
|
|
|
gimp_smudge_tool_register,
|
|
|
|
gimp_dodge_burn_tool_register,
|
|
|
|
|
|
|
|
/* color tools */
|
|
|
|
|
|
|
|
gimp_color_balance_tool_register,
|
|
|
|
gimp_hue_saturation_tool_register,
|
|
|
|
gimp_colorize_tool_register,
|
|
|
|
gimp_brightness_contrast_tool_register,
|
|
|
|
gimp_threshold_tool_register,
|
|
|
|
gimp_levels_tool_register,
|
|
|
|
gimp_curves_tool_register,
|
|
|
|
gimp_gegl_tool_register,
|
|
|
|
gimp_operation_tool_register
|
2003-09-18 21:51:10 +08:00
|
|
|
};
|
|
|
|
|
2004-05-10 08:41:57 +08:00
|
|
|
GList *default_order = NULL;
|
|
|
|
GList *list;
|
|
|
|
gint i;
|
2003-09-18 21:51:10 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_GIMP (gimp));
|
|
|
|
|
2008-05-22 17:01:08 +08:00
|
|
|
gimp_tool_options_create_folder ();
|
|
|
|
|
2003-09-18 21:51:10 +08:00
|
|
|
tool_manager_init (gimp);
|
|
|
|
|
2003-10-19 00:23:15 +08:00
|
|
|
gimp_container_freeze (gimp->tool_info_list);
|
|
|
|
|
2003-09-18 21:51:10 +08:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (register_funcs); i++)
|
|
|
|
{
|
|
|
|
register_funcs[i] (gimp_tools_register, gimp);
|
|
|
|
}
|
|
|
|
|
|
|
|
gimp_container_thaw (gimp->tool_info_list);
|
2004-05-10 08:41:57 +08:00
|
|
|
|
2008-11-03 05:34:14 +08:00
|
|
|
for (list = gimp_get_tool_info_iter (gimp);
|
2004-05-10 08:41:57 +08:00
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
const gchar *identifier = gimp_object_get_name (list->data);
|
|
|
|
|
|
|
|
default_order = g_list_prepend (default_order, g_strdup (identifier));
|
|
|
|
}
|
|
|
|
|
|
|
|
default_order = g_list_reverse (default_order);
|
|
|
|
|
2007-07-17 18:04:06 +08:00
|
|
|
g_object_set_data (G_OBJECT (gimp),
|
|
|
|
"gimp-tools-default-order", default_order);
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_tools_exit (Gimp *gimp)
|
|
|
|
{
|
2004-05-10 08:41:57 +08:00
|
|
|
GList *default_order;
|
2010-06-24 04:48:53 +08:00
|
|
|
GList *list;
|
2004-05-10 08:41:57 +08:00
|
|
|
|
2003-09-18 21:51:10 +08:00
|
|
|
g_return_if_fail (GIMP_IS_GIMP (gimp));
|
|
|
|
|
2004-05-10 08:41:57 +08:00
|
|
|
default_order = g_object_get_data (G_OBJECT (gimp),
|
|
|
|
"gimp-tools-default-order");
|
|
|
|
|
2011-03-08 00:10:18 +08:00
|
|
|
g_list_free_full (default_order, (GDestroyNotify) g_free);
|
2004-05-10 08:41:57 +08:00
|
|
|
|
|
|
|
g_object_set_data (G_OBJECT (gimp), "gimp-tools-default-order", NULL);
|
|
|
|
|
2010-06-24 04:48:53 +08:00
|
|
|
for (list = gimp_get_tool_info_iter (gimp);
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpToolInfo *tool_info = list->data;
|
|
|
|
GtkWidget *options_gui;
|
|
|
|
|
2010-10-31 20:05:15 +08:00
|
|
|
options_gui = gimp_tools_get_tool_options_gui (tool_info->tool_options);
|
2010-06-25 00:36:25 +08:00
|
|
|
gtk_widget_destroy (options_gui);
|
2010-10-31 20:05:15 +08:00
|
|
|
gimp_tools_set_tool_options_gui (tool_info->tool_options, NULL);
|
2010-06-24 04:48:53 +08:00
|
|
|
}
|
|
|
|
|
2003-09-18 21:51:10 +08:00
|
|
|
tool_manager_exit (gimp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_tools_restore (Gimp *gimp)
|
|
|
|
{
|
2004-05-18 20:23:56 +08:00
|
|
|
GimpContainer *gimp_list;
|
2014-02-04 07:18:40 +08:00
|
|
|
GimpObject *object;
|
2014-07-02 01:54:50 +08:00
|
|
|
GFile *file;
|
2004-05-18 20:23:56 +08:00
|
|
|
GList *list;
|
2007-12-20 01:45:47 +08:00
|
|
|
GError *error = NULL;
|
2003-09-18 21:51:10 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_GIMP (gimp));
|
|
|
|
|
2016-05-01 22:05:44 +08:00
|
|
|
gimp_list = g_object_new (GIMP_TYPE_LIST,
|
|
|
|
"children-type", GIMP_TYPE_TOOL_INFO,
|
|
|
|
"append", TRUE,
|
|
|
|
NULL);
|
2004-05-24 18:49:34 +08:00
|
|
|
|
2014-07-28 08:04:01 +08:00
|
|
|
file = gimp_directory_file ("toolrc", NULL);
|
2004-05-18 20:23:56 +08:00
|
|
|
|
2005-11-07 06:01:25 +08:00
|
|
|
if (gimp->be_verbose)
|
2014-07-02 01:54:50 +08:00
|
|
|
g_print ("Parsing '%s'\n", gimp_file_get_utf8_name (file));
|
2005-11-07 06:01:25 +08:00
|
|
|
|
2014-07-02 01:54:50 +08:00
|
|
|
if (gimp_config_deserialize_gfile (GIMP_CONFIG (gimp_list), file,
|
|
|
|
NULL, NULL))
|
2004-05-18 20:23:56 +08:00
|
|
|
{
|
2008-11-21 06:45:19 +08:00
|
|
|
gint n = gimp_container_get_n_children (gimp->tool_info_list);
|
2004-05-18 20:23:56 +08:00
|
|
|
gint i;
|
|
|
|
|
2016-05-01 21:22:44 +08:00
|
|
|
for (list = GIMP_LIST (gimp_list)->queue->head, i = 0;
|
2004-05-18 20:23:56 +08:00
|
|
|
list;
|
|
|
|
list = g_list_next (list), i++)
|
|
|
|
{
|
2016-05-01 22:05:44 +08:00
|
|
|
const gchar *name = gimp_object_get_name (list->data);
|
2004-05-18 20:23:56 +08:00
|
|
|
|
|
|
|
object = gimp_container_get_child_by_name (gimp->tool_info_list,
|
|
|
|
name);
|
|
|
|
|
|
|
|
if (object)
|
|
|
|
{
|
|
|
|
g_object_set (object,
|
|
|
|
"visible", GIMP_TOOL_INFO (list->data)->visible,
|
|
|
|
NULL);
|
|
|
|
|
2006-06-22 05:59:03 +08:00
|
|
|
gimp_container_reorder (gimp->tool_info_list,
|
|
|
|
object, MIN (i, n - 1));
|
2004-05-18 20:23:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-02 01:54:50 +08:00
|
|
|
g_object_unref (file);
|
2004-05-18 20:23:56 +08:00
|
|
|
g_object_unref (gimp_list);
|
|
|
|
|
2014-02-04 07:18:40 +08:00
|
|
|
/* make the generic operation tool invisible by default */
|
|
|
|
object = gimp_container_get_child_by_name (gimp->tool_info_list,
|
|
|
|
"gimp-operation-tool");
|
|
|
|
if (object)
|
|
|
|
g_object_set (object, "visible", FALSE, NULL);
|
|
|
|
|
2008-11-03 05:34:14 +08:00
|
|
|
for (list = gimp_get_tool_info_iter (gimp);
|
2003-09-18 21:51:10 +08:00
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
2005-09-04 18:44:04 +08:00
|
|
|
GimpToolInfo *tool_info = GIMP_TOOL_INFO (list->data);
|
2003-09-18 21:51:10 +08:00
|
|
|
|
2004-10-07 01:21:22 +08:00
|
|
|
/* get default values from prefs (see bug #120832) */
|
2015-12-29 19:47:04 +08:00
|
|
|
gimp_config_reset (GIMP_CONFIG (tool_info->tool_options));
|
2005-09-04 18:44:04 +08:00
|
|
|
}
|
|
|
|
|
2007-12-20 01:45:47 +08:00
|
|
|
if (! gimp_contexts_load (gimp, &error))
|
|
|
|
{
|
2008-11-04 20:33:09 +08:00
|
|
|
gimp_message_literal (gimp, NULL, GIMP_MESSAGE_WARNING, error->message);
|
2007-12-20 01:45:47 +08:00
|
|
|
g_clear_error (&error);
|
|
|
|
}
|
2005-09-04 18:44:04 +08:00
|
|
|
|
2015-03-04 03:24:40 +08:00
|
|
|
/* make sure there is always a tool active, so broken config files
|
|
|
|
* can't leave us with no initial tool
|
|
|
|
*/
|
|
|
|
if (! gimp_context_get_tool (gimp_get_user_context (gimp)))
|
|
|
|
{
|
|
|
|
gimp_context_set_tool (gimp_get_user_context (gimp),
|
|
|
|
gimp_get_tool_info_iter (gimp)->data);
|
|
|
|
}
|
|
|
|
|
2008-11-03 05:34:14 +08:00
|
|
|
for (list = gimp_get_tool_info_iter (gimp);
|
2005-09-04 18:44:04 +08:00
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpToolInfo *tool_info = GIMP_TOOL_INFO (list->data);
|
|
|
|
GimpToolOptionsGUIFunc options_gui_func;
|
|
|
|
GtkWidget *options_gui;
|
|
|
|
|
2010-04-18 18:47:18 +08:00
|
|
|
/* copy all context properties except those the tool actually
|
|
|
|
* uses, because the subsequent deserialize() on the tool
|
|
|
|
* options will only set the properties that were set to
|
|
|
|
* non-default values at the time of saving, and we want to
|
|
|
|
* keep these default values as if they have been saved.
|
|
|
|
* (see bug #541586).
|
|
|
|
*/
|
2005-09-04 18:44:04 +08:00
|
|
|
gimp_context_copy_properties (gimp_get_user_context (gimp),
|
|
|
|
GIMP_CONTEXT (tool_info->tool_options),
|
2015-09-09 03:18:49 +08:00
|
|
|
GIMP_CONTEXT_PROP_MASK_ALL &~
|
|
|
|
(tool_info->context_props |
|
|
|
|
GIMP_CONTEXT_PROP_MASK_TOOL |
|
|
|
|
GIMP_CONTEXT_PROP_MASK_PAINT_INFO));
|
2004-10-07 01:21:22 +08:00
|
|
|
|
2006-12-11 23:16:13 +08:00
|
|
|
gimp_tool_options_deserialize (tool_info->tool_options, NULL);
|
2003-09-18 21:51:10 +08:00
|
|
|
|
|
|
|
options_gui_func = g_object_get_data (G_OBJECT (tool_info),
|
|
|
|
"gimp-tool-options-gui-func");
|
|
|
|
|
|
|
|
if (options_gui_func)
|
|
|
|
{
|
|
|
|
options_gui = (* options_gui_func) (tool_info->tool_options);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GtkWidget *label;
|
|
|
|
|
|
|
|
options_gui = gimp_tool_options_gui (tool_info->tool_options);
|
|
|
|
|
2006-08-31 18:33:31 +08:00
|
|
|
label = gtk_label_new (_("This tool has\nno options."));
|
|
|
|
gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_CENTER);
|
|
|
|
gimp_label_set_attributes (GTK_LABEL (label),
|
|
|
|
PANGO_ATTR_STYLE, PANGO_STYLE_ITALIC,
|
|
|
|
-1);
|
2003-09-18 21:51:10 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (options_gui), label, FALSE, FALSE, 6);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
}
|
|
|
|
|
2010-10-31 20:05:15 +08:00
|
|
|
gimp_tools_set_tool_options_gui (tool_info->tool_options,
|
|
|
|
g_object_ref_sink (options_gui));
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-04-12 05:17:59 +08:00
|
|
|
gimp_tools_save (Gimp *gimp,
|
|
|
|
gboolean save_tool_options,
|
|
|
|
gboolean always_save)
|
2003-09-18 21:51:10 +08:00
|
|
|
{
|
2014-07-02 01:54:50 +08:00
|
|
|
GFile *file;
|
2003-09-18 21:51:10 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_GIMP (gimp));
|
|
|
|
|
2005-09-04 18:44:04 +08:00
|
|
|
if (save_tool_options && (! tool_options_deleted || always_save))
|
2003-09-18 21:51:10 +08:00
|
|
|
{
|
2007-12-20 01:45:47 +08:00
|
|
|
GList *list;
|
|
|
|
GError *error = NULL;
|
2003-09-18 21:51:10 +08:00
|
|
|
|
2007-12-20 01:45:47 +08:00
|
|
|
if (! gimp_contexts_save (gimp, &error))
|
|
|
|
{
|
2008-11-04 20:33:09 +08:00
|
|
|
gimp_message_literal (gimp, NULL, GIMP_MESSAGE_WARNING,
|
2013-09-15 00:59:20 +08:00
|
|
|
error->message);
|
2007-12-20 01:45:47 +08:00
|
|
|
g_clear_error (&error);
|
|
|
|
}
|
2003-09-30 04:26:09 +08:00
|
|
|
|
2006-12-11 23:16:13 +08:00
|
|
|
gimp_tool_options_create_folder ();
|
|
|
|
|
2008-11-03 05:34:14 +08:00
|
|
|
for (list = gimp_get_tool_info_iter (gimp);
|
2006-12-11 23:16:13 +08:00
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpToolInfo *tool_info = GIMP_TOOL_INFO (list->data);
|
|
|
|
|
|
|
|
gimp_tool_options_serialize (tool_info->tool_options, NULL);
|
|
|
|
}
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
2004-05-18 20:23:56 +08:00
|
|
|
|
2014-07-28 08:04:01 +08:00
|
|
|
file = gimp_directory_file ("toolrc", NULL);
|
2005-11-07 06:01:25 +08:00
|
|
|
|
|
|
|
if (gimp->be_verbose)
|
2014-07-02 01:54:50 +08:00
|
|
|
g_print ("Writing '%s'\n", gimp_file_get_utf8_name (file));
|
|
|
|
|
|
|
|
gimp_config_serialize_to_gfile (GIMP_CONFIG (gimp->tool_info_list),
|
|
|
|
file,
|
|
|
|
"GIMP toolrc",
|
|
|
|
"end of toolrc",
|
|
|
|
NULL, NULL);
|
|
|
|
g_object_unref (file);
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
|
|
|
|
2005-04-12 05:17:59 +08:00
|
|
|
gboolean
|
|
|
|
gimp_tools_clear (Gimp *gimp,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), FALSE);
|
|
|
|
|
2008-11-03 05:34:14 +08:00
|
|
|
for (list = gimp_get_tool_info_iter (gimp);
|
2006-12-11 23:16:13 +08:00
|
|
|
list && success;
|
2005-04-12 05:17:59 +08:00
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpToolInfo *tool_info = GIMP_TOOL_INFO (list->data);
|
|
|
|
|
2006-12-11 23:16:13 +08:00
|
|
|
success = gimp_tool_options_delete (tool_info->tool_options, NULL);
|
2005-04-12 05:17:59 +08:00
|
|
|
}
|
|
|
|
|
2005-09-04 18:44:04 +08:00
|
|
|
if (success)
|
|
|
|
success = gimp_contexts_clear (gimp, error);
|
|
|
|
|
2005-04-12 05:17:59 +08:00
|
|
|
if (success)
|
|
|
|
tool_options_deleted = TRUE;
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2004-05-10 08:41:57 +08:00
|
|
|
GList *
|
|
|
|
gimp_tools_get_default_order (Gimp *gimp)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
|
|
|
|
|
|
|
return g_object_get_data (G_OBJECT (gimp),
|
|
|
|
"gimp-tools-default-order");
|
|
|
|
}
|
|
|
|
|
2003-09-18 21:51:10 +08:00
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_tools_register (GType tool_type,
|
|
|
|
GType tool_options_type,
|
|
|
|
GimpToolOptionsGUIFunc options_gui_func,
|
|
|
|
GimpContextPropMask context_props,
|
|
|
|
const gchar *identifier,
|
|
|
|
const gchar *blurb,
|
|
|
|
const gchar *help,
|
2012-02-14 17:00:26 +08:00
|
|
|
const gchar *menu_label,
|
2003-09-18 21:51:10 +08:00
|
|
|
const gchar *menu_accel,
|
|
|
|
const gchar *help_domain,
|
|
|
|
const gchar *help_data,
|
2014-05-07 07:01:56 +08:00
|
|
|
const gchar *icon_name,
|
2003-09-18 21:51:10 +08:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
Gimp *gimp = (Gimp *) data;
|
|
|
|
GimpToolInfo *tool_info;
|
|
|
|
const gchar *paint_core_name;
|
2006-05-24 23:04:45 +08:00
|
|
|
gboolean visible;
|
2003-09-18 21:51:10 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_GIMP (gimp));
|
|
|
|
g_return_if_fail (g_type_is_a (tool_type, GIMP_TYPE_TOOL));
|
|
|
|
g_return_if_fail (tool_options_type == G_TYPE_NONE ||
|
|
|
|
g_type_is_a (tool_options_type, GIMP_TYPE_TOOL_OPTIONS));
|
|
|
|
|
|
|
|
if (tool_options_type == G_TYPE_NONE)
|
|
|
|
tool_options_type = GIMP_TYPE_TOOL_OPTIONS;
|
|
|
|
|
|
|
|
if (tool_type == GIMP_TYPE_PENCIL_TOOL)
|
|
|
|
{
|
2005-12-28 02:57:01 +08:00
|
|
|
paint_core_name = "gimp-pencil";
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
|
|
|
else if (tool_type == GIMP_TYPE_PAINTBRUSH_TOOL)
|
|
|
|
{
|
2005-12-28 02:57:01 +08:00
|
|
|
paint_core_name = "gimp-paintbrush";
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
|
|
|
else if (tool_type == GIMP_TYPE_ERASER_TOOL)
|
|
|
|
{
|
2005-12-28 02:57:01 +08:00
|
|
|
paint_core_name = "gimp-eraser";
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
|
|
|
else if (tool_type == GIMP_TYPE_AIRBRUSH_TOOL)
|
|
|
|
{
|
2005-12-28 02:57:01 +08:00
|
|
|
paint_core_name = "gimp-airbrush";
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
|
|
|
else if (tool_type == GIMP_TYPE_CLONE_TOOL)
|
|
|
|
{
|
2005-12-28 02:57:01 +08:00
|
|
|
paint_core_name = "gimp-clone";
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
2006-09-03 02:54:35 +08:00
|
|
|
else if (tool_type == GIMP_TYPE_HEAL_TOOL)
|
|
|
|
{
|
|
|
|
paint_core_name = "gimp-heal";
|
|
|
|
}
|
2006-09-08 01:10:22 +08:00
|
|
|
else if (tool_type == GIMP_TYPE_PERSPECTIVE_CLONE_TOOL)
|
|
|
|
{
|
|
|
|
paint_core_name = "gimp-perspective-clone";
|
|
|
|
}
|
2003-09-18 21:51:10 +08:00
|
|
|
else if (tool_type == GIMP_TYPE_CONVOLVE_TOOL)
|
|
|
|
{
|
2005-12-28 02:57:01 +08:00
|
|
|
paint_core_name = "gimp-convolve";
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
|
|
|
else if (tool_type == GIMP_TYPE_SMUDGE_TOOL)
|
|
|
|
{
|
2005-12-28 02:57:01 +08:00
|
|
|
paint_core_name = "gimp-smudge";
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
2004-04-21 18:55:45 +08:00
|
|
|
else if (tool_type == GIMP_TYPE_DODGE_BURN_TOOL)
|
2003-09-18 21:51:10 +08:00
|
|
|
{
|
2005-12-28 02:57:01 +08:00
|
|
|
paint_core_name = "gimp-dodge-burn";
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
2004-05-26 23:34:45 +08:00
|
|
|
else if (tool_type == GIMP_TYPE_INK_TOOL)
|
|
|
|
{
|
2005-12-28 02:57:01 +08:00
|
|
|
paint_core_name = "gimp-ink";
|
2004-05-26 23:34:45 +08:00
|
|
|
}
|
2014-04-06 21:48:53 +08:00
|
|
|
else if (tool_type == GIMP_TYPE_MYBRUSH_TOOL)
|
|
|
|
{
|
|
|
|
paint_core_name = "gimp-mybrush";
|
|
|
|
}
|
2003-09-18 21:51:10 +08:00
|
|
|
else
|
|
|
|
{
|
2005-12-28 02:57:01 +08:00
|
|
|
paint_core_name = "gimp-paintbrush";
|
2003-09-18 21:51:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
tool_info = gimp_tool_info_new (gimp,
|
2006-04-12 20:49:29 +08:00
|
|
|
tool_type,
|
2003-09-18 21:51:10 +08:00
|
|
|
tool_options_type,
|
2006-04-12 20:49:29 +08:00
|
|
|
context_props,
|
|
|
|
identifier,
|
|
|
|
blurb,
|
|
|
|
help,
|
2012-02-14 17:00:26 +08:00
|
|
|
menu_label,
|
2006-04-12 20:49:29 +08:00
|
|
|
menu_accel,
|
|
|
|
help_domain,
|
|
|
|
help_data,
|
2003-09-18 21:51:10 +08:00
|
|
|
paint_core_name,
|
2014-05-07 07:01:56 +08:00
|
|
|
icon_name);
|
2003-09-18 21:51:10 +08:00
|
|
|
|
2016-05-10 06:08:36 +08:00
|
|
|
visible = (! g_type_is_a (tool_type, GIMP_TYPE_FILTER_TOOL));
|
2006-05-24 23:04:45 +08:00
|
|
|
|
|
|
|
g_object_set (tool_info, "visible", visible, NULL);
|
|
|
|
g_object_set_data (G_OBJECT (tool_info), "gimp-tool-default-visible",
|
|
|
|
GINT_TO_POINTER (visible));
|
2003-09-18 21:51:10 +08:00
|
|
|
|
|
|
|
g_object_set_data (G_OBJECT (tool_info), "gimp-tool-options-gui-func",
|
|
|
|
options_gui_func);
|
|
|
|
|
|
|
|
gimp_container_add (gimp->tool_info_list, GIMP_OBJECT (tool_info));
|
|
|
|
g_object_unref (tool_info);
|
|
|
|
|
2004-08-26 17:41:18 +08:00
|
|
|
if (tool_type == GIMP_TYPE_PAINTBRUSH_TOOL)
|
2003-09-18 21:51:10 +08:00
|
|
|
gimp_tool_info_set_standard (gimp, tool_info);
|
|
|
|
}
|