OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 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 #include "mojo/examples/aura_demo/demo_screen.h" |
| 6 |
| 7 #include "ui/gfx/native_widget_types.h" |
| 8 #include "ui/gfx/rect_conversions.h" |
| 9 |
| 10 namespace mojo { |
| 11 namespace examples { |
| 12 |
| 13 // static |
| 14 DemoScreen* DemoScreen::Create() { |
| 15 return new DemoScreen(gfx::Rect(0, 0, 800, 600)); |
| 16 } |
| 17 |
| 18 DemoScreen::~DemoScreen() { |
| 19 } |
| 20 |
| 21 bool DemoScreen::IsDIPEnabled() { |
| 22 NOTIMPLEMENTED(); |
| 23 return true; |
| 24 } |
| 25 |
| 26 gfx::Point DemoScreen::GetCursorScreenPoint() { |
| 27 NOTIMPLEMENTED(); |
| 28 return gfx::Point(); |
| 29 } |
| 30 |
| 31 gfx::NativeWindow DemoScreen::GetWindowUnderCursor() { |
| 32 return GetWindowAtScreenPoint(GetCursorScreenPoint()); |
| 33 } |
| 34 |
| 35 gfx::NativeWindow DemoScreen::GetWindowAtScreenPoint(const gfx::Point& point) { |
| 36 NOTIMPLEMENTED(); |
| 37 return NULL; |
| 38 } |
| 39 |
| 40 int DemoScreen::GetNumDisplays() const { |
| 41 return 1; |
| 42 } |
| 43 |
| 44 std::vector<gfx::Display> DemoScreen::GetAllDisplays() const { |
| 45 return std::vector<gfx::Display>(1, display_); |
| 46 } |
| 47 |
| 48 gfx::Display DemoScreen::GetDisplayNearestWindow( |
| 49 gfx::NativeWindow window) const { |
| 50 return display_; |
| 51 } |
| 52 |
| 53 gfx::Display DemoScreen::GetDisplayNearestPoint(const gfx::Point& point) const { |
| 54 return display_; |
| 55 } |
| 56 |
| 57 gfx::Display DemoScreen::GetDisplayMatching(const gfx::Rect& match_rect) const { |
| 58 return display_; |
| 59 } |
| 60 |
| 61 gfx::Display DemoScreen::GetPrimaryDisplay() const { |
| 62 return display_; |
| 63 } |
| 64 |
| 65 void DemoScreen::AddObserver(gfx::DisplayObserver* observer) { |
| 66 } |
| 67 |
| 68 void DemoScreen::RemoveObserver(gfx::DisplayObserver* observer) { |
| 69 } |
| 70 |
| 71 DemoScreen::DemoScreen(const gfx::Rect& screen_bounds) { |
| 72 static int64 synthesized_display_id = 2000; |
| 73 display_.set_id(synthesized_display_id++); |
| 74 display_.SetScaleAndBounds(1.0f, screen_bounds); |
| 75 } |
| 76 |
| 77 } // namespace examples |
| 78 } // namespace mojo |
OLD | NEW |