#ifndef CSSRule_h
#define CSSRule_h
#include "heap/Handle.h"
#include "wtf/RefCounted.h"
#include "wtf/text/WTFString.h"
namespace WebCore {
class CSSParserContext;
class CSSStyleSheet;
class StyleRuleBase;
class CSSRule : public RefCountedWillBeGarbageCollectedFinalized<CSSRule> {
public:
virtual ~CSSRule() { }
enum Type {
UNKNOWN_RULE,
STYLE_RULE,
CHARSET_RULE,
IMPORT_RULE,
MEDIA_RULE,
FONT_FACE_RULE,
PAGE_RULE,
KEYFRAMES_RULE,
WEBKIT_KEYFRAMES_RULE = KEYFRAMES_RULE,
KEYFRAME_RULE,
WEBKIT_KEYFRAME_RULE = KEYFRAME_RULE,
SUPPORTS_RULE = 12,
VIEWPORT_RULE = 15,
WEBKIT_FILTER_RULE = 17
};
virtual Type type() const = 0;
virtual String cssText() const = 0;
virtual void reattach(StyleRuleBase*) = 0;
void setParentStyleSheet(CSSStyleSheet* styleSheet)
{
m_parentIsRule = false;
m_parentStyleSheet = styleSheet;
}
void setParentRule(CSSRule* rule)
{
m_parentIsRule = true;
m_parentRule = rule;
}
virtual void trace(Visitor*);
CSSStyleSheet* parentStyleSheet() const
{
if (m_parentIsRule)
return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
return m_parentStyleSheet;
}
CSSRule* parentRule() const { return m_parentIsRule ? m_parentRule : 0; }
void setCSSText(const String&);
protected:
CSSRule(CSSStyleSheet* parent)
: m_hasCachedSelectorText(false)
, m_parentIsRule(false)
, m_parentStyleSheet(parent)
{
}
bool hasCachedSelectorText() const { return m_hasCachedSelectorText; }
void setHasCachedSelectorText(bool hasCachedSelectorText) const { m_hasCachedSelectorText = hasCachedSelectorText; }
const CSSParserContext& parserContext() const;
private:
mutable unsigned char m_hasCachedSelectorText : 1;
unsigned char m_parentIsRule : 1;
union {
CSSRule* m_parentRule;
CSSStyleSheet* m_parentStyleSheet;
};
};
#define DEFINE_CSS_RULE_TYPE_CASTS(ToType, TYPE_NAME) \
DEFINE_TYPE_CASTS(ToType, CSSRule, rule, rule->type() == CSSRule::TYPE_NAME, rule.type() == CSSRule::TYPE_NAME)
}
#endif