/usr/include/libgtkhtml-3.14/gtkhtml/gtkhtml-embedded.h is in libgtkhtml3.14-dev 3.32.2-2.2.
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 | /*
* Copyright (C) 2000 Helix Code Inc.
*
* Authors: Michael Zucchi <notzed@helixcode.com>
*
* An embedded html widget.
*
* This program 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 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 Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef _GTK_HTML_EMBEDDED_H
#define _GTK_HTML_EMBEDDED_H
#include <gtk/gtk.h>
#include "gtkhtml-types.h"
#define GTK_TYPE_HTML_EMBEDDED (gtk_html_embedded_get_type ())
#define GTK_HTML_EMBEDDED(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, GTK_TYPE_HTML_EMBEDDED, GtkHTMLEmbedded)
#define GTK_HTML_EMBEDDED_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, GTK_TYPE_HTML_EMBEDDED, GtkHTMLEmbeddedClass)
#define GTK_IS_HTML_EMBEDDED(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, GTK_TYPE_HTML_EMBEDDED)
struct _GtkHTMLEmbedded {
GtkBin bin;
/* class id of this object */
gchar *classid;
gchar *name;
gchar *type;
gchar *data;
/* parameters to class */
gint width, height;
GHashTable *params;
GtkHTMLEmbeddedPrivate *priv;
gint descent;
};
struct _GtkHTMLEmbeddedClass {
GtkBinClass parent_class;
void (*changed)(GtkHTMLEmbedded *);
void (*draw_gdk)(GtkHTMLEmbedded *, GdkPixmap *, GdkGC *,
gint, gint);
void (*draw_print)(GtkHTMLEmbedded *, GtkPrintContext *);
};
/* FIXME: There needs to be a way for embedded objects in forms to encode
themselves for a form */
GType gtk_html_embedded_get_type (void);
GtkWidget *gtk_html_embedded_new (gchar *classid, gchar *name, gchar *type, gchar *data, gint width, gint height);
void gtk_html_embedded_set_parameter (GtkHTMLEmbedded *ge, gchar *param, gchar *value);
gchar *gtk_html_embedded_get_parameter (GtkHTMLEmbedded *ge, gchar *param);
void gtk_html_embedded_set_descent (GtkHTMLEmbedded *ge, gint descent);
#endif /* _GTK_HTML_EMBEDDED_H */
|