1/*
2 * Copyright (C) 2012 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 INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "config.h"
27#include "Settings.h"
28
29namespace WebCore {
30
31bool Settings::shouldEnableScreenFontSubstitutionByDefault()
32{
33#if !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
34    return false;
35#else
36    return true;
37#endif
38}
39
40void Settings::initializeDefaultFontFamilies()
41{
42#if !PLATFORM(IOS)
43#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
44    setStandardFontFamily("Songti TC", USCRIPT_TRADITIONAL_HAN);
45    setSerifFontFamily("Songti TC", USCRIPT_TRADITIONAL_HAN);
46#else
47    setStandardFontFamily("Apple LiSung", USCRIPT_TRADITIONAL_HAN);
48    setSerifFontFamily("Apple LiSung", USCRIPT_TRADITIONAL_HAN);
49#endif
50#else
51    // There is no serif Chinese font in default iOS installation.
52    setStandardFontFamily("Heiti TC", USCRIPT_TRADITIONAL_HAN);
53    setSerifFontFamily("Heiti TC", USCRIPT_TRADITIONAL_HAN);
54#endif
55    setFixedFontFamily("Heiti TC", USCRIPT_TRADITIONAL_HAN);
56    setSansSerifFontFamily("Heiti TC", USCRIPT_TRADITIONAL_HAN);
57
58#if !PLATFORM(IOS)
59#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
60    setStandardFontFamily("Songti SC", USCRIPT_SIMPLIFIED_HAN);
61    setSerifFontFamily("Songti SC", USCRIPT_SIMPLIFIED_HAN);
62#else
63    setStandardFontFamily("STSong", USCRIPT_SIMPLIFIED_HAN);
64    setSerifFontFamily("STSong", USCRIPT_SIMPLIFIED_HAN);
65#endif
66#else
67    // There is no serif Chinese font in default iOS installation.
68    setStandardFontFamily("Heiti SC", USCRIPT_SIMPLIFIED_HAN);
69    setSerifFontFamily("Heiti SC", USCRIPT_SIMPLIFIED_HAN);
70#endif
71    setFixedFontFamily("Heiti SC", USCRIPT_SIMPLIFIED_HAN);
72    setSansSerifFontFamily("Heiti SC", USCRIPT_SIMPLIFIED_HAN);
73
74    setStandardFontFamily("Hiragino Mincho ProN", USCRIPT_KATAKANA_OR_HIRAGANA);
75#if !PLATFORM(IOS)
76    setFixedFontFamily("Osaka-Mono", USCRIPT_KATAKANA_OR_HIRAGANA);
77#else
78    setFixedFontFamily("Hiragino Kaku Gothic ProN", USCRIPT_KATAKANA_OR_HIRAGANA);
79#endif
80    setSerifFontFamily("Hiragino Mincho ProN", USCRIPT_KATAKANA_OR_HIRAGANA);
81    setSansSerifFontFamily("Hiragino Kaku Gothic ProN", USCRIPT_KATAKANA_OR_HIRAGANA);
82
83#if !PLATFORM(IOS)
84    setStandardFontFamily("AppleMyungjo", USCRIPT_HANGUL);
85    setSerifFontFamily("AppleMyungjo", USCRIPT_HANGUL);
86#else
87    // There is no serif Korean font in default iOS installation.
88    setStandardFontFamily("Apple SD Gothic Neo", USCRIPT_HANGUL);
89    setSerifFontFamily("Apple SD Gothic Neo", USCRIPT_HANGUL);
90#endif
91#if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080
92    setFixedFontFamily("Apple SD Gothic Neo", USCRIPT_HANGUL);
93    setSansSerifFontFamily("Apple SD Gothic Neo", USCRIPT_HANGUL);
94#else
95    setFixedFontFamily("AppleGothic", USCRIPT_HANGUL);
96    setSansSerifFontFamily("AppleGothic", USCRIPT_HANGUL);
97#endif
98
99    setStandardFontFamily("Times", USCRIPT_COMMON);
100    setFixedFontFamily("Courier", USCRIPT_COMMON);
101    setSerifFontFamily("Times", USCRIPT_COMMON);
102    setSansSerifFontFamily("Helvetica", USCRIPT_COMMON);
103}
104
105
106} // namespace WebCore
107