2021-03-29 01:51:34 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 CutefishOS Team.
|
|
|
|
*
|
|
|
|
* Author: revenmartin <revenmartin@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-03-16 00:02:20 -07:00
|
|
|
#include "desktopview.h"
|
2021-07-27 12:43:41 -07:00
|
|
|
#include "thumbnailer/thumbnailprovider.h"
|
2021-03-16 00:02:20 -07:00
|
|
|
|
|
|
|
#include <QQmlEngine>
|
|
|
|
#include <QQmlContext>
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QScreen>
|
|
|
|
|
|
|
|
#include <KWindowSystem>
|
|
|
|
|
|
|
|
DesktopView::DesktopView(QQuickView *parent)
|
|
|
|
: QQuickView(parent)
|
|
|
|
{
|
|
|
|
m_screenRect = qApp->primaryScreen()->geometry();
|
2021-06-01 22:25:04 -07:00
|
|
|
m_screenAvailableRect = qApp->primaryScreen()->availableVirtualGeometry();
|
2021-03-16 00:02:20 -07:00
|
|
|
|
|
|
|
KWindowSystem::setType(winId(), NET::Desktop);
|
|
|
|
KWindowSystem::setState(winId(), NET::KeepBelow);
|
|
|
|
|
|
|
|
engine()->rootContext()->setContextProperty("desktopView", this);
|
2021-07-27 12:43:41 -07:00
|
|
|
engine()->addImageProvider("thumbnailer", new ThumbnailProvider());
|
2021-03-16 00:02:20 -07:00
|
|
|
|
2021-04-04 08:38:01 -07:00
|
|
|
setTitle(tr("Desktop"));
|
2021-03-16 00:02:20 -07:00
|
|
|
setScreen(qApp->primaryScreen());
|
|
|
|
setResizeMode(QQuickView::SizeRootObjectToView);
|
2021-06-15 21:43:43 -07:00
|
|
|
setSource(QStringLiteral("qrc:/qml/Desktop/Main.qml"));
|
2021-03-16 00:02:20 -07:00
|
|
|
|
|
|
|
onGeometryChanged();
|
|
|
|
|
2021-06-01 22:25:04 -07:00
|
|
|
connect(qApp->primaryScreen(), &QScreen::virtualGeometryChanged, this, &DesktopView::onGeometryChanged);
|
|
|
|
connect(qApp->primaryScreen(), &QScreen::geometryChanged, this, &DesktopView::onGeometryChanged);
|
|
|
|
connect(qApp->primaryScreen(), &QScreen::availableGeometryChanged, this, &DesktopView::onAvailableGeometryChanged);
|
|
|
|
connect(qApp->primaryScreen(), &QScreen::virtualGeometryChanged, this, &DesktopView::onAvailableGeometryChanged);
|
2021-03-16 00:02:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
QRect DesktopView::screenRect()
|
|
|
|
{
|
|
|
|
return m_screenRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect DesktopView::screenAvailableRect()
|
|
|
|
{
|
|
|
|
return m_screenAvailableRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DesktopView::onGeometryChanged()
|
|
|
|
{
|
|
|
|
m_screenRect = qApp->primaryScreen()->geometry();
|
2021-06-15 21:43:43 -07:00
|
|
|
setGeometry(m_screenRect);
|
2021-03-16 00:02:20 -07:00
|
|
|
emit screenRectChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DesktopView::onAvailableGeometryChanged(const QRect &geometry)
|
|
|
|
{
|
2021-06-01 22:25:04 -07:00
|
|
|
Q_UNUSED(geometry);
|
|
|
|
|
|
|
|
m_screenAvailableRect = qApp->primaryScreen()->availableVirtualGeometry();
|
2021-03-16 00:02:20 -07:00
|
|
|
emit screenAvailableGeometryChanged();
|
|
|
|
}
|