This file is indexed.

/usr/include/hippo-canvas-1/hippo/hippo-canvas-window.h is in libhippocanvas-dev 0.3.1-1.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
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
#ifndef __HIPPO_CANVAS_WINDOW_H__
#define __HIPPO_CANVAS_WINDOW_H__

/* A window that contains only a root HippoCanvasItem */

#include <gtk/gtkwidget.h>
#include <hippo/hippo-canvas-item.h>

G_BEGIN_DECLS

typedef struct _HippoCanvasWindow      HippoCanvasWindow;
typedef struct _HippoCanvasWindowClass HippoCanvasWindowClass;

#define HIPPO_TYPE_CANVAS_WINDOW              (hippo_canvas_window_get_type ())
#define HIPPO_CANVAS_WINDOW(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), HIPPO_TYPE_CANVAS_WINDOW, HippoCanvasWindow))
#define HIPPO_CANVAS_WINDOW_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), HIPPO_TYPE_CANVAS_WINDOW, HippoCanvasWindowClass))
#define HIPPO_IS_CANVAS_WINDOW(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), HIPPO_TYPE_CANVAS_WINDOW))
#define HIPPO_IS_CANVAS_WINDOW_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), HIPPO_TYPE_CANVAS_WINDOW))
#define HIPPO_CANVAS_WINDOW_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), HIPPO_TYPE_CANVAS_WINDOW, HippoCanvasWindowClass))

GType        	 hippo_canvas_window_get_type               (void) G_GNUC_CONST;

GtkWidget* hippo_canvas_window_new    (void);

void hippo_canvas_window_set_root(HippoCanvasWindow *canvas_window,
                                  HippoCanvasItem   *item);

void hippo_canvas_window_set_theme(HippoCanvasWindow *canvas_window,
                                   HippoCanvasTheme  *theme);

HippoCanvasContext *hippo_canvas_window_get_context(HippoCanvasWindow *canvas_window);

G_END_DECLS

#endif /* __HIPPO_CANVAS_WINDOW_H__ */