2010-10-21 13:46:10 +00:00
|
|
|
/* gtkcellarea.h
|
2010-10-22 07:41:52 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Openismus GmbH
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Tristan Van Berkom <tristanvb@openismus.com>
|
2010-10-21 13:46:10 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __GTK_CELL_AREA_H__
|
|
|
|
#define __GTK_CELL_AREA_H__
|
|
|
|
|
|
|
|
#include <gtk/gtkcellrenderer.h>
|
|
|
|
#include <gtk/gtkwidget.h>
|
2010-10-24 06:44:48 +00:00
|
|
|
#include <gtk/gtktreemodel.h>
|
2010-10-21 13:46:10 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GTK_TYPE_CELL_AREA (gtk_cell_area_get_type ())
|
|
|
|
#define GTK_CELL_AREA(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CELL_AREA, GtkCellArea))
|
|
|
|
#define GTK_CELL_AREA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CELL_AREA, GtkCellAreaClass))
|
|
|
|
#define GTK_IS_CELL_AREA(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CELL_AREA))
|
|
|
|
#define GTK_IS_CELL_AREA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CELL_AREA))
|
|
|
|
#define GTK_CELL_AREA_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CELL_AREA, GtkCellAreaClass))
|
|
|
|
|
|
|
|
typedef struct _GtkCellArea GtkCellArea;
|
|
|
|
typedef struct _GtkCellAreaClass GtkCellAreaClass;
|
2010-10-24 06:44:48 +00:00
|
|
|
typedef struct _GtkCellAreaPrivate GtkCellAreaPrivate;
|
2010-10-30 08:32:15 +00:00
|
|
|
typedef struct _GtkCellAreaIter GtkCellAreaIter;
|
2010-10-21 13:46:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkCellCallback:
|
2010-10-22 07:41:52 +00:00
|
|
|
* @renderer: the cell renderer to operate on
|
2010-10-21 13:46:10 +00:00
|
|
|
* @data: user-supplied data
|
|
|
|
*
|
|
|
|
* The type of the callback functions used for iterating over
|
|
|
|
* the cell renderers of a #GtkCellArea, see gtk_cell_area_forall().
|
|
|
|
*/
|
|
|
|
typedef void (*GtkCellCallback) (GtkCellRenderer *renderer,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
|
|
|
|
struct _GtkCellArea
|
|
|
|
{
|
|
|
|
GInitiallyUnowned parent_instance;
|
|
|
|
|
2010-10-24 06:44:48 +00:00
|
|
|
GtkCellAreaPrivate *priv;
|
2010-10-21 13:46:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkCellAreaClass
|
|
|
|
{
|
|
|
|
GInitiallyUnownedClass parent_class;
|
|
|
|
|
|
|
|
/* vtable - not signals */
|
2010-10-22 07:41:52 +00:00
|
|
|
|
|
|
|
/* Basic methods */
|
2010-10-23 08:01:58 +00:00
|
|
|
void (* add) (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer);
|
|
|
|
void (* remove) (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer);
|
|
|
|
void (* forall) (GtkCellArea *area,
|
|
|
|
GtkCellCallback callback,
|
|
|
|
gpointer callback_data);
|
|
|
|
gint (* event) (GtkCellArea *area,
|
2010-10-30 14:48:52 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
GdkEvent *event,
|
|
|
|
const GdkRectangle *cell_area);
|
|
|
|
void (* render) (GtkCellArea *area,
|
2010-10-30 14:48:52 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkWidget *widget,
|
2010-10-30 14:48:52 +00:00
|
|
|
cairo_t *cr,
|
2010-10-23 08:01:58 +00:00
|
|
|
const GdkRectangle *cell_area);
|
2010-10-21 13:46:10 +00:00
|
|
|
|
2010-10-22 07:41:52 +00:00
|
|
|
/* Geometry */
|
2010-10-26 08:14:20 +00:00
|
|
|
GtkCellAreaIter *(* create_iter) (GtkCellArea *area);
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkSizeRequestMode (* get_request_mode) (GtkCellArea *area);
|
|
|
|
void (* get_preferred_width) (GtkCellArea *area,
|
2010-10-26 08:14:20 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
|
|
|
void (* get_preferred_height_for_width) (GtkCellArea *area,
|
2010-10-26 08:14:20 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint width,
|
|
|
|
gint *minimum_height,
|
|
|
|
gint *natural_height);
|
|
|
|
void (* get_preferred_height) (GtkCellArea *area,
|
2010-10-26 08:14:20 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
|
|
|
void (* get_preferred_width_for_height) (GtkCellArea *area,
|
2010-10-26 08:14:20 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint height,
|
|
|
|
gint *minimum_width,
|
|
|
|
gint *natural_width);
|
2010-10-21 13:46:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Padding for future expansion */
|
|
|
|
void (*_gtk_reserved1) (void);
|
|
|
|
void (*_gtk_reserved2) (void);
|
|
|
|
void (*_gtk_reserved3) (void);
|
|
|
|
void (*_gtk_reserved4) (void);
|
|
|
|
void (*_gtk_reserved5) (void);
|
|
|
|
void (*_gtk_reserved6) (void);
|
|
|
|
void (*_gtk_reserved7) (void);
|
|
|
|
void (*_gtk_reserved8) (void);
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gtk_cell_area_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
/* Basic methods */
|
|
|
|
void gtk_cell_area_add (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer);
|
|
|
|
void gtk_cell_area_remove (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer);
|
|
|
|
void gtk_cell_area_forall (GtkCellArea *area,
|
|
|
|
GtkCellCallback callback,
|
|
|
|
gpointer callback_data);
|
|
|
|
gint gtk_cell_area_event (GtkCellArea *area,
|
2010-10-30 14:48:52 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-21 13:46:10 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
GdkEvent *event,
|
|
|
|
const GdkRectangle *cell_area);
|
|
|
|
void gtk_cell_area_render (GtkCellArea *area,
|
2010-10-30 14:48:52 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-21 13:46:10 +00:00
|
|
|
GtkWidget *widget,
|
2010-10-30 14:48:52 +00:00
|
|
|
cairo_t *cr,
|
2010-10-21 13:46:10 +00:00
|
|
|
const GdkRectangle *cell_area);
|
|
|
|
|
|
|
|
/* Geometry */
|
2010-10-26 08:14:20 +00:00
|
|
|
GtkCellAreaIter *gtk_cell_area_create_iter (GtkCellArea *area);
|
2010-10-21 13:46:10 +00:00
|
|
|
GtkSizeRequestMode gtk_cell_area_get_request_mode (GtkCellArea *area);
|
|
|
|
void gtk_cell_area_get_preferred_width (GtkCellArea *area,
|
2010-10-26 08:14:20 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-21 13:46:10 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
|
|
|
void gtk_cell_area_get_preferred_height_for_width (GtkCellArea *area,
|
2010-10-26 08:14:20 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-21 13:46:10 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint width,
|
|
|
|
gint *minimum_height,
|
|
|
|
gint *natural_height);
|
|
|
|
void gtk_cell_area_get_preferred_height (GtkCellArea *area,
|
2010-10-26 08:14:20 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-21 13:46:10 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
|
|
|
void gtk_cell_area_get_preferred_width_for_height (GtkCellArea *area,
|
2010-10-26 08:14:20 +00:00
|
|
|
GtkCellAreaIter *iter,
|
2010-10-21 13:46:10 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint height,
|
|
|
|
gint *minimum_width,
|
|
|
|
gint *natural_width);
|
|
|
|
|
|
|
|
|
2010-10-24 06:44:48 +00:00
|
|
|
/* Following apis are not class virtual methods */
|
|
|
|
void gtk_cell_area_apply_attributes (GtkCellArea *area,
|
|
|
|
GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter);
|
2010-10-24 10:20:10 +00:00
|
|
|
void gtk_cell_area_attribute_connect (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const gchar *attribute,
|
|
|
|
gint column);
|
|
|
|
void gtk_cell_area_attribute_disconnect (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const gchar *attribute);
|
2010-10-24 06:44:48 +00:00
|
|
|
|
|
|
|
|
2010-10-21 13:46:10 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_CELL_AREA_H__ */
|