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-11-13 07:23:01 +00:00
|
|
|
typedef struct _GtkCellAreaContext GtkCellAreaContext;
|
2010-10-21 13:46:10 +00:00
|
|
|
|
2010-12-04 11:52:03 +00:00
|
|
|
/**
|
|
|
|
* GTK_CELL_AREA_WARN_INVALID_CELL_PROPERTY_ID:
|
|
|
|
* @object: the #GObject on which set_cell_property() or get_get_property()
|
|
|
|
* was called
|
|
|
|
* @property_id: the numeric id of the property
|
|
|
|
* @pspec: the #GParamSpec of the property
|
|
|
|
*
|
|
|
|
* This macro should be used to emit a standard warning about unexpected
|
|
|
|
* properties in set_cell_property() and get_cell_property() implementations.
|
|
|
|
*/
|
|
|
|
#define GTK_CELL_AREA_WARN_INVALID_CELL_PROPERTY_ID(object, property_id, pspec) \
|
|
|
|
G_OBJECT_WARN_INVALID_PSPEC ((object), "cell property id", (property_id), (pspec))
|
|
|
|
|
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
|
2010-12-06 03:41:38 +00:00
|
|
|
* the cell renderers of a #GtkCellArea, see gtk_cell_area_foreach().
|
|
|
|
*
|
|
|
|
* Return value: %TRUE to stop iterating over cells.
|
2010-10-21 13:46:10 +00:00
|
|
|
*/
|
2010-12-06 03:41:38 +00:00
|
|
|
typedef gboolean (*GtkCellCallback) (GtkCellRenderer *renderer,
|
|
|
|
gpointer data);
|
2010-10-21 13:46:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
struct _GtkCellArea
|
|
|
|
{
|
2010-12-03 08:12:59 +00:00
|
|
|
/*< private >*/
|
2010-10-21 13:46:10 +00:00
|
|
|
GInitiallyUnowned parent_instance;
|
|
|
|
|
2010-10-24 06:44:48 +00:00
|
|
|
GtkCellAreaPrivate *priv;
|
2010-10-21 13:46:10 +00:00
|
|
|
};
|
|
|
|
|
2010-12-02 15:29:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkCellAreaClass:
|
|
|
|
* @add: adds a #GtkCellRenderer to the area.
|
|
|
|
* @remove: removes a #GtkCellRenderer from the area.
|
2010-12-06 03:41:38 +00:00
|
|
|
* @foreach: Calls the #GtkCellCallback function on every #GtkCellRenderer in the area
|
|
|
|
* with the provided user data until the callback returns %TRUE.
|
2010-12-02 15:29:22 +00:00
|
|
|
* @get_cell_allocation: Gets the position (relative to the passed @cell_area rectangle)
|
|
|
|
* and size of a #GtkCellRenderer.
|
|
|
|
* @event: Handle an event in the area, this is generally used to activate a cell
|
|
|
|
* at the event location for button events but can also be used to generically pass
|
|
|
|
* events to #GtkWidgets drawn onto the area.
|
|
|
|
* @render: Actually render the area's cells to the specified rectangle, @background_area
|
|
|
|
* should be correctly distributed to the cells coresponding background areas.
|
|
|
|
* @apply_attributes: Apply the cell attributes to the cells. This is implemented as a signal and
|
|
|
|
* generally #GtkCellArea subclasses dont need to implement this since it's handled by the base
|
|
|
|
* class but can be overridden to apply some custom attributes.
|
|
|
|
* @create_context: Creates and returns a class specific #GtkCellAreaContext to store cell
|
|
|
|
* alignment and allocation details for a said #GtkCellArea class.
|
|
|
|
* @get_request_mode: This allows an area to tell its layouting widget whether it prefers to
|
|
|
|
* be allocated in %GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH or %GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT mode.
|
|
|
|
* @get_preferred_width: Calculates the minimum and natural width of the area's cells
|
|
|
|
* with the current attributes applied while considering the particular layouting details
|
|
|
|
* of the said #GtkCellArea. While requests are performed over a series of rows, alignments
|
|
|
|
* and overall minimum and natural sizes should be stored in the corresponding #GtkCellAreaContext.
|
|
|
|
* @get_preferred_height_for_width: Calculates the minimum and natural height for the area
|
|
|
|
* if the passed @context would be allocated the given width. When implementing this virtual
|
|
|
|
* method it is safe to assume that @context has already stored the aligned cell widths
|
|
|
|
* for every #GtkTreeModel row that @context will be allocated for since this information
|
|
|
|
* was stored at #GtkCellAreaClass.get_preferred_width() time. This virtual method should
|
|
|
|
* also store any necessary alignments of cell heights for the case that the context is
|
|
|
|
* allocated a height.
|
|
|
|
* @get_preferred_height: Calculates the minimum and natural height of the area's cells
|
|
|
|
* with the current attributes applied. Essentially this is the same as
|
|
|
|
* #GtkCellAreaClass.get_preferred_width() only for areas that are being requested as
|
|
|
|
* %GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT.
|
|
|
|
* @get_preferred_width_for_height: Calculates the minimum and natural width for the area
|
|
|
|
* if the passed @context would be allocated the given height. The same as
|
|
|
|
* #GtkCellAreaClass.get_preferred_height_for_width() only for handling requests in the
|
|
|
|
* %GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT mode.
|
|
|
|
* @set_cell_property: This should be implemented to handle changes in child cell properties
|
|
|
|
* for a given #GtkCellRenderer that were previously installed on the #GtkCellAreaClass with
|
|
|
|
* gtk_cell_area_class_install_cell_property().
|
|
|
|
* @get_cell_property: This should be implemented to report the values of child cell properties
|
|
|
|
* for a given child #GtkCellRenderer.
|
|
|
|
* @focus: This virtual method should be implemented to navigate focus from cell to cell
|
|
|
|
* inside the #GtkCellArea. The #GtkCellArea should move focus from cell to cell inside
|
|
|
|
* the area and return %FALSE if focus logically leaves the area with the following exceptions:
|
|
|
|
* When the area contains no activatable cells, the entire area recieves focus. Focus should not
|
|
|
|
* be given to cells that are actually "focus siblings" of other sibling cells
|
|
|
|
* (see gtk_cell_area_get_focus_from_sibling()). Focus is set by calling gtk_cell_area_set_focus_cell().
|
|
|
|
* @is_activatable: Returns whether the #GtkCellArea can respond to #GtkCellAreaClass.activate(),
|
|
|
|
* usually this does not need to be implemented since the base class takes care of this however
|
|
|
|
* it can be enhanced if the #GtkCellArea subclass can handle activation in other ways than
|
|
|
|
* activating its #GtkCellRenderers.
|
|
|
|
* @activate: This is called when the layouting widget rendering the #GtkCellArea activates
|
|
|
|
* the focus cell (see gtk_cell_area_get_focus_cell()).
|
|
|
|
*/
|
2010-10-21 13:46:10 +00:00
|
|
|
struct _GtkCellAreaClass
|
|
|
|
{
|
2010-12-02 15:29:22 +00:00
|
|
|
/*< private >*/
|
2010-10-21 13:46:10 +00:00
|
|
|
GInitiallyUnownedClass parent_class;
|
|
|
|
|
2010-12-02 15:29:22 +00:00
|
|
|
/*< public >*/
|
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);
|
2010-12-06 03:41:38 +00:00
|
|
|
void (* foreach) (GtkCellArea *area,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkCellCallback callback,
|
|
|
|
gpointer callback_data);
|
2010-11-05 13:16:32 +00:00
|
|
|
void (* get_cell_allocation) (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-11-05 13:16:32 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const GdkRectangle *cell_area,
|
|
|
|
GdkRectangle *allocation);
|
2010-10-23 08:01:58 +00:00
|
|
|
gint (* event) (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
GdkEvent *event,
|
2010-11-01 03:39:00 +00:00
|
|
|
const GdkRectangle *cell_area,
|
|
|
|
GtkCellRendererState flags);
|
2010-10-23 08:01:58 +00:00
|
|
|
void (* render) (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkWidget *widget,
|
2010-10-30 14:48:52 +00:00
|
|
|
cairo_t *cr,
|
2010-11-11 07:13:06 +00:00
|
|
|
const GdkRectangle *background_area,
|
2010-11-01 03:39:00 +00:00
|
|
|
const GdkRectangle *cell_area,
|
2010-11-11 07:13:06 +00:00
|
|
|
GtkCellRendererState flags,
|
|
|
|
gboolean paint_focus);
|
2010-11-23 14:37:58 +00:00
|
|
|
void (* apply_attributes) (GtkCellArea *area,
|
|
|
|
GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gboolean is_expander,
|
|
|
|
gboolean is_expanded);
|
2010-10-21 13:46:10 +00:00
|
|
|
|
2010-10-22 07:41:52 +00:00
|
|
|
/* Geometry */
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *(* create_context) (GtkCellArea *area);
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkSizeRequestMode (* get_request_mode) (GtkCellArea *area);
|
|
|
|
void (* get_preferred_width) (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkWidget *widget,
|
2010-11-15 02:23:55 +00:00
|
|
|
gint *minimum_width,
|
|
|
|
gint *natural_width);
|
2010-10-23 08:01:58 +00:00
|
|
|
void (* get_preferred_height_for_width) (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
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-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-10-23 08:01:58 +00:00
|
|
|
GtkWidget *widget,
|
2010-11-15 02:23:55 +00:00
|
|
|
gint *minimum_height,
|
|
|
|
gint *natural_height);
|
2010-10-23 08:01:58 +00:00
|
|
|
void (* get_preferred_width_for_height) (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
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
|
|
|
|
2010-10-31 08:13:15 +00:00
|
|
|
/* Cell Properties */
|
|
|
|
void (* set_cell_property) (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
void (* get_cell_property) (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
2010-10-21 13:46:10 +00:00
|
|
|
|
2010-11-01 07:01:25 +00:00
|
|
|
/* Focus */
|
2010-11-10 10:17:06 +00:00
|
|
|
gboolean (* focus) (GtkCellArea *area,
|
2010-11-01 07:01:25 +00:00
|
|
|
GtkDirectionType direction);
|
2010-12-02 15:29:22 +00:00
|
|
|
gboolean (* is_activatable) (GtkCellArea *area);
|
2010-11-10 10:17:06 +00:00
|
|
|
gboolean (* activate) (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-11-10 10:17:06 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
const GdkRectangle *cell_area,
|
|
|
|
GtkCellRendererState flags);
|
|
|
|
|
2010-12-02 15:29:22 +00:00
|
|
|
/*< private >*/
|
2010-11-01 07:01:25 +00:00
|
|
|
|
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);
|
|
|
|
};
|
|
|
|
|
2010-11-12 05:06:00 +00:00
|
|
|
GType gtk_cell_area_get_type (void) G_GNUC_CONST;
|
2010-10-21 13:46:10 +00:00
|
|
|
|
|
|
|
/* Basic methods */
|
2010-11-12 05:06:00 +00:00
|
|
|
void gtk_cell_area_add (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer);
|
|
|
|
void gtk_cell_area_remove (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer);
|
|
|
|
gboolean gtk_cell_area_has_renderer (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer);
|
2010-12-06 03:41:38 +00:00
|
|
|
void gtk_cell_area_foreach (GtkCellArea *area,
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkCellCallback callback,
|
|
|
|
gpointer callback_data);
|
|
|
|
void gtk_cell_area_get_cell_allocation (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const GdkRectangle *cell_area,
|
|
|
|
GdkRectangle *allocation);
|
|
|
|
gint gtk_cell_area_event (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
GdkEvent *event,
|
|
|
|
const GdkRectangle *cell_area,
|
|
|
|
GtkCellRendererState flags);
|
|
|
|
void gtk_cell_area_render (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
cairo_t *cr,
|
|
|
|
const GdkRectangle *background_area,
|
|
|
|
const GdkRectangle *cell_area,
|
|
|
|
GtkCellRendererState flags,
|
|
|
|
gboolean paint_focus);
|
|
|
|
void gtk_cell_area_set_style_detail (GtkCellArea *area,
|
|
|
|
const gchar *detail);
|
|
|
|
G_CONST_RETURN gchar *gtk_cell_area_get_style_detail (GtkCellArea *area);
|
2010-10-21 13:46:10 +00:00
|
|
|
|
|
|
|
/* Geometry */
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *gtk_cell_area_create_context (GtkCellArea *area);
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkSizeRequestMode gtk_cell_area_get_request_mode (GtkCellArea *area);
|
|
|
|
void gtk_cell_area_get_preferred_width (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
|
|
|
void gtk_cell_area_get_preferred_height_for_width (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint width,
|
|
|
|
gint *minimum_height,
|
|
|
|
gint *natural_height);
|
|
|
|
void gtk_cell_area_get_preferred_height (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
|
|
|
void gtk_cell_area_get_preferred_width_for_height (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
gint height,
|
|
|
|
gint *minimum_width,
|
|
|
|
gint *natural_width);
|
|
|
|
G_CONST_RETURN gchar *gtk_cell_area_get_current_path_string (GtkCellArea *area);
|
2010-11-05 13:16:32 +00:00
|
|
|
|
2010-10-21 13:46:10 +00:00
|
|
|
|
2010-10-31 08:13:15 +00:00
|
|
|
/* Attributes */
|
2010-11-12 05:06:00 +00:00
|
|
|
void gtk_cell_area_apply_attributes (GtkCellArea *area,
|
|
|
|
GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gboolean is_expander,
|
|
|
|
gboolean is_expanded);
|
|
|
|
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-31 08:13:15 +00:00
|
|
|
/* Cell Properties */
|
2010-11-12 05:06:00 +00:00
|
|
|
void gtk_cell_area_class_install_cell_property (GtkCellAreaClass *aclass,
|
|
|
|
guint property_id,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
GParamSpec* gtk_cell_area_class_find_cell_property (GtkCellAreaClass *aclass,
|
|
|
|
const gchar *property_name);
|
|
|
|
GParamSpec** gtk_cell_area_class_list_cell_properties (GtkCellAreaClass *aclass,
|
|
|
|
guint *n_properties);
|
|
|
|
void gtk_cell_area_add_with_properties (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const gchar *first_prop_name,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
|
|
void gtk_cell_area_cell_set (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const gchar *first_prop_name,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
|
|
void gtk_cell_area_cell_get (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const gchar *first_prop_name,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
|
|
void gtk_cell_area_cell_set_valist (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const gchar *first_property_name,
|
|
|
|
va_list var_args);
|
|
|
|
void gtk_cell_area_cell_get_valist (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const gchar *first_property_name,
|
|
|
|
va_list var_args);
|
|
|
|
void gtk_cell_area_cell_set_property (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const gchar *property_name,
|
|
|
|
const GValue *value);
|
|
|
|
void gtk_cell_area_cell_get_property (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
const gchar *property_name,
|
|
|
|
GValue *value);
|
2010-10-31 08:13:15 +00:00
|
|
|
|
2010-11-01 07:01:25 +00:00
|
|
|
/* Focus */
|
2010-11-29 07:29:09 +00:00
|
|
|
gboolean gtk_cell_area_is_activatable (GtkCellArea *area);
|
2010-11-12 05:06:00 +00:00
|
|
|
gboolean gtk_cell_area_activate (GtkCellArea *area,
|
2010-11-13 07:23:01 +00:00
|
|
|
GtkCellAreaContext *context,
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkWidget *widget,
|
|
|
|
const GdkRectangle *cell_area,
|
|
|
|
GtkCellRendererState flags);
|
2010-11-29 07:29:09 +00:00
|
|
|
gboolean gtk_cell_area_focus (GtkCellArea *area,
|
|
|
|
GtkDirectionType direction);
|
2010-11-12 05:06:00 +00:00
|
|
|
void gtk_cell_area_set_focus_cell (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer);
|
|
|
|
GtkCellRenderer *gtk_cell_area_get_focus_cell (GtkCellArea *area);
|
2010-11-05 04:05:20 +00:00
|
|
|
|
2010-11-11 07:13:06 +00:00
|
|
|
|
|
|
|
/* Focus siblings */
|
2010-11-12 05:06:00 +00:00
|
|
|
void gtk_cell_area_add_focus_sibling (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkCellRenderer *sibling);
|
|
|
|
void gtk_cell_area_remove_focus_sibling (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkCellRenderer *sibling);
|
|
|
|
gboolean gtk_cell_area_is_focus_sibling (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkCellRenderer *sibling);
|
|
|
|
G_CONST_RETURN GList *gtk_cell_area_get_focus_siblings (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer);
|
|
|
|
GtkCellRenderer *gtk_cell_area_get_focus_from_sibling (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer);
|
2010-11-11 07:13:06 +00:00
|
|
|
|
2010-11-06 06:29:27 +00:00
|
|
|
/* Cell Activation/Editing */
|
2010-11-12 05:06:00 +00:00
|
|
|
GtkCellRenderer *gtk_cell_area_get_edited_cell (GtkCellArea *area);
|
|
|
|
GtkCellEditable *gtk_cell_area_get_edit_widget (GtkCellArea *area);
|
|
|
|
gboolean gtk_cell_area_activate_cell (GtkCellArea *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GdkEvent *event,
|
|
|
|
const GdkRectangle *cell_area,
|
|
|
|
GtkCellRendererState flags);
|
|
|
|
void gtk_cell_area_stop_editing (GtkCellArea *area,
|
|
|
|
gboolean canceled);
|
2010-11-05 04:05:20 +00:00
|
|
|
|
2010-10-31 13:50:53 +00:00
|
|
|
/* Functions for area implementations */
|
|
|
|
|
|
|
|
/* Distinguish the inner cell area from the whole requested area including margins */
|
2010-11-12 05:06:00 +00:00
|
|
|
void gtk_cell_area_inner_cell_area (GtkCellArea *area,
|
2010-11-23 07:26:46 +00:00
|
|
|
GtkWidget *widget,
|
2010-11-12 05:06:00 +00:00
|
|
|
const GdkRectangle *cell_area,
|
2010-11-12 10:25:07 +00:00
|
|
|
GdkRectangle *inner_area);
|
|
|
|
|
2010-10-31 13:50:53 +00:00
|
|
|
/* Request the size of a cell while respecting the cell margins (requests are margin inclusive) */
|
2010-11-12 05:06:00 +00:00
|
|
|
void gtk_cell_area_request_renderer (GtkCellArea *area,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkOrientation orientation,
|
|
|
|
GtkWidget *widget,
|
|
|
|
gint for_size,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
2010-10-24 06:44:48 +00:00
|
|
|
|
2010-10-21 13:46:10 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_CELL_AREA_H__ */
|