Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: ui/gfx/win/dpi.h

Issue 674763002: remove ui::gfx::GetDeviceScaleFactor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dpi-cleanup-3
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_GFX_DPI_WIN_H_ 5 #ifndef UI_GFX_DPI_WIN_H_
6 #define UI_GFX_DPI_WIN_H_ 6 #define UI_GFX_DPI_WIN_H_
7 7
8 #include "ui/gfx/gfx_export.h" 8 #include "ui/gfx/gfx_export.h"
9 #include "ui/gfx/point.h" 9 #include "ui/gfx/point.h"
10 #include "ui/gfx/rect.h" 10 #include "ui/gfx/rect.h"
11 #include "ui/gfx/size.h" 11 #include "ui/gfx/size.h"
12 12
13 namespace gfx { 13 namespace gfx {
14 14
15 // Initialization of the scale factor that should be applied for rendering 15 // Initialization of the scale factor that should be applied for rendering
16 // in this process. Must be called before attempts to call any of the getter 16 // in this process. Must be called before attempts to call any of the getter
17 // methods below in this file, e.g. in the early toolkit/resource bundle setup. 17 // methods below in this file, e.g. in the early toolkit/resource bundle setup.
18 // This can be called multiple times during various tests, but subsequent calls 18 // This can be called multiple times during various tests, but subsequent calls
19 // have no effect. 19 // have no effect.
20 GFX_EXPORT void InitDeviceScaleFactor(float scale); 20 GFX_EXPORT void InitDeviceScaleFactor(float scale);
sky 2014/10/23 16:51:51 Can this be named to SetDPIScale?
scottmg 2014/10/23 17:25:58 I agree we should make them the same. The ui/compo
21 21
22 GFX_EXPORT Size GetDPI(); 22 GFX_EXPORT Size GetDPI();
23 23
24 // Gets the scale factor of the display. For example, if the display DPI is 24 // Gets the scale factor of the display. For example, if the display DPI is
25 // 96 then the scale factor is 1.0. 25 // 96 then the scale factor is 1.0.
26 GFX_EXPORT float GetDPIScale(); 26 GFX_EXPORT float GetDPIScale();
27 27
28 // Tests to see if the command line flag "--high-dpi-support" is set. 28 // Tests to see if the command line flag "--high-dpi-support" is set.
29 GFX_EXPORT bool IsHighDPIEnabled(); 29 GFX_EXPORT bool IsHighDPIEnabled();
30 30
31 GFX_EXPORT void EnableHighDPISupport(); 31 GFX_EXPORT void EnableHighDPISupport();
32 32
33 GFX_EXPORT void ForceHighDPISupportForTesting(float scale); 33 GFX_EXPORT void ForceHighDPISupportForTesting(float scale);
34 34
35 // TODO(kevers|girard): Move above methods into win namespace. 35 // TODO(kevers|girard): Move above methods into win namespace.
36 36
37 namespace win { 37 namespace win {
38 38
39 GFX_EXPORT float GetDeviceScaleFactor();
40
41 GFX_EXPORT Point ScreenToDIPPoint(const Point& pixel_point); 39 GFX_EXPORT Point ScreenToDIPPoint(const Point& pixel_point);
42 40
43 GFX_EXPORT Point DIPToScreenPoint(const Point& dip_point); 41 GFX_EXPORT Point DIPToScreenPoint(const Point& dip_point);
44 42
45 // WARNING: there is no right way to scale sizes and rects. The implementation 43 // WARNING: there is no right way to scale sizes and rects. The implementation
46 // of these strives to maintain a constant size by scaling the size independent 44 // of these strives to maintain a constant size by scaling the size independent
47 // of the origin. An alternative is to get the enclosing rect, which is the 45 // of the origin. An alternative is to get the enclosing rect, which is the
48 // right way for some situations. Understand which you need before blindly 46 // right way for some situations. Understand which you need before blindly
49 // assuming this is the right way. 47 // assuming this is the right way.
50 GFX_EXPORT Rect ScreenToDIPRect(const Rect& pixel_bounds); 48 GFX_EXPORT Rect ScreenToDIPRect(const Rect& pixel_bounds);
51 GFX_EXPORT Rect DIPToScreenRect(const Rect& dip_bounds); 49 GFX_EXPORT Rect DIPToScreenRect(const Rect& dip_bounds);
52 GFX_EXPORT Size ScreenToDIPSize(const Size& size_in_pixels); 50 GFX_EXPORT Size ScreenToDIPSize(const Size& size_in_pixels);
53 GFX_EXPORT Size DIPToScreenSize(const Size& dip_size); 51 GFX_EXPORT Size DIPToScreenSize(const Size& dip_size);
54 52
55 // Win32's GetSystemMetrics uses pixel measures. This function calls 53 // Win32's GetSystemMetrics uses pixel measures. This function calls
56 // GetSystemMetrics for the given |metric|, then converts the result to DIP. 54 // GetSystemMetrics for the given |metric|, then converts the result to DIP.
57 GFX_EXPORT int GetSystemMetricsInDIP(int metric); 55 GFX_EXPORT int GetSystemMetricsInDIP(int metric);
58 56
59 // Returns true if the global device scale factor has been explicitly set for 57 // Returns true if the global device scale factor has been explicitly set for
60 // the process. 58 // the process.
61 GFX_EXPORT bool IsDeviceScaleFactorSet(); 59 GFX_EXPORT bool IsDeviceScaleFactorSet();
62 60
63 GFX_EXPORT extern const wchar_t kRegistryProfilePath[]; 61 GFX_EXPORT extern const wchar_t kRegistryProfilePath[];
64 GFX_EXPORT extern const wchar_t kHighDPISupportW[]; 62 GFX_EXPORT extern const wchar_t kHighDPISupportW[];
65 63
66 } // namespace win 64 } // namespace win
67 } // namespace gfx 65 } // namespace gfx
68 66
69 #endif // UI_GFX_DPI_WIN_H_ 67 #endif // UI_GFX_DPI_WIN_H_
OLDNEW
« no previous file with comments | « ui/gfx/screen_win.cc ('k') | ui/gfx/win/dpi.cc » ('j') | ui/gfx/win/dpi.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698