blob: 08457fd9d84f0185e7e034e2b1ef67b85fdc5b56 [file] [log] [blame]
/*
* (C) 1999-2003 Lars Knoll (knoll@kde.org)
* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
* reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef CSSValueList_h
#define CSSValueList_h
#include "core/CoreExport.h"
#include "core/css/CSSValue.h"
#include "wtf/Vector.h"
namespace blink {
class CORE_EXPORT CSSValueList : public CSSValue {
WTF_MAKE_NONCOPYABLE(CSSValueList);
public:
using iterator = HeapVector<Member<const CSSValue>, 4>::iterator;
using const_iterator = HeapVector<Member<const CSSValue>, 4>::const_iterator;
static CSSValueList* createCommaSeparated() {
return new CSSValueList(CommaSeparator);
}
static CSSValueList* createSpaceSeparated() {
return new CSSValueList(SpaceSeparator);
}
static CSSValueList* createSlashSeparated() {
return new CSSValueList(SlashSeparator);
}
iterator begin() { return m_values.begin(); }
iterator end() { return m_values.end(); }
const_iterator begin() const { return m_values.begin(); }
const_iterator end() const { return m_values.end(); }
size_t length() const { return m_values.size(); }
const CSSValue& item(size_t index) const { return *m_values[index]; }
void append(const CSSValue& value) { m_values.append(value); }
bool removeAll(const CSSValue&);
bool hasValue(const CSSValue&) const;
CSSValueList* copy() const;
String customCSSText() const;
bool equals(const CSSValueList&) const;
bool hasFailedOrCanceledSubresources() const;
DECLARE_TRACE_AFTER_DISPATCH();
protected:
CSSValueList(ClassType, ValueListSeparator);
private:
explicit CSSValueList(ValueListSeparator);
HeapVector<Member<const CSSValue>, 4> m_values;
};
DEFINE_CSS_VALUE_TYPE_CASTS(CSSValueList, isValueList());
} // namespace blink
#endif // CSSValueList_h