blob: d62184a7a7ce311cbc2d2540b9e45e2c660a7898 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/platform_window/x11/x11_window_ozone.h"
#include "base/bind.h"
#include "ui/events/event.h"
#include "ui/events/ozone/events_ozone.h"
#include "ui/events/platform/x11/x11_event_source.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/x/x11.h"
#include "ui/platform_window/x11/x11_cursor_ozone.h"
#include "ui/platform_window/x11/x11_window_manager_ozone.h"
namespace ui {
X11WindowOzone::X11WindowOzone(X11WindowManagerOzone* window_manager,
PlatformWindowDelegate* delegate,
const gfx::Rect& bounds)
: X11WindowBase(delegate, bounds), window_manager_(window_manager) {
DCHECK(window_manager);
auto* event_source = X11EventSourceLibevent::GetInstance();
if (event_source)
event_source->AddXEventDispatcher(this);
}
X11WindowOzone::~X11WindowOzone() {
X11WindowOzone::PrepareForShutdown();
}
void X11WindowOzone::PrepareForShutdown() {
auto* event_source = X11EventSourceLibevent::GetInstance();
if (event_source)
event_source->RemoveXEventDispatcher(this);
}
void X11WindowOzone::SetCapture() {
window_manager_->GrabEvents(this);
}
void X11WindowOzone::ReleaseCapture() {
window_manager_->UngrabEvents(this);
}
void X11WindowOzone::SetCursor(PlatformCursor cursor) {
X11CursorOzone* cursor_ozone = static_cast<X11CursorOzone*>(cursor);
XDefineCursor(xdisplay(), xwindow(), cursor_ozone->xcursor());
}
void X11WindowOzone::CheckCanDispatchNextPlatformEvent(XEvent* xev) {
handle_next_event_ = xwindow() == x11::None ? false : IsEventForXWindow(*xev);
}
void X11WindowOzone::PlatformEventDispatchFinished() {
handle_next_event_ = false;
}
PlatformEventDispatcher* X11WindowOzone::GetPlatformEventDispatcher() {
return this;
}
bool X11WindowOzone::DispatchXEvent(XEvent* xev) {
if (!IsEventForXWindow(*xev))
return false;
ProcessXWindowEvent(xev);
return true;
}
bool X11WindowOzone::CanDispatchEvent(const PlatformEvent& platform_event) {
return handle_next_event_;
}
uint32_t X11WindowOzone::DispatchEvent(const PlatformEvent& platform_event) {
// This is unfortunately needed otherwise events that depend on global state
// (eg. double click) are broken.
DispatchEventFromNativeUiEvent(
platform_event, base::BindOnce(&PlatformWindowDelegate::DispatchEvent,
base::Unretained(delegate())));
return POST_DISPATCH_STOP_PROPAGATION;
}
} // namespace ui