home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Linux / gimp-2.2.0.tar.gz / gimp-2.2.0.tar / gimp-2.2.0 / libgimpwidgets / gimpwidgets-private.h < prev    next >
C/C++ Source or Header  |  2003-11-15  |  2KB  |  49 lines

  1. /* LIBGIMP - The GIMP Library
  2.  * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
  3.  *
  4.  * gimpwidgets-private.h
  5.  * Copyright (C) 2003 Sven Neumann <sven@gimp.org>
  6.  *
  7.  * This library is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU Lesser General Public
  9.  * License as published by the Free Software Foundation; either
  10.  * version 2 of the License, or (at your option) any later version.
  11.  *
  12.  * This library is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * Lesser General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU Lesser General Public
  18.  * License along with this library; if not, write to the
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20.  * Boston, MA 02111-1307, USA.
  21.  */
  22.  
  23. #ifndef __GIMP_WIDGETS_PRIVATE_H__
  24. #define __GIMP_WIDGETS_PRIVATE_H__
  25.  
  26.  
  27. typedef gboolean (* GimpGetColorFunc)      (GimpRGB *color);
  28. typedef void     (* GimpEnsureModulesFunc) (void);
  29.  
  30.  
  31. extern GimpHelpFunc          _gimp_standard_help_func;
  32. extern GimpGetColorFunc      _gimp_get_foreground_func;
  33. extern GimpGetColorFunc      _gimp_get_background_func;
  34. extern GimpEnsureModulesFunc _gimp_ensure_modules_func;
  35.  
  36.  
  37. G_BEGIN_DECLS
  38.  
  39.  
  40. void  gimp_widgets_init (GimpHelpFunc          standard_help_func,
  41.                          GimpGetColorFunc      get_foreground_func,
  42.                          GimpGetColorFunc      get_background_func,
  43.                          GimpEnsureModulesFunc ensure_modules_func);
  44.  
  45.  
  46. G_END_DECLS
  47.  
  48. #endif /* __GIMP_WIDGETS_PRIVATE_H__ */
  49.