filemanager/desktop/desktopview.cpp

83 lines
2.6 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-09-26 21:24:42 -07:00
#include "dockdbusinterface.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();
this->setFlag(Qt::FramelessWindowHint);
this->setColor(QColor(Qt::transparent));
2021-03-16 00:02:20 -07:00
KWindowSystem::setType(winId(), NET::Desktop);
KWindowSystem::setState(winId(), NET::KeepBelow);
engine()->rootContext()->setContextProperty("desktopView", this);
2021-09-26 21:24:42 -07:00
engine()->rootContext()->setContextProperty("Dock", DockDBusInterface::self());
QWindow::fromWinId(winId())->setOpacity(0.99);
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);
2021-03-16 00:02:20 -07:00
}
QRect DesktopView::screenRect()
{
return m_screenRect;
}
2021-09-05 14:39:56 -07:00
void DesktopView::onPrimaryScreenChanged(QScreen *screen)
{
bool isPrimaryScreen = m_screen->name() == screen->name();
2022-03-29 08:02:29 -07:00
onGeometryChanged();
2021-09-05 14:39:56 -07:00
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();
}