1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/ozone/platform/drm/host/drm_window_host.h"
#include "base/functional/bind.h"
#include "base/memory/scoped_refptr.h"
#include "ui/base/cursor/platform_cursor.h"
#include "ui/display/display.h"
#include "ui/events/devices/device_data_manager.h"
#include "ui/events/event.h"
#include "ui/events/ozone/evdev/event_factory_evdev.h"
#include "ui/events/ozone/events_ozone.h"
#include "ui/events/platform/platform_event_source.h"
#include "ui/ozone/common/bitmap_cursor.h"
#include "ui/ozone/platform/drm/host/drm_cursor.h"
#include "ui/ozone/platform/drm/host/drm_display_host.h"
#include "ui/ozone/platform/drm/host/drm_display_host_manager.h"
#include "ui/ozone/platform/drm/host/drm_window_host_manager.h"
#include "ui/ozone/platform/drm/host/gpu_thread_adapter.h"
namespace ui {
DrmWindowHost::DrmWindowHost(PlatformWindowDelegate* delegate,
const gfx::Rect& bounds,
GpuThreadAdapter* sender,
EventFactoryEvdev* event_factory,
DrmCursor* cursor,
DrmWindowHostManager* window_manager,
DrmDisplayHostManager* display_manager)
: delegate_(delegate),
sender_(sender),
event_factory_(event_factory),
cursor_(cursor),
window_manager_(window_manager),
display_manager_(display_manager),
bounds_(bounds),
widget_(window_manager->NextAcceleratedWidget()) {
window_manager_->AddWindow(widget_, this);
}
DrmWindowHost::~DrmWindowHost() {
PlatformEventSource::GetInstance()->RemovePlatformEventDispatcher(this);
window_manager_->RemoveWindow(widget_);
cursor_->OnWindowRemoved(widget_);
sender_->RemoveGpuThreadObserver(this);
sender_->GpuDestroyWindow(widget_);
}
void DrmWindowHost::Initialize() {
sender_->AddGpuThreadObserver(this);
PlatformEventSource::GetInstance()->AddPlatformEventDispatcher(this);
cursor_->OnWindowAdded(widget_, bounds_, GetCursorConfinedBounds());
delegate_->OnAcceleratedWidgetAvailable(widget_);
}
gfx::AcceleratedWidget DrmWindowHost::GetAcceleratedWidget() const {
return widget_;
}
gfx::Rect DrmWindowHost::GetCursorConfinedBounds() const {
return cursor_confined_bounds_.IsEmpty() ? gfx::Rect(bounds_.size())
: cursor_confined_bounds_;
}
void DrmWindowHost::Show(bool inactive) {}
void DrmWindowHost::Hide() {}
void DrmWindowHost::Close() {}
bool DrmWindowHost::IsVisible() const {
NOTREACHED();
}
void DrmWindowHost::PrepareForShutdown() {}
void DrmWindowHost::SetBoundsInPixels(const gfx::Rect& bounds) {
bool origin_changed = bounds_.origin() != bounds.origin();
bounds_ = bounds;
delegate_->OnBoundsChanged({origin_changed});
SendBoundsChange();
}
gfx::Rect DrmWindowHost::GetBoundsInPixels() const {
return bounds_;
}
void DrmWindowHost::SetBoundsInDIP(const gfx::Rect& bounds) {
// No scaling at DRM level and should always use pixel bounds.
NOTREACHED();
}
gfx::Rect DrmWindowHost::GetBoundsInDIP() const {
// No scaling at DRM level and should always use pixel bounds.
NOTREACHED();
}
void DrmWindowHost::SetTitle(const std::u16string& title) {}
void DrmWindowHost::SetCapture() {
window_manager_->GrabEvents(widget_);
}
void DrmWindowHost::ReleaseCapture() {
window_manager_->UngrabEvents(widget_);
}
bool DrmWindowHost::HasCapture() const {
return widget_ == window_manager_->event_grabber();
}
void DrmWindowHost::SetFullscreen(bool fullscreen, int64_t target_display_id) {}
void DrmWindowHost::Maximize() {}
void DrmWindowHost::Minimize() {}
void DrmWindowHost::Restore() {}
PlatformWindowState DrmWindowHost::GetPlatformWindowState() const {
return PlatformWindowState::kUnknown;
}
void DrmWindowHost::Activate() {
NOTIMPLEMENTED_LOG_ONCE();
}
void DrmWindowHost::Deactivate() {
NOTIMPLEMENTED_LOG_ONCE();
}
void DrmWindowHost::SetUseNativeFrame(bool use_native_frame) {}
bool DrmWindowHost::ShouldUseNativeFrame() const {
return false;
}
void DrmWindowHost::SetCursor(scoped_refptr<PlatformCursor> cursor) {
cursor_->SetCursor(widget_, BitmapCursor::FromPlatformCursor(cursor));
}
void DrmWindowHost::MoveCursorTo(const gfx::Point& location) {
event_factory_->WarpCursorTo(widget_, gfx::PointF(location));
}
void DrmWindowHost::ConfineCursorToBounds(const gfx::Rect& bounds) {
if (cursor_confined_bounds_ == bounds)
return;
cursor_confined_bounds_ = bounds;
cursor_->CommitBoundsChange(widget_, bounds_, bounds);
}
void DrmWindowHost::SetRestoredBoundsInDIP(const gfx::Rect& bounds) {
NOTREACHED();
}
gfx::Rect DrmWindowHost::GetRestoredBoundsInDIP() const {
NOTREACHED();
}
void DrmWindowHost::SetWindowIcons(const gfx::ImageSkia& window_icon,
const gfx::ImageSkia& app_icon) {
NOTREACHED();
}
void DrmWindowHost::SizeConstraintsChanged() {
NOTREACHED();
}
void DrmWindowHost::OnMouseEnter() {
delegate_->OnMouseEnter();
}
bool DrmWindowHost::CanDispatchEvent(const PlatformEvent& event) {
DCHECK(event);
// If there is a grab, capture events here.
gfx::AcceleratedWidget grabber = window_manager_->event_grabber();
if (grabber != gfx::kNullAcceleratedWidget)
return grabber == widget_;
if (event->IsTouchEvent()) {
// Dispatch the event if it is from the touchscreen associated with the
// DrmWindowHost. We cannot check the event's location because if the
// touchscreen has a bezel, touches in the bezel have a location outside of
// |bounds_|.
int64_t display_id =
DeviceDataManager::GetInstance()->GetTargetDisplayForTouchDevice(
event->source_device_id());
if (display_id == display::kInvalidDisplayId)
return false;
DrmDisplayHost* display = display_manager_->GetDisplay(display_id);
if (!display)
return false;
display::DisplaySnapshot* snapshot = display->snapshot();
if (!snapshot->current_mode())
return false;
gfx::Rect display_bounds(snapshot->origin(),
snapshot->current_mode()->size());
return display_bounds == bounds_;
} else if (event->IsLocatedEvent()) {
LocatedEvent* located_event = event->AsLocatedEvent();
return bounds_.Contains(located_event->location());
}
// TODO(spang): For non-ash builds we would need smarter keyboard focus.
return true;
}
uint32_t DrmWindowHost::DispatchEvent(const PlatformEvent& event) {
DCHECK(event);
if (event->IsLocatedEvent()) {
// Make the event location relative to this window's origin.
LocatedEvent* located_event = event->AsLocatedEvent();
if (event->IsMouseEvent()) {
DrmWindowHost* window_on_mouse =
window_manager_->GetWindowAt(located_event->location());
if (window_on_mouse)
window_manager_->MouseOnWindow(window_on_mouse);
}
gfx::PointF location = located_event->location_f();
location -= gfx::Vector2dF(bounds_.OffsetFromOrigin());
located_event->set_location_f(location);
located_event->set_root_location_f(location);
}
DispatchEventFromNativeUiEvent(
event, base::BindOnce(&PlatformWindowDelegate::DispatchEvent,
base::Unretained(delegate_)));
return POST_DISPATCH_STOP_PROPAGATION;
}
void DrmWindowHost::OnGpuProcessLaunched() {}
void DrmWindowHost::OnGpuThreadReady() {
sender_->GpuCreateWindow(widget_, bounds_);
}
void DrmWindowHost::OnGpuThreadRetired() {}
void DrmWindowHost::SendBoundsChange() {
// Update the cursor before the window so that the cursor stays within the
// window bounds when the window size shrinks.
cursor_->CommitBoundsChange(widget_, bounds_, GetCursorConfinedBounds());
sender_->GpuWindowBoundsChanged(widget_, bounds_);
}
} // namespace ui
|