Unity 8
AvailableDesktopArea.h
1 /*
2  * Copyright (C) 2017 Canonical, Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it under
5  * the terms of the GNU Lesser General Public License version 3, as published by
6  * the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
10  * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef AVAILABLEDESKTOPAREA_H
18 #define AVAILABLEDESKTOPAREA_H
19 
20 #include <QQuickItem>
21 
27 class AvailableDesktopArea : public QQuickItem
28 {
29  Q_OBJECT
30 public:
31  AvailableDesktopArea(QQuickItem *parent = nullptr);
32 protected:
33  void itemChange(ItemChange change, const ItemChangeData &value) override;
34 private Q_SLOTS:
35  void updatePlatformWindowProperty();
36 };
37 
38 #endif // AVAILABLEDESKTOPAREA_H
Used to inform qtmir/miral about the available desktop area of shell.