home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_gimp.idb / usr / freeware / include / libgimp / gimpunitmenu.h.z / gimpunitmenu.h
Encoding:
C/C++ Source or Header  |  2002-07-08  |  2.5 KB  |  87 lines

  1. /* LIBGIMP - The GIMP Library
  2.  * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball 
  3.  *
  4.  * gimpunitmenu.h
  5.  * Copyright (C) 1999 Michael Natterer <mitch@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_UNIT_MENU_H__
  24. #define __GIMP_UNIT_MENU_H__
  25.  
  26. #include <libgimp/gimpunit.h>
  27.  
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif /* __cplusplus */
  31.  
  32. /* For information look into the C source or the html documentation */
  33.  
  34.  
  35. #define GIMP_TYPE_UNIT_MENU            (gimp_unit_menu_get_type ())
  36. #define GIMP_UNIT_MENU(obj)            (GTK_CHECK_CAST ((obj), GIMP_TYPE_UNIT_MENU, GimpUnitMenu))
  37. #define GIMP_UNIT_MENU_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GIMP_TYPE_UNIT_MENU, GimpUnitMenuClass))
  38. #define GIMP_IS_UNIT_MENU(obj)         (GTK_CHECK_TYPE (obj, GIMP_TYPE_UNIT_MENU))
  39. #define GIMP_IS_UNIT_MENU_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_UNIT_MENU))
  40.  
  41. typedef struct _GimpUnitMenu       GimpUnitMenu;
  42. typedef struct _GimpUnitMenuClass  GimpUnitMenuClass;
  43.  
  44. struct _GimpUnitMenu
  45. {
  46.   GtkOptionMenu  optionmenu;
  47.  
  48.   /* public (read only) */
  49.   gchar         *format;
  50.   GimpUnit       unit;
  51.  
  52.   gboolean       show_pixels;
  53.   gboolean       show_percent;
  54.  
  55.   /* private */
  56.   GtkWidget     *selection;
  57.   GtkWidget     *clist;
  58. };
  59.  
  60. struct _GimpUnitMenuClass
  61. {
  62.   GtkOptionMenuClass parent_class;
  63.  
  64.   void (* unit_changed) (GimpUnitMenu *gum);
  65. };
  66.  
  67.  
  68. GtkType     gimp_unit_menu_get_type (void);
  69.  
  70. GtkWidget * gimp_unit_menu_new      (const gchar *format,
  71.                      GimpUnit     unit,
  72.                      gboolean     show_pixels,
  73.                      gboolean     show_percent,
  74.                      gboolean     show_custom);
  75.  
  76. void        gimp_unit_menu_set_unit (GimpUnitMenu *gum, 
  77.                      GimpUnit      unit);
  78.  
  79. GimpUnit    gimp_unit_menu_get_unit (GimpUnitMenu *gum);
  80.  
  81.  
  82. #ifdef __cplusplus
  83. }
  84. #endif /* __cplusplus */
  85.  
  86. #endif /* __GIMP_UNIT_MENU_H__ */
  87.