/usr/include/libyelp/yelp-settings.h is in libyelp-dev 3.22.0-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 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* Copyright (C) 2004-2009 Shaun McCance <shaunm@gnome.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
*
* Author: Shaun McCance <shaunm@gnome.org>
*/
#ifndef __YELP_SETTINGS_H__
#define __YELP_SETTINGS_H__
#include <glib-object.h>
G_BEGIN_DECLS
#define YELP_TYPE_SETTINGS (yelp_settings_get_type ())
#define YELP_SETTINGS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), YELP_TYPE_SETTINGS, YelpSettings))
#define YELP_SETTINGS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), YELP_TYPE_SETTINGS, YelpSettingsClass))
#define YELP_IS_SETTINGS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), YELP_TYPE_SETTINGS))
#define YELP_IS_SETTINGS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), YELP_TYPE_SETTINGS))
#define YELP_SETTINGS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), YELP_TYPE_SETTINGS, YelpSettingsClass))
typedef struct _YelpSettings YelpSettings;
typedef struct _YelpSettingsClass YelpSettingsClass;
typedef struct _YelpSettingsPriv YelpSettingsPriv;
struct _YelpSettings {
GObject parent;
YelpSettingsPriv *priv;
};
struct _YelpSettingsClass {
GObjectClass parent_class;
};
typedef enum {
YELP_SETTINGS_COLOR_BASE,
YELP_SETTINGS_COLOR_TEXT,
YELP_SETTINGS_COLOR_TEXT_LIGHT,
YELP_SETTINGS_COLOR_LINK,
YELP_SETTINGS_COLOR_LINK_VISITED,
YELP_SETTINGS_COLOR_GRAY_BASE,
YELP_SETTINGS_COLOR_DARK_BASE,
YELP_SETTINGS_COLOR_GRAY_BORDER,
YELP_SETTINGS_COLOR_BLUE_BASE,
YELP_SETTINGS_COLOR_BLUE_BORDER,
YELP_SETTINGS_COLOR_RED_BASE,
YELP_SETTINGS_COLOR_RED_BORDER,
YELP_SETTINGS_COLOR_YELLOW_BASE,
YELP_SETTINGS_COLOR_YELLOW_BORDER,
YELP_SETTINGS_NUM_COLORS
} YelpSettingsColor;
typedef enum {
YELP_SETTINGS_FONT_VARIABLE,
YELP_SETTINGS_FONT_FIXED,
YELP_SETTINGS_NUM_FONTS
} YelpSettingsFont;
typedef enum {
YELP_SETTINGS_ICON_BUG,
YELP_SETTINGS_ICON_IMPORTANT,
YELP_SETTINGS_ICON_NOTE,
YELP_SETTINGS_ICON_TIP,
YELP_SETTINGS_ICON_WARNING,
YELP_SETTINGS_NUM_ICONS
} YelpSettingsIcon;
GType yelp_settings_get_type (void);
YelpSettings * yelp_settings_get_default (void);
gchar * yelp_settings_get_color (YelpSettings *settings,
YelpSettingsColor color);
gchar ** yelp_settings_get_colors (YelpSettings *settings);
void yelp_settings_set_colors (YelpSettings *settings,
YelpSettingsColor first_color,
...);
const gchar* yelp_settings_get_color_param (YelpSettingsColor color);
gchar * yelp_settings_get_font (YelpSettings *settings,
YelpSettingsFont font);
gchar * yelp_settings_get_font_family (YelpSettings *settings,
YelpSettingsFont font);
gint yelp_settings_get_font_size (YelpSettings *settings,
YelpSettingsFont font);
void yelp_settings_set_fonts (YelpSettings *settings,
YelpSettingsFont first_font,
...);
gint yelp_settings_get_font_adjustment (YelpSettings *settings);
void yelp_settings_set_font_adjustment (YelpSettings *settings,
gint adjustment);
gint yelp_settings_get_icon_size (YelpSettings *settings);
void yelp_settings_set_icon_size (YelpSettings *settings,
gint size);
gchar * yelp_settings_get_icon (YelpSettings *settings,
YelpSettingsIcon icon);
void yelp_settings_set_icons (YelpSettings *settings,
YelpSettingsIcon first_icon,
...);
const gchar * yelp_settings_get_icon_param (YelpSettingsIcon icon);
gchar ** yelp_settings_get_all_params (YelpSettings *settings,
gint extra,
gint *end);
gboolean yelp_settings_get_show_text_cursor (YelpSettings *settings);
void yelp_settings_set_show_text_cursor (YelpSettings *settings,
gboolean show);
gboolean yelp_settings_get_editor_mode (YelpSettings *settings);
void yelp_settings_set_editor_mode (YelpSettings *settings,
gboolean editor_mode);
gint yelp_settings_cmp_icons (const gchar *icon1,
const gchar *icon2);
G_END_DECLS
#endif /* __YELP_SETTINGS_H__ */
|