gimp/plug-ins/tools/gimptoolcontrol.c
Nate Summers 810b983110 app/tools/gimptoolcontrol.[ch] resurrected the motion hints and cursor
* app/tools/gimptoolcontrol.[ch]
 	* libgimptool/gimptool.c: resurrected the motion hints and cursor
 	changing code.

 	app/tools/gimpairbrushtool.c
	app/tools/gimpbezierselecttool.c
 	app/tools/gimpblendtool.c
 	app/tools/gimpbucketfilltool.c
 	app/tools/gimpbycolorselecttool.c
 	app/tools/gimpclonetool.c
 	app/tools/gimpcolorbalancetool.c
 	app/tools/gimpcolorpickertool.c
 	app/tools/gimpconvolvetool.c
 	app/tools/gimpcroptool.c
 	app/tools/gimpcurvestool.c
 	app/tools/gimpdodgeburntool.c
 	app/tools/gimpeditselectiontool.c
 	app/tools/gimpellipseselecttool.c
 	app/tools/gimperasertool.c
 	app/tools/gimpfliptool.c
 	app/tools/gimpfuzzyselecttool.c
 	app/tools/gimphistogramtool.c
 	app/tools/gimphuesaturationtool.c
 	app/tools/gimpimagemaptool.c
 	app/tools/gimpinktool.c
 	app/tools/gimpiscissorstool.c
 	app/tools/gimplevelstool.c
 	app/tools/gimpmagnifytool.c
 	app/tools/gimpmeasuretool.c
 	app/tools/gimpmovetool.c
 	app/tools/gimppaintbrushtool.c
 	app/tools/gimppainttool.c
 	app/tools/gimppathtool.c
 	app/tools/gimppenciltool.c
 	app/tools/gimpperspectivetool.c
 	app/tools/gimprectselecttool.c
 	app/tools/gimprotatetool.c
 	app/tools/gimpscaletool.c
 	app/tools/gimpselectiontool.c
 	app/tools/gimpsheartool.c
 	app/tools/gimpsmudgetool.c
 	app/tools/gimptexttool.c
 	app/tools/gimptransformtool.c
 	app/tools/gimpvectortool.c: set the motion mode; fix a few parameters

 	* app/tools/gimpinktool.c (gimp_ink_tool_button_press): uncommented
 	some code I had temporarily commented out and didn't uncomment before
 	committing

 	* libgimptool/gimptoolcontrol.h
 	* app/tools/gimptoolcontrol-displayshell.[ch]: merged with
 	gimptoolcontrol.[ch].  The distinction was fairly arbitrary.

 	* plug-ins/tools/gimptoolcontrol.c: added some stubs

        * app/tools/Makefile.am
 	* app/tools/tool_manager.c
 	* app/display/gimpdisplayshell-callbacks.c: changed accordingly

 	* libgimp/gimpimage_pdb.c: applied a patch from Pippen to correct
 	documentation on the undo operations
2002-04-21 07:31:12 +00:00

162 lines
4.8 KiB
C

/* The GIMP -- an image manipulation program
* Copyright (C) 1995-2002 Spencer Kimball, Peter Mattis and others
*
* 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 <gtk/gtk.h>
#include "config.h"
#include "core-types.h"
#include "widgets/widgets-types.h"
#include "libgimptool/gimptooltypes.h"
#include "gimptoolcontrol.h"
static void gimp_tool_control_class_init (GimpToolControlClass *klass);
static void gimp_tool_control_init (GimpToolControl *tool);
static GimpObjectClass *parent_class = NULL;
GType
gimp_tool_control_get_type (void)
{
static GType tool_control_type = 0;
if (! tool_control_type)
{
static const GTypeInfo tool_control_info =
{
sizeof (GimpToolControlClass),
(GBaseInitFunc) NULL,
(GBaseFinalizeFunc) NULL,
(GClassInitFunc) gimp_tool_control_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (GimpToolControl),
0, /* n_preallocs */
(GInstanceInitFunc) gimp_tool_control_init,
};
tool_control_type = g_type_register_static (GIMP_TYPE_OBJECT,
"GimpToolControl",
&tool_control_info, 0);
}
return tool_control_type;
}
static void
gimp_tool_control_class_init (GimpToolControlClass *klass)
{
parent_class = g_type_class_peek_parent (klass);
}
static void
gimp_tool_control_init (GimpToolControl *control)
{
#if 0
control->state = INACTIVE;
control->paused_count = 0;
control->toggled = FALSE;
#endif
}
GimpToolControl *
gimp_tool_control_new (gboolean scroll_lock,
gboolean auto_snap_to,
gboolean preserve,
gboolean handle_empty_image,
gboolean perfectmouse,
/* are all these necessary? */
GdkCursorType cursor,
GimpToolCursorType tool_cursor,
GimpCursorModifier cursor_modifier,
GdkCursorType toggle_cursor,
GimpToolCursorType toggle_tool_cursor,
GimpCursorModifier toggle_cursor_modifier)
{
GimpToolControl *control;
control = GIMP_TOOL_CONTROL (g_object_new (GIMP_TYPE_TOOL_CONTROL, NULL));
#if 0
control->scroll_lock = scroll_lock;
control->auto_snap_to = auto_snap_to;
control->preserve = preserve;
control->handle_empty_image = handle_empty_image;
control->perfectmouse = perfectmouse;
control->cursor = cursor;
control->tool_cursor = tool_cursor;
control->cursor_modifier = cursor_modifier;
control->toggle_cursor = toggle_cursor;
control->toggle_tool_cursor = toggle_tool_cursor;
control->toggle_cursor_modifier = toggle_cursor_modifier;
#endif
return control;
}
void gimp_tool_control_pause (GimpToolControl *control)
{
g_return_if_fail(GIMP_IS_TOOL_CONTROL(control));
/* control->state = PAUSED ? */
#if 0
control->paused_count++;
#endif
}
void gimp_tool_control_resume (GimpToolControl *control)
{
g_return_if_fail(GIMP_IS_TOOL_CONTROL(control));
#if 0
control->paused_count--;
#endif
}
gboolean gimp_tool_control_is_paused (GimpToolControl *control)
{
#if 0
g_return_val_if_fail(GIMP_IS_TOOL_CONTROL(control), FALSE);
return control->paused_count > 0;
#else
return 0;
#endif
}
void gimp_tool_control_halt (GimpToolControl *control)
{
g_return_if_fail(GIMP_IS_TOOL_CONTROL(control));
#if 0
control->state = INACTIVE;
control->paused_count = 0;
#endif
}
GdkCursorType gimp_tool_control_get_toggle_cursor (GimpToolControl *control) {return 0;}
GdkCursorType gimp_tool_control_get_tool_cursor (GimpToolControl *control){return 0;}
GimpCursorModifier gimp_tool_control_get_cursor_modifier(GimpToolControl *control){return 0;}
GimpCursorModifier gimp_tool_control_get_toggle_cursor_modifier(GimpToolControl *control){return 0;}
gboolean gimp_tool_control_is_toggled (GimpToolControl *control){return 0;}
GimpToolCursorType gimp_tool_control_get_toggle_tool_cursor(GimpToolControl *control) {return 0;}
GimpToolCursorType gimp_tool_control_get_cursor(GimpToolControl *control){return 0;}