Debug for QML components
[apps/homescreen.git] / homescreen / src / shell.h
1 /*
2  * Copyright (c) 2019 Collabora Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef SHELLHANDLER_H
18 #define SHELLHANDLER_H
19
20 #include <QObject>
21 #include <QString>
22 #include <QScreen>
23 #include <QWindow>
24 #include <memory>
25 #include "wayland-agl-shell-client-protocol.h"
26
27 /*
28  * Basic type to wrap the agl_shell wayland object into a QObject, so that it
29  * can be used in callbacks from QML.
30  */
31
32 class Shell : public QObject
33 {
34     Q_OBJECT
35     std::shared_ptr<struct agl_shell> shell;
36 public:
37     Shell(std::shared_ptr<struct agl_shell> shell, QObject *parent = nullptr) :
38         QObject(parent), shell(shell) 
39     {}
40 public slots:
41     void activate_app(QWindow *win, const QString &app_id);
42 };
43
44 #endif // SHELLHANDLER_H