Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: core/fxge/ge/cttfontdesc.h

Issue 2377393002: Move core/fxge/include to core/fxge (Closed)
Patch Set: Rebase to master Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fxge/ge/cfx_unicodeencodingex.cpp ('k') | core/fxge/ge/cttfontdesc.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef CORE_FXGE_GE_CTTFONTDESC_H_ 7 #ifndef CORE_FXGE_GE_CTTFONTDESC_H_
8 #define CORE_FXGE_GE_CTTFONTDESC_H_ 8 #define CORE_FXGE_GE_CTTFONTDESC_H_
9 9
10 #include "core/fxcrt/fx_system.h" 10 #include "core/fxcrt/fx_system.h"
11 #include "core/fxge/include/fx_font.h" 11 #include "core/fxge/fx_font.h"
12 12
13 #define FX_FONT_FLAG_SERIF 0x01 13 #define FX_FONT_FLAG_SERIF 0x01
14 #define FX_FONT_FLAG_FIXEDPITCH 0x02 14 #define FX_FONT_FLAG_FIXEDPITCH 0x02
15 #define FX_FONT_FLAG_ITALIC 0x04 15 #define FX_FONT_FLAG_ITALIC 0x04
16 #define FX_FONT_FLAG_BOLD 0x08 16 #define FX_FONT_FLAG_BOLD 0x08
17 #define FX_FONT_FLAG_SYMBOLIC_SYMBOL 0x10 17 #define FX_FONT_FLAG_SYMBOLIC_SYMBOL 0x10
18 #define FX_FONT_FLAG_SYMBOLIC_DINGBATS 0x20 18 #define FX_FONT_FLAG_SYMBOLIC_DINGBATS 0x20
19 #define FX_FONT_FLAG_MULTIPLEMASTER 0x40 19 #define FX_FONT_FLAG_MULTIPLEMASTER 0x40
20 20
21 class CTTFontDesc { 21 class CTTFontDesc {
(...skipping 14 matching lines...) Expand all
36 } m_SingleFace; 36 } m_SingleFace;
37 struct { 37 struct {
38 FXFT_Face m_pFaces[16]; 38 FXFT_Face m_pFaces[16];
39 } m_TTCFace; 39 } m_TTCFace;
40 }; 40 };
41 uint8_t* m_pFontData; 41 uint8_t* m_pFontData;
42 int m_RefCount; 42 int m_RefCount;
43 }; 43 };
44 44
45 #endif // CORE_FXGE_GE_CTTFONTDESC_H_ 45 #endif // CORE_FXGE_GE_CTTFONTDESC_H_
OLDNEW
« no previous file with comments | « core/fxge/ge/cfx_unicodeencodingex.cpp ('k') | core/fxge/ge/cttfontdesc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698