filemanager/desktop/desktopview.cpp

95 lines
2.9 KiB
C++
Raw Normal View History

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>
2021-09-05 14:39:56 -07:00
#include <QGuiApplication>
2021-03-16 00:02:20 -07:00
#include <QScreen>
#include <KWindowSystem>
2021-09-05 14:39:56 -07:00
DesktopView::DesktopView(QScreen *screen, QQuickView *parent)
2021-03-16 00:02:20 -07:00
: QQuickView(parent)
2021-09-05 14:39:56 -07:00
, m_screen(screen)
2021-03-16 00:02:20 -07:00
{
2021-09-05 14:39:56 -07:00
m_screenRect = m_screen->geometry();
m_screenAvailableRect = m_screen->availableVirtualGeometry();
qDebug() << screen->name() << m_screenAvailableRect;
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-09-05 14:39:56 -07:00
setScreen(m_screen);
2021-03-16 00:02:20 -07:00
setResizeMode(QQuickView::SizeRootObjectToView);
onGeometryChanged();
2021-09-05 14:39:56 -07:00
onPrimaryScreenChanged(QGuiApplication::primaryScreen());
// 主屏改变
connect(qGuiApp, &QGuiApplication::primaryScreenChanged, this, &DesktopView::onPrimaryScreenChanged);
2021-03-16 00:02:20 -07:00
2021-09-05 14:39:56 -07:00
connect(m_screen, &QScreen::virtualGeometryChanged, this, &DesktopView::onGeometryChanged);
connect(m_screen, &QScreen::geometryChanged, this, &DesktopView::onGeometryChanged);
connect(m_screen, &QScreen::availableGeometryChanged, this, &DesktopView::onAvailableGeometryChanged);
connect(m_screen, &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;
}
2021-09-05 14:39:56 -07:00
void DesktopView::onPrimaryScreenChanged(QScreen *screen)
{
bool isPrimaryScreen = m_screen->name() == screen->name();
setSource(isPrimaryScreen ? QStringLiteral("qrc:/qml/Desktop/Main.qml")
: QStringLiteral("qrc:/qml/Desktop/Wallpaper.qml"));
}
2021-03-16 00:02:20 -07:00
void DesktopView::onGeometryChanged()
{
2021-09-05 14:39:56 -07:00
m_screenRect = m_screen->geometry().adjusted(0, 0, 1, 1);
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);
2021-09-05 14:39:56 -07:00
m_screenAvailableRect = m_screen->availableVirtualGeometry();
2021-03-16 00:02:20 -07:00
emit screenAvailableGeometryChanged();
}