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 #include "ui/views/widget/desktop_aura/desktop_screen_x11.h" | 5 #include "ui/views/widget/desktop_aura/desktop_screen_x11.h" |
6 | 6 |
7 #include <X11/extensions/Xrandr.h> | 7 #include <X11/extensions/Xrandr.h> |
8 #include <X11/Xlib.h> | 8 #include <X11/Xlib.h> |
9 | 9 |
10 // It clashes with out RootWindow. | 10 // It clashes with out RootWindow. |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 }; | 113 }; |
114 | 114 |
115 } // namespace | 115 } // namespace |
116 | 116 |
117 namespace views { | 117 namespace views { |
118 | 118 |
119 //////////////////////////////////////////////////////////////////////////////// | 119 //////////////////////////////////////////////////////////////////////////////// |
120 // DesktopScreenX11, public: | 120 // DesktopScreenX11, public: |
121 | 121 |
122 DesktopScreenX11::DesktopScreenX11() | 122 DesktopScreenX11::DesktopScreenX11() |
123 : xdisplay_(base::MessagePumpX11::GetDefaultXDisplay()), | 123 : xdisplay_(gfx::GetXDisplay()), |
124 x_root_window_(DefaultRootWindow(xdisplay_)), | 124 x_root_window_(DefaultRootWindow(xdisplay_)), |
125 has_xrandr_(false), | 125 has_xrandr_(false), |
126 xrandr_event_base_(0) { | 126 xrandr_event_base_(0) { |
127 // We only support 1.3+. There were library changes before this and we should | 127 // We only support 1.3+. There were library changes before this and we should |
128 // use the new interface instead of the 1.2 one. | 128 // use the new interface instead of the 1.2 one. |
129 int randr_version_major = 0; | 129 int randr_version_major = 0; |
130 int randr_version_minor = 0; | 130 int randr_version_minor = 0; |
131 has_xrandr_ = XRRQueryVersion( | 131 has_xrandr_ = XRRQueryVersion( |
132 xdisplay_, &randr_version_major, &randr_version_minor) && | 132 xdisplay_, &randr_version_major, &randr_version_minor) && |
133 randr_version_major == 1 && | 133 randr_version_major == 1 && |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 } | 335 } |
336 | 336 |
337 return ui::POST_DISPATCH_NONE; | 337 return ui::POST_DISPATCH_NONE; |
338 } | 338 } |
339 | 339 |
340 //////////////////////////////////////////////////////////////////////////////// | 340 //////////////////////////////////////////////////////////////////////////////// |
341 // DesktopScreenX11, private: | 341 // DesktopScreenX11, private: |
342 | 342 |
343 DesktopScreenX11::DesktopScreenX11( | 343 DesktopScreenX11::DesktopScreenX11( |
344 const std::vector<gfx::Display>& test_displays) | 344 const std::vector<gfx::Display>& test_displays) |
345 : xdisplay_(base::MessagePumpX11::GetDefaultXDisplay()), | 345 : xdisplay_(gfx::GetXDisplay()), |
346 x_root_window_(DefaultRootWindow(xdisplay_)), | 346 x_root_window_(DefaultRootWindow(xdisplay_)), |
347 has_xrandr_(false), | 347 has_xrandr_(false), |
348 xrandr_event_base_(0), | 348 xrandr_event_base_(0), |
349 displays_(test_displays) { | 349 displays_(test_displays) { |
350 } | 350 } |
351 | 351 |
352 std::vector<gfx::Display> DesktopScreenX11::BuildDisplaysFromXRandRInfo() { | 352 std::vector<gfx::Display> DesktopScreenX11::BuildDisplaysFromXRandRInfo() { |
353 std::vector<gfx::Display> displays; | 353 std::vector<gfx::Display> displays; |
354 XRRScreenResources* resources = | 354 XRRScreenResources* resources = |
355 XRRGetScreenResourcesCurrent(xdisplay_, x_root_window_); | 355 XRRGetScreenResourcesCurrent(xdisplay_, x_root_window_); |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 ProcessDisplayChange(new_displays); | 433 ProcessDisplayChange(new_displays); |
434 } | 434 } |
435 | 435 |
436 //////////////////////////////////////////////////////////////////////////////// | 436 //////////////////////////////////////////////////////////////////////////////// |
437 | 437 |
438 gfx::Screen* CreateDesktopScreen() { | 438 gfx::Screen* CreateDesktopScreen() { |
439 return new DesktopScreenX11; | 439 return new DesktopScreenX11; |
440 } | 440 } |
441 | 441 |
442 } // namespace views | 442 } // namespace views |
OLD | NEW |