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 / gimpmemsizeentry.h < prev    next >
C/C++ Source or Header  |  2004-01-28  |  3KB  |  83 lines

  1. /* LIBGIMP - The GIMP Library
  2.  * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
  3.  *
  4.  * gimpmemsizeentry.h
  5.  * Copyright (C) 2000-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_MEMSIZE_ENTRY_H__
  24. #define __GIMP_MEMSIZE_ENTRY_H__
  25.  
  26. #include <gtk/gtkhbox.h>
  27.  
  28. G_BEGIN_DECLS
  29.  
  30.  
  31. #define GIMP_TYPE_MEMSIZE_ENTRY            (gimp_memsize_entry_get_type ())
  32. #define GIMP_MEMSIZE_ENTRY(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_MEMSIZE_ENTRY, GimpMemsizeEntry))
  33. #define GIMP_MEMSIZE_ENTRY_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_MEMSIZE_ENTRY, GimpMemsizeEntryClass))
  34. #define GIMP_IS_MEMSIZE_ENTRY(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_MEMSIZE_ENTRY))
  35. #define GIMP_IS_MEMSIZE_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_MEMSIZE_ENTRY))
  36. #define GIMP_MEMSIZE_ENTRY_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_MEMSIZE_ENTRY, GimpMemsizeEntryClass))
  37.  
  38.  
  39. typedef struct _GimpMemsizeEntryClass  GimpMemsizeEntryClass;
  40.  
  41. struct _GimpMemsizeEntry
  42. {
  43.   GtkHBox            parent_instance;
  44.  
  45.   guint64            value;
  46.   guint64            lower;
  47.   guint64            upper;
  48.  
  49.   guint              shift;
  50.  
  51.   GtkAdjustment     *adjustment;
  52.   GtkWidget         *spinbutton;
  53.   GtkWidget         *menu;
  54. };
  55.  
  56. struct _GimpMemsizeEntryClass
  57. {
  58.   GtkHBoxClass       parent_class;
  59.  
  60.   void (* value_changed)  (GimpMemsizeEntry *entry);
  61.  
  62.   /* Padding for future expansion */
  63.   void (* _gimp_reserved1) (void);
  64.   void (* _gimp_reserved2) (void);
  65.   void (* _gimp_reserved3) (void);
  66.   void (* _gimp_reserved4) (void);
  67. };
  68.  
  69.  
  70. GType       gimp_memsize_entry_get_type  (void) G_GNUC_CONST;
  71.  
  72. GtkWidget * gimp_memsize_entry_new       (guint64           value,
  73.                       guint64           lower,
  74.                       guint64           upper);
  75. void        gimp_memsize_entry_set_value (GimpMemsizeEntry *entry,
  76.                       guint64           value);
  77. guint64     gimp_memsize_entry_get_value (GimpMemsizeEntry *entry);
  78.  
  79.  
  80. G_END_DECLS
  81.  
  82. #endif /* __GIMP_MEMSIZE_ENTRY_H__ */
  83.