blob: 5d86c7d50f85fe6cf0b02cc81ff7226d8efaa3cc [file] [log] [blame]
Ben Murdoch591b9582013-07-10 11:41:44 +01001/*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2013 Google 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 ElementStyleResources_h
24#define ElementStyleResources_h
25
Torne (Richard Coles)5d92fed2014-06-20 14:52:37 +010026#include "core/CSSPropertyNames.h"
Torne (Richard Coles)f79f16f2013-10-31 11:16:44 +000027#include "platform/graphics/Color.h"
Bo Liuf91f5fa2014-05-01 10:37:55 -070028#include "platform/heap/Handle.h"
Ben Murdoch591b9582013-07-10 11:41:44 +010029#include "wtf/HashMap.h"
Ben Murdoche69819b2013-07-17 14:56:49 +010030#include "wtf/Noncopyable.h"
Ben Murdoch591b9582013-07-10 11:41:44 +010031
32namespace WebCore {
33
Ben Murdoche69819b2013-07-17 14:56:49 +010034class CSSCursorImageValue;
35class CSSImageValue;
36class CSSImageGeneratorValue;
37class CSSImageSetValue;
38class CSSSVGDocumentValue;
39class CSSValue;
Ben Murdoch591b9582013-07-10 11:41:44 +010040class FilterOperation;
Ben Murdoche69819b2013-07-17 14:56:49 +010041class StyleImage;
42class TextLinkColors;
Ben Murdoch591b9582013-07-10 11:41:44 +010043
Ben Murdoch07a852d2014-03-31 11:51:52 +010044typedef WillBeHeapHashMap<FilterOperation*, RefPtrWillBeMember<CSSSVGDocumentValue> > PendingSVGDocumentMap;
45typedef WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<CSSValue> > PendingImagePropertyMap;
Ben Murdoch591b9582013-07-10 11:41:44 +010046
47// Holds information about resources, requested by stylesheets.
48// Lifetime: per-element style resolve.
Ben Murdoch591b9582013-07-10 11:41:44 +010049class ElementStyleResources {
Ben Murdoch07a852d2014-03-31 11:51:52 +010050STACK_ALLOCATED();
Ben Murdoch591b9582013-07-10 11:41:44 +010051WTF_MAKE_NONCOPYABLE(ElementStyleResources);
52public:
53 ElementStyleResources();
54
Bo Liuf91f5fa2014-05-01 10:37:55 -070055 PassRefPtr<StyleImage> styleImage(Document&, const TextLinkColors&, Color currentColor, CSSPropertyID, CSSValue*);
Ben Murdoche69819b2013-07-17 14:56:49 +010056
57 PassRefPtr<StyleImage> generatedOrPendingFromValue(CSSPropertyID, CSSImageGeneratorValue*);
Bo Liuf91f5fa2014-05-01 10:37:55 -070058 PassRefPtr<StyleImage> cachedOrPendingFromValue(Document&, CSSPropertyID, CSSImageValue*);
Ben Murdoche69819b2013-07-17 14:56:49 +010059 PassRefPtr<StyleImage> setOrPendingFromValue(CSSPropertyID, CSSImageSetValue*);
60 PassRefPtr<StyleImage> cursorOrPendingFromValue(CSSPropertyID, CSSCursorImageValue*);
61
Ben Murdoch591b9582013-07-10 11:41:44 +010062 const PendingImagePropertyMap& pendingImageProperties() const { return m_pendingImageProperties; }
63 const PendingSVGDocumentMap& pendingSVGDocuments() const { return m_pendingSVGDocuments; }
64
Torne (Richard Coles)43e75022014-03-21 14:26:12 +000065 void clearPendingImageProperties();
66 void clearPendingSVGDocuments();
67
Ben Murdoch591b9582013-07-10 11:41:44 +010068 float deviceScaleFactor() const { return m_deviceScaleFactor; }
69 void setDeviceScaleFactor(float deviceScaleFactor) { m_deviceScaleFactor = deviceScaleFactor; }
70
Ben Murdoch591b9582013-07-10 11:41:44 +010071 void addPendingSVGDocument(FilterOperation*, CSSSVGDocumentValue*);
72
Ben Murdoch591b9582013-07-10 11:41:44 +010073private:
74 PendingImagePropertyMap m_pendingImageProperties;
75 PendingSVGDocumentMap m_pendingSVGDocuments;
Ben Murdoch591b9582013-07-10 11:41:44 +010076 float m_deviceScaleFactor;
77};
78
79} // namespace WebCore
80
81#endif // ElementStyleResources_h