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

Side by Side Diff: ui/display/chromeos/display_snapshot.h

Issue 187073002: Refactoring display configuration state to allow generic state objects (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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
OLDNEW
(Empty)
1 // Copyright 2014 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_DISPLAY_CHROMEOS_DISPLAY_SNAPSHOT_H_
6 #define UI_DISPLAY_CHROMEOS_DISPLAY_SNAPSHOT_H_
7
8 #include <vector>
9
10 #include "ui/display/chromeos/display_mode.h"
11 #include "ui/display/chromeos/display_snapshot.h"
12 #include "ui/display/display_constants.h"
13 #include "ui/gfx/geometry/point.h"
14 #include "ui/gfx/geometry/size.h"
15
16 namespace ui {
17
18 class DISPLAY_EXPORT DisplaySnapshot {
19 public:
20 DisplaySnapshot(int64_t display_id,
21 bool has_proper_display_id,
22 const gfx::Point& origin,
23 const gfx::Size& physical_size,
24 OutputType type,
25 bool is_aspect_preserving_scaling,
26 const std::vector<const DisplayMode*>& modes,
27 const DisplayMode* current_mode,
28 const DisplayMode* native_mode);
29 virtual ~DisplaySnapshot();
30
31 const gfx::Point& origin() const { return origin_; }
32 const gfx::Size& physical_size() const { return physical_size_; }
33 ui::OutputType type() const { return type_; }
34 bool is_aspect_preserving_scaling() const {
35 return is_aspect_preserving_scaling_;
36 }
37 int64_t display_id() const { return display_id_; }
38 bool has_proper_display_id() const { return has_proper_display_id_; }
39
40 const DisplayMode* current_mode() const { return current_mode_; }
41 const DisplayMode* native_mode() const { return native_mode_; }
42
43 const std::vector<const DisplayMode*>& modes() const { return modes_; }
44
45 void set_current_mode(const DisplayMode* mode) { current_mode_ = mode; }
46 void set_origin(const gfx::Point& origin) { origin_ = origin; }
47 void add_mode(const DisplayMode* mode) { modes_.push_back(mode); }
48
49 // Generates the human readable string for this display. Generally this is
50 // parsed from the EDID information.
51 virtual std::string GetDisplayName() = 0;
52
53 // Returns true if the overscan flag is set to true in the display
54 // information. Generally this is read from the EDID flags.
55 virtual bool GetOverscanFlag() = 0;
56
57 // Returns a textual representation of this display state.
58 virtual std::string ToString() const = 0;
59
60 protected:
61 // Display id for this output.
62 int64_t display_id_;
63 bool has_proper_display_id_;
64
65 // Output's origin on the framebuffer.
66 gfx::Point origin_;
67
68 gfx::Size physical_size_;
69
70 OutputType type_;
71
72 bool is_aspect_preserving_scaling_;
73
74 std::vector<const DisplayMode*> modes_; // Not owned.
75
76 // Mode currently being used by the output.
77 const DisplayMode* current_mode_;
78
79 // "Best" mode supported by the output.
80 const DisplayMode* native_mode_;
81
82 DISALLOW_COPY_AND_ASSIGN(DisplaySnapshot);
83 };
84
85 } // namespace ui
86
87 #endif // UI_DISPLAY_CHROMEOS_DISPLAY_SNAPSHOT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698