2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1997-11-24 14:05:25 -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
|
1997-11-24 14:05:25 -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
|
1997-11-24 14:05:25 -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/>.
|
1997-11-24 14:05:25 -08:00
|
|
|
*/
|
2000-10-23 02:05:45 -07:00
|
|
|
|
2001-02-27 18:29:25 -08:00
|
|
|
#ifndef __GIMP_EDIT_SELECTION_TOOL_H__
|
|
|
|
|
#define __GIMP_EDIT_SELECTION_TOOL_H__
|
1997-11-24 14:05:25 -08:00
|
|
|
|
2000-10-23 02:05:45 -07:00
|
|
|
|
2006-11-24 06:08:40 -08:00
|
|
|
#include "gimpdrawtool.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_EDIT_SELECTION_TOOL (gimp_edit_selection_tool_get_type ())
|
2008-06-20 04:08:42 -07:00
|
|
|
#define GIMP_EDIT_SELECTION_TOOL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_EDIT_SELECTION_TOOL, GimpEditSelectionTool))
|
|
|
|
|
#define GIMP_EDIT_SELECTION_TOOL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_EDIT_SELECTION_TOOL, GimpEditSelectionToolClass))
|
|
|
|
|
#define GIMP_IS_EDIT_SELECTION_TOOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_EDIT_SELECTION_TOOL))
|
|
|
|
|
#define GIMP_IS_EDIT_SELECTION_TOOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_EDIT_SELECTION_TOOL))
|
2006-11-24 06:08:40 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
GType gimp_edit_selection_tool_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
2004-07-26 07:50:51 -07:00
|
|
|
void gimp_edit_selection_tool_start (GimpTool *parent_tool,
|
2006-03-28 09:59:18 -08:00
|
|
|
GimpDisplay *display,
|
2008-11-01 08:17:36 -07:00
|
|
|
const GimpCoords *coords,
|
2004-10-06 14:04:13 -07:00
|
|
|
GimpTranslateMode edit_mode,
|
|
|
|
|
gboolean propagate_release);
|
1997-11-24 14:05:25 -08:00
|
|
|
|
2004-07-26 07:50:51 -07:00
|
|
|
gboolean gimp_edit_selection_tool_key_press (GimpTool *tool,
|
|
|
|
|
GdkEventKey *kevent,
|
2006-03-28 09:59:18 -08:00
|
|
|
GimpDisplay *display);
|
2007-03-07 01:34:47 -08:00
|
|
|
gboolean gimp_edit_selection_tool_translate (GimpTool *tool,
|
|
|
|
|
GdkEventKey *kevent,
|
|
|
|
|
GimpTransformType translate_type,
|
2018-12-10 04:34:27 -08:00
|
|
|
GimpDisplay *display,
|
|
|
|
|
GtkWidget *type_box);
|
2001-02-27 18:53:27 -08:00
|
|
|
|
|
|
|
|
|
2001-02-27 18:29:25 -08:00
|
|
|
#endif /* __GIMP_EDIT_SELECTION_TOOL_H__ */
|