1 /* gtkcellview.h 2 * Copyright (C) 2002, 2003 Kristian Rietveld <kris@gtk.org> 3 * 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. 8 * 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. 13 * 14 * You should have received a copy of the GNU Library General Public 15 * License along with this library. If not, see <http://www.gnu.org/licenses/>. 16 */ 17 18 #ifndef __GTK_CELL_VIEW_H__ 19 #define __GTK_CELL_VIEW_H__ 20 21 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) 22 #error "Only <gtk/gtk.h> can be included directly." 23 #endif 24 25 #include <gtk/gtkwidget.h> 26 #include <gtk/gtkcellrenderer.h> 27 #include <gtk/gtkcellarea.h> 28 #include <gtk/gtkcellareacontext.h> 29 #include <gtk/gtktreemodel.h> 30 31 G_BEGIN_DECLS 32 33 #define GTK_TYPE_CELL_VIEW (gtk_cell_view_get_type ()) 34 #define GTK_CELL_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CELL_VIEW, GtkCellView)) 35 #define GTK_CELL_VIEW_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), GTK_TYPE_CELL_VIEW, GtkCellViewClass)) 36 #define GTK_IS_CELL_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CELL_VIEW)) 37 #define GTK_IS_CELL_VIEW_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), GTK_TYPE_CELL_VIEW)) 38 #define GTK_CELL_VIEW_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), GTK_TYPE_CELL_VIEW, GtkCellViewClass)) 39 40 typedef struct _GtkCellView GtkCellView; 41 typedef struct _GtkCellViewClass GtkCellViewClass; 42 typedef struct _GtkCellViewPrivate GtkCellViewPrivate; 43 44 struct _GtkCellView 45 { 46 GtkWidget parent_instance; 47 48 /*< private >*/ 49 GtkCellViewPrivate *priv; 50 }; 51 52 /** 53 * GtkCellViewClass: 54 * @parent_class: The parent class. 55 */ 56 struct _GtkCellViewClass 57 { 58 GtkWidgetClass parent_class; 59 60 /*< private >*/ 61 62 /* Padding for future expansion */ 63 void (*_gtk_reserved1) (void); 64 void (*_gtk_reserved2) (void); 65 void (*_gtk_reserved3) (void); 66 void (*_gtk_reserved4) (void); 67 }; 68 69 GDK_AVAILABLE_IN_ALL 70 GType gtk_cell_view_get_type (void) G_GNUC_CONST; 71 GDK_AVAILABLE_IN_ALL 72 GtkWidget *gtk_cell_view_new (void); 73 GDK_AVAILABLE_IN_ALL 74 GtkWidget *gtk_cell_view_new_with_context (GtkCellArea *area, 75 GtkCellAreaContext *context); 76 GDK_AVAILABLE_IN_ALL 77 GtkWidget *gtk_cell_view_new_with_text (const gchar *text); 78 GDK_AVAILABLE_IN_ALL 79 GtkWidget *gtk_cell_view_new_with_markup (const gchar *markup); 80 GDK_AVAILABLE_IN_ALL 81 GtkWidget *gtk_cell_view_new_with_pixbuf (GdkPixbuf *pixbuf); 82 GDK_AVAILABLE_IN_ALL 83 void gtk_cell_view_set_model (GtkCellView *cell_view, 84 GtkTreeModel *model); 85 GDK_AVAILABLE_IN_ALL 86 GtkTreeModel *gtk_cell_view_get_model (GtkCellView *cell_view); 87 GDK_AVAILABLE_IN_ALL 88 void gtk_cell_view_set_displayed_row (GtkCellView *cell_view, 89 GtkTreePath *path); 90 GDK_AVAILABLE_IN_ALL 91 GtkTreePath *gtk_cell_view_get_displayed_row (GtkCellView *cell_view); 92 GDK_AVAILABLE_IN_ALL 93 void gtk_cell_view_set_background_rgba (GtkCellView *cell_view, 94 const GdkRGBA *rgba); 95 GDK_AVAILABLE_IN_ALL 96 gboolean gtk_cell_view_get_draw_sensitive (GtkCellView *cell_view); 97 GDK_AVAILABLE_IN_ALL 98 void gtk_cell_view_set_draw_sensitive (GtkCellView *cell_view, 99 gboolean draw_sensitive); 100 GDK_AVAILABLE_IN_ALL 101 gboolean gtk_cell_view_get_fit_model (GtkCellView *cell_view); 102 GDK_AVAILABLE_IN_ALL 103 void gtk_cell_view_set_fit_model (GtkCellView *cell_view, 104 gboolean fit_model); 105 106 GDK_DEPRECATED_IN_3_0_FOR(gtk_widget_get_preferred_size) 107 gboolean gtk_cell_view_get_size_of_row (GtkCellView *cell_view, 108 GtkTreePath *path, 109 GtkRequisition *requisition); 110 GDK_DEPRECATED_IN_3_4_FOR(gtk_cell_view_set_background_rgba) 111 void gtk_cell_view_set_background_color (GtkCellView *cell_view, 112 const GdkColor *color); 113 114 G_END_DECLS 115 116 #endif /* __GTK_CELL_VIEW_H__ */ 117