93e0265e4e
Once in a while, we receive complaints from other fellow KDE developers about the file organization of kwin. This change addresses some of those complaints by moving all of source code in a separate directory, src/, thus making the project structure more traditional. Things such as tests are kept in their own toplevel directories. This change may wreak havoc on merge requests that add new files to kwin, but if a patch modifies an already existing file, git should be smart enough to figure out that the file has been relocated. We may potentially split the src/ directory further to make navigating the source code easier, but hopefully this is good enough already.
41 lines
1.1 KiB
C++
41 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& reg) = 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
|