/usr/include/goocanvas-1.0/goocanvasitemsimple.h is in libgoocanvas-dev 1.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | /*
* GooCanvas. Copyright (C) 2005-6 Damon Chaplin.
* Released under the GNU LGPL license. See COPYING for details.
*
* goocanvasitemsimple.h - abstract base class for simple items.
*/
#ifndef __GOO_CANVAS_ITEM_SIMPLE_H__
#define __GOO_CANVAS_ITEM_SIMPLE_H__
#include <gtk/gtk.h>
#include "goocanvasitem.h"
#include "goocanvasitemmodel.h"
#include "goocanvasstyle.h"
#include "goocanvasutils.h"
G_BEGIN_DECLS
/**
* GooCanvasItemSimpleData
* @style: the style to draw with.
* @transform: the transformation matrix of the item, or %NULL.
* @clip_path_commands: an array of #GooCanvasPathCommand specifying the clip
* path of the item, or %NULL.
* @tooltip: the item's tooltip.
* @visibility_threshold: the threshold scale setting at which to show the item
* (if the @visibility setting is set to %VISIBLE_ABOVE_THRESHOLD).
* @visibility: the #GooCanvasItemVisibility setting specifying whether the
* item is visible, invisible, or visible above a given canvas scale setting.
* @pointer_events: the #GooCanvasPointerEvents setting specifying the events
* the item should receive.
* @can_focus: if the item can take the keyboard focus.
* @own_style: if the item has its own style, rather than using its parent's.
* @clip_fill_rule: the #cairo_fill_rule_t setting specifying the fill rule
* used for the clip path.
* @is_static: if the item is static.
*
* This is the data common to both the model and view classes.
*/
typedef struct _GooCanvasItemSimpleData GooCanvasItemSimpleData;
struct _GooCanvasItemSimpleData
{
GooCanvasStyle *style;
cairo_matrix_t *transform;
GArray *clip_path_commands;
gchar *tooltip;
/*< public >*/
gdouble visibility_threshold;
guint visibility : 2;
guint pointer_events : 4;
guint can_focus : 1;
guint own_style : 1;
guint clip_fill_rule : 4;
guint is_static : 1;
/*< private >*/
/* We might use this in future for a cache setting - never/always/visible. */
guint cache_setting : 2;
/* We might need this for tooltips in future. */
guint has_tooltip : 1;
};
#define GOO_TYPE_CANVAS_ITEM_SIMPLE (goo_canvas_item_simple_get_type ())
#define GOO_CANVAS_ITEM_SIMPLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GOO_TYPE_CANVAS_ITEM_SIMPLE, GooCanvasItemSimple))
#define GOO_CANVAS_ITEM_SIMPLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GOO_TYPE_CANVAS_ITEM_SIMPLE, GooCanvasItemSimpleClass))
#define GOO_IS_CANVAS_ITEM_SIMPLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GOO_TYPE_CANVAS_ITEM_SIMPLE))
#define GOO_IS_CANVAS_ITEM_SIMPLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GOO_TYPE_CANVAS_ITEM_SIMPLE))
#define GOO_CANVAS_ITEM_SIMPLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GOO_TYPE_CANVAS_ITEM_SIMPLE, GooCanvasItemSimpleClass))
typedef struct _GooCanvasItemSimple GooCanvasItemSimple;
typedef struct _GooCanvasItemSimpleClass GooCanvasItemSimpleClass;
typedef struct _GooCanvasItemModelSimple GooCanvasItemModelSimple;
/**
* GooCanvasItemSimple
* @canvas: the canvas.
* @parent: the parent item.
* @model: the item's model, if it has one.
* @simple_data: data that is common to both the model and view classes. If
* the canvas item has a model, this will point to the model's
* #GooCanvasItemSimpleData, otherwise the canvas item will have its own
* #GooCanvasItemSimpleData.
* @bounds: the bounds of the item, in device space.
* @need_update: if the item needs to recompute its bounds and redraw.
* @need_entire_subtree_update: if all descendants need to be updated.
*
* The #GooCanvasItemSimple-struct struct contains the basic data needed to
* implement canvas items.
*/
struct _GooCanvasItemSimple
{
/* <private> */
GObject parent_object;
/* <public> */
GooCanvas *canvas;
GooCanvasItem *parent;
GooCanvasItemModelSimple *model;
GooCanvasItemSimpleData *simple_data;
GooCanvasBounds bounds;
guint need_update : 1;
guint need_entire_subtree_update : 1;
/* <private> */
/* We might use this in future for things like a cache. */
gpointer priv;
};
/**
* GooCanvasItemSimpleClass
* @simple_create_path: simple subclasses that draw basic shapes and paths only
* need to override this one method. It creates the path for the item.
* All updating, painting and hit-testing is provided automatically by the
* #GooCanvasItemSimple class. (This method is used by the builtin
* #GooCanvasEllipse, #GooCanvasRect and #GooCanvasPath items.)
* More complicated subclasses must override @simple_update, @simple_paint and
* @simple_is_item_at instead.
* @simple_update: subclasses should override this to calculate their new
* bounds, in user space.
* @simple_paint: subclasses should override this to paint their item.
* @simple_is_item_at: subclasses should override this to do hit-testing.
*
* The #GooCanvasItemSimpleClass-struct struct contains several methods that
* subclasses can override.
*
* Simple items need only implement the create_path() method. More complex
* items must override the update(), paint() and is_item_at() methods instead.
*/
struct _GooCanvasItemSimpleClass
{
/*< private >*/
GObjectClass parent_class;
/*< public >*/
void (* simple_create_path) (GooCanvasItemSimple *simple,
cairo_t *cr);
void (* simple_update) (GooCanvasItemSimple *simple,
cairo_t *cr);
void (* simple_paint) (GooCanvasItemSimple *simple,
cairo_t *cr,
const GooCanvasBounds *bounds);
gboolean (* simple_is_item_at) (GooCanvasItemSimple *simple,
gdouble x,
gdouble y,
cairo_t *cr,
gboolean is_pointer_event);
/*< private >*/
/* Padding for future expansion */
void (*_goo_canvas_reserved1) (void);
void (*_goo_canvas_reserved2) (void);
void (*_goo_canvas_reserved3) (void);
void (*_goo_canvas_reserved4) (void);
};
GType goo_canvas_item_simple_get_type (void) G_GNUC_CONST;
void goo_canvas_item_simple_get_path_bounds (GooCanvasItemSimple *item,
cairo_t *cr,
GooCanvasBounds *bounds);
void goo_canvas_item_simple_user_bounds_to_device (GooCanvasItemSimple *item,
cairo_t *cr,
GooCanvasBounds *bounds);
void goo_canvas_item_simple_user_bounds_to_parent (GooCanvasItemSimple *item,
cairo_t *cr,
GooCanvasBounds *bounds);
gboolean goo_canvas_item_simple_check_in_path (GooCanvasItemSimple *item,
gdouble x,
gdouble y,
cairo_t *cr,
GooCanvasPointerEvents pointer_events);
void goo_canvas_item_simple_paint_path (GooCanvasItemSimple *item,
cairo_t *cr);
void goo_canvas_item_simple_changed (GooCanvasItemSimple *item,
gboolean recompute_bounds);
void goo_canvas_item_simple_check_style (GooCanvasItemSimple *item);
gdouble goo_canvas_item_simple_get_line_width (GooCanvasItemSimple *item);
void goo_canvas_item_simple_set_model (GooCanvasItemSimple *item,
GooCanvasItemModel *model);
#define GOO_TYPE_CANVAS_ITEM_MODEL_SIMPLE (goo_canvas_item_model_simple_get_type ())
#define GOO_CANVAS_ITEM_MODEL_SIMPLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GOO_TYPE_CANVAS_ITEM_MODEL_SIMPLE, GooCanvasItemModelSimple))
#define GOO_CANVAS_ITEM_MODEL_SIMPLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GOO_TYPE_CANVAS_ITEM_MODEL_SIMPLE, GooCanvasItemModelSimpleClass))
#define GOO_IS_CANVAS_ITEM_MODEL_SIMPLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GOO_TYPE_CANVAS_ITEM_MODEL_SIMPLE))
#define GOO_IS_CANVAS_ITEM_MODEL_SIMPLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GOO_TYPE_CANVAS_ITEM_MODEL_SIMPLE))
#define GOO_CANVAS_ITEM_MODEL_SIMPLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GOO_TYPE_CANVAS_ITEM_MODEL_SIMPLE, GooCanvasItemModelSimpleClass))
typedef struct _GooCanvasItemModelSimpleClass GooCanvasItemModelSimpleClass;
/**
* GooCanvasItemModelSimple
* @parent: the parent model.
* @simple_data: data used by the canvas item for viewing the model.
*
* The #GooCanvasItemModelSimple-struct struct contains the basic data needed
* to implement canvas item models.
*/
struct _GooCanvasItemModelSimple
{
GObject parent_object;
/*< public >*/
GooCanvasItemModel *parent;
GooCanvasItemSimpleData simple_data;
/*< private >*/
/* The title and description of the item for accessibility. */
gchar *title;
gchar *description;
};
struct _GooCanvasItemModelSimpleClass
{
GObjectClass parent_class;
/*< private >*/
/* Padding for future expansion */
void (*_goo_canvas_reserved1) (void);
void (*_goo_canvas_reserved2) (void);
void (*_goo_canvas_reserved3) (void);
void (*_goo_canvas_reserved4) (void);
};
GType goo_canvas_item_model_simple_get_type (void) G_GNUC_CONST;
G_END_DECLS
#endif /* __GOO_CANVAS_ITEM_SIMPLE_H__ */
|