blob: 89834e7badbf1ee249d0bf3db2df6ce4ca9d29f8 [file] [log] [blame]
// Copyright 2020 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.
#ifndef UI_OZONE_PLATFORM_WAYLAND_HOST_GTK_UI_DELEGATE_WAYLAND_H_
#define UI_OZONE_PLATFORM_WAYLAND_HOST_GTK_UI_DELEGATE_WAYLAND_H_
#include "ui/gfx/native_widget_types.h"
#include "ui/gtk/gtk_ui_delegate.h"
namespace ui {
class WaylandConnection;
class GtkUiDelegateWayland : public GtkUiDelegate {
public:
explicit GtkUiDelegateWayland(WaylandConnection* connection);
GtkUiDelegateWayland(const GtkUiDelegateWayland&) = delete;
GtkUiDelegateWayland& operator=(const GtkUiDelegateWayland&) = delete;
~GtkUiDelegateWayland() override;
// GtkUiDelegate:
GdkKeymap* GetGdkKeymap() override;
GdkWindow* GetGdkWindow(gfx::AcceleratedWidget window_id) override;
bool SetGdkWindowTransientFor(GdkWindow* window,
gfx::AcceleratedWidget parent) override;
private:
WaylandConnection* const connection_;
};
} // namespace ui
#endif // UI_OZONE_PLATFORM_WAYLAND_HOST_GTK_UI_DELEGATE_WAYLAND_H_