/usr/include/libgtkhtml-4.0/gtkhtml/gtkhtml-properties.h is in libgtkhtml-4.0-dev 4.6.6-2ubuntu1.
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 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* This file is part of the GtkHTML library
*
* Copyright (C) 2000 Helix Code, Inc.
* Authors: Radek Doulik (rodo@helixcode.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library 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
* MERCHcANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef _GTK_HTML_PROPERTIES_H_
#define _GTK_HTML_PROPERTIES_H_
#include <gtk/gtk.h>
#include "gtkhtml-types.h"
#include "gtkhtml.h"
#define GTK_HTML_PROPERTY(w,p) (GTK_HTML_CLASS (GTK_WIDGET_GET_CLASS (w))->properties-> p)
struct _GtkHTMLClassProperties {
/* viewer */
gchar *font_var_print;
guint font_var_size_print;
gboolean font_var_print_points;
gchar *font_fix_print;
guint font_fix_size_print;
gboolean font_fix_print_points;
/* editor */
gchar *language; /* unused */
};
GtkHTMLClassProperties * gtk_html_class_properties_new (void);
void gtk_html_class_properties_destroy (GtkHTMLClassProperties *p);
void gtk_html_class_properties_copy (GtkHTMLClassProperties *p1,
GtkHTMLClassProperties *p2);
/* enum types */
#define GTK_TYPE_HTML_CURSOR_SKIP (gtk_html_cursor_skip_get_type ())
#define GTK_TYPE_HTML_COMMAND (gtk_html_command_get_type ())
GType gtk_html_cursor_skip_get_type (void);
GType gtk_html_command_get_type (void);
#endif
|