This file is indexed.

/usr/include/libindicate-0.7/libindicate/indicator.h is in libindicate-dev 0.6.92-4.

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
/*
A library to allow applictions to provide simple indications of
information to be displayed to users of the application through the
interface shell.

Copyright 2009 Canonical Ltd.

Authors:
    Ted Gould <ted@canonical.com>

This program is free software: you can redistribute it and/or modify it 
under the terms of either or both of the following licenses:

1) the GNU Lesser General Public License version 3, as published by the 
Free Software Foundation; and/or
2) the GNU Lesser General Public License version 2.1, as published by 
the Free Software Foundation.

This program is distributed in the hope that it will be useful, but 
WITHOUT ANY WARRANTY; without even the implied warranties of 
MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR 
PURPOSE.  See the applicable version of the GNU Lesser General Public 
License for more details.

You should have received a copy of both the GNU Lesser General Public 
License version 3 and version 2.1 along with this program.  If not, see 
<http://www.gnu.org/licenses/>
*/

#ifndef INDICATE_INDICATOR_H_INCLUDED__
#define INDICATE_INDICATOR_H_INCLUDED__ 1

#include <glib.h>
#include <glib-object.h>

G_BEGIN_DECLS

/* Boilerplate */
#define INDICATE_TYPE_INDICATOR (indicate_indicator_get_type ())
#define INDICATE_INDICATOR(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), INDICATE_TYPE_INDICATOR, IndicateIndicator))
#define INDICATE_IS_INDICATOR(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), INDICATE_TYPE_INDICATOR))
#define INDICATE_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), INDICATE_TYPE_INDICATOR, IndicateIndicatorClass))
#define INDICATE_IS_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), INDICATE_TYPE_INDICATOR))
#define INDICATE_INDICATOR_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), INDICATE_TYPE_INDICATOR, IndicateIndicatorClass))

/* Some values that are commonly used.  Most likely only
   internal, but if you need them, here they are! */
#define INDICATE_INDICATOR_VALUE_TRUE       "true"
#define INDICATE_INDICATOR_VALUE_FALSE      "false"

/* This is a signal that signals to the indicator that the user
 * has done an action where they'd like this indicator to be
 * displayed. */
#define INDICATE_INDICATOR_SIGNAL_HIDE      "hide"
#define INDICATE_INDICATOR_SIGNAL_SHOW      "show"
#define INDICATE_INDICATOR_SIGNAL_DISPLAY   "user-display"
#define INDICATE_INDICATOR_SIGNAL_MODIFIED  "modified"
#define INDICATE_INDICATOR_SIGNAL_DISPLAYED "displayed"

typedef struct _IndicateIndicator IndicateIndicator;
typedef struct _IndicateIndicatorClass IndicateIndicatorClass;

/**
 * IndicateIndicator:
 * 
 * The indicator object represents a single item that is shared over the
 * indicator bus.  This could be something like one IM, one e-mail or 
 * a single system update.  It should be accessed only through its
 * accessors.
*/
struct _IndicateIndicator {
	GObject parent;
};

#include "server.h"

/**
 * indicate_indicator_list_properties_slot_t:
 * @indicator: (in): Indicator to get the properties from
 *
 * Prototype for a function that will list all the properies in
 * an indicator.
 *
 * Return value: (transfer full) (array) (element-type utf8):
 *   The names of the properties that are in this indicator.
 */
typedef GPtrArray * (*indicate_indicator_list_properties_slot_t) (IndicateIndicator * indicator);

/**
 * IndicateIndicatorClass:
 * @parent_class: Parent class #GObjectClass.
 * @hide: Slot for #IndicateIndicator::hide.
 * @show: Slot for #IndicateIndicator::show.
 * @user_display: Slot for #IndicateIndicator::user-display.
 * @modified: Slot for #IndicateIndicator::modified.
 * @displayed: Slot for #IndicateIndicator::displayed.
 * @set_property: Called when indicate_indicator_set_property() is called
 *   and should set the value.  While typically it is overridden by
 *   subclasses they usually handle special properties themselves and
 *   then call the superclass for storage.
 * @get_property: Called when indicate_indicator_get_property() is called
 *   and should return the value requested.  Many times this is left alone.
 * @list_properties: Called when indicate_indicator_list_properties() is called
 *   and returns a list of the properties available.  Again this can be
 *   overridden by subclasses to handle special properties.
 * @indicate_indicator_reserved1: Reserved for future use
 * @indicate_indicator_reserved2: Reserved for future use
 * @indicate_indicator_reserved3: Reserved for future use
 * @indicate_indicator_reserved4: Reserved for future use
 *
 * All of the functions that are used to modify or change data that is
 * in the indicator.  Typically gets subclassed by other types of 
 * indicators, for example #IndicateIndicatorMessages.
 */
struct _IndicateIndicatorClass {
	/* Parents */
	GObjectClass parent_class;

	/* Signals */
	void (*hide) (IndicateIndicator * indicator, gpointer data);
	void (*show) (IndicateIndicator * indicator, gpointer data);
	void (*user_display) (IndicateIndicator * indicator, guint timestamp, gpointer data);
	void (*modified) (IndicateIndicator * indicator, gchar * property, gpointer data);
	void (*displayed) (IndicateIndicator * indicator, gboolean displayed);

	/* Subclassable functions */
	void (*set_property) (IndicateIndicator * indicator, const gchar * key, GVariant * data);
	GVariant * (*get_property) (IndicateIndicator * indicator, const gchar * key);
	indicate_indicator_list_properties_slot_t list_properties;

	/* Reserver for future use */
	void (*indicate_indicator_reserved1)(void);
	void (*indicate_indicator_reserved2)(void);
	void (*indicate_indicator_reserved3)(void);
	void (*indicate_indicator_reserved4)(void);
};

GType indicate_indicator_get_type(void) G_GNUC_CONST;

/* New Indicator Functions */
IndicateIndicator * indicate_indicator_new (void);
IndicateIndicator * indicate_indicator_new_with_server (IndicateServer * server);

/* Show and hide this indicator */
void indicate_indicator_show (IndicateIndicator * indicator);
void indicate_indicator_hide (IndicateIndicator * indicator);

gboolean indicate_indicator_is_visible (IndicateIndicator * indicator);

/* Define this indicator server */
void indicate_indicator_set_server (IndicateIndicator * indicator, IndicateServer * server);

/* Every entry has an ID, here's how to get it */
guint indicate_indicator_get_id (IndicateIndicator * indicator);
IndicateServer * indicate_indicator_get_server (IndicateIndicator * indicator);

void indicate_indicator_user_display (IndicateIndicator * indicator, guint timestamp);

/* Properties handling */
void indicate_indicator_set_property (IndicateIndicator * indicator, const gchar * key, const gchar * data);
void indicate_indicator_set_property_time (IndicateIndicator * indicator, const gchar * key, GTimeVal * time);
void indicate_indicator_set_property_int (IndicateIndicator * indicator, const gchar * key, gint value);
void indicate_indicator_set_property_bool (IndicateIndicator * indicator, const gchar * key, gboolean value);
void indicate_indicator_set_property_variant (IndicateIndicator * indicator, const gchar * key, GVariant * value);

const gchar * indicate_indicator_get_property (IndicateIndicator * indicator, const gchar * key);
GVariant * indicate_indicator_get_property_variant (IndicateIndicator * indicator, const gchar * key);

/**
 * indicate_indicator_list_properties:
 * @indicator: (in): a #IndicateIndicator to act on
 *
 * This function gets a list of all the properties that exist
 * on a @indicator.  The array may have zero entries.
 *
 * Return value: (transfer full) (array) (element-type utf8): An array of
 *   strings that is the keys of all the properties on this indicator.
 */
GPtrArray * indicate_indicator_list_properties (IndicateIndicator * indicator);

/* Controling whether it's displayed */
void indicate_indicator_set_displayed (IndicateIndicator * indicator, gboolean displayed);
gboolean indicate_indicator_get_displayed (IndicateIndicator * indicator);

/**
 * SECTION:indicator
 * @short_description: A representation of state for applications
 * @stability: Unstable
 * @include: libindicate/indicator.h
 * 
 * An indicator is designed to represent a single instance of something
 * in your application.  So this might be an IM or an e-mail mail box
 * or any other thing that is a small unit of information to pass on
 * to the user.
 * 
 * Indicators make no promises about how they are preceived by the
 * user, it's up to the listener to represent them in an intutive and
 * visually appealling way.  But, what we can do is provide information
 * on the indicator to provide enough information for the listener
 * to do that.
 * 
 * Mostly this is done through properties.
 * 
 * It may be that some users don't want to create objects for every
 * indicator as it could be a lot of overhead if there are large numbers
 * and there is already a data structure representing them all.  In that
 * case it is recommended that you ignore the #IndicateIndicator object
 * tree in general and move to subclassing #IndicateServer directly.
*/

G_END_DECLS

#endif /* INDICATE_INDICATOR_H_INCLUDED__ */