2001-02-21 Michael Natterer <mitch@gimp.org> * configure.in: forgot one s/gimptool/gimptool-1.4/ * app/appenums.h: removed "UPDATE_CURSOR" from the ToolAction enum. * app/context_manager.c: removed the toolbox toggle button updating code here... * app/toolbox.c: ...and handle it in the toolbox itself. * app/devices.c: removed some obsolete old tool suff. * app/tools/Makefile.am * app/tools/move.[ch]: reactivated. Disabled the edit_selection stuff for now. We need a way to temporary push tools to some stack of the tool manager. * app/tools/tool.[ch]: removed lot of stuff that is obsolete or handled by the GimpToolInfo object now. * app/tools/tool_manager.[ch]: stripped all tool options stuff because they will be able to follow tool changes themselves. Renamed some functions to be consistent. * app/tools/tools.c: register the move tool again. * app/cursorutil.c * app/disp_callbacks.c * app/gimage_mask.c * app/global_edit.c * app/tools/color_picker.c * app/tools/measure.[ch] * app/tools/tool_options.c: changed accordingly.
61 lines
1.9 KiB
C
61 lines
1.9 KiB
C
/* 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.
|
|
*/
|
|
|
|
#ifndef __MOVE_H__
|
|
#define __MOVE_H__
|
|
|
|
|
|
#include "tool.h"
|
|
|
|
|
|
#define GIMP_TYPE_MOVE_TOOL (gimp_move_tool_get_type ())
|
|
#define GIMP_MOVE_TOOL(obj) (GTK_CHECK_CAST ((obj), GIMP_TYPE_MOVE_TOOL, GimpMoveTool))
|
|
#define GIMP_IS_MOVE_TOOL(obj) (GTK_CHECK_TYPE ((obj), GIMP_TYPE_MOVE_TOOL))
|
|
#define GIMP_MOVE_TOOL_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GIMP_TYPE_MOVE_TOOL, GimpMoveToolClass))
|
|
#define GIMP_IS_MOVE_TOOL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_MOVE_TOOL))
|
|
|
|
|
|
typedef struct _GimpMoveTool GimpMoveTool;
|
|
typedef struct _GimpMoveToolClass GimpMoveToolClass;
|
|
|
|
struct _GimpMoveTool
|
|
{
|
|
GimpTool parent_instance;
|
|
|
|
GimpLayer *layer;
|
|
Guide *guide;
|
|
GDisplay *disp;
|
|
};
|
|
|
|
struct _GimpMoveToolClass
|
|
{
|
|
GimpToolClass parent_class;
|
|
};
|
|
|
|
|
|
GtkType gimp_move_tool_get_type (void);
|
|
|
|
void gimp_move_tool_register (void);
|
|
|
|
void gimp_move_tool_start_hguide (GimpTool *tool,
|
|
GDisplay *gdisp);
|
|
void gimp_move_tool_start_vguide (GimpTool *tool,
|
|
GDisplay *gdisp);
|
|
|
|
|
|
#endif /* __MOVE_H__ */
|