2003-01-07 Michael Natterer <mitch@gimp.org> * libgimpwidgets/gimphelpui.[ch]: removed gimp_help_init() and gimp_help_free(). Added _gimp_help_init() instead. * libgimpwidgets/gimpwidgets.def: changed accordingly. * libgimpwidgets/gimpwidgets.c (gimp_widgets_init): call _gimp_help_init() so it doesn't need to be done in all plug-ins manually. * libgimp/gimpcompat.h: added gimp_help_init() and gimp_help_free() here as COMPAT_CRUFT. * app/gui/gui.c * plug-ins/FractalExplorer/Dialogs.c * plug-ins/Lighting/lighting_ui.c * plug-ins/MapObject/mapobject_ui.c * plug-ins/common/AlienMap.c * plug-ins/common/AlienMap2.c * plug-ins/common/CML_explorer.c * plug-ins/common/blur.c * plug-ins/common/curve_bend.c * plug-ins/common/gtm.c * plug-ins/common/illusion.c * plug-ins/common/jigsaw.c * plug-ins/common/plasma.c * plug-ins/common/polar.c * plug-ins/common/ps.c * plug-ins/common/randomize.c * plug-ins/common/sinus.c * plug-ins/common/snoise.c * plug-ins/common/sparkle.c * plug-ins/common/uniteditor.c * plug-ins/common/warp.c * plug-ins/common/wind.c * plug-ins/gap/gap_arr_dialog.c * plug-ins/gap/gap_mov_dialog.c * plug-ins/gap/gap_navigator_dialog.c * plug-ins/gdyntext/gdyntext_ui.c * plug-ins/gfig/gfig.c * plug-ins/gflare/gflare.c * plug-ins/gimpressionist/gimpressionist.c * plug-ins/maze/maze_face.c * plug-ins/print/gimp_main_window.c * plug-ins/sel2path/sel2path.c: removed the calls to gimp_help_init() and gimp_help_free(). Fixed bug #81017: * libgimpbase/gimpprotocol.[ch]: added "guint8 show_tool_tips" to the GPConfig message. Increased the protocol version number. * app/plug-in/plug-in.c: pass the value of gui_config->show_tool_tips. * libgimp/gimp.[ch]: added gimp_show_tool_tips() to get the value which was passed in the GPConfig message. * libgimp/gimpui.c (gimp_ui_init): disable the tooltips if show_tool_tips is FALSE. * plug-ins/MapObject/mapobject_main.[ch] * plug-ins/MapObject/mapobject_ui.c * plug-ins/common/jigsaw.c * plug-ins/gap/gap_navigator_dialog.c * plug-ins/gfig/gfig.c: removed all plug-in specific GUI for enabling/disabling tooltips.
Andy Thomas (alt@gimp.org) 9th July 1999 This plug-in will take a selection and convert it into a path. For the purpose of the plug-in the selection boundary is defined in a similar manner to that worked out for the "marching ants" markers of the selection. I think this gives the best user feel/feedback since the created path "follows" the "marching ants". I cannot claim responsibility for the underlying algorithms. These were taken directly from the GNU font utilities (the "limn" program in particular) written by Karl Berry and Kathryn Hargreaves. Their email addresses quoted in the README are:- Karl Berry karl@cs.umb.edu Kathryn Hargreaves letters@cs.umb.edu Please see fontutils-0.6 package for more details. I have included the README from the limn part of the package. I thank Karl & Kathryn for producing such a well written set of utilites. I have just added a gimp front-end onto them. How to use it. ~~~~~~~~~~~~~~ Simply select an area and then select either "<Image>/Selection/To Path" menu item or the "Selection To Image" button in the paths dialog. The new path will be created. Currently if the LCP dialog has not been activated then the path will not be visible... A bug I have just found - simply bring up the LCP dialog and select the Paths tab to see the newly created path. An additional function can be obtained by having the "Shift" modifier pressed while using the button in the paths dialog. This will pop-up a "power-users" menu where the parameters to the underlying algorithms can be modified. WARING:- Some values may cause the plugin to enter extremely long operations. You have been warned. Have fun! Andy. PS. Please direct any bugs etc found in this plugin to either myself or the gimp-developer mailing list. Thank.