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
|
|
|
|
*
|
|
|
|
* 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
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2006-09-04 07:11:35 +08:00
|
|
|
#ifndef __GIMP_SOURCE_TOOL_H__
|
|
|
|
#define __GIMP_SOURCE_TOOL_H__
|
2001-04-19 21:01:44 +08:00
|
|
|
|
|
|
|
|
2006-08-16 05:46:22 +08:00
|
|
|
#include "gimpbrushtool.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
2006-09-04 07:11:35 +08:00
|
|
|
#define GIMP_TYPE_SOURCE_TOOL (gimp_source_tool_get_type ())
|
|
|
|
#define GIMP_SOURCE_TOOL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_SOURCE_TOOL, GimpSourceTool))
|
|
|
|
#define GIMP_SOURCE_TOOL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_SOURCE_TOOL, GimpSourceToolClass))
|
|
|
|
#define GIMP_IS_SOURCE_TOOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_SOURCE_TOOL))
|
|
|
|
#define GIMP_IS_SOURCE_TOOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_SOURCE_TOOL))
|
|
|
|
#define GIMP_SOURCE_TOOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_SOURCE_TOOL, GimpSourceToolClass))
|
2001-04-19 21:01:44 +08:00
|
|
|
|
2006-09-06 02:25:31 +08:00
|
|
|
#define GIMP_SOURCE_TOOL_GET_OPTIONS(t) (GIMP_SOURCE_OPTIONS (gimp_tool_get_options (GIMP_TOOL (t))))
|
|
|
|
|
2001-04-19 21:01:44 +08:00
|
|
|
|
2006-09-04 07:11:35 +08:00
|
|
|
typedef struct _GimpSourceTool GimpSourceTool;
|
|
|
|
typedef struct _GimpSourceToolClass GimpSourceToolClass;
|
2001-04-19 21:01:44 +08:00
|
|
|
|
2006-09-04 07:11:35 +08:00
|
|
|
struct _GimpSourceTool
|
2001-04-19 21:01:44 +08:00
|
|
|
{
|
2006-08-16 05:46:22 +08:00
|
|
|
GimpBrushTool parent_instance;
|
2006-05-23 02:35:58 +08:00
|
|
|
|
|
|
|
GimpDisplay *src_display;
|
|
|
|
gint src_x;
|
|
|
|
gint src_y;
|
2006-09-04 07:11:35 +08:00
|
|
|
|
|
|
|
const gchar *status_paint;
|
|
|
|
const gchar *status_set_source;
|
|
|
|
const gchar *status_set_source_ctrl;
|
2001-04-19 21:01:44 +08:00
|
|
|
};
|
|
|
|
|
2006-09-04 07:11:35 +08:00
|
|
|
struct _GimpSourceToolClass
|
2001-04-19 21:01:44 +08:00
|
|
|
{
|
2006-08-16 05:46:22 +08:00
|
|
|
GimpBrushToolClass parent_class;
|
2001-04-19 21:01:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-09-04 07:11:35 +08:00
|
|
|
GType gimp_source_tool_get_type (void) G_GNUC_CONST;
|
2001-04-19 21:01:44 +08:00
|
|
|
|
|
|
|
|
2006-09-04 07:11:35 +08:00
|
|
|
#endif /* __GIMP_SOURCE_TOOL_H__ */
|