]>
git.saurik.com Git - iphone-api.git/blob - WebCore/CSSValueList.h
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
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.
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.
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.
21 #ifndef CSSValueList_h
22 #define CSSValueList_h
25 #include <wtf/PassRefPtr.h>
26 #include <wtf/Vector.h>
30 class CSSParserValueList
;
32 class CSSValueList
: public CSSValue
{
34 static PassRefPtr
<CSSValueList
> createCommaSeparated()
36 return adoptRef(new CSSValueList(false));
38 static PassRefPtr
<CSSValueList
> createSpaceSeparated()
40 return adoptRef(new CSSValueList(true));
42 static PassRefPtr
<CSSValueList
> createFromParserValueList(CSSParserValueList
* list
)
44 return adoptRef(new CSSValueList(list
));
47 virtual ~CSSValueList();
49 size_t length() const { return m_values
.size(); }
50 CSSValue
* item(unsigned);
51 CSSValue
* itemWithoutBoundsCheck(unsigned index
) { return m_values
[index
].get(); }
53 void append(PassRefPtr
<CSSValue
>);
54 void prepend(PassRefPtr
<CSSValue
>);
56 virtual String
cssText() const;
58 CSSParserValueList
* createParserValueList() const;
60 virtual void addSubresourceStyleURLs(ListHashSet
<KURL
>&, const CSSStyleSheet
*);
63 CSSValueList(bool isSpaceSeparated
);
64 CSSValueList(CSSParserValueList
*);
67 virtual bool isValueList() const { return true; }
69 virtual unsigned short cssValueType() const;
71 Vector
<RefPtr
<CSSValue
> > m_values
;
72 bool m_isSpaceSeparated
;
75 } // namespace WebCore
77 #endif // CSSValueList_h