diff options
Diffstat (limited to 'printing/print_settings_initializer_win.h')
-rw-r--r-- | printing/print_settings_initializer_win.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/printing/print_settings_initializer_win.h b/printing/print_settings_initializer_win.h new file mode 100644 index 0000000..9ed68e9 --- /dev/null +++ b/printing/print_settings_initializer_win.h @@ -0,0 +1,36 @@ +// Copyright (c) 2010 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 PRINTING_PRINTING_SETTINGS_INITIALIZER_WIN_H_ +#define PRINTING_PRINTING_SETTINGS_INITIALIZER_WIN_H_ + +#include <string> + +#include "base/logging.h" +#include "printing/page_range.h" + +typedef struct HDC__* HDC; +typedef struct _devicemodeW DEVMODE; + +namespace printing { + +class PrintSettings; + +// Initializes a PrintSettings object from the provided device context. +class PrintSettingsInitializerWin { + public: + static void InitPrintSettings(HDC hdc, + const DEVMODE& dev_mode, + const PageRanges& new_ranges, + const std::wstring& new_device_name, + bool print_selection_only, + PrintSettings* print_settings); + + private: + DISALLOW_IMPLICIT_CONSTRUCTORS(PrintSettingsInitializerWin); +}; + +} // namespace printing + +#endif // PRINTING_PRINTING_SETTINGS_INITIALIZER_WIN_H_ |