7096e3ead8
The .clang-format file is based on the one in ECM except the following style options: - AlwaysBreakBeforeMultilineStrings - BinPackArguments - BinPackParameters - ColumnLimit - BreakBeforeBraces - KeepEmptyLinesAtTheStartOfBlocks
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2011 Arthur Arlt <a.arlt@stud.uni-heidelberg.de>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KWIN_OVERLAYWINDOW_H
|
|
#define KWIN_OVERLAYWINDOW_H
|
|
|
|
#include <QRegion>
|
|
// xcb
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <kwin_export.h>
|
|
|
|
namespace KWin
|
|
{
|
|
class KWIN_EXPORT OverlayWindow
|
|
{
|
|
public:
|
|
virtual ~OverlayWindow();
|
|
/// Creates XComposite overlay window, call initOverlay() afterwards
|
|
virtual bool create() = 0;
|
|
/// Init overlay and the destination window in it
|
|
virtual void setup(xcb_window_t window) = 0;
|
|
virtual void show() = 0;
|
|
virtual void hide() = 0; // hides and resets overlay window
|
|
virtual void setShape(const QRegion ®) = 0;
|
|
virtual void resize(const QSize &size) = 0;
|
|
/// Destroys XComposite overlay window
|
|
virtual void destroy() = 0;
|
|
virtual xcb_window_t window() const = 0;
|
|
virtual bool isVisible() const = 0;
|
|
virtual void setVisibility(bool visible) = 0;
|
|
|
|
protected:
|
|
OverlayWindow();
|
|
};
|
|
} // namespace
|
|
|
|
#endif // KWIN_OVERLAYWINDOW_H
|