├── .gitignore ├── .gitlab-ci.yml ├── .kde-ci.yml ├── .reuse └── dep5 ├── CMakeLists.txt ├── LICENSES ├── BSD-3-Clause.txt ├── CC0-1.0.txt ├── LGPL-2.1-only.txt ├── LGPL-3.0-only.txt ├── LGPL-3.0-or-later.txt ├── LicenseRef-KDE-Accepted-LGPL.txt └── MIT.txt ├── LayerShellQtConfig.cmake.in ├── README.md ├── README.md.license ├── metainfo.yaml ├── src ├── CMakeLists.txt ├── declarative │ ├── CMakeLists.txt │ └── types.h ├── interfaces │ ├── shell.cpp │ ├── shell.h │ ├── window.cpp │ └── window.h ├── layer-shell.json ├── layer-shell.json.license ├── qwaylandlayershellintegration.cpp ├── qwaylandlayershellintegration_p.h ├── qwaylandlayershellintegrationplugin.cpp ├── qwaylandlayersurface.cpp ├── qwaylandlayersurface_p.h ├── qwaylandxdgactivationv1.cpp ├── qwaylandxdgactivationv1_p.h ├── wlr-layer-shell-unstable-v1.xml └── wlr-layer-shell-unstable-v1.xml.license └── tests ├── CMakeLists.txt ├── become-layershell.qml ├── main.cpp └── quicktest.qml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/.kde-ci.yml -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/LICENSES/LGPL-2.1-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/LICENSES/LGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-KDE-Accepted-LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LayerShellQtConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/LayerShellQtConfig.cmake.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/README.md -------------------------------------------------------------------------------- /README.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/README.md.license -------------------------------------------------------------------------------- /metainfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/metainfo.yaml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/declarative/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/declarative/CMakeLists.txt -------------------------------------------------------------------------------- /src/declarative/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/declarative/types.h -------------------------------------------------------------------------------- /src/interfaces/shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/interfaces/shell.cpp -------------------------------------------------------------------------------- /src/interfaces/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/interfaces/shell.h -------------------------------------------------------------------------------- /src/interfaces/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/interfaces/window.cpp -------------------------------------------------------------------------------- /src/interfaces/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/interfaces/window.h -------------------------------------------------------------------------------- /src/layer-shell.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "layer-shell" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/layer-shell.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/layer-shell.json.license -------------------------------------------------------------------------------- /src/qwaylandlayershellintegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/qwaylandlayershellintegration.cpp -------------------------------------------------------------------------------- /src/qwaylandlayershellintegration_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/qwaylandlayershellintegration_p.h -------------------------------------------------------------------------------- /src/qwaylandlayershellintegrationplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/qwaylandlayershellintegrationplugin.cpp -------------------------------------------------------------------------------- /src/qwaylandlayersurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/qwaylandlayersurface.cpp -------------------------------------------------------------------------------- /src/qwaylandlayersurface_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/qwaylandlayersurface_p.h -------------------------------------------------------------------------------- /src/qwaylandxdgactivationv1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/qwaylandxdgactivationv1.cpp -------------------------------------------------------------------------------- /src/qwaylandxdgactivationv1_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/qwaylandxdgactivationv1_p.h -------------------------------------------------------------------------------- /src/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/src/wlr-layer-shell-unstable-v1.xml -------------------------------------------------------------------------------- /src/wlr-layer-shell-unstable-v1.xml.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2017 Drew DeVault 2 | SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/become-layershell.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/tests/become-layershell.qml -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/quicktest.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/layer-shell-qt/HEAD/tests/quicktest.qml --------------------------------------------------------------------------------