2014-05-23 19:47:07 +02:00
|
|
|
// Copyright 2014 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright 2014 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.
|
|
|
|
|
2015-11-17 19:20:13 +01:00
|
|
|
#ifndef CEF_LIBCEF_BROWSER_NATIVE_WINDOW_X11_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_NATIVE_WINDOW_X11_H_
|
2014-05-23 19:47:07 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-10-08 21:54:42 +02:00
|
|
|
#include <memory>
|
2014-05-23 19:47:07 +02:00
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
#include "include/internal/cef_ptr.h"
|
2014-05-23 19:47:07 +02:00
|
|
|
|
2014-06-06 21:04:21 +02:00
|
|
|
#include "base/memory/weak_ptr.h"
|
2014-05-23 19:47:07 +02:00
|
|
|
#include "ui/events/platform/platform_event_dispatcher.h"
|
2015-01-09 18:22:10 +01:00
|
|
|
#include "ui/gfx/geometry/rect.h"
|
2021-01-28 00:13:12 +01:00
|
|
|
#include "ui/gfx/x/connection.h"
|
2014-05-23 19:47:07 +02:00
|
|
|
#include "ui/gfx/x/x11_atom_cache.h"
|
2020-10-08 21:54:42 +02:00
|
|
|
|
2021-01-28 00:13:12 +01:00
|
|
|
namespace x11 {
|
2020-10-08 21:54:42 +02:00
|
|
|
class XScopedEventSelector;
|
|
|
|
}
|
2014-05-23 19:47:07 +02:00
|
|
|
|
2014-10-29 19:14:47 +01:00
|
|
|
namespace views {
|
2020-08-29 00:39:23 +02:00
|
|
|
class DesktopWindowTreeHostLinux;
|
2014-10-29 19:14:47 +01:00
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
class CefBrowserHostBase;
|
|
|
|
|
2014-05-23 19:47:07 +02:00
|
|
|
// Object wrapper for an X11 Window.
|
|
|
|
// Based on WindowTreeHostX11 and DesktopWindowTreeHostX11.
|
2020-03-30 22:13:42 +02:00
|
|
|
class CefWindowX11 : public ui::PlatformEventDispatcher,
|
2021-01-28 00:13:12 +01:00
|
|
|
public x11::EventObserver {
|
2014-05-23 19:47:07 +02:00
|
|
|
public:
|
2020-09-25 03:40:47 +02:00
|
|
|
CefWindowX11(CefRefPtr<CefBrowserHostBase> browser,
|
2020-10-08 21:54:42 +02:00
|
|
|
x11::Window parent_xwindow,
|
2019-02-27 20:18:16 +01:00
|
|
|
const gfx::Rect& bounds,
|
|
|
|
const std::string& title);
|
2021-12-06 21:40:25 +01:00
|
|
|
|
|
|
|
CefWindowX11(const CefWindowX11&) = delete;
|
|
|
|
CefWindowX11& operator=(const CefWindowX11&) = delete;
|
|
|
|
|
2014-11-12 20:25:15 +01:00
|
|
|
~CefWindowX11() override;
|
2014-05-23 19:47:07 +02:00
|
|
|
|
|
|
|
void Close();
|
|
|
|
|
|
|
|
void Show();
|
|
|
|
void Hide();
|
|
|
|
|
2014-06-06 21:04:21 +02:00
|
|
|
void Focus();
|
|
|
|
|
2014-05-23 19:47:07 +02:00
|
|
|
void SetBounds(const gfx::Rect& bounds);
|
|
|
|
|
|
|
|
gfx::Rect GetBoundsInScreen();
|
|
|
|
|
2020-08-29 00:39:23 +02:00
|
|
|
views::DesktopWindowTreeHostLinux* GetHost();
|
2014-10-29 19:14:47 +01:00
|
|
|
|
2014-05-23 19:47:07 +02:00
|
|
|
// ui::PlatformEventDispatcher methods:
|
2014-11-12 20:25:15 +01:00
|
|
|
bool CanDispatchEvent(const ui::PlatformEvent& event) override;
|
|
|
|
uint32_t DispatchEvent(const ui::PlatformEvent& event) override;
|
2014-05-23 19:47:07 +02:00
|
|
|
|
2021-01-28 00:13:12 +01:00
|
|
|
// x11::EventObserver methods:
|
|
|
|
void OnEvent(const x11::Event& event) override;
|
2020-03-30 22:13:42 +02:00
|
|
|
|
2020-10-08 21:54:42 +02:00
|
|
|
x11::Window xwindow() const { return xwindow_; }
|
2014-05-23 19:47:07 +02:00
|
|
|
gfx::Rect bounds() const { return bounds_; }
|
|
|
|
|
2018-02-28 05:47:36 +01:00
|
|
|
bool TopLevelAlwaysOnTop() const;
|
|
|
|
|
2014-05-23 19:47:07 +02:00
|
|
|
private:
|
2014-06-06 21:04:21 +02:00
|
|
|
void ContinueFocus();
|
|
|
|
|
2021-01-28 00:13:12 +01:00
|
|
|
void ProcessXEvent(const x11::Event& xev);
|
2020-03-30 22:13:42 +02:00
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
CefRefPtr<CefBrowserHostBase> browser_;
|
2014-05-23 19:47:07 +02:00
|
|
|
|
|
|
|
// The display and the native X window hosting the root window.
|
2020-10-08 21:54:42 +02:00
|
|
|
x11::Connection* const connection_;
|
|
|
|
x11::Window parent_xwindow_;
|
|
|
|
x11::Window xwindow_;
|
|
|
|
|
|
|
|
// Events selected on |xwindow_|.
|
2021-01-28 00:13:12 +01:00
|
|
|
std::unique_ptr<x11::XScopedEventSelector> xwindow_events_;
|
2014-05-23 19:47:07 +02:00
|
|
|
|
|
|
|
// Is the window mapped to the screen?
|
2020-10-08 21:54:42 +02:00
|
|
|
bool window_mapped_ = false;
|
2014-05-23 19:47:07 +02:00
|
|
|
|
|
|
|
// The bounds of |xwindow_|.
|
|
|
|
gfx::Rect bounds_;
|
|
|
|
|
2020-10-08 21:54:42 +02:00
|
|
|
bool focus_pending_ = false;
|
2014-06-06 21:04:21 +02:00
|
|
|
|
|
|
|
// Must always be the last member.
|
|
|
|
base::WeakPtrFactory<CefWindowX11> weak_ptr_factory_;
|
2014-05-23 19:47:07 +02:00
|
|
|
};
|
|
|
|
|
2015-11-17 19:20:13 +01:00
|
|
|
#endif // CEF_LIBCEF_BROWSER_NATIVE_WINDOW_X11_H_
|