forgot a file

This commit is contained in:
Nate Summers
2001-02-14 05:16:58 +00:00
parent 35ac032ff1
commit ac6149fb86

44
app/tools/tool_manager.h Normal file
View File

@ -0,0 +1,44 @@
/* 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__
#include "gimpdrawable.h"
#include "tool.h"
/* Function declarations */
void tool_manager_select (GimpTool *tool);
void tool_manager_control_active (ToolAction action,
GDisplay *gdisp);
void tool_manager_register (GimpToolClass *tool_type
/*, ToolOptions *tool_options*/);
gchar * tool_manager_get_active_PDB_string (void);
gchar * tool_manager_active_get_help_data (void);
/* Global Data Structures */
extern GimpTool *active_tool;
extern GSList *registered_tools;
#endif /* __TOOL_MANAGER_H__ */