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 / gimpintcombobox.h < prev    next >
C/C++ Source or Header  |  2004-10-23  |  4KB  |  89 lines

  1. /* LIBGIMP - The GIMP Library
  2.  * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
  3.  *
  4.  * gimpintcombobox.h
  5.  * Copyright (C) 2004  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_INT_COMBO_BOX_H__
  24. #define __GIMP_INT_COMBO_BOX_H__
  25.  
  26. #include <gtk/gtkcombobox.h>
  27.  
  28. G_BEGIN_DECLS
  29.  
  30.  
  31. #define GIMP_TYPE_INT_COMBO_BOX            (gimp_int_combo_box_get_type ())
  32. #define GIMP_INT_COMBO_BOX(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_INT_COMBO_BOX, GimpIntComboBox))
  33. #define GIMP_INT_COMBO_BOX_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_INT_COMBO_BOX, GimpIntComboBoxClass))
  34. #define GIMP_IS_INT_COMBO_BOX(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_INT_COMBO_BOX))
  35. #define GIMP_IS_INT_COMBO_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_INT_COMBO_BOX))
  36. #define GIMP_INT_COMBO_BOX_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_INT_COMBO_BOX, GimpIntComboBoxClass))
  37.  
  38.  
  39. typedef struct _GimpIntComboBoxClass  GimpIntComboBoxClass;
  40.  
  41. struct _GimpIntComboBoxClass
  42. {
  43.   GtkComboBoxClass  parent_instance;
  44. };
  45.  
  46. struct _GimpIntComboBox
  47. {
  48.   GtkComboBox       parent_instance;
  49.  
  50.   /* Padding for future expansion */
  51.   void (* _gimp_reserved1) (void);
  52.   void (* _gimp_reserved2) (void);
  53.   void (* _gimp_reserved3) (void);
  54.   void (* _gimp_reserved4) (void);
  55. };
  56.  
  57.  
  58. GType       gimp_int_combo_box_get_type   (void) G_GNUC_CONST;
  59.  
  60. GtkWidget * gimp_int_combo_box_new        (const gchar     *first_label,
  61.                                            gint             first_value,
  62.                                            ...);
  63. GtkWidget * gimp_int_combo_box_new_valist (const gchar     *first_label,
  64.                                            gint             first_value,
  65.                                            va_list          values);
  66.  
  67. GtkWidget * gimp_int_combo_box_new_array  (gint             n_values,
  68.                                            const gchar     *labels[]);
  69.  
  70. void        gimp_int_combo_box_prepend    (GimpIntComboBox *combo_box,
  71.                                            ...);
  72. void        gimp_int_combo_box_append     (GimpIntComboBox *combo_box,
  73.                                            ...);
  74.  
  75. gboolean    gimp_int_combo_box_set_active (GimpIntComboBox *combo_box,
  76.                                            gint             value);
  77. gboolean    gimp_int_combo_box_get_active (GimpIntComboBox *combo_box,
  78.                                            gint            *value);
  79.  
  80. gulong      gimp_int_combo_box_connect    (GimpIntComboBox *combo_box,
  81.                                            gint             value,
  82.                                            GCallback        callback,
  83.                                            gpointer         data);
  84.  
  85.  
  86. G_END_DECLS
  87.  
  88. #endif  /* __GIMP_INT_COMBO_BOX_H__ */
  89.