/usr/include/zeitgeist-1.0/zeitgeist-data-source.h is in libzeitgeist-dev 0.3.18-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 | /*
* Copyright (C) 2010 Canonical, Ltd.
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>.
*
* Authored by: Michal Hruby <michal.mhr@gmail.com>
*/
#if !defined (_ZEITGEIST_H_INSIDE_) && !defined (ZEITGEIST_COMPILATION)
#error "Only <zeitgeist.h> can be included directly."
#endif
#ifndef _ZEITGEIST_DATA_SOURCE_H_
#define _ZEITGEIST_DATA_SOURCE_H_
#include <glib.h>
#include <glib-object.h>
#include <gio/gio.h>
G_BEGIN_DECLS
#define ZEITGEIST_TYPE_DATA_SOURCE (zeitgeist_data_source_get_type ())
#define ZEITGEIST_DATA_SOURCE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
ZEITGEIST_TYPE_DATA_SOURCE, ZeitgeistDataSource))
#define ZEITGEIST_DATA_SOURCE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), \
ZEITGEIST_TYPE_DATA_SOURCE, ZeitgeistDataSourceClass))
#define ZEITGEIST_IS_DATA_SOURCE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
ZEITGEIST_TYPE_DATA_SOURCE))
#define ZEITGEIST_IS_DATA_SOURCE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), \
ZEITGEIST_TYPE_DATA_SOURCE))
#define ZEITGEIST_DATA_SOURCE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \
ZEITGEIST_TYPE_DATA_SOURCE, ZeitgeistDataSourceClass))
typedef struct _ZeitgeistDataSource ZeitgeistDataSource;
typedef struct _ZeitgeistDataSourceClass ZeitgeistDataSourceClass;
struct _ZeitgeistDataSourceClass
{
GInitiallyUnownedClass parent_class;
};
struct _ZeitgeistDataSource
{
GInitiallyUnowned parent_instance;
};
GType zeitgeist_data_source_get_type (void);
ZeitgeistDataSource* zeitgeist_data_source_new (void);
ZeitgeistDataSource* zeitgeist_data_source_new_full (const gchar *id,
const gchar *name,
const gchar *desc,
GPtrArray *event_templates);
ZeitgeistDataSource* zeitgeist_data_source_new_from_variant (GVariant *src);
const gchar* zeitgeist_data_source_get_unique_id (ZeitgeistDataSource *src);
void zeitgeist_data_source_set_unique_id (ZeitgeistDataSource *src,
const gchar* unique_id);
const gchar* zeitgeist_data_source_get_name (ZeitgeistDataSource *src);
void zeitgeist_data_source_set_name (ZeitgeistDataSource *src,
const gchar *name);
const gchar* zeitgeist_data_source_get_description (ZeitgeistDataSource *src);
void zeitgeist_data_source_set_description (ZeitgeistDataSource *src,
const gchar *description);
GPtrArray* zeitgeist_data_source_get_event_templates (ZeitgeistDataSource *src);
void zeitgeist_data_source_set_event_templates (ZeitgeistDataSource *src,
GPtrArray *event_templates);
gboolean zeitgeist_data_source_is_running (ZeitgeistDataSource *src);
void zeitgeist_data_source_set_running (ZeitgeistDataSource *src,
gboolean running);
gint64 zeitgeist_data_source_get_timestamp (ZeitgeistDataSource *src);
void zeitgeist_data_source_set_timestamp (ZeitgeistDataSource *src,
gint64 timestamp);
gboolean zeitgeist_data_source_is_enabled (ZeitgeistDataSource *src);
void zeitgeist_data_source_set_enabled (ZeitgeistDataSource *src,
gboolean enabled);
GVariant* zeitgeist_data_source_to_variant (ZeitgeistDataSource *src);
GVariant* zeitgeist_data_source_to_variant_full (ZeitgeistDataSource *src);
GVariant* zeitgeist_data_sources_to_variant (GPtrArray *sources);
GPtrArray* zeitgeist_data_sources_from_variant (GVariant *sources);
/**
* ZEITGEIST_DATA_SOURCE_VARIANT_SIGNATURE:
*
* The #GVariant signature for a serialized #ZeitgeistDataSource
*/
#define ZEITGEIST_DATA_SOURCE_VARIANT_SIGNATURE "(sssa(asaasay))"
/**
* ZEITGEIST_DATA_SOURCE_VARIANT_TYPE:
*
* The #GVariantType of #ZEITGEIST_DATA_SOURCE_VARIANT_SIGNATURE
*/
#define ZEITGEIST_DATA_SOURCE_VARIANT_TYPE G_VARIANT_TYPE(ZEITGEIST_DATA_SOURCE_VARIANT_SIGNATURE)
/**
* ZEITGEIST_DATA_SOURCE_WITH_INFO_VARIANT_SIGNATURE:
*
* The #GVariant signature for a serialized #ZeitgeistDataSource
*/
#define ZEITGEIST_DATA_SOURCE_WITH_INFO_VARIANT_SIGNATURE "(sssa(asaasay)bxb)"
/**
* ZEITGEIST_DATA_SOURCE_WITH_INFO_VARIANT_TYPE:
*
* The #GVariantType of #ZEITGEIST_DATA_SOURCE_WITH_INFO_VARIANT_SIGNATURE
*/
#define ZEITGEIST_DATA_SOURCE_WITH_INFO_VARIANT_TYPE G_VARIANT_TYPE(ZEITGEIST_DATA_SOURCE_WITH_INFO_VARIANT_SIGNATURE)
G_END_DECLS
#endif /* _ZEITGEIST_DATA_SOURCE_H_ */
|