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

Side by Side Diff: ui/aura/monitor.h

Issue 9960042: Refactor screen/monitor so that gfx::Screen returns monitor object. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 8 years, 7 months 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 | Annotate | Revision Log
« no previous file with comments | « ui/aura/aura.gyp ('k') | ui/aura/monitor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef UI_AURA_MONITOR_H_
6 #define UI_AURA_MONITOR_H_
7 #pragma once
8
9 #include "base/basictypes.h"
10 #include "ui/aura/aura_export.h"
11 #include "ui/gfx/insets.h"
12 #include "ui/gfx/rect.h"
13
14 namespace aura {
15
16 // Note: The screen and monitor currently uses pixels coordinate
17 // system. ENABLE_DIP macro (which is enabled with enable_dip=1 gyp
18 // flag) will make this inconsistent with views' coordinate system
19 // because views will use DIP coordinate system, which uses
20 // (1.0/device_scale_factor) scale of the pixel coordinate system.
21 // TODO(oshima): Change aura/screen to DIP coordinate system and
22 // update this comment.
23 class AURA_EXPORT Monitor {
24 public:
25 Monitor();
26 ~Monitor();
27
28 // Sets/gets monitor's bounds in |gfx::screen|'s coordinates,
29 // which is relative to the primary screen's origin.
30 void set_bounds(const gfx::Rect& bounds) { bounds_ = bounds;}
31 const gfx::Rect& bounds() const { return bounds_; };
32
33 // Sets/gets monitor's size.
34 void set_size(const gfx::Size& size) { bounds_.set_size(size); }
35 const gfx::Size& size() const { return bounds_.size(); }
36
37 // Sets/gets monitor's workarea insets.
38 void set_work_area_insets(const gfx::Insets& insets) {
39 work_area_insets_ = insets;
40 }
41 const gfx::Insets& work_area_insets() const { return work_area_insets_; }
42
43 // Output device's pixel scale factor. This specifies how much the
44 // UI should be scaled when the actual output has more pixels than
45 // standard monitors (which is around 100~120dpi.) For aura, this
46 // value is either 1.0 or 2.0, but may return different values on
47 // other platforms.
48 float GetDeviceScaleFactor() const {
49 return device_scale_factor_;
50 }
51
52 void set_device_scale_factor(float scale) {
53 device_scale_factor_ = scale;
54 }
55
56 // Returns the monitor's work area.
57 gfx::Rect GetWorkAreaBounds() const;
58
59 private:
60 // Insets for the work area.
61 gfx::Insets work_area_insets_;
62
63 gfx::Rect bounds_;
64
65 float device_scale_factor_;
66
67 DISALLOW_COPY_AND_ASSIGN(Monitor);
68 };
69
70 } // namespace aura
71
72 #endif // UI_AURA_MONITOR_H_
OLDNEW
« no previous file with comments | « ui/aura/aura.gyp ('k') | ui/aura/monitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698