1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef PRINTING_PRINTING_CONTEXT_WIN_H_
6 #define PRINTING_PRINTING_CONTEXT_WIN_H_
10 #include "base/memory/scoped_ptr.h"
11 #include "printing/printing_context.h"
12 #include "ui/gfx/native_widget_types.h"
18 class PRINTING_EXPORT PrintingContextWin
: public PrintingContext
{
20 explicit PrintingContextWin(Delegate
* delegate
);
21 ~PrintingContextWin() override
;
23 // PrintingContext implementation.
24 void AskUserForSettings(
28 const PrintSettingsCallback
& callback
) override
;
29 Result
UseDefaultSettings() override
;
30 gfx::Size
GetPdfPaperSizeDeviceUnits() override
;
31 Result
UpdatePrinterSettings(bool external_preview
,
32 bool show_system_dialog
,
33 int page_count
) override
;
34 Result
InitWithSettings(const PrintSettings
& settings
) override
;
35 Result
NewDocument(const base::string16
& document_name
) override
;
36 Result
NewPage() override
;
37 Result
PageDone() override
;
38 Result
DocumentDone() override
;
39 void Cancel() override
;
40 void ReleaseContext() override
;
41 gfx::NativeDrawingContext
context() const override
;
44 static HWND
GetRootWindow(gfx::NativeView view
);
46 // Reads the settings from the selected device context. Updates settings_ and
48 virtual Result
InitializeSettings(const base::string16
& device_name
,
51 HDC
contest() const { return context_
; }
53 void set_context(HDC context
) { context_
= context
; }
56 // Used in response to the user canceling the printing.
57 static BOOL CALLBACK
AbortProc(HDC hdc
, int nCode
);
59 // The selected printer context.
62 DISALLOW_COPY_AND_ASSIGN(PrintingContextWin
);
65 } // namespace printing
67 #endif // PRINTING_PRINTING_CONTEXT_WIN_H_