File indexing completed on 2024-04-28 16:49:38

0001 /*
0002  *   SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
0003  *
0004  *   SPDX-License-Identifier: LGPL-3.0-or-later
0005  */
0006 
0007 #ifndef LAYERSHELLQTSHELL_H
0008 #define LAYERSHELLQTSHELL_H
0009 
0010 #include "layershellqt_export.h"
0011 #include "window.h"
0012 #include <QString>
0013 
0014 namespace LayerShellQt
0015 {
0016 /**
0017  * Sets the right environment so the shells created from now on use wlr-layer-shell.
0018  */
0019 class LAYERSHELLQT_EXPORT Shell
0020 {
0021 public:
0022     static void useLayerShell();
0023 };
0024 
0025 }
0026 
0027 #endif