| Index: ui/gfx/win/display_info.h
|
| diff --git a/ui/gfx/win/display_info.h b/ui/gfx/win/display_info.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..beedf74a80340895d78cb1f4c562f70a6c561e2b
|
| --- /dev/null
|
| +++ b/ui/gfx/win/display_info.h
|
| @@ -0,0 +1,46 @@
|
| +// Copyright 2016 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 UI_GFX_WIN_DISPLAY_INFO_H_
|
| +#define UI_GFX_WIN_DISPLAY_INFO_H_
|
| +
|
| +#include <windows.h>
|
| +#include <stdint.h>
|
| +
|
| +#include "ui/gfx/display.h"
|
| +#include "ui/gfx/gfx_export.h"
|
| +
|
| +namespace gfx {
|
| +namespace win {
|
| +
|
| +// Holds the parameters necessary to create a gfx::win::ScreenWinDisplay
|
| +class GFX_EXPORT DisplayInfo {
|
| + public:
|
| + static int64_t HashDeviceName(const wchar_t* device_name);
|
| +
|
| + DisplayInfo(HMONITOR monitor, float device_scale_factor);
|
| + DisplayInfo(const MONITORINFOEX& monitor_info,
|
| + gfx::Display::Rotation rotation,
|
| + float device_scale_factor);
|
| +
|
| + int64_t id() const;
|
| + gfx::Display::Rotation rotation() const;
|
| + const gfx::Rect& screen_rect() const;
|
| + const gfx::Rect& screen_work_rect() const;
|
| + float device_scale_factor() const;
|
| +
|
| + private:
|
| + void InitializeFromMonitorInfo(const MONITORINFOEX& monitor_info);
|
| +
|
| + int64_t id_;
|
| + gfx::Display::Rotation rotation_;
|
| + gfx::Rect screen_rect_;
|
| + gfx::Rect screen_work_rect_;
|
| + float device_scale_factor_;
|
| +};
|
| +
|
| +} // namespace win
|
| +} // namespace gfx
|
| +
|
| +#endif // UI_GFX_WIN_DISPLAY_INFO_H_
|
|
|