[CMAKE]
[reactos.git] / base / setup / usetup / muifonts.h
1 #pragma once
2
3 MUI_SUBFONT LatinFonts[] =
4 {
5 /*Font Substitute */
6
7 { L"Arial", L"Liberation Sans" },
8 { L"Courier", L"FreeMono" },
9 { L"Courier New", L"FreeMono" },
10 { L"Times New Roman", L"Liberation Serif" },
11 { L"Tahoma", L"Tahoma" },
12 { L"MS Sans Serif", L"Tahoma" },
13 { L"MS Shell Dlg", L"Tahoma" },
14 { L"MS Shell Dlg 2", L"Tahoma" },
15 { L"Helv", L"Tahoma" },
16 { NULL, NULL }
17 };
18
19 MUI_SUBFONT CyrillicFonts[] =
20 {
21 { L"Arial", L"Liberation Sans" },
22 { L"Courier", L"FreeMono" },
23 { L"Courier New", L"FreeMono" },
24 { L"Times New Roman", L"Liberation Serif" },
25 { L"Tahoma", L"Tahoma" },
26 { L"MS Sans Serif", L"Tahoma" },
27 { L"MS Shell Dlg", L"Tahoma" },
28 { L"MS Shell Dlg 2", L"Tahoma" },
29 { L"Helv", L"Tahoma" },
30 { NULL, NULL }
31 };
32
33 MUI_SUBFONT GreekFonts[] =
34 {
35 { L"Arial", L"Liberation Sans" },
36 { L"Courier", L"FreeMono" },
37 { L"Courier New", L"FreeMono" },
38 { L"Times New Roman", L"Liberation Serif" },
39 { L"Tahoma", L"DejaVu Sans" },
40 { L"MS Sans Serif", L"DejaVu Sans" },
41 { L"MS Shell Dlg", L"DejaVu Sans" },
42 { L"MS Shell Dlg 2", L"DejaVu Sans" },
43 { L"Helv", L"DejaVu Sans" },
44 { NULL, NULL }
45 };
46
47 MUI_SUBFONT HebrewFonts[] =
48 {
49 { L"Arial", L"DejaVu Sans" },
50 { L"Courier", L"FreeMono" },
51 { L"Courier New", L"FreeMono" },
52 { L"Times New Roman", L"DejaVu Serif" },
53 { L"Tahoma", L"DejaVu Sans" },
54 { L"MS Sans Serif", L"DejaVu Sans" },
55 { L"MS Shell Dlg", L"DejaVu Sans" },
56 { L"MS Shell Dlg 2", L"DejaVu Sans" },
57 { L"Helv", L"DejaVu Sans" },
58 { NULL, NULL }
59 };
60
61 MUI_SUBFONT CJKFonts[] =
62 {
63 { L"Arial", L"Liberation Sans" },
64 { L"Courier", L"FreeMono" },
65 { L"Courier New", L"FreeMono" },
66 { L"Times New Roman", L"Liberation Serif" },
67 { L"Tahoma", L"Droid Sans Fallback" },
68 { L"MS Sans Serif", L"Tahoma" },
69 { L"MS Shell Dlg", L"Droid Sans Fallback" },
70 { L"MS Shell Dlg 2", L"Droid Sans Fallback" },
71 { L"MS UI Gothic", L"Droid Sans Fallback" },
72 { L"MS UI Gothic 2", L"Droid Sans Fallback" },
73 { L"Helv", L"Tahoma" },
74 { NULL, NULL }
75 };
76
77 MUI_SUBFONT UnicodeFonts[] =
78 {
79 { L"Arial", L"DejaVu Sans" },
80 { L"Courier", L"DejaVu Sans Mono" },
81 { L"Courier New", L"DejaVu Sans Mono" },
82 { L"Times New Roman", L"DejaVu Serif" },
83 { L"Tahoma", L"DejaVu Sans" },
84 { L"MS Sans Serif", L"DejaVu Sans" },
85 { L"MS Shell Dlg", L"DejaVu Sans" },
86 { L"MS Shell Dlg 2", L"DejaVu Sans" },
87 { L"Helv", L"DejaVu Sans" },
88 { NULL, NULL }
89 };