2d0c1e903d5cb05713a91b9519f52aa091758964
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / css / CSSImageValue.h
1 /*
2  * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3  * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public License
16  * along with this library; see the file COPYING.LIB.  If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef CSSImageValue_h
22 #define CSSImageValue_h
23
24 #include "core/css/CSSValue.h"
25 #include "core/fetch/ResourceFetcher.h"
26 #include "wtf/RefPtr.h"
27
28 namespace WebCore {
29
30 class Document;
31 class Element;
32 class KURL;
33 class StyleFetchedImage;
34 class StyleImage;
35 class RenderObject;
36
37 class CSSImageValue : public CSSValue {
38 public:
39     static PassRefPtrWillBeRawPtr<CSSImageValue> create(const KURL& url, StyleImage* image = 0)
40     {
41         return adoptRefWillBeRefCountedGarbageCollected(new CSSImageValue(url, url, image));
42     }
43     static PassRefPtrWillBeRawPtr<CSSImageValue> create(const String& rawValue, const KURL& url, StyleImage* image = 0)
44     {
45         return adoptRefWillBeRefCountedGarbageCollected(new CSSImageValue(rawValue, url, image));
46     }
47     ~CSSImageValue();
48
49     StyleFetchedImage* cachedImage(ResourceFetcher*, const ResourceLoaderOptions&);
50     StyleFetchedImage* cachedImage(ResourceFetcher* fetcher) { return cachedImage(fetcher, ResourceFetcher::defaultResourceOptions()); }
51     // Returns a StyleFetchedImage if the image is cached already, otherwise a StylePendingImage.
52     StyleImage* cachedOrPendingImage();
53
54     const String& url() { return m_absoluteURL; }
55
56     void reResolveURL(const Document&);
57
58     String customCSSText() const;
59
60     PassRefPtrWillBeRawPtr<CSSValue> cloneForCSSOM() const;
61
62     bool hasFailedOrCanceledSubresources() const;
63
64     bool equals(const CSSImageValue&) const;
65
66     bool knownToBeOpaque(const RenderObject*) const;
67
68     void setInitiator(const AtomicString& name) { m_initiatorName = name; }
69
70     void traceAfterDispatch(Visitor*);
71
72 private:
73     CSSImageValue(const String& rawValue, const KURL&, StyleImage*);
74
75     String m_relativeURL;
76     String m_absoluteURL;
77     RefPtr<StyleImage> m_image;
78     bool m_accessedImage;
79     AtomicString m_initiatorName;
80 };
81
82 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue());
83
84 } // namespace WebCore
85
86 #endif // CSSImageValue_h