/* SPDX-FileCopyrightText: 2021 Vlad Zahorodnii SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once #include #include #include "expolayout.h" namespace KWin { class OverviewEffect; class OverviewScreenView : public EffectQuickScene { Q_OBJECT public: OverviewScreenView(EffectScreen *screen, QWindow *renderWindow, OverviewEffect *effect); bool isDirty() const; void markDirty(); void resetDirty(); public Q_SLOTS: void stop(); void scheduleRepaint(); private: bool m_dirty = false; }; class OverviewEffect : public Effect { Q_OBJECT Q_PROPERTY(int animationDuration READ animationDuration NOTIFY animationDurationChanged) Q_PROPERTY(ExpoLayout::LayoutMode layout READ layout NOTIFY layoutChanged) public: OverviewEffect(); ~OverviewEffect() override; ExpoLayout::LayoutMode layout() const; void setLayout(ExpoLayout::LayoutMode layout); int animationDuration() const; void setAnimationDuration(int duration); void paintScreen(int mask, const QRegion ®ion, ScreenPaintData &data) override; void postPaintScreen() override; bool isActive() const override; bool borderActivated(ElectricBorder border) override; void reconfigure(ReconfigureFlags flags) override; void windowInputMouseEvent(QEvent *event) override; void grabbedKeyboardEvent(QKeyEvent *keyEvent) override; static bool supported(); Q_SIGNALS: void animationDurationChanged(); void layoutChanged(); public Q_SLOTS: void activate(); void deactivate(); void toggle(); private: void handleScreenAdded(EffectScreen *screen); void handleScreenRemoved(EffectScreen *screen); void realDeactivate(); void createScreenView(EffectScreen *screen); QScopedPointer m_dummyWindow; QTimer *m_shutdownTimer; QHash m_screenViews; EffectScreen *m_paintedScreen; QAction *m_toggleAction = nullptr; QList m_toggleShortcut; QList m_borderActivate; QList m_touchBorderActivate; bool m_activated = false; int m_animationDuration = 300; ExpoLayout::LayoutMode m_layout = ExpoLayout::LayoutNatural; }; } // namespace KWin