OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007 Rob Buis | 2 * Copyright (C) 2006, 2007 Rob Buis |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 void removedFromDocument(Document*, Element*); | 47 void removedFromDocument(Document*, Element*); |
48 void clearDocumentData(Document*, Element*); | 48 void clearDocumentData(Document*, Element*); |
49 void childrenChanged(Element*); | 49 void childrenChanged(Element*); |
50 void finishParsingChildren(Element*); | 50 void finishParsingChildren(Element*); |
51 | 51 |
52 RefPtr<CSSStyleSheet> m_sheet; | 52 RefPtr<CSSStyleSheet> m_sheet; |
53 | 53 |
54 private: | 54 private: |
55 void createSheet(Element*, int startLineNumber, const String& text = String(
)); | 55 void createSheet(Element*, int startLineNumber, const String& text = String(
)); |
56 void process(Element*); | 56 void process(Element*); |
| 57 void clearSheet(); |
57 | 58 |
58 bool m_createdByParser; | 59 bool m_createdByParser; |
59 bool m_loading; | 60 bool m_loading; |
60 int m_startLineNumber; | 61 int m_startLineNumber; |
61 }; | 62 }; |
62 | 63 |
63 } | 64 } |
64 | 65 |
65 #endif | 66 #endif |
OLD | NEW |