2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-02-13 21:16:58 -08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-02-13 21:16:58 -08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-02-13 21:16:58 -08:00
|
|
|
* (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
|
2018-07-11 14:47:19 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2001-02-13 21:16:58 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __TOOL_MANAGER_H__
|
|
|
|
|
#define __TOOL_MANAGER_H__
|
|
|
|
|
|
2001-02-21 13:56:39 -08:00
|
|
|
|
2006-09-12 11:41:09 -07:00
|
|
|
void tool_manager_init (Gimp *gimp);
|
|
|
|
|
void tool_manager_exit (Gimp *gimp);
|
2001-07-07 05:17:23 -07:00
|
|
|
|
2006-09-12 11:41:09 -07:00
|
|
|
GimpTool * tool_manager_get_active (Gimp *gimp);
|
2003-02-10 03:46:10 -08:00
|
|
|
|
2006-09-12 11:41:09 -07:00
|
|
|
void tool_manager_push_tool (Gimp *gimp,
|
|
|
|
|
GimpTool *tool);
|
|
|
|
|
void tool_manager_pop_tool (Gimp *gimp);
|
2001-02-13 21:16:58 -08:00
|
|
|
|
|
|
|
|
|
2006-09-12 11:41:09 -07:00
|
|
|
gboolean tool_manager_initialize_active (Gimp *gimp,
|
|
|
|
|
GimpDisplay *display);
|
|
|
|
|
void tool_manager_control_active (Gimp *gimp,
|
|
|
|
|
GimpToolAction action,
|
|
|
|
|
GimpDisplay *display);
|
|
|
|
|
void tool_manager_button_press_active (Gimp *gimp,
|
2008-11-01 08:17:36 -07:00
|
|
|
const GimpCoords *coords,
|
2006-09-12 11:41:09 -07:00
|
|
|
guint32 time,
|
|
|
|
|
GdkModifierType state,
|
2009-06-20 08:37:31 -07:00
|
|
|
GimpButtonPressType press_type,
|
2006-09-12 11:41:09 -07:00
|
|
|
GimpDisplay *display);
|
|
|
|
|
void tool_manager_button_release_active (Gimp *gimp,
|
2008-11-01 08:17:36 -07:00
|
|
|
const GimpCoords *coords,
|
2006-09-12 11:41:09 -07:00
|
|
|
guint32 time,
|
|
|
|
|
GdkModifierType state,
|
|
|
|
|
GimpDisplay *display);
|
|
|
|
|
void tool_manager_motion_active (Gimp *gimp,
|
2008-11-01 08:17:36 -07:00
|
|
|
const GimpCoords *coords,
|
2006-09-12 11:41:09 -07:00
|
|
|
guint32 time,
|
|
|
|
|
GdkModifierType state,
|
|
|
|
|
GimpDisplay *display);
|
|
|
|
|
gboolean tool_manager_key_press_active (Gimp *gimp,
|
|
|
|
|
GdkEventKey *kevent,
|
|
|
|
|
GimpDisplay *display);
|
2010-02-18 11:50:11 -08:00
|
|
|
gboolean tool_manager_key_release_active (Gimp *gimp,
|
|
|
|
|
GdkEventKey *kevent,
|
|
|
|
|
GimpDisplay *display);
|
2003-10-14 04:14:28 -07:00
|
|
|
|
2006-09-12 11:41:09 -07:00
|
|
|
void tool_manager_focus_display_active (Gimp *gimp,
|
|
|
|
|
GimpDisplay *display);
|
|
|
|
|
void tool_manager_modifier_state_active (Gimp *gimp,
|
|
|
|
|
GdkModifierType state,
|
|
|
|
|
GimpDisplay *display);
|
2003-10-14 04:14:28 -07:00
|
|
|
|
2006-09-12 11:41:09 -07:00
|
|
|
void tool_manager_active_modifier_state_active (Gimp *gimp,
|
|
|
|
|
GdkModifierType state,
|
|
|
|
|
GimpDisplay *display);
|
|
|
|
|
|
|
|
|
|
void tool_manager_oper_update_active (Gimp *gimp,
|
2008-11-01 08:17:36 -07:00
|
|
|
const GimpCoords *coords,
|
2006-09-12 11:41:09 -07:00
|
|
|
GdkModifierType state,
|
|
|
|
|
gboolean proximity,
|
|
|
|
|
GimpDisplay *display);
|
|
|
|
|
void tool_manager_cursor_update_active (Gimp *gimp,
|
2008-11-01 08:17:36 -07:00
|
|
|
const GimpCoords *coords,
|
2006-09-12 11:41:09 -07:00
|
|
|
GdkModifierType state,
|
|
|
|
|
GimpDisplay *display);
|
2001-02-13 21:16:58 -08:00
|
|
|
|
2017-07-04 09:48:03 -07:00
|
|
|
const gchar * tool_manager_can_undo_active (Gimp *gimp,
|
2013-05-12 10:51:52 -07:00
|
|
|
GimpDisplay *display);
|
2017-07-04 09:48:03 -07:00
|
|
|
const gchar * tool_manager_can_redo_active (Gimp *gimp,
|
2013-05-12 10:51:52 -07:00
|
|
|
GimpDisplay *display);
|
|
|
|
|
gboolean tool_manager_undo_active (Gimp *gimp,
|
|
|
|
|
GimpDisplay *display);
|
|
|
|
|
gboolean tool_manager_redo_active (Gimp *gimp,
|
|
|
|
|
GimpDisplay *display);
|
|
|
|
|
|
2008-10-26 09:25:24 -07:00
|
|
|
GimpUIManager * tool_manager_get_popup_active (Gimp *gimp,
|
2008-11-01 08:17:36 -07:00
|
|
|
const GimpCoords *coords,
|
2008-10-26 09:25:24 -07:00
|
|
|
GdkModifierType state,
|
|
|
|
|
GimpDisplay *display,
|
|
|
|
|
const gchar **ui_path);
|
|
|
|
|
|
2001-02-13 21:16:58 -08:00
|
|
|
|
|
|
|
|
#endif /* __TOOL_MANAGER_H__ */
|