Renamed NQP to EEPAndroid
[chromium-blink-merge.git] / printing / printing_context_win.h
blob68d9153b36a343b4ffbab6469adadd77938d0618
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_
8 #include <string>
10 #include "base/memory/scoped_ptr.h"
11 #include "printing/printing_context.h"
12 #include "ui/gfx/native_widget_types.h"
14 namespace printing {
16 class PrintSettings;
18 class PRINTING_EXPORT PrintingContextWin : public PrintingContext {
19 public:
20 explicit PrintingContextWin(Delegate* delegate);
21 ~PrintingContextWin() override;
23 // PrintingContext implementation.
24 void AskUserForSettings(
25 int max_pages,
26 bool has_selection,
27 bool is_scripted,
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;
43 protected:
44 static HWND GetRootWindow(gfx::NativeView view);
46 // Reads the settings from the selected device context. Updates settings_ and
47 // its margins.
48 virtual Result InitializeSettings(const base::string16& device_name,
49 DEVMODE* dev_mode);
51 HDC contest() const { return context_; }
53 void set_context(HDC context) { context_ = context; }
55 private:
56 // Used in response to the user canceling the printing.
57 static BOOL CALLBACK AbortProc(HDC hdc, int nCode);
59 // The selected printer context.
60 HDC context_;
62 DISALLOW_COPY_AND_ASSIGN(PrintingContextWin);
65 } // namespace printing
67 #endif // PRINTING_PRINTING_CONTEXT_WIN_H_