summaryrefslogtreecommitdiff
path: root/include/libcss/select.h
blob: 2dec80fabde57c2ce849e09dbbb4619a724b652c (plain)
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
/*
 * This file is part of LibCSS
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
 */

#ifndef libcss_select_h_
#define libcss_select_h_

#include <libcss/errors.h>
#include <libcss/functypes.h>
#include <libcss/types.h>

enum css_pseudo_element {
	CSS_PSEUDO_ELEMENT_NONE         = 0,
	CSS_PSEUDO_ELEMENT_FIRST_LINE   = 1,
	CSS_PSEUDO_ELEMENT_FIRST_LETTER = 2,
	CSS_PSEUDO_ELEMENT_BEFORE       = 3,
	CSS_PSEUDO_ELEMENT_AFTER        = 4
};

typedef struct css_select_handler {
	css_error (*node_name)(void *pw, void *node, const uint8_t **name, 
			size_t *len);

	css_error (*named_ancestor_node)(void *pw, void *node,
			const uint8_t *name, size_t len,
			void **ancestor);
	css_error (*named_parent_node)(void *pw, void *node,
			const uint8_t *name, size_t len,
			void **parent);
	css_error (*named_sibling_node)(void *pw, void *node,
			const uint8_t *name, size_t len,
			void **sibling);

	css_error (*parent_node)(void *pw, void *node, void **parent);
	css_error (*sibling_node)(void *pw, void *node, void **sibling);

	css_error (*node_has_class)(void *pw, void *node,
			const uint8_t *name, size_t len,
			bool *match);
	css_error (*node_has_id)(void *pw, void *node,
			const uint8_t *name, size_t len,
			bool *match);
	css_error (*node_has_attribute)(void *pw, void *node,
			const uint8_t *name, size_t len,
			bool *match);
	css_error (*node_has_attribute_equal)(void *pw, void *node,
			const uint8_t *name, size_t nlen,
			const uint8_t *value, size_t vlen,
			bool *match);
	css_error (*node_has_attribute_dashmatch)(void *pw, void *node,
			const uint8_t *name, size_t nlen,
			const uint8_t *value, size_t vlen,
			bool *match);
	css_error (*node_has_attribute_includes)(void *pw, void *node,
			const uint8_t *name, size_t nlen,
			const uint8_t *value, size_t vlen,
			bool *match);

	css_error (*node_is_first_child)(void *pw, void *node, bool *match);
	css_error (*node_is_link)(void *pw, void *node, bool *match);
	css_error (*node_is_visited)(void *pw, void *node, bool *match);
	css_error (*node_is_hover)(void *pw, void *node, bool *match);
	css_error (*node_is_active)(void *pw, void *node, bool *match);
	css_error (*node_is_focus)(void *pw, void *node, bool *match);
	css_error (*node_is_lang)(void *pw, void *node,
			const uint8_t *lang, size_t len,
			bool *match);
} css_select_handler;

css_error css_select_ctx_create(css_alloc alloc, void *pw,
		css_select_ctx **result);
css_error css_select_ctx_destroy(css_select_ctx *ctx);

css_error css_select_ctx_append_sheet(css_select_ctx *ctx, 
		const css_stylesheet *sheet);
css_error css_select_ctx_insert_sheet(css_select_ctx *ctx,
		const css_stylesheet *sheet, uint32_t index);
css_error css_select_ctx_remove_sheet(css_select_ctx *ctx,
		const css_stylesheet *sheet);

css_error css_select_ctx_count_sheets(css_select_ctx *ctx, uint32_t *count);
css_error css_select_ctx_get_sheet(css_select_ctx *ctx, uint32_t index,
		const css_stylesheet **sheet);

css_error css_select_style(css_select_ctx *ctx, void *node,
		uint32_t pseudo_element, uint64_t media, 
		css_computed_style *result,
		css_select_handler *handler, void *pw);

#endif