1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/*
* Copyright (C) 2008 Apple Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "CSSVariablesDeclaration.h"
#include "CSSParser.h"
#include "CSSRule.h"
#include "CSSValueList.h"
#include "Document.h"
#include "ExceptionCode.h"
namespace WebCore {
CSSVariablesDeclaration::CSSVariablesDeclaration(StyleBase* parent, const Vector<String>& names, const Vector<RefPtr<CSSValue> >& values)
: StyleBase(parent)
{
m_variableNames = names;
ASSERT(names.size() == values.size());
unsigned s = names.size();
for (unsigned i = 0; i < s; ++i)
addParsedVariable(names[i], values[i], false);
}
CSSVariablesDeclaration::~CSSVariablesDeclaration()
{
}
String CSSVariablesDeclaration::getVariableValue(const String& variableName)
{
CSSValue* val = m_variablesMap.get(variableName).get();
if (val)
return val->cssText();
return "";
}
String CSSVariablesDeclaration::removeVariable(const String& variableName, ExceptionCode&)
{
// FIXME: The spec has this method taking an exception code but no exceptions are
// specified as being thrown.
RefPtr<CSSValue> val = m_variablesMap.take(variableName);
String result = val ? val->cssText() : "";
if (val) {
int s = m_variableNames.size();
for (int i = 0; i < s; ++i) {
if (m_variableNames[i] == variableName) {
m_variableNames.remove(i);
i--;
s--;
}
}
setNeedsStyleRecalc();
}
// FIXME: Communicate this change so that the document will update.
return result;
}
void CSSVariablesDeclaration::setVariable(const String& variableName, const String& variableValue, ExceptionCode& excCode)
{
// Try to parse the variable value into a Value*. If it fails we throw an exception.
CSSParser parser(useStrictParsing());
if (!parser.parseVariable(this, variableName, variableValue)) // If the parse succeeds, it will call addParsedVariable (our internal method for doing the add) with the parsed Value*.
excCode = SYNTAX_ERR;
else
setNeedsStyleRecalc();
}
void CSSVariablesDeclaration::addParsedVariable(const String& variableName, PassRefPtr<CSSValue> variableValue, bool updateNamesList)
{
// FIXME: Disabling declarations as variable values for now since they no longer have a common base class with CSSValues.
#if 0
variableValue->setParent(this); // Needed to connect variables that are CSSMutableStyleDeclarations, since the parent couldn't be set until now.
#endif
// Don't leak duplicates. For multiple variables with the same name, the last one
// declared will win.
CSSValue* current = m_variablesMap.take(variableName).get();
if (!current && updateNamesList)
m_variableNames.append(variableName);
m_variablesMap.set(variableName, variableValue);
// FIXME: Communicate this change so the document will update.
}
CSSValueList* CSSVariablesDeclaration::getParsedVariable(const String& variableName)
{
CSSValue* result = m_variablesMap.get(variableName).get();
if (result->isValueList())
return static_cast<CSSValueList*>(result);
return 0;
}
CSSMutableStyleDeclaration* CSSVariablesDeclaration::getParsedVariableDeclarationBlock(const String&)
{
// FIXME: Disabling declarations as variable values for now since they no longer have a common base class with CSSValues.
#if 0
StyleBase* result = m_variablesMap.get(variableName).get();
if (result->isMutableStyleDeclaration())
return static_cast<CSSMutableStyleDeclaration*>(result);
#endif
return 0;
}
unsigned CSSVariablesDeclaration::length() const
{
return m_variableNames.size();
}
String CSSVariablesDeclaration::item(unsigned index)
{
if (index >= m_variableNames.size())
return "";
return m_variableNames[index];
}
CSSRule* CSSVariablesDeclaration::parentRule()
{
return (parent() && parent()->isRule()) ? static_cast<CSSRule*>(parent()) : 0;
}
String CSSVariablesDeclaration::cssText() const
{
String result = "{ ";
unsigned s = m_variableNames.size();
for (unsigned i = 0; i < s; ++i) {
result += m_variableNames[i] + ": ";
result += m_variablesMap.get(m_variableNames[i])->cssText();
if (i < s - 1)
result += "; ";
}
result += " }";
return result;
}
void CSSVariablesDeclaration::setCssText(const String&)
{
// FIXME: It's not clear if this is actually settable.
}
void CSSVariablesDeclaration::setNeedsStyleRecalc()
{
// FIXME: Make this much better (it has the same problem CSSMutableStyleDeclaration does).
StyleBase* root = this;
while (StyleBase* parent = root->parent())
root = parent;
if (root->isCSSStyleSheet())
static_cast<CSSStyleSheet*>(root)->doc()->updateStyleSelector();
}
}
|