mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Windows: Add bundled pdf.dll and use it for printing support (issue #1313).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1757 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
64
libcef/utility/printing_handler.h
Normal file
64
libcef/utility/printing_handler.h
Normal file
@@ -0,0 +1,64 @@
|
||||
// Copyright 2014 The Chromium Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef LIBCEF_UTILITY_PRINTING_HANDLER_H_
|
||||
#define LIBCEF_UTILITY_PRINTING_HANDLER_H_
|
||||
|
||||
#include "base/compiler_specific.h"
|
||||
#include "base/macros.h"
|
||||
#include "chrome/utility/utility_message_handler.h"
|
||||
#include "ipc/ipc_platform_file.h"
|
||||
|
||||
#if !defined(ENABLE_FULL_PRINTING)
|
||||
#error "Full printing must be enabled"
|
||||
#endif
|
||||
|
||||
namespace printing {
|
||||
class PdfRenderSettings;
|
||||
struct PageRange;
|
||||
}
|
||||
|
||||
// Dispatches IPCs for printing.
|
||||
class PrintingHandler : public UtilityMessageHandler {
|
||||
public:
|
||||
PrintingHandler();
|
||||
virtual ~PrintingHandler();
|
||||
|
||||
static void PreSandboxStartup();
|
||||
|
||||
// IPC::Listener:
|
||||
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
||||
|
||||
private:
|
||||
// IPC message handlers.
|
||||
#if defined(WIN_PDF_METAFILE_FOR_PRINTING)
|
||||
void OnRenderPDFPagesToMetafile(
|
||||
IPC::PlatformFileForTransit pdf_transit,
|
||||
const base::FilePath& metafile_path,
|
||||
const printing::PdfRenderSettings& settings,
|
||||
const std::vector<printing::PageRange>& page_ranges);
|
||||
#endif
|
||||
|
||||
#if defined(WIN_PDF_METAFILE_FOR_PRINTING)
|
||||
// Helper method for Windows.
|
||||
// |highest_rendered_page_number| is set to -1 on failure to render any page.
|
||||
// |page_ranges| is both input and output. If supplied as input, only the
|
||||
// specified pages will be rendered. If an empty vector is supplied it will
|
||||
// be filled with a range of all pages that were rendered.
|
||||
bool RenderPDFToWinMetafile(
|
||||
base::File pdf_file,
|
||||
const base::FilePath& metafile_path,
|
||||
const printing::PdfRenderSettings& settings,
|
||||
std::vector<printing::PageRange>* page_ranges,
|
||||
int* highest_rendered_page_number,
|
||||
double* scale_factor);
|
||||
#endif
|
||||
|
||||
void OnGetPrinterCapsAndDefaults(const std::string& printer_name);
|
||||
void OnGetPrinterSemanticCapsAndDefaults(const std::string& printer_name);
|
||||
|
||||
DISALLOW_COPY_AND_ASSIGN(PrintingHandler);
|
||||
};
|
||||
|
||||
#endif // LIBCEF_UTILITY_PRINTING_HANDLER_H_
|
Reference in New Issue
Block a user