Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / css / CSSFontFace.h
1 /*
2  * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #ifndef CSSFontFace_h
27 #define CSSFontFace_h
28
29 #include "core/css/CSSFontFaceSource.h"
30 #include "core/css/FontFace.h"
31 #include "wtf/Deque.h"
32 #include "wtf/Forward.h"
33 #include "wtf/PassRefPtr.h"
34 #include "wtf/Vector.h"
35
36 namespace WebCore {
37
38 class CSSFontSelector;
39 class CSSSegmentedFontFace;
40 class Document;
41 class FontDescription;
42 class SimpleFontData;
43 class StyleRuleFontFace;
44
45 class CSSFontFace {
46 public:
47     class UnicodeRangeSet;
48
49     CSSFontFace(FontFace* fontFace)
50         : m_segmentedFontFace(0)
51         , m_fontFace(fontFace)
52     {
53         ASSERT(m_fontFace);
54     }
55
56     FontFace* fontFace() const { return m_fontFace; }
57
58     UnicodeRangeSet& ranges() { return m_ranges; }
59
60     void setSegmentedFontFace(CSSSegmentedFontFace*);
61     void clearSegmentedFontFace() { m_segmentedFontFace = 0; }
62
63     bool isValid() const { return !m_sources.isEmpty(); }
64
65     void addSource(PassOwnPtr<CSSFontFaceSource>);
66
67     void beginLoadIfNeeded(CSSFontFaceSource*, CSSFontSelector* = 0);
68     void fontLoaded(CSSFontFaceSource*);
69
70     PassRefPtr<SimpleFontData> getFontData(const FontDescription&);
71
72     struct UnicodeRange {
73         UnicodeRange(UChar32 from, UChar32 to)
74             : m_from(from)
75             , m_to(to)
76         {
77         }
78
79         UChar32 from() const { return m_from; }
80         UChar32 to() const { return m_to; }
81         bool contains(UChar32 c) const { return m_from <= c && c <= m_to; }
82
83     private:
84         UChar32 m_from;
85         UChar32 m_to;
86     };
87
88     class UnicodeRangeSet {
89     public:
90         void add(UChar32 from, UChar32 to) { m_ranges.append(UnicodeRange(from, to)); }
91         bool intersectsWith(const String&) const;
92         bool isEntireRange() const { return m_ranges.isEmpty(); }
93         size_t size() const { return m_ranges.size(); }
94         const UnicodeRange& rangeAt(size_t i) const { return m_ranges[i]; }
95     private:
96         Vector<UnicodeRange> m_ranges; // If empty, represents the whole code space.
97     };
98
99     FontFace::LoadStatus loadStatus() const { return m_fontFace->loadStatus(); }
100     void willUseFontData(const FontDescription&);
101     void load(const FontDescription&, CSSFontSelector* = 0);
102
103 private:
104     void setLoadStatus(FontFace::LoadStatus);
105
106     UnicodeRangeSet m_ranges;
107     CSSSegmentedFontFace* m_segmentedFontFace;
108     Deque<OwnPtr<CSSFontFaceSource> > m_sources;
109     FontFace* m_fontFace;
110 };
111
112 }
113
114 #endif