This source file includes following definitions.
- GetDeviceScaleFactor
- GetFallbackDisplayList
- FindAt
- ShouldStopIterating
- xrandr_event_base_
- ProcessDisplayChange
- IsDIPEnabled
- GetCursorScreenPoint
- GetWindowUnderCursor
- GetWindowAtScreenPoint
- GetNumDisplays
- GetAllDisplays
- GetDisplayNearestWindow
- GetDisplayNearestPoint
- GetDisplayMatching
- GetPrimaryDisplay
- AddObserver
- RemoveObserver
- Dispatch
- displays_
- BuildDisplaysFromXRandRInfo
- ConfigureTimerFired
- CreateDesktopScreen
#include "ui/views/widget/desktop_aura/desktop_screen_x11.h"
#include <X11/extensions/Xrandr.h>
#include <X11/Xlib.h>
#undef RootWindow
#include "base/debug/trace_event.h"
#include "base/logging.h"
#include "ui/aura/window.h"
#include "ui/aura/window_event_dispatcher.h"
#include "ui/aura/window_tree_host.h"
#include "ui/base/layout.h"
#include "ui/display/display_util.h"
#include "ui/display/x11/edid_parser_x11.h"
#include "ui/gfx/display.h"
#include "ui/gfx/display_observer.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/gfx/screen.h"
#include "ui/gfx/x/x11_types.h"
#include "ui/views/widget/desktop_aura/desktop_screen.h"
#include "ui/views/widget/desktop_aura/desktop_window_tree_host_x11.h"
namespace {
const int64 kConfigureDelayMs = 500;
float GetDeviceScaleFactor(int screen_pixels, int screen_mm) {
const int kCSSDefaultDPI = 96;
const float kInchInMm = 25.4f;
float screen_inches = screen_mm / kInchInMm;
float screen_dpi = screen_pixels / screen_inches;
float scale = screen_dpi / kCSSDefaultDPI;
return ui::GetImageScale(ui::GetSupportedScaleFactor(scale));
}
std::vector<gfx::Display> GetFallbackDisplayList() {
::XDisplay* display = gfx::GetXDisplay();
::Screen* screen = DefaultScreenOfDisplay(display);
int width = WidthOfScreen(screen);
int height = HeightOfScreen(screen);
gfx::Size physical_size(WidthMMOfScreen(screen), HeightMMOfScreen(screen));
gfx::Rect bounds_in_pixels(0, 0, width, height);
gfx::Display gfx_display(0, bounds_in_pixels);
if (!gfx::Display::HasForceDeviceScaleFactor() &&
!ui::IsDisplaySizeBlackListed(physical_size)) {
float device_scale_factor = GetDeviceScaleFactor(
width, physical_size.width());
DCHECK_LE(1.0f, device_scale_factor);
gfx_display.SetScaleAndBounds(device_scale_factor, bounds_in_pixels);
}
return std::vector<gfx::Display>(1, gfx_display);
}
class ToplevelWindowFinder : public ui::EnumerateWindowsDelegate {
public:
ToplevelWindowFinder() : toplevel_(NULL) {
}
virtual ~ToplevelWindowFinder() {
}
aura::Window* FindAt(const gfx::Point& screen_loc) {
screen_loc_ = screen_loc;
ui::EnumerateTopLevelWindows(this);
return toplevel_;
}
protected:
virtual bool ShouldStopIterating(XID xid) OVERRIDE {
if (!ui::IsWindowVisible(xid))
return false;
aura::Window* window =
views::DesktopWindowTreeHostX11::GetContentWindowForXID(xid);
if (window) {
if (window->IsVisible() &&
window->GetBoundsInScreen().Contains(screen_loc_)) {
toplevel_ = window;
return true;
}
return false;
}
if (ui::WindowContainsPoint(xid, screen_loc_)) {
return true;
}
return false;
}
gfx::Point screen_loc_;
aura::Window* toplevel_;
DISALLOW_COPY_AND_ASSIGN(ToplevelWindowFinder);
};
}
namespace views {
DesktopScreenX11::DesktopScreenX11()
: xdisplay_(base::MessagePumpX11::GetDefaultXDisplay()),
x_root_window_(DefaultRootWindow(xdisplay_)),
has_xrandr_(false),
xrandr_event_base_(0) {
int randr_version_major = 0;
int randr_version_minor = 0;
has_xrandr_ = XRRQueryVersion(
xdisplay_, &randr_version_major, &randr_version_minor) &&
randr_version_major == 1 &&
randr_version_minor >= 3;
if (has_xrandr_) {
int error_base_ignored = 0;
XRRQueryExtension(xdisplay_, &xrandr_event_base_, &error_base_ignored);
base::MessagePumpX11::Current()->AddDispatcherForRootWindow(this);
XRRSelectInput(xdisplay_,
x_root_window_,
RRScreenChangeNotifyMask | RROutputChangeNotifyMask);
displays_ = BuildDisplaysFromXRandRInfo();
} else {
displays_ = GetFallbackDisplayList();
}
}
DesktopScreenX11::~DesktopScreenX11() {
if (has_xrandr_)
base::MessagePumpX11::Current()->RemoveDispatcherForRootWindow(this);
}
void DesktopScreenX11::ProcessDisplayChange(
const std::vector<gfx::Display>& incoming) {
std::vector<gfx::Display> old_displays = displays_;
displays_ = incoming;
typedef std::vector<gfx::Display>::const_iterator DisplayIt;
std::vector<gfx::Display>::const_iterator old_it = old_displays.begin();
for (; old_it != old_displays.end(); ++old_it) {
bool found = false;
for (std::vector<gfx::Display>::const_iterator new_it =
displays_.begin(); new_it != displays_.end(); ++new_it) {
if (old_it->id() == new_it->id()) {
found = true;
break;
}
}
if (!found) {
FOR_EACH_OBSERVER(gfx::DisplayObserver, observer_list_,
OnDisplayRemoved(*old_it));
}
}
std::vector<gfx::Display>::const_iterator new_it = displays_.begin();
for (; new_it != displays_.end(); ++new_it) {
bool found = false;
for (std::vector<gfx::Display>::const_iterator old_it =
old_displays.begin(); old_it != old_displays.end(); ++old_it) {
if (new_it->id() == old_it->id()) {
if (new_it->bounds() != old_it->bounds()) {
FOR_EACH_OBSERVER(gfx::DisplayObserver, observer_list_,
OnDisplayBoundsChanged(*new_it));
}
found = true;
break;
}
}
if (!found) {
FOR_EACH_OBSERVER(gfx::DisplayObserver, observer_list_,
OnDisplayAdded(*new_it));
}
}
}
bool DesktopScreenX11::IsDIPEnabled() {
return true;
}
gfx::Point DesktopScreenX11::GetCursorScreenPoint() {
TRACE_EVENT0("views", "DesktopScreenX11::GetCursorScreenPoint()");
XDisplay* display = gfx::GetXDisplay();
::Window root, child;
int root_x, root_y, win_x, win_y;
unsigned int mask;
XQueryPointer(display,
DefaultRootWindow(display),
&root,
&child,
&root_x,
&root_y,
&win_x,
&win_y,
&mask);
return gfx::Point(root_x, root_y);
}
gfx::NativeWindow DesktopScreenX11::GetWindowUnderCursor() {
return GetWindowAtScreenPoint(GetCursorScreenPoint());
}
gfx::NativeWindow DesktopScreenX11::GetWindowAtScreenPoint(
const gfx::Point& point) {
ToplevelWindowFinder finder;
return finder.FindAt(point);
}
int DesktopScreenX11::GetNumDisplays() const {
return displays_.size();
}
std::vector<gfx::Display> DesktopScreenX11::GetAllDisplays() const {
return displays_;
}
gfx::Display DesktopScreenX11::GetDisplayNearestWindow(
gfx::NativeView window) const {
aura::WindowTreeHost* host = window->GetHost();
if (host) {
DesktopWindowTreeHostX11* rwh = DesktopWindowTreeHostX11::GetHostForXID(
host->GetAcceleratedWidget());
if (rwh)
return GetDisplayMatching(rwh->GetX11RootWindowBounds());
}
return GetPrimaryDisplay();
}
gfx::Display DesktopScreenX11::GetDisplayNearestPoint(
const gfx::Point& point) const {
for (std::vector<gfx::Display>::const_iterator it = displays_.begin();
it != displays_.end(); ++it) {
if (it->bounds().Contains(point))
return *it;
}
return GetPrimaryDisplay();
}
gfx::Display DesktopScreenX11::GetDisplayMatching(
const gfx::Rect& match_rect) const {
int max_area = 0;
const gfx::Display* matching = NULL;
for (std::vector<gfx::Display>::const_iterator it = displays_.begin();
it != displays_.end(); ++it) {
gfx::Rect intersect = gfx::IntersectRects(it->bounds(), match_rect);
int area = intersect.width() * intersect.height();
if (area > max_area) {
max_area = area;
matching = &*it;
}
}
return matching ? *matching : GetPrimaryDisplay();
}
gfx::Display DesktopScreenX11::GetPrimaryDisplay() const {
return displays_.front();
}
void DesktopScreenX11::AddObserver(gfx::DisplayObserver* observer) {
observer_list_.AddObserver(observer);
}
void DesktopScreenX11::RemoveObserver(gfx::DisplayObserver* observer) {
observer_list_.RemoveObserver(observer);
}
uint32_t DesktopScreenX11::Dispatch(const base::NativeEvent& event) {
if (event->type - xrandr_event_base_ == RRScreenChangeNotify) {
XRRUpdateConfiguration(event);
} else if (event->type - xrandr_event_base_ == RRNotify) {
if (configure_timer_.get() && configure_timer_->IsRunning()) {
configure_timer_->Reset();
} else {
configure_timer_.reset(new base::OneShotTimer<DesktopScreenX11>());
configure_timer_->Start(
FROM_HERE,
base::TimeDelta::FromMilliseconds(kConfigureDelayMs),
this,
&DesktopScreenX11::ConfigureTimerFired);
}
}
return POST_DISPATCH_NONE;
}
DesktopScreenX11::DesktopScreenX11(
const std::vector<gfx::Display>& test_displays)
: xdisplay_(base::MessagePumpX11::GetDefaultXDisplay()),
x_root_window_(DefaultRootWindow(xdisplay_)),
has_xrandr_(false),
xrandr_event_base_(0),
displays_(test_displays) {
}
std::vector<gfx::Display> DesktopScreenX11::BuildDisplaysFromXRandRInfo() {
std::vector<gfx::Display> displays;
XRRScreenResources* resources =
XRRGetScreenResourcesCurrent(xdisplay_, x_root_window_);
if (!resources) {
LOG(ERROR) << "XRandR returned no displays. Falling back to Root Window.";
return GetFallbackDisplayList();
}
bool has_work_area = false;
gfx::Rect work_area;
std::vector<int> value;
if (ui::GetIntArrayProperty(x_root_window_, "_NET_WORKAREA", &value) &&
value.size() >= 4) {
work_area = gfx::Rect(value[0], value[1], value[2], value[3]);
has_work_area = true;
}
float device_scale_factor = 1.0f;
for (int i = 0; i < resources->noutput; ++i) {
RROutput output_id = resources->outputs[i];
XRROutputInfo* output_info =
XRRGetOutputInfo(xdisplay_, resources, output_id);
bool is_connected = (output_info->connection == RR_Connected);
if (!is_connected) {
XRRFreeOutputInfo(output_info);
continue;
}
if (output_info->crtc) {
XRRCrtcInfo *crtc = XRRGetCrtcInfo(xdisplay_,
resources,
output_info->crtc);
int64 display_id = -1;
if (!ui::GetDisplayId(output_id, static_cast<uint8>(i), &display_id)) {
display_id = i;
}
gfx::Rect crtc_bounds(crtc->x, crtc->y, crtc->width, crtc->height);
gfx::Display display(display_id, crtc_bounds);
if (!gfx::Display::HasForceDeviceScaleFactor()) {
if (i == 0 && !ui::IsDisplaySizeBlackListed(
gfx::Size(output_info->mm_width, output_info->mm_height))) {
device_scale_factor = GetDeviceScaleFactor(crtc->width,
output_info->mm_width);
DCHECK_LE(1.0f, device_scale_factor);
}
display.SetScaleAndBounds(device_scale_factor, crtc_bounds);
}
if (has_work_area) {
gfx::Rect intersection = crtc_bounds;
intersection.Intersect(work_area);
display.set_work_area(intersection);
}
displays.push_back(display);
XRRFreeCrtcInfo(crtc);
}
XRRFreeOutputInfo(output_info);
}
XRRFreeScreenResources(resources);
if (displays.empty())
return GetFallbackDisplayList();
return displays;
}
void DesktopScreenX11::ConfigureTimerFired() {
std::vector<gfx::Display> new_displays = BuildDisplaysFromXRandRInfo();
ProcessDisplayChange(new_displays);
}
gfx::Screen* CreateDesktopScreen() {
return new DesktopScreenX11;
}
}