[go: nahoru, domu]

blob: 07f415bdf19c0c9546df7a4895545b0542b0c686 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_EXO_CUSTOM_WINDOW_STATE_DELEGATE_H_
#define COMPONENTS_EXO_CUSTOM_WINDOW_STATE_DELEGATE_H_
#include "ash/wm/window_state_delegate.h"
#include "base/memory/raw_ptr.h"
namespace exo {
class ShellSurface;
// CustomWindowStateDelegate for ShellSurface to override default fullscreen
// behavior and optionally provide a resize presentation time recorder for
// ShellSurface.
class CustomWindowStateDelegate : public ash::WindowStateDelegate {
public:
CustomWindowStateDelegate();
explicit CustomWindowStateDelegate(ShellSurface* shell_surface);
CustomWindowStateDelegate(const CustomWindowStateDelegate&) = delete;
CustomWindowStateDelegate& operator=(const CustomWindowStateDelegate&) =
delete;
~CustomWindowStateDelegate() override;
// ash::WindowStateDelegate:
bool ToggleFullscreen(ash::WindowState* window_state) override;
void ToggleLockedFullscreen(ash::WindowState* window_state) override;
std::unique_ptr<ash::PresentationTimeRecorder> OnDragStarted(
int component) override;
void OnDragFinished(bool cancel, const gfx::PointF& location) override;
private:
const raw_ptr<ShellSurface> shell_surface_;
};
} // namespace exo
#endif // COMPONENTS_EXO_CUSTOM_WINDOW_STATE_DELEGATE_H_