2015-11-17 19:20:13 +01:00
|
|
|
// Copyright 2015 The Chromium Embedded Framework Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_NATIVE_BROWSER_PLATFORM_DELEGATE_NATIVE_LINUX_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_NATIVE_BROWSER_PLATFORM_DELEGATE_NATIVE_LINUX_H_
|
|
|
|
|
2020-01-23 22:58:01 +01:00
|
|
|
#include "libcef/browser/native/browser_platform_delegate_native_aura.h"
|
2015-11-17 19:20:13 +01:00
|
|
|
|
2021-12-16 23:35:54 +01:00
|
|
|
#include "ui/ozone/buildflags.h"
|
|
|
|
|
|
|
|
#if BUILDFLAG(OZONE_PLATFORM_X11)
|
2015-11-17 19:20:13 +01:00
|
|
|
class CefWindowX11;
|
2019-04-23 19:00:14 +02:00
|
|
|
#endif
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
// Windowed browser implementation for Linux.
|
2017-05-17 11:29:28 +02:00
|
|
|
class CefBrowserPlatformDelegateNativeLinux
|
2020-01-23 22:58:01 +01:00
|
|
|
: public CefBrowserPlatformDelegateNativeAura {
|
2015-11-17 19:20:13 +01:00
|
|
|
public:
|
2017-04-20 21:28:17 +02:00
|
|
|
CefBrowserPlatformDelegateNativeLinux(const CefWindowInfo& window_info,
|
2020-07-04 20:21:34 +02:00
|
|
|
SkColor background_color);
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
// CefBrowserPlatformDelegate methods:
|
2020-09-25 03:40:47 +02:00
|
|
|
void BrowserDestroyed(CefBrowserHostBase* browser) override;
|
2015-11-17 19:20:13 +01:00
|
|
|
bool CreateHostWindow() override;
|
|
|
|
void CloseHostWindow() override;
|
|
|
|
CefWindowHandle GetHostWindowHandle() const override;
|
|
|
|
views::Widget* GetWindowWidget() const override;
|
2021-09-27 09:50:07 +02:00
|
|
|
void SetFocus(bool setFocus) override;
|
2015-11-17 19:20:13 +01:00
|
|
|
void NotifyMoveOrResizeStarted() override;
|
|
|
|
void SizeTo(int width, int height) override;
|
|
|
|
void ViewText(const std::string& text) override;
|
2018-11-03 02:15:09 +01:00
|
|
|
bool HandleKeyboardEvent(
|
2015-11-17 19:20:13 +01:00
|
|
|
const content::NativeWebKeyboardEvent& event) override;
|
|
|
|
CefEventHandle GetEventHandle(
|
|
|
|
const content::NativeWebKeyboardEvent& event) const override;
|
|
|
|
|
2020-01-23 22:58:01 +01:00
|
|
|
// CefBrowserPlatformDelegateNativeAura methods:
|
|
|
|
ui::KeyEvent TranslateUiKeyEvent(const CefKeyEvent& key_event) const override;
|
2020-04-08 17:43:39 +02:00
|
|
|
content::NativeWebKeyboardEvent TranslateWebKeyEvent(
|
|
|
|
const CefKeyEvent& key_event) const override;
|
2015-11-17 19:20:13 +01:00
|
|
|
|
2020-01-23 22:58:01 +01:00
|
|
|
private:
|
2015-11-17 19:20:13 +01:00
|
|
|
// True if the host window has been created.
|
2022-05-13 13:38:41 +02:00
|
|
|
bool host_window_created_ = false;
|
2015-11-17 19:20:13 +01:00
|
|
|
|
2021-12-16 23:35:54 +01:00
|
|
|
#if BUILDFLAG(OZONE_PLATFORM_X11)
|
2019-04-23 19:00:14 +02:00
|
|
|
CefWindowX11* window_x11_ = nullptr;
|
|
|
|
#endif
|
2015-11-17 19:20:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_NATIVE_BROWSER_PLATFORM_DELEGATE_NATIVE_LINUX_H_
|