2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2004-05-11 20:13:31 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpcontainercombobox.h
|
|
|
|
* Copyright (C) 2004 Sven Neumann <sven@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2004-05-11 20:13:31 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-05-11 20:13:31 +08:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2004-05-11 20:13:31 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_CONTAINER_COMBO_BOX_H__
|
|
|
|
#define __GIMP_CONTAINER_COMBO_BOX_H__
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_CONTAINER_COMBO_BOX (gimp_container_combo_box_get_type ())
|
|
|
|
#define GIMP_CONTAINER_COMBO_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_CONTAINER_COMBO_BOX, GimpContainerComboBox))
|
|
|
|
#define GIMP_CONTAINER_COMBO_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_CONTAINER_COMBO_BOX, GimpContainerComboBoxClass))
|
|
|
|
#define GIMP_IS_CONTAINER_COMBO_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_CONTAINER_COMBO_BOX))
|
|
|
|
#define GIMP_IS_CONTAINER_COMBO_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_CONTAINER_COMBO_BOX))
|
|
|
|
#define GIMP_CONTAINER_COMBO_BOX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_CONTAINER_COMBO_BOX, GimpContainerComboBoxClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpContainerComboBoxClass GimpContainerComboBoxClass;
|
|
|
|
|
|
|
|
struct _GimpContainerComboBox
|
|
|
|
{
|
2010-05-18 04:05:08 +08:00
|
|
|
GtkComboBox parent_instance;
|
2004-08-11 22:07:35 +08:00
|
|
|
|
2010-05-18 04:05:08 +08:00
|
|
|
GtkCellRenderer *text_renderer;
|
|
|
|
GtkCellRenderer *viewable_renderer;
|
2004-05-11 20:13:31 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpContainerComboBoxClass
|
|
|
|
{
|
2004-08-11 22:07:35 +08:00
|
|
|
GtkComboBoxClass parent_class;
|
2004-05-11 20:13:31 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
GType gimp_container_combo_box_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
GtkWidget * gimp_container_combo_box_new (GimpContainer *container,
|
2006-04-12 20:49:29 +08:00
|
|
|
GimpContext *context,
|
2006-01-17 18:08:50 +08:00
|
|
|
gint view_size,
|
|
|
|
gint view_border_width);
|
2004-05-11 20:13:31 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_CONTAINER_COMBO_BOX_H__ */
|