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

Side by Side Diff: core/fxge/win32/fx_win32_print.cpp

Issue 1800523005: Move core/src/ up to core/. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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/win32/fx_win32_gdipext.cpp ('k') | core/fxge/win32/win32_int.h » ('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 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 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 #include "core/include/fxge/fx_ge.h" 7 #include "core/include/fxge/fx_ge.h"
8 8
9 #if _FX_OS_ == _FX_WIN32_DESKTOP_ || _FX_OS_ == _FX_WIN64_DESKTOP_ 9 #if _FX_OS_ == _FX_WIN32_DESKTOP_ || _FX_OS_ == _FX_WIN64_DESKTOP_
10 10
11 #include <windows.h> 11 #include <windows.h>
12 12
13 #include "core/fxge/dib/dib_int.h"
14 #include "core/fxge/ge/fx_text_int.h"
15 #include "core/fxge/win32/win32_int.h"
13 #include "core/include/fxge/fx_freetype.h" 16 #include "core/include/fxge/fx_freetype.h"
14 #include "core/include/fxge/fx_ge_win32.h" 17 #include "core/include/fxge/fx_ge_win32.h"
15 #include "core/src/fxge/dib/dib_int.h"
16 #include "core/src/fxge/ge/fx_text_int.h"
17 #include "core/src/fxge/win32/win32_int.h"
18 18
19 #define SIZETHRESHOLD 1000 19 #define SIZETHRESHOLD 1000
20 #define OUTPUTPSLEN 4096 20 #define OUTPUTPSLEN 4096
21 CGdiPrinterDriver::CGdiPrinterDriver(HDC hDC) 21 CGdiPrinterDriver::CGdiPrinterDriver(HDC hDC)
22 : CGdiDeviceDriver(hDC, FXDC_PRINTER) { 22 : CGdiDeviceDriver(hDC, FXDC_PRINTER) {
23 m_HorzSize = ::GetDeviceCaps(m_hDC, HORZSIZE); 23 m_HorzSize = ::GetDeviceCaps(m_hDC, HORZSIZE);
24 m_VertSize = ::GetDeviceCaps(m_hDC, VERTSIZE); 24 m_VertSize = ::GetDeviceCaps(m_hDC, VERTSIZE);
25 m_bSupportROP = TRUE; 25 m_bSupportROP = TRUE;
26 } 26 }
27 int CGdiPrinterDriver::GetDeviceCaps(int caps_id) { 27 int CGdiPrinterDriver::GetDeviceCaps(int caps_id) {
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 CFX_FontCache* pCache, 464 CFX_FontCache* pCache,
465 const CFX_Matrix* pObject2Device, 465 const CFX_Matrix* pObject2Device,
466 FX_FLOAT font_size, 466 FX_FLOAT font_size,
467 FX_DWORD color, 467 FX_DWORD color,
468 int alpha_flag, 468 int alpha_flag,
469 void* pIccTransform) { 469 void* pIccTransform) {
470 return m_PSRenderer.DrawText(nChars, pCharPos, pFont, pCache, pObject2Device, 470 return m_PSRenderer.DrawText(nChars, pCharPos, pFont, pCache, pObject2Device,
471 font_size, color, alpha_flag, pIccTransform); 471 font_size, color, alpha_flag, pIccTransform);
472 } 472 }
473 #endif 473 #endif
OLDNEW
« no previous file with comments | « core/fxge/win32/fx_win32_gdipext.cpp ('k') | core/fxge/win32/win32_int.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698