initial import
[vuplus_webkit] / Source / WebCore / css / StyleBase.cpp
1 /*
2  * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org)
3  *               1999 Waldo Bastian (bastian@kde.org)
4  *               2001 Andreas Schlapbach (schlpbch@iam.unibe.ch)
5  *               2001-2003 Dirk Mueller (mueller@kde.org)
6  * Copyright (C) 2002, 2006, 2008 Apple Inc. All rights reserved.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public License
19  * along with this library; see the file COPYING.LIB.  If not, write to
20  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23 #include "config.h"
24 #include "StyleBase.h"
25
26 #include "CSSMutableStyleDeclaration.h"
27 #include "Document.h"
28 #include "Node.h"
29 #include "StyleSheet.h"
30
31 namespace WebCore {
32
33 String StyleBase::cssText() const
34 {
35     return "";
36 }
37
38 void StyleBase::checkLoaded()
39 {
40     if (parent())
41         parent()->checkLoaded();
42 }
43
44 Node* StyleBase::node()
45 {
46     if (isStyleSheet())
47         return static_cast<StyleSheet*>(this)->ownerNode();
48
49     if (isMutableStyleDeclaration())
50         return static_cast<CSSMutableStyleDeclaration*>(this)->node();
51
52     return 0;
53 }
54
55 StyleSheet* StyleBase::stylesheet()
56 {
57     StyleBase *b = this;
58     while (b && !b->isStyleSheet())
59         b = b->parent();
60     return static_cast<StyleSheet*>(b);
61 }
62
63 KURL StyleBase::baseURL() const
64 {
65     // Try to find the style sheet. If found look for its URL.
66     // If it has none, get the URL from the parent sheet or the parent node.
67
68     StyleSheet* sheet = const_cast<StyleBase*>(this)->stylesheet();
69     if (!sheet)
70         return KURL();
71     if (!sheet->finalURL().isNull())
72         return sheet->finalURL();
73     if (sheet->parent())
74         return sheet->parent()->baseURL();
75     if (!sheet->ownerNode()) 
76         return KURL();
77     return sheet->ownerNode()->document()->baseURL();
78 }
79
80 }