/usr/include/libgnomeui-2.0/libgnomeui/gnome-theme-parser.h is in libgnomeui-dev 2.24.5-2ubuntu2.
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 | /* GnomeThemeParser - a parser of icon-theme files
* gnome-theme-parser.h Copyright (C) 2002 Red Hat, Inc.
*
* 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 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, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef GNOME_THEME_PARSER_H
#define GNOME_THEME_PARSER_H
#ifndef GNOME_DISABLE_DEPRECATED
#include <glib.h>
G_BEGIN_DECLS
typedef struct _GnomeThemeFile GnomeThemeFile;
typedef void (* GnomeThemeFileSectionFunc) (GnomeThemeFile *df,
const char *name,
gpointer data);
/* If @key is %NULL, @value is a comment line. */
/* @value is raw, unescaped data. */
typedef void (* GnomeThemeFileLineFunc) (GnomeThemeFile *df,
const char *key,
const char *locale,
const char *value,
gpointer data);
typedef enum
{
GNOME_THEME_FILE_PARSE_ERROR_INVALID_SYNTAX,
GNOME_THEME_FILE_PARSE_ERROR_INVALID_ESCAPES,
GNOME_THEME_FILE_PARSE_ERROR_INVALID_CHARS
} GnomeThemeFileParseError;
#define GNOME_THEME_FILE_PARSE_ERROR gnome_theme_file_parse_error_quark()
GQuark gnome_theme_file_parse_error_quark (void);
GnomeThemeFile *gnome_theme_file_new_from_string (char *data,
GError **error);
char * gnome_theme_file_to_string (GnomeThemeFile *df);
void gnome_theme_file_free (GnomeThemeFile *df);
void gnome_theme_file_foreach_section (GnomeThemeFile *df,
GnomeThemeFileSectionFunc func,
gpointer user_data);
void gnome_theme_file_foreach_key (GnomeThemeFile *df,
const char *section,
gboolean include_localized,
GnomeThemeFileLineFunc func,
gpointer user_data);
/* Gets the raw text of the key, unescaped */
gboolean gnome_theme_file_get_raw (GnomeThemeFile *df,
const char *section,
const char *keyname,
const char *locale,
char **val);
gboolean gnome_theme_file_get_integer (GnomeThemeFile *df,
const char *section,
const char *keyname,
int *val);
gboolean gnome_theme_file_get_string (GnomeThemeFile *df,
const char *section,
const char *keyname,
char **val);
gboolean gnome_theme_file_get_locale_string (GnomeThemeFile *df,
const char *section,
const char *keyname,
char **val);
G_END_DECLS
#endif /* GNOME_DISABLE_DEPRECATED */
#endif /* GNOME_THEME_PARSER_H */
|