OLD | NEW |
1 /* | 1 /* |
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
3 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All rights
reserved. | 3 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All rights
reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 enum StyleSheetUpdateType { | 44 enum StyleSheetUpdateType { |
45 PartialRuleUpdate, | 45 PartialRuleUpdate, |
46 EntireStyleSheetUpdate | 46 EntireStyleSheetUpdate |
47 }; | 47 }; |
48 | 48 |
49 class CSSStyleSheet : public StyleSheet { | 49 class CSSStyleSheet : public StyleSheet { |
50 public: | 50 public: |
51 static PassRefPtr<CSSStyleSheet> create(PassRefPtr<StyleSheetContents>, CSSI
mportRule* ownerRule = 0); | 51 static PassRefPtr<CSSStyleSheet> create(PassRefPtr<StyleSheetContents>, CSSI
mportRule* ownerRule = 0); |
52 static PassRefPtr<CSSStyleSheet> create(PassRefPtr<StyleSheetContents>, Node
* ownerNode); | 52 static PassRefPtr<CSSStyleSheet> create(PassRefPtr<StyleSheetContents>, Node
* ownerNode); |
53 static PassRefPtr<CSSStyleSheet> createInline(Node*, const KURL&, const Text
Position& startPosition = TextPosition::minimumPosition(), const String& encodin
g = String()); | 53 static PassRefPtr<CSSStyleSheet> createInline(Node*, const KURL&, const Text
Position& startPosition = TextPosition::minimumPosition(), const String& encodin
g = String()); |
| 54 static PassRefPtr<CSSStyleSheet> createInline(PassRefPtr<StyleSheetContents>
, Node* ownerNode, const TextPosition& startPosition = TextPosition::minimumPosi
tion()); |
54 | 55 |
55 virtual ~CSSStyleSheet(); | 56 virtual ~CSSStyleSheet(); |
56 | 57 |
57 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE; | 58 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE; |
58 virtual Node* ownerNode() const OVERRIDE { return m_ownerNode; } | 59 virtual Node* ownerNode() const OVERRIDE { return m_ownerNode; } |
59 virtual MediaList* media() const OVERRIDE; | 60 virtual MediaList* media() const OVERRIDE; |
60 virtual String href() const OVERRIDE; | 61 virtual String href() const OVERRIDE; |
61 virtual String title() const OVERRIDE { return m_title; } | 62 virtual String title() const OVERRIDE { return m_title; } |
62 virtual bool disabled() const OVERRIDE { return m_isDisabled; } | 63 virtual bool disabled() const OVERRIDE { return m_isDisabled; } |
63 virtual void setDisabled(bool) OVERRIDE; | 64 virtual void setDisabled(bool) OVERRIDE; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 { | 161 { |
161 if (m_styleSheet) | 162 if (m_styleSheet) |
162 m_styleSheet->didMutateRules(); | 163 m_styleSheet->didMutateRules(); |
163 } | 164 } |
164 | 165 |
165 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sh
eet.isCSSStyleSheet()); | 166 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sh
eet.isCSSStyleSheet()); |
166 | 167 |
167 } // namespace | 168 } // namespace |
168 | 169 |
169 #endif | 170 #endif |
OLD | NEW |