2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1999-07-02 00:52:50 +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
|
1999-07-02 00:52:50 +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
|
1999-07-02 00:52:50 +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/>.
|
1999-07-02 00:52:50 +08:00
|
|
|
*/
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
#ifndef __GIMP_DODGE_BURN_TOOL_H__
|
|
|
|
#define __GIMP_DODGE_BURN_TOOL_H__
|
|
|
|
|
|
|
|
|
2006-08-16 05:46:22 +08:00
|
|
|
#include "gimpbrushtool.h"
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
|
2004-04-21 18:55:45 +08:00
|
|
|
#define GIMP_TYPE_DODGE_BURN_TOOL (gimp_dodge_burn_tool_get_type ())
|
|
|
|
#define GIMP_DODGE_BURN_TOOL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_DODGE_BURN_TOOL, GimpDodgeBurnTool))
|
|
|
|
#define GIMP_IS_DODGE_BURN_TOOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_DODGE_BURN_TOOL))
|
|
|
|
#define GIMP_DODGE_BURN_TOOL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_DODGE_BURN_TOOL, GimpDodgeBurnToolClass))
|
|
|
|
#define GIMP_IS_DODGE_BURN_TOOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_DODGE_BURN_TOOL))
|
2001-03-31 23:45:05 +08:00
|
|
|
|
2006-09-06 02:25:31 +08:00
|
|
|
#define GIMP_DODGE_BURN_TOOL_GET_OPTIONS(t) (GIMP_DODGE_BURN_OPTIONS (gimp_tool_get_options (GIMP_TOOL (t))))
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
typedef struct _GimpDodgeBurnTool GimpDodgeBurnTool;
|
|
|
|
typedef struct _GimpDodgeBurnToolClass GimpDodgeBurnToolClass;
|
|
|
|
|
|
|
|
struct _GimpDodgeBurnTool
|
|
|
|
{
|
2006-08-16 05:46:22 +08:00
|
|
|
GimpBrushTool parent_instance;
|
2011-04-01 04:41:10 +08:00
|
|
|
|
|
|
|
gboolean toggled;
|
2001-03-24 10:27:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpDodgeBurnToolClass
|
|
|
|
{
|
2006-08-16 05:46:22 +08:00
|
|
|
GimpBrushToolClass parent_class;
|
2001-03-24 10:27:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-04-21 18:55:45 +08:00
|
|
|
void gimp_dodge_burn_tool_register (GimpToolRegisterCallback callback,
|
|
|
|
gpointer data);
|
2001-11-21 07:00:47 +08:00
|
|
|
|
2004-04-21 18:55:45 +08:00
|
|
|
GType gimp_dodge_burn_tool_get_type (void) G_GNUC_CONST;
|
2001-03-24 10:27:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_DODGEBURN_TOOL_H__ */
|