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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-12-17 05:37:03 +08:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2012-03-29 03:37:59 +08:00
|
|
|
#include <gegl.h>
|
2000-12-29 23:22:01 +08:00
|
|
|
#include <gtk/gtk.h>
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2001-08-06 00:08:19 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
2001-01-24 02:49:44 +08:00
|
|
|
|
2002-05-03 20:45:22 +08:00
|
|
|
#include "tools-types.h"
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2003-07-14 23:43:21 +08:00
|
|
|
#include "paint/gimppenciloptions.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
|
2003-08-22 09:42:57 +08:00
|
|
|
#include "widgets/gimphelp-ids.h"
|
|
|
|
|
2001-03-12 07:28:16 +08:00
|
|
|
#include "gimppenciltool.h"
|
2003-06-30 04:40:45 +08:00
|
|
|
#include "gimppaintoptions-gui.h"
|
2003-04-16 00:05:52 +08:00
|
|
|
#include "gimptoolcontrol.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
2000-04-28 01:27:28 +08:00
|
|
|
|
2001-03-12 12:40:17 +08:00
|
|
|
|
2006-05-15 17:46:31 +08:00
|
|
|
G_DEFINE_TYPE (GimpPencilTool, gimp_pencil_tool, GIMP_TYPE_PAINTBRUSH_TOOL)
|
1999-08-14 04:50:30 +08:00
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
|
2001-03-12 07:28:16 +08:00
|
|
|
void
|
2002-03-29 11:50:29 +08:00
|
|
|
gimp_pencil_tool_register (GimpToolRegisterCallback callback,
|
2002-05-03 19:31:08 +08:00
|
|
|
gpointer data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2002-03-29 11:50:29 +08:00
|
|
|
(* callback) (GIMP_TYPE_PENCIL_TOOL,
|
2003-07-14 23:43:21 +08:00
|
|
|
GIMP_TYPE_PENCIL_OPTIONS,
|
2003-02-05 22:39:40 +08:00
|
|
|
gimp_paint_options_gui,
|
2004-09-24 05:04:39 +08:00
|
|
|
GIMP_PAINT_OPTIONS_CONTEXT_MASK |
|
|
|
|
GIMP_CONTEXT_GRADIENT_MASK,
|
2002-03-21 20:17:17 +08:00
|
|
|
"gimp-pencil-tool",
|
2001-11-21 07:00:47 +08:00
|
|
|
_("Pencil"),
|
2006-09-19 02:00:22 +08:00
|
|
|
_("Pencil Tool: Hard edge painting using a brush"),
|
2004-04-29 21:19:28 +08:00
|
|
|
N_("Pe_ncil"), "N",
|
2003-08-22 09:42:57 +08:00
|
|
|
NULL, GIMP_HELP_TOOL_PENCIL,
|
2002-03-29 11:50:29 +08:00
|
|
|
GIMP_STOCK_TOOL_PENCIL,
|
2002-05-03 19:31:08 +08:00
|
|
|
data);
|
2001-03-12 12:40:17 +08:00
|
|
|
}
|
|
|
|
|
2005-12-13 17:13:50 +08:00
|
|
|
static void
|
|
|
|
gimp_pencil_tool_class_init (GimpPencilToolClass *klass)
|
2001-03-12 12:40:17 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_pencil_tool_init (GimpPencilTool *pencil)
|
|
|
|
{
|
2003-10-26 03:00:49 +08:00
|
|
|
GimpTool *tool = GIMP_TOOL (pencil);
|
2001-03-12 12:40:17 +08:00
|
|
|
|
2004-06-05 07:08:29 +08:00
|
|
|
gimp_tool_control_set_tool_cursor (tool->control, GIMP_TOOL_CURSOR_PENCIL);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|