2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1997-11-25 06:05:25 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1997-11-25 06:05:25 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1997-11-25 06: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-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-10-23 17:05:45 +08:00
|
|
|
|
2001-02-28 10:29:25 +08:00
|
|
|
#ifndef __GIMP_EDIT_SELECTION_TOOL_H__
|
|
|
|
#define __GIMP_EDIT_SELECTION_TOOL_H__
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-10-23 17:05:45 +08:00
|
|
|
|
2006-11-24 22:08:40 +08:00
|
|
|
#include "gimpdrawtool.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_EDIT_SELECTION_TOOL (gimp_edit_selection_tool_get_type ())
|
2008-06-20 19:08:42 +08: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 22:08:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
GType gimp_edit_selection_tool_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2004-07-26 22:50:51 +08:00
|
|
|
void gimp_edit_selection_tool_start (GimpTool *parent_tool,
|
2006-03-29 01:59:18 +08:00
|
|
|
GimpDisplay *display,
|
2008-11-01 23:17:36 +08:00
|
|
|
const GimpCoords *coords,
|
2004-10-07 05:04:13 +08:00
|
|
|
GimpTranslateMode edit_mode,
|
|
|
|
gboolean propagate_release);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-07-26 22:50:51 +08:00
|
|
|
gboolean gimp_edit_selection_tool_key_press (GimpTool *tool,
|
|
|
|
GdkEventKey *kevent,
|
2006-03-29 01:59:18 +08:00
|
|
|
GimpDisplay *display);
|
2007-03-07 17:34:47 +08:00
|
|
|
gboolean gimp_edit_selection_tool_translate (GimpTool *tool,
|
|
|
|
GdkEventKey *kevent,
|
|
|
|
GimpTransformType translate_type,
|
2018-12-10 20:34:27 +08:00
|
|
|
GimpDisplay *display,
|
|
|
|
GtkWidget *type_box);
|
2001-02-28 10:53:27 +08:00
|
|
|
|
|
|
|
|
2001-02-28 10:29:25 +08:00
|
|
|
#endif /* __GIMP_EDIT_SELECTION_TOOL_H__ */
|