1 /* gtkcellviewmenuitem.h
2 * Copyright (C) 2003 Kristian Rietveld <kris@gtk.org>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02111-1301, USA.
20 #ifndef __GTK_CELL_VIEW_MENU_ITEM_H__
21 #define __GTK_CELL_VIEW_MENU_ITEM_H__
23 #include <gtk/gtkmenuitem.h>
24 #include <gtk/gtktreemodel.h>
28 #define GTK_TYPE_CELL_VIEW_MENU_ITEM (gtk_cell_view_menu_item_get_type ())
29 #define GTK_CELL_VIEW_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CELL_VIEW_MENU_ITEM, GtkCellViewMenuItem))
30 #define GTK_CELL_VIEW_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CELL_VIEW_MENU_ITEM, GtkCellViewMenuItemClass))
31 #define GTK_IS_CELL_VIEW_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CELL_VIEW_MENU_ITEM))
32 #define GTK_IS_CELL_VIEW_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CELL_VIEW_MENU_ITEM))
33 #define GTK_CELL_VIEW_MENU_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CELL_VIEW_MENU_ITEM, GtkCellViewMenuItemClass))
36 typedef struct _GtkCellViewMenuItem GtkCellViewMenuItem
;
37 typedef struct _GtkCellViewMenuItemClass GtkCellViewMenuItemClass
;
38 typedef struct _GtkCellViewMenuItemPrivate GtkCellViewMenuItemPrivate
;
40 struct _GtkCellViewMenuItem
42 GtkMenuItem parent_instance
;
45 GtkCellViewMenuItemPrivate
*priv
;
48 struct _GtkCellViewMenuItemClass
50 GtkMenuItemClass parent_class
;
54 GType
gtk_cell_view_menu_item_get_type (void);
55 GtkWidget
*gtk_cell_view_menu_item_new (void);
57 GtkWidget
*gtk_cell_view_menu_item_new_with_pixbuf (GdkPixbuf
*pixbuf
);
58 GtkWidget
*gtk_cell_view_menu_item_new_with_text (const gchar
*text
);
59 GtkWidget
*gtk_cell_view_menu_item_new_with_markup (const gchar
*markup
);
61 GtkWidget
*gtk_cell_view_menu_item_new_from_model (GtkTreeModel
*model
,
67 #endif /* __GTK_CELL_VIEW_MENU_ITEM_H__ */