| OLD | NEW |
| 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 ASH_DISPLAY_DISPLAY_MANAGER_H_ | 5 #ifndef ASH_DISPLAY_DISPLAY_MANAGER_H_ |
| 6 #define ASH_DISPLAY_DISPLAY_MANAGER_H_ | 6 #define ASH_DISPLAY_DISPLAY_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 } | 52 } |
| 53 | 53 |
| 54 // True if the given |display| is currently connected. | 54 // True if the given |display| is currently connected. |
| 55 bool IsActiveDisplay(const gfx::Display& display) const; | 55 bool IsActiveDisplay(const gfx::Display& display) const; |
| 56 | 56 |
| 57 // True if there is an internal display. | 57 // True if there is an internal display. |
| 58 bool HasInternalDisplay() const; | 58 bool HasInternalDisplay() const; |
| 59 | 59 |
| 60 bool IsInternalDisplayId(int64 id) const; | 60 bool IsInternalDisplayId(int64 id) const; |
| 61 | 61 |
| 62 uint64 internal_display_id() const { return internal_display_id_; } |
| 63 |
| 62 bool UpdateWorkAreaOfDisplayNearestWindow(const aura::Window* window, | 64 bool UpdateWorkAreaOfDisplayNearestWindow(const aura::Window* window, |
| 63 const gfx::Insets& insets); | 65 const gfx::Insets& insets); |
| 64 | 66 |
| 65 // Returns display for given |id|; | 67 // Returns display for given |id|; |
| 66 const gfx::Display& GetDisplayForId(int64 id) const; | 68 const gfx::Display& GetDisplayForId(int64 id) const; |
| 67 | 69 |
| 68 // Finds the display that contains |point| in screeen coordinates. | 70 // Finds the display that contains |point| in screeen coordinates. |
| 69 // Returns invalid display if there is no display that can satisfy | 71 // Returns invalid display if there is no display that can satisfy |
| 70 // the condition. | 72 // the condition. |
| 71 const gfx::Display& FindDisplayContainingPoint( | 73 const gfx::Display& FindDisplayContainingPoint( |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 // stored in this display manager's |displays_|. This is used to | 182 // stored in this display manager's |displays_|. This is used to |
| 181 // emulate display change behavior during the test byn creating the | 183 // emulate display change behavior during the test byn creating the |
| 182 // display list with the same display ids but with different bounds | 184 // display list with the same display ids but with different bounds |
| 183 void SetDisplayIdsForTest(DisplayList* display_list) const; | 185 void SetDisplayIdsForTest(DisplayList* display_list) const; |
| 184 | 186 |
| 185 // Forcibly specify 'has_overscan' flag of the DisplayInfo for specified |id|. | 187 // Forcibly specify 'has_overscan' flag of the DisplayInfo for specified |id|. |
| 186 void SetHasOverscanFlagForTest(int64 id, bool has_overscan); | 188 void SetHasOverscanFlagForTest(int64 id, bool has_overscan); |
| 187 | 189 |
| 188 DisplayList displays_; | 190 DisplayList displays_; |
| 189 | 191 |
| 192 int64 internal_display_id_; |
| 193 |
| 190 // An internal display cache used when the internal display is disconnectd. | 194 // An internal display cache used when the internal display is disconnectd. |
| 191 scoped_ptr<gfx::Display> internal_display_; | 195 scoped_ptr<gfx::Display> internal_display_; |
| 192 | 196 |
| 193 bool force_bounds_changed_; | 197 bool force_bounds_changed_; |
| 194 | 198 |
| 195 // The mapping from the display ID to its internal data. | 199 // The mapping from the display ID to its internal data. |
| 196 std::map<int64, DisplayInfo> display_info_; | 200 std::map<int64, DisplayInfo> display_info_; |
| 197 | 201 |
| 198 DISALLOW_COPY_AND_ASSIGN(DisplayManager); | 202 DISALLOW_COPY_AND_ASSIGN(DisplayManager); |
| 199 }; | 203 }; |
| 200 | 204 |
| 201 extern const aura::WindowProperty<int64>* const kDisplayIdKey; | 205 extern const aura::WindowProperty<int64>* const kDisplayIdKey; |
| 202 | 206 |
| 203 } // namespace internal | 207 } // namespace internal |
| 204 } // namespace ash | 208 } // namespace ash |
| 205 | 209 |
| 206 #endif // ASH_DISPLAY_DISPLAY_MANAGER_H_ | 210 #endif // ASH_DISPLAY_DISPLAY_MANAGER_H_ |
| OLD | NEW |