/* * This file is part of LibCSS * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php * Copyright 2009 John-Mark Bell */ #ifndef css_select_select_h_ #define css_select_select_h_ #include #include #include #include "stylesheet.h" /** * Item in the reject cache (only class and id types are valid) */ typedef struct reject_item { lwc_string *value; css_selector_type type; } reject_item; typedef struct prop_state { uint32_t specificity; /* Specificity of property in result */ unsigned int set : 1, /* Whether property is set in result */ origin : 2, /* Origin of property in result */ important : 1, /* Importance of property in result */ inherit : 1; /* Property is set to inherit */ } prop_state; /** * Selection state */ typedef struct css_select_state { void *node; /* Node we're selecting for */ uint64_t media; /* Currently active media types */ css_select_results *results; /* Result set to populate */ css_pseudo_element current_pseudo; /* Current pseudo element */ css_computed_style *computed; /* Computed style to populate */ css_select_handler *handler; /* Handler functions */ void *pw; /* Client data for handlers */ const css_stylesheet *sheet; /* Current sheet being processed */ css_origin current_origin; /* Origin of current sheet */ uint32_t current_specificity; /* Specificity of current rule */ css_qname element; /* Element we're selecting for */ lwc_string *id; /* Node id, if any */ lwc_string **classes; /* Node classes, if any */ uint32_t n_classes; /* Number of classes */ reject_item reject_cache[128]; /* Reject cache (filled from end) */ reject_item *next_reject; /* Next free slot in reject cache */ prop_state props[CSS_N_PROPERTIES][CSS_PSEUDO_ELEMENT_COUNT]; } css_select_state; static inline void advance_bytecode(css_style *style, uint32_t n_bytes) { style->used -= (n_bytes / sizeof(css_code_t)); style->bytecode = style->bytecode + (n_bytes / sizeof(css_code_t)); } bool css__outranks_existing(uint16_t op, bool important, css_select_state *state, bool inherit); #endif