2003-09-18 Michael Natterer <mitch@gimp.org> * app/paint/Makefile.am * app/paint/paint.[ch]: removed... * app/paint/gimp-paint.[ch]: ...and added. * app/core/gimp.c: changed accordingly. * app/tools/Makefile.am * app/tools/tools.[ch]: removed... * app/tools/gimp-tools.[ch]: ...and added. Added gimp_tools_restore() and gimp_tools_save() and moved the entire tool registering and tool_options loading/saving code here. Call tool_manager_init() from gimp_tools_init() and tool_manager_exit() from gimp_tools_exit(). * app/tools/tool_manager.[ch]: removed the code which now lives in gimp-tools.[ch]. The tool manager now has no knowledge about individual tools any more and just handles the active_tool and the tool part of tool <-> display interaction. Removed tool_manager_get_info_by_type(). * app/tools/gimpvectortool.c (gimp_vector_tool_register): the tool's identifier is "gimp-vector-tool", not "gimp-path-tool". * app/app_procs.c * app/display/gimpdisplayshell-callbacks.c * app/gui/vectors-commands.c * app/tools/gimppainttool.c: changed accordingly.
75 lines
4.0 KiB
C
75 lines
4.0 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 __TOOL_MANAGER_H__
|
|
#define __TOOL_MANAGER_H__
|
|
|
|
|
|
void tool_manager_init (Gimp *gimp);
|
|
void tool_manager_exit (Gimp *gimp);
|
|
|
|
GimpTool * tool_manager_get_active (Gimp *gimp);
|
|
|
|
void tool_manager_select_tool (Gimp *gimp,
|
|
GimpTool *tool);
|
|
|
|
void tool_manager_push_tool (Gimp *gimp,
|
|
GimpTool *tool);
|
|
void tool_manager_pop_tool (Gimp *gimp);
|
|
|
|
|
|
void tool_manager_initialize_active (Gimp *gimp,
|
|
GimpDisplay *gdisp);
|
|
void tool_manager_control_active (Gimp *gimp,
|
|
GimpToolAction action,
|
|
GimpDisplay *gdisp);
|
|
void tool_manager_button_press_active (Gimp *gimp,
|
|
GimpCoords *coords,
|
|
guint32 time,
|
|
GdkModifierType state,
|
|
GimpDisplay *gdisp);
|
|
void tool_manager_button_release_active (Gimp *gimp,
|
|
GimpCoords *coords,
|
|
guint32 time,
|
|
GdkModifierType state,
|
|
GimpDisplay *gdisp);
|
|
void tool_manager_motion_active (Gimp *gimp,
|
|
GimpCoords *coords,
|
|
guint32 time,
|
|
GdkModifierType state,
|
|
GimpDisplay *gdisp);
|
|
void tool_manager_arrow_key_active (Gimp *gimp,
|
|
GdkEventKey *kevent,
|
|
GimpDisplay *gdisp);
|
|
void tool_manager_modifier_key_active (Gimp *gimp,
|
|
GdkModifierType key,
|
|
gboolean press,
|
|
GdkModifierType state,
|
|
GimpDisplay *gdisp);
|
|
void tool_manager_oper_update_active (Gimp *gimp,
|
|
GimpCoords *coords,
|
|
GdkModifierType state,
|
|
GimpDisplay *gdisp);
|
|
void tool_manager_cursor_update_active (Gimp *gimp,
|
|
GimpCoords *coords,
|
|
GdkModifierType state,
|
|
GimpDisplay *gdisp);
|
|
|
|
|
|
#endif /* __TOOL_MANAGER_H__ */
|