/usr/include/a11y-profile-manager-0.1/a11y-profile-manager.h is in liba11y-profile-manager-0.1-dev 0.1.10-0ubuntu3.
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 | /* a11y-profile-manager.h generated by valac 0.30.1, the Vala compiler, do not modify */
#ifndef __A11Y_PROFILE_MANAGER_H__
#define __A11Y_PROFILE_MANAGER_H__
#include <glib.h>
#include <glib-object.h>
#include <stdlib.h>
#include <string.h>
G_BEGIN_DECLS
#define A11Y_PROFILE_MANAGER_TYPE_PROFILE (a11y_profile_manager_profile_get_type ())
#define A11Y_PROFILE_MANAGER_PROFILE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), A11Y_PROFILE_MANAGER_TYPE_PROFILE, A11yProfileManagerProfile))
#define A11Y_PROFILE_MANAGER_PROFILE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), A11Y_PROFILE_MANAGER_TYPE_PROFILE, A11yProfileManagerProfileClass))
#define A11Y_PROFILE_MANAGER_IS_PROFILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), A11Y_PROFILE_MANAGER_TYPE_PROFILE))
#define A11Y_PROFILE_MANAGER_IS_PROFILE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), A11Y_PROFILE_MANAGER_TYPE_PROFILE))
#define A11Y_PROFILE_MANAGER_PROFILE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), A11Y_PROFILE_MANAGER_TYPE_PROFILE, A11yProfileManagerProfileClass))
typedef struct _A11yProfileManagerProfile A11yProfileManagerProfile;
typedef struct _A11yProfileManagerProfileClass A11yProfileManagerProfileClass;
typedef struct _A11yProfileManagerProfilePrivate A11yProfileManagerProfilePrivate;
typedef enum {
A11Y_PROFILE_MANAGER_PROFILE_ERROR_NO_PROFILE_GROUP,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_NO_NAME_ENTRY,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_NO_DESCRIPTION_ENTRY,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_INVALID_ENTRY,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_NO_SUCH_MONITOR_SCHEMA,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_SCHEMA_WITHOUT_KEY,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_NO_SUCH_MONITOR_KEY,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_NO_SUCH_SCHEMA,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_SCHEMA_NOT_RELOCATABLE,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_NO_SUCH_KEY,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_INVALID_SCHEMA_PATH,
A11Y_PROFILE_MANAGER_PROFILE_ERROR_INVALID_KEY_TYPE
} A11yProfileManagerProfileError;
#define A11Y_PROFILE_MANAGER_PROFILE_ERROR a11y_profile_manager_profile_error_quark ()
struct _A11yProfileManagerProfile {
GObject parent_instance;
A11yProfileManagerProfilePrivate * priv;
};
struct _A11yProfileManagerProfileClass {
GObjectClass parent_class;
};
GQuark a11y_profile_manager_profile_error_quark (void);
GType a11y_profile_manager_profile_get_type (void) G_GNUC_CONST;
A11yProfileManagerProfile* a11y_profile_manager_profile_new (const gchar* profile_dir);
A11yProfileManagerProfile* a11y_profile_manager_profile_construct (GType object_type, const gchar* profile_dir);
void a11y_profile_manager_profile_validate (A11yProfileManagerProfile* self, GError** error);
void a11y_profile_manager_profile_set_settings (A11yProfileManagerProfile* self, GError** error);
void a11y_profile_manager_profile_reset_settings (A11yProfileManagerProfile* self, GError** error);
void a11y_profile_manager_profile_write_dconf_file (A11yProfileManagerProfile* self, const gchar* file, GError** error);
const gchar* a11y_profile_manager_profile_get_dir_name (A11yProfileManagerProfile* self);
const gchar* a11y_profile_manager_profile_get_name (A11yProfileManagerProfile* self);
const gchar* a11y_profile_manager_profile_get_description (A11yProfileManagerProfile* self);
const gchar* a11y_profile_manager_profile_get_monitor_schema (A11yProfileManagerProfile* self);
const gchar* a11y_profile_manager_profile_get_monitor_key (A11yProfileManagerProfile* self);
const gchar* a11y_profile_manager_profile_get_at_command (A11yProfileManagerProfile* self);
gboolean a11y_profile_manager_profile_get_valid (A11yProfileManagerProfile* self);
GSList* a11y_profile_manager_list_profiles (void);
A11yProfileManagerProfile* a11y_profile_manager_get_profile_by_dir_name (const gchar* dir_name);
A11yProfileManagerProfile* a11y_profile_manager_get_profile_by_name (const gchar* name);
void a11y_profile_manager_set_active_profile (A11yProfileManagerProfile* profile_obj, GError** error);
G_END_DECLS
#endif
|