2001-02-14 13:16:58 +08:00
|
|
|
/* 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__
|
|
|
|
|
2001-02-22 05:56:39 +08:00
|
|
|
|
2001-07-18 04:50:01 +08:00
|
|
|
void tool_manager_init (Gimp *gimp);
|
2002-06-17 18:34:28 +08:00
|
|
|
void tool_manager_restore (Gimp *gimp);
|
2001-07-18 04:50:01 +08:00
|
|
|
void tool_manager_exit (Gimp *gimp);
|
2001-07-07 20:17:23 +08:00
|
|
|
|
2001-07-18 04:50:01 +08:00
|
|
|
GimpTool * tool_manager_get_active (Gimp *gimp);
|
2001-07-07 20:17:23 +08:00
|
|
|
|
2001-07-18 04:50:01 +08:00
|
|
|
void tool_manager_select_tool (Gimp *gimp,
|
|
|
|
GimpTool *tool);
|
2001-02-14 13:16:58 +08:00
|
|
|
|
2001-07-18 04:50:01 +08:00
|
|
|
void tool_manager_push_tool (Gimp *gimp,
|
|
|
|
GimpTool *tool);
|
|
|
|
void tool_manager_pop_tool (Gimp *gimp);
|
2001-02-14 13:16:58 +08:00
|
|
|
|
2001-02-28 10:29:25 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
void tool_manager_initialize_active (Gimp *gimp,
|
2001-10-17 19:33:43 +08:00
|
|
|
GimpDisplay *gdisp);
|
2001-07-18 04:50:01 +08:00
|
|
|
void tool_manager_control_active (Gimp *gimp,
|
2002-02-19 01:00:09 +08:00
|
|
|
GimpToolAction action,
|
2001-10-17 19:33:43 +08:00
|
|
|
GimpDisplay *gdisp);
|
2001-11-15 01:12:51 +08:00
|
|
|
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);
|
|
|
|
|
2001-02-28 10:53:27 +08:00
|
|
|
|
2001-07-18 04:50:01 +08:00
|
|
|
const gchar * tool_manager_active_get_help_data (Gimp *gimp);
|
2001-02-21 20:18:09 +08:00
|
|
|
|
2001-02-14 13:16:58 +08:00
|
|
|
|
2002-03-29 11:50:29 +08:00
|
|
|
void tool_manager_register_tool (GType tool_type,
|
2003-02-05 22:39:40 +08:00
|
|
|
GType tool_options_type,
|
|
|
|
GimpToolOptionsGUIFunc options_gui_func,
|
2001-07-18 04:50:01 +08:00
|
|
|
gboolean tool_context,
|
|
|
|
const gchar *identifier,
|
|
|
|
const gchar *blurb,
|
|
|
|
const gchar *help,
|
|
|
|
const gchar *menu_path,
|
|
|
|
const gchar *menu_accel,
|
|
|
|
const gchar *help_domain,
|
|
|
|
const gchar *help_data,
|
2002-03-29 11:50:29 +08:00
|
|
|
const gchar *stock_id,
|
2002-05-03 19:31:08 +08:00
|
|
|
gpointer data);
|
2001-02-21 20:18:09 +08:00
|
|
|
|
2001-07-18 04:50:01 +08:00
|
|
|
GimpToolInfo * tool_manager_get_info_by_type (Gimp *gimp,
|
2001-08-14 22:53:55 +08:00
|
|
|
GType tool_type);
|
2001-02-14 13:16:58 +08:00
|
|
|
|
|
|
|
|
2001-07-18 04:50:01 +08:00
|
|
|
void tool_manager_help_func (const gchar *help_data);
|
2001-02-22 05:56:39 +08:00
|
|
|
|
|
|
|
|
2001-02-14 13:16:58 +08:00
|
|
|
#endif /* __TOOL_MANAGER_H__ */
|