File: gtkhtmlcontext.c

package info (click to toggle)
libgtkhtml2 2.11.0-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,740 kB
  • ctags: 3,830
  • sloc: ansic: 33,179; sh: 8,414; makefile: 597
file content (132 lines) | stat: -rw-r--r-- 3,630 bytes parent folder | download | duplicates (4)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
   Copyright (C) 2000 CodeFactory AB
   Copyright (C) 2000 Jonas Borgstrm <jonas@codefactory.se>
   Copyright (C) 2000 Anders Carlsson <andersca@codefactory.se>
   
   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
   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 library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.
*/

#include <gtk/gtk.h>
#include "util/htmlglobalatoms.h"
#include "gtkhtmlcontext.h"
#include "document/htmldocument.h"
#include "graphics/htmlfontspecification.h"

enum {
	PROP_ZERO,
	PROP_DEBUG_PAINTING
};

static void
gtk_html_context_set_property (GObject *object, guint param_id, const GValue *value, GParamSpec *pspec)
{
	GtkHtmlContext *context = GTK_HTML_CONTEXT (object);
	GSList *doc_list;
	
	switch (param_id) {
	case PROP_DEBUG_PAINTING:
		context->debug_painting = g_value_get_boolean (value);
		for (doc_list = context->documents; doc_list; doc_list = doc_list->next) {
			g_signal_emit_by_name (G_OBJECT (doc_list->data), "style_updated", HTML_DOCUMENT (doc_list->data)->dom_document,
					       HTML_STYLE_CHANGE_REPAINT);
		}
		
		g_object_notify (object, "debug_painting");
		
		break;
	default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
	}
}

static void
gtk_html_context_get_property (GObject *object, guint param_id, GValue *value, GParamSpec *pspec)
{
	GtkHtmlContext *context = GTK_HTML_CONTEXT (object);

	switch (param_id) {
	case PROP_DEBUG_PAINTING:
		g_value_set_boolean (value, context->debug_painting);
		break;
	default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
	}
}

static void
gtk_html_context_class_init (GtkHtmlContextClass *klass)
{
	GObjectClass *object_class = (GObjectClass *)klass;
	
	object_class->set_property = gtk_html_context_set_property;
	object_class->get_property = gtk_html_context_get_property;
	
	g_object_class_install_property (object_class,
					 PROP_DEBUG_PAINTING,
					 g_param_spec_boolean ("debug_painting",
							       NULL, NULL, FALSE,
							       G_PARAM_READABLE | G_PARAM_WRITABLE));
}

static void
gtk_html_context_init (GtkHtmlContext *html)
{
	html->documents = NULL;

	html_atom_list_initialize ();
	
}

GType
gtk_html_context_get_type (void)
{
	static GtkType html_type = 0;

	if (!html_type) {
		static const GTypeInfo html_info = {
			sizeof (GtkHtmlContextClass), 
			NULL,           /* base_init */
			NULL,           /* base_finalize */
			(GClassInitFunc) gtk_html_context_class_init,
			NULL,           /* class_finalize */
			NULL,           /* class_data */
			sizeof (GtkHtmlContext),
			1,              /* n_preallocs */
			(GInstanceInitFunc) gtk_html_context_init,
		};

		html_type = g_type_register_static (G_TYPE_OBJECT, "GtkHtmlContext", &html_info, 0);
	}

	return html_type;
}


GtkHtmlContext *
gtk_html_context_get (void)
{
	static GtkHtmlContext *context = NULL;

	if (context == NULL) {
		context = g_object_new (GTK_HTML_CONTEXT_TYPE, NULL);
	}

	return context;
}