/* * Ripped and modified for Swami from libgal-0.19.2 * * widget-pixmap-combo.h - A pixmap selector combo box * Copyright 2000, 2001, Ximian, Inc. * * Authors: * Jody Goldberg * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License, version 2, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #ifndef __PIXMAP_COMBO_H__ #define __PIXMAP_COMBO_H__ #include #include #include #include #include "combo-box.h" #define PIXMAP_COMBO_TYPE (pixmap_combo_get_type ()) #define PIXMAP_COMBO(obj) (GTK_CHECK_CAST((obj), PIXMAP_COMBO_TYPE, PixmapCombo)) #define PIXMAP_COMBO_CLASS(k) (GTK_CHECK_CLASS_CAST(k), PIXMAP_COMBO_TYPE) #define IS_PIXMAP_COMBO(obj) (GTK_CHECK_TYPE((obj), PIXMAP_COMBO_TYPE)) typedef struct { char const *untranslated_tooltip; char **xpm_data; int id; } PixmapComboElement; typedef struct { ComboBox combo_box; /* Static information */ PixmapComboElement const *elements; int cols, rows; int num_elements; /* State info */ int last_index; /* Interface elements */ GtkWidget *combo_table, *preview_button; GtkWidget *preview_pixmap; GtkTooltips *tool_tip; GtkPixmap **pixmaps; } PixmapCombo; GtkType pixmap_combo_get_type (void); GtkWidget *pixmap_combo_new (PixmapComboElement const *elements, int ncols, int nrows); void pixmap_combo_select_pixmap (PixmapCombo *combo, int id); typedef struct { ComboBoxClass parent_class; /* Signals emited by this widget */ void (* changed) (PixmapCombo *pixmap_combo, int id); } PixmapComboClass; #endif /* __PIXMAP_COMBO_H__ */