This file is indexed.

/usr/include/bisho/bisho-pane.h is in libbisho-common-dev 0.27.2+git20111122.9e68ef3d-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
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
#ifndef __BISHO_PANE_H__
#define __BISHO_PANE_H__

#include <gtk/gtk.h>
#include "service-info.h"
#include <libsocialweb-client/sw-client.h>

G_BEGIN_DECLS

#define BISHO_TYPE_PANE (bisho_pane_get_type())
#define BISHO_PANE(obj)                                                 \
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), BISHO_TYPE_PANE, BishoPane))
#define BISHO_PANE_CLASS(klass)                                         \
  (G_TYPE_CHECK_CLASS_CAST ((klass), BISHO_TYPE_PANE, BishoPaneClass))
#define BISHO_IS_PANE(obj)                              \
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BISHO_TYPE_PANE))
#define BISHO_IS_PANE_CLASS(klass)                      \
  (G_TYPE_CHECK_CLASS_TYPE ((klass), BISHO_TYPE_PANE))
#define BISHO_PANE_GET_CLASS(obj)                                       \
   (G_TYPE_INSTANCE_GET_CLASS ((obj), BISHO_TYPE_PANE, BishoPaneClass))

typedef struct _BishoPane BishoPane;
typedef struct _BishoPaneClass BishoPaneClass;

struct _BishoPane {
  GtkVBox parent;
  SwClient *socialweb;
  ServiceInfo *info;
  GtkWidget *description;
  GtkWidget *banner;
  GtkWidget *banner_label;
  guint      banner_timeout;
  GtkWidget *user_box;
  GtkWidget *user_icon;
  GtkWidget *user_name;
  GtkWidget *content;
  GtkWidget *disclaimer;
};

struct _BishoPaneClass {
  GtkVBoxClass parent_class;
  const char * (*get_auth_type) (BishoPaneClass *klass);
  void (*continue_auth) (BishoPane *pane, GHashTable *params);
};

GType bisho_pane_get_type (void) G_GNUC_CONST;

const char * bisho_pane_get_auth_type (BishoPaneClass *klass);


void bisho_pane_continue_auth (BishoPane *pane, GHashTable *params);

void bisho_pane_set_banner (BishoPane *pane, const char *message);

void bisho_pane_set_banner_error (BishoPane *pane, const GError *error);

void bisho_pane_set_user (BishoPane *pane, const char *icon, const char *username);

void bisho_pane_follow_connected (BishoPane *pane, GtkWidget *widget);

G_END_DECLS

#endif /* __BISHO_PANE_H__ */