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
|
|
|
|
|
|
|
#include "tool.h" /* EEEEEEEEEEK */
|
2001-02-14 13:16:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* Function declarations */
|
2001-02-21 20:18:09 +08:00
|
|
|
void tool_manager_select_tool (GimpTool *tool);
|
2001-02-14 13:16:58 +08:00
|
|
|
|
2001-02-28 10:29:25 +08:00
|
|
|
void tool_manager_push_tool (GimpTool *tool);
|
|
|
|
void tool_manager_pop_tool (void);
|
|
|
|
|
|
|
|
|
2001-02-21 20:18:09 +08:00
|
|
|
void tool_manager_initialize_tool (GimpTool *tool,
|
|
|
|
GDisplay *gdisp);
|
2001-02-14 13:16:58 +08:00
|
|
|
|
2001-02-21 20:18:09 +08:00
|
|
|
void tool_manager_control_active (ToolAction action,
|
|
|
|
GDisplay *gdisp);
|
|
|
|
|
|
|
|
void tool_manager_register (GimpToolClass *tool_type
|
2001-02-14 13:16:58 +08:00
|
|
|
/*, ToolOptions *tool_options*/);
|
|
|
|
|
2001-02-21 20:18:09 +08:00
|
|
|
|
|
|
|
void tool_manager_init (void);
|
|
|
|
|
|
|
|
void tool_manager_register_tool (GtkType tool_type,
|
2001-02-28 07:20:51 +08:00
|
|
|
gboolean tool_context,
|
2001-02-24 05:32:47 +08:00
|
|
|
const gchar *identifier,
|
|
|
|
const gchar *blurb,
|
|
|
|
const gchar *help,
|
2001-02-21 20:18:09 +08:00
|
|
|
const gchar *menu_path,
|
|
|
|
const gchar *menu_accel,
|
|
|
|
const gchar *help_domain,
|
|
|
|
const gchar *help_data,
|
|
|
|
const gchar **icon_data);
|
|
|
|
|
2001-02-24 05:32:47 +08:00
|
|
|
void tool_manager_register_tool_options (GtkType tool_type,
|
|
|
|
ToolOptions *tool_options);
|
2001-02-21 20:18:09 +08:00
|
|
|
|
2001-02-24 05:32:47 +08:00
|
|
|
GimpToolInfo * tool_manager_get_info_by_type (GtkType tool_type);
|
|
|
|
GimpToolInfo * tool_manager_get_info_by_tool (GimpTool *tool);
|
2001-02-21 20:18:09 +08:00
|
|
|
|
2001-02-14 13:16:58 +08:00
|
|
|
|
2001-02-24 05:32:47 +08:00
|
|
|
const gchar * tool_manager_active_get_PDB_string (void);
|
|
|
|
const gchar * tool_manager_active_get_help_data (void);
|
2001-02-14 13:16:58 +08:00
|
|
|
|
2001-02-24 05:32:47 +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
|
|
|
/* Global Data Structures */
|
2001-02-21 20:18:09 +08:00
|
|
|
extern GimpTool *active_tool;
|
|
|
|
|
|
|
|
extern GimpContainer *global_tool_info_list;
|
2001-02-14 13:16:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __TOOL_MANAGER_H__ */
|