/usr/include/hippo-canvas-1/hippo/hippo-canvas-util.h is in libhippocanvas-dev 0.3.1-1.2.
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 | /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
#ifndef __HIPPO_CANVAS_UTIL_H__
#define __HIPPO_CANVAS_UTIL_H__
#include <glib-object.h>
G_BEGIN_DECLS
/* utility methods used in hippo canvas */
#define HIPPO_TYPE_CAIRO_SURFACE (hippo_cairo_surface_get_type ())
GType hippo_cairo_surface_get_type (void) G_GNUC_CONST;
/* A boxed type for GdkRegion until one gets into gtk+ itself. */
#ifdef GDK_TYPE_REGION
#define PYGDK_TYPE_REGION GDK_TYPE_REGION
#else
GType pygdk_region_get_type (void) G_GNUC_CONST;
#define PYGDK_TYPE_REGION (pygdk_region_get_type ())
#endif /* GDK_TYPE_REGION */
G_END_DECLS
#endif /* __HIPPO_CANVAS_UTIL_H__ */
|