
2001-04-07 Simon Budig <simon@gimp.org> * app/Makefile.am * app/apptypes.h * app/path_bezier.[ch] * app/path_curves.[ch] * app/pixmaps2.h * app/tools/Makefile.am * app/tools/gimpdrawtool.[ch] * app/tools/path_tool.[ch] * app/tools/path_toolP.h * app/tools/tools.c new files: * app/tools/gimppathtool.c * app/tools/gimppathtool.h Reactivated (at least partially) the old new path tool. It will undergo major restructuring. Especially the path data will become proper objects. This definitely is work in progress and totally unuseable now.
106 lines
3.0 KiB
C
106 lines
3.0 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995-2001 Spencer Kimball, Peter Mattis and others
|
|
*
|
|
* 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
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "apptypes.h"
|
|
|
|
#include "gimptool.h"
|
|
#include "tool_manager.h"
|
|
|
|
#include "gimpairbrushtool.h"
|
|
#include "gimpbezierselecttool.h"
|
|
#include "gimpblendtool.h"
|
|
#include "gimpbucketfilltool.h"
|
|
#include "gimpbycolorselecttool.h"
|
|
#include "gimpclonetool.h"
|
|
#include "gimpcolorpickertool.h"
|
|
#include "gimpconvolvetool.h"
|
|
#include "gimpcroptool.h"
|
|
#include "gimpdodgeburntool.h"
|
|
#include "gimpellipseselecttool.h"
|
|
#include "gimperasertool.h"
|
|
#include "gimpfliptool.h"
|
|
#include "gimpfreeselecttool.h"
|
|
#include "gimpfuzzyselecttool.h"
|
|
#include "gimpinktool.h"
|
|
#include "gimpiscissorstool.h"
|
|
#include "gimpmagnifytool.h"
|
|
#include "gimpmeasuretool.h"
|
|
#include "gimpmovetool.h"
|
|
#include "gimppaintbrushtool.h"
|
|
#include "gimppathtool.h"
|
|
#include "gimppenciltool.h"
|
|
#include "gimpperspectivetool.h"
|
|
#include "gimprectselecttool.h"
|
|
#include "gimprotatetool.h"
|
|
#include "gimpscaletool.h"
|
|
#include "gimpsheartool.h"
|
|
#include "gimpsmudgetool.h"
|
|
#include "gimptexttool.h"
|
|
|
|
|
|
void
|
|
register_tools (void)
|
|
{
|
|
/* register tools in reverse order */
|
|
|
|
/* paint tools */
|
|
|
|
/* gimp_smudge_tool_register (); */
|
|
gimp_dodgeburn_tool_register ();
|
|
gimp_ink_tool_register ();
|
|
/* gimp_convolve_tool_register (): */
|
|
/* gimp_clone_tool_register (); */
|
|
gimp_airbrush_tool_register ();
|
|
gimp_eraser_tool_register ();
|
|
gimp_paintbrush_tool_register ();
|
|
gimp_pencil_tool_register ();
|
|
gimp_blend_tool_register ();
|
|
gimp_bucket_fill_tool_register ();
|
|
gimp_text_tool_register ();
|
|
|
|
/* transform tools */
|
|
|
|
gimp_flip_tool_register ();
|
|
/* gimp_perspective_tool_register (); */
|
|
/* gimp_shear_tool_register (); */
|
|
gimp_scale_tool_register ();
|
|
/* gimp_rotate_tool_register (); */
|
|
gimp_crop_tool_register ();
|
|
gimp_move_tool_register ();
|
|
|
|
/* non-modifying tools */
|
|
|
|
gimp_path_tool_register ();
|
|
gimp_measure_tool_register ();
|
|
gimp_magnify_tool_register ();
|
|
gimp_color_picker_tool_register ();
|
|
|
|
/* selection tools */
|
|
|
|
gimp_bezier_select_tool_register ();
|
|
gimp_iscissors_tool_register ();
|
|
gimp_fuzzy_select_tool_register ();
|
|
gimp_free_select_tool_register ();
|
|
gimp_ellipse_select_tool_register ();
|
|
gimp_rect_select_tool_register ();
|
|
}
|