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 / gimpbutton.h < prev    next >
C/C++ Source or Header  |  2004-01-28  |  2KB  |  77 lines

  1. /* LIBGIMP - The GIMP Library
  2.  * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
  3.  *
  4.  * gimpbutton.h
  5.  * Copyright (C) 2001 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_BUTTON_H__
  24. #define __GIMP_BUTTON_H__
  25.  
  26. #include <gtk/gtkbutton.h>
  27.  
  28. G_BEGIN_DECLS
  29.  
  30. /* For information look into the C source or the html documentation */
  31.  
  32.  
  33. #define GIMP_TYPE_BUTTON            (gimp_button_get_type ())
  34. #define GIMP_BUTTON(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_BUTTON, GimpButton))
  35. #define GIMP_BUTTON_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_BUTTON, GimpButtonClass))
  36. #define GIMP_IS_BUTTON(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_BUTTON))
  37. #define GIMP_IS_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_BUTTON))
  38. #define GIMP_BUTTON_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_BUTTON, GimpButtonClass))
  39.  
  40.  
  41. typedef struct _GimpButtonClass  GimpButtonClass;
  42.  
  43. struct _GimpButton
  44. {
  45.   GtkButton        parent_instance;
  46.  
  47.   /*< private >*/
  48.   GdkModifierType  press_state;
  49. };
  50.  
  51. struct _GimpButtonClass
  52. {
  53.   GtkButtonClass  parent_class;
  54.  
  55.   void (* extended_clicked) (GimpButton      *preview,
  56.                  GdkModifierType  modifier_state);
  57.  
  58.   /* Padding for future expansion */
  59.   void (* _gimp_reserved1) (void);
  60.   void (* _gimp_reserved2) (void);
  61.   void (* _gimp_reserved3) (void);
  62.   void (* _gimp_reserved4) (void);
  63. };
  64.  
  65.  
  66. GType       gimp_button_get_type         (void) G_GNUC_CONST;
  67.  
  68. GtkWidget * gimp_button_new              (void);
  69.  
  70. void        gimp_button_extended_clicked (GimpButton      *button,
  71.                                           GdkModifierType  state);
  72.  
  73.  
  74. G_END_DECLS
  75.  
  76. #endif /* __GIMP_BUTTON_H__ */
  77.