Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLStyleElement.h
1 /*
2  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3  *           (C) 1999 Antti Koivisto (koivisto@kde.org)
4  * Copyright (C) 2003, 2010 Apple Inc. ALl rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB.  If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  */
22
23 #ifndef HTMLStyleElement_h
24 #define HTMLStyleElement_h
25
26 #include "core/dom/StyleElement.h"
27 #include "core/html/HTMLElement.h"
28
29 namespace WebCore {
30
31 class HTMLStyleElement;
32 class StyleSheet;
33
34 template<typename T> class EventSender;
35 typedef EventSender<HTMLStyleElement> StyleEventSender;
36
37 class HTMLStyleElement FINAL : public HTMLElement, private StyleElement {
38     WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLStyleElement);
39 public:
40     static PassRefPtrWillBeRawPtr<HTMLStyleElement> create(Document&, bool createdByParser);
41     virtual ~HTMLStyleElement();
42
43     void setType(const AtomicString&);
44
45     bool scoped() const;
46     void setScoped(bool);
47     ContainerNode* scopingNode();
48     bool isRegisteredAsScoped() const
49     {
50         // Note: We cannot rely on the 'scoped' attribute still being present when this method is invoked.
51         // Therefore we cannot rely on scoped()!
52         if (m_scopedStyleRegistrationState == NotRegistered)
53             return false;
54         return true;
55     }
56
57     bool isRegisteredInShadowRoot() const
58     {
59         return m_scopedStyleRegistrationState == RegisteredInShadowRoot;
60     }
61
62     using StyleElement::sheet;
63
64     bool disabled() const;
65     void setDisabled(bool);
66
67     void dispatchPendingEvent(StyleEventSender*);
68     static void dispatchPendingLoadEvents();
69
70     virtual void trace(Visitor*) OVERRIDE;
71
72 private:
73     HTMLStyleElement(Document&, bool createdByParser);
74
75     // overload from HTMLElement
76     virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
77     virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
78     virtual void didNotifySubtreeInsertionsToDocument() OVERRIDE;
79     virtual void removedFrom(ContainerNode*) OVERRIDE;
80     virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE;
81
82     virtual void finishParsingChildren() OVERRIDE;
83
84     virtual bool sheetLoaded() OVERRIDE { return StyleElement::sheetLoaded(document()); }
85     virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) OVERRIDE;
86     virtual void startLoadingDynamicSheet() OVERRIDE { StyleElement::startLoadingDynamicSheet(document()); }
87
88     virtual const AtomicString& media() const OVERRIDE;
89     virtual const AtomicString& type() const OVERRIDE;
90
91     void scopedAttributeChanged(bool);
92     void registerWithScopingNode(bool);
93     void unregisterWithScopingNode(ContainerNode*);
94
95     bool m_firedLoad;
96     bool m_loadedSheet;
97
98     enum ScopedStyleRegistrationState {
99         NotRegistered,
100         RegisteredAsScoped,
101         RegisteredInShadowRoot
102     };
103     ScopedStyleRegistrationState m_scopedStyleRegistrationState;
104 };
105
106 } //namespace
107
108 #endif