You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
295 lines
9.2 KiB
295 lines
9.2 KiB
/* |
|
SPDX-FileCopyrightText: 2013 Marco Martin <mart@kde.org> |
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later |
|
*/ |
|
|
|
#include "panelconfigview.h" |
|
#include "panelshadows_p.h" |
|
#include "shellcorona.h" |
|
|
|
#include <QAction> |
|
#include <QDebug> |
|
#include <QDir> |
|
#include <QQmlComponent> |
|
#include <QQmlContext> |
|
#include <QQmlEngine> |
|
#include <QScreen> |
|
|
|
#include <KActionCollection> |
|
#include <KWindowSystem> |
|
#include <klocalizedstring.h> |
|
#include <kwindoweffects.h> |
|
|
|
#include <Plasma/Containment> |
|
#include <Plasma/PluginLoader> |
|
|
|
#include <KWayland/Client/plasmashell.h> |
|
#include <KWayland/Client/surface.h> |
|
|
|
//////////////////////////////PanelConfigView |
|
PanelConfigView::PanelConfigView(Plasma::Containment *containment, PanelView *panelView, QWindow *parent) |
|
: ConfigView(containment, parent) |
|
, m_containment(containment) |
|
, m_panelView(panelView) |
|
{ |
|
connect(panelView, &QObject::destroyed, this, &QObject::deleteLater); |
|
|
|
setScreen(panelView->screen()); |
|
|
|
connect(panelView, &QWindow::screenChanged, &m_screenSyncTimer, QOverload<>::of(&QTimer::start)); |
|
m_screenSyncTimer.setSingleShot(true); |
|
m_screenSyncTimer.setInterval(150); |
|
connect(&m_screenSyncTimer, &QTimer::timeout, [=]() { |
|
setScreen(panelView->screen()); |
|
KWindowSystem::setType(winId(), NET::Dock); |
|
KWindowSystem::setState(winId(), NET::KeepAbove); |
|
syncGeometry(); |
|
syncLocation(); |
|
}); |
|
|
|
KWindowSystem::setType(winId(), NET::Dock); |
|
KWindowSystem::setState(winId(), NET::KeepAbove); |
|
KWindowSystem::forceActiveWindow(winId()); |
|
|
|
updateBlurBehindAndContrast(); |
|
connect(&m_theme, &Plasma::Theme::themeChanged, this, &PanelConfigView::updateBlurBehindAndContrast); |
|
|
|
rootContext()->setContextProperty(QStringLiteral("panel"), panelView); |
|
rootContext()->setContextProperty(QStringLiteral("configDialog"), this); |
|
connect(containment, &Plasma::Containment::formFactorChanged, this, &PanelConfigView::syncGeometry); |
|
connect(containment, &Plasma::Containment::locationChanged, this, &PanelConfigView::syncLocation); |
|
} |
|
|
|
PanelConfigView::~PanelConfigView() |
|
{ |
|
} |
|
|
|
void PanelConfigView::init() |
|
{ |
|
setSource(m_containment->corona()->kPackage().fileUrl("panelconfigurationui")); |
|
syncGeometry(); |
|
syncLocation(); |
|
} |
|
|
|
void PanelConfigView::updateBlurBehindAndContrast() |
|
{ |
|
KWindowEffects::enableBlurBehind(this, m_theme.blurBehindEnabled()); |
|
KWindowEffects::enableBackgroundContrast(this, |
|
m_theme.backgroundContrastEnabled(), |
|
m_theme.backgroundContrast(), |
|
m_theme.backgroundIntensity(), |
|
m_theme.backgroundSaturation()); |
|
} |
|
|
|
void PanelConfigView::showAddWidgetDialog() |
|
{ |
|
QAction *addWidgetAction = m_containment->actions()->action(QStringLiteral("add widgets")); |
|
if (addWidgetAction) { |
|
addWidgetAction->trigger(); |
|
} |
|
} |
|
|
|
void PanelConfigView::addPanelSpacer() |
|
{ |
|
ShellCorona *c = qobject_cast<ShellCorona *>(m_containment->corona()); |
|
if (!c) { |
|
return; |
|
} |
|
// Add a spacer at the end *except* if there is exactly one spacer already |
|
// this to trigger the panel centering mode of the spacer in a slightly more discoverable way |
|
c->evaluateScript(QStringLiteral("panel = panelById(") + QString::number(m_containment->id()) |
|
+ QStringLiteral(");" |
|
"var spacers = panel.widgets(\"org.kde.plasma.panelspacer\");" |
|
"if (spacers.length === 1) {" |
|
" panel.addWidget(\"org.kde.plasma.panelspacer\", 0,0,1,1);" |
|
"} else {" |
|
" panel.addWidget(\"org.kde.plasma.panelspacer\");" |
|
"}")); |
|
} |
|
|
|
void PanelConfigView::syncGeometry() |
|
{ |
|
if (!m_containment || !rootObject()) { |
|
return; |
|
} |
|
|
|
if (m_containment->formFactor() == Plasma::Types::Vertical) { |
|
QSize s(rootObject()->implicitWidth(), screen()->size().height()); |
|
resize(s); |
|
setMinimumSize(s); |
|
setMaximumSize(s); |
|
|
|
if (m_containment->location() == Plasma::Types::LeftEdge) { |
|
setPosition(m_panelView->geometry().right(), screen()->geometry().top()); |
|
} else if (m_containment->location() == Plasma::Types::RightEdge) { |
|
setPosition(m_panelView->geometry().left() - width(), screen()->geometry().top()); |
|
} |
|
|
|
} else { |
|
QSize s(screen()->size().width(), rootObject()->implicitHeight()); |
|
resize(s); |
|
setMinimumSize(s); |
|
setMaximumSize(s); |
|
|
|
if (m_containment->location() == Plasma::Types::TopEdge) { |
|
setPosition(screen()->geometry().left(), m_panelView->geometry().bottom()); |
|
} else if (m_containment->location() == Plasma::Types::BottomEdge) { |
|
setPosition(screen()->geometry().left(), m_panelView->geometry().top() - height()); |
|
} |
|
} |
|
} |
|
|
|
void PanelConfigView::syncLocation() |
|
{ |
|
if (!m_containment) { |
|
return; |
|
} |
|
|
|
KWindowEffects::SlideFromLocation slideLocation = KWindowEffects::NoEdge; |
|
Plasma::FrameSvg::EnabledBorders enabledBorders = Plasma::FrameSvg::AllBorders; |
|
|
|
switch (m_containment->location()) { |
|
case Plasma::Types::TopEdge: |
|
slideLocation = KWindowEffects::TopEdge; |
|
enabledBorders = Plasma::FrameSvg::BottomBorder; |
|
break; |
|
case Plasma::Types::RightEdge: |
|
slideLocation = KWindowEffects::RightEdge; |
|
enabledBorders = Plasma::FrameSvg::LeftBorder; |
|
break; |
|
case Plasma::Types::BottomEdge: |
|
slideLocation = KWindowEffects::BottomEdge; |
|
enabledBorders = Plasma::FrameSvg::TopBorder; |
|
break; |
|
case Plasma::Types::LeftEdge: |
|
slideLocation = KWindowEffects::LeftEdge; |
|
enabledBorders = Plasma::FrameSvg::RightBorder; |
|
break; |
|
default: |
|
break; |
|
} |
|
|
|
KWindowEffects::slideWindow(this, slideLocation, -1); |
|
|
|
if (m_enabledBorders != enabledBorders) { |
|
m_enabledBorders = enabledBorders; |
|
|
|
PanelShadows::self()->setEnabledBorders(this, enabledBorders); |
|
|
|
emit enabledBordersChanged(); |
|
} |
|
} |
|
|
|
void PanelConfigView::showEvent(QShowEvent *ev) |
|
{ |
|
QQuickWindow::showEvent(ev); |
|
|
|
KWindowSystem::setType(winId(), NET::Dock); |
|
setFlags(Qt::WindowFlags((flags() | Qt::FramelessWindowHint) & (~Qt::WindowDoesNotAcceptFocus))); |
|
KWindowSystem::setState(winId(), NET::KeepAbove); |
|
KWindowSystem::forceActiveWindow(winId()); |
|
updateBlurBehindAndContrast(); |
|
syncGeometry(); |
|
syncLocation(); |
|
|
|
// this because due to Qt xcb implementation the actual flags gets set only after a while after the window is actually visible |
|
m_screenSyncTimer.start(); |
|
|
|
if (m_containment) { |
|
m_containment->setUserConfiguring(true); |
|
} |
|
|
|
PanelShadows::self()->addWindow(this, m_enabledBorders); |
|
} |
|
|
|
void PanelConfigView::hideEvent(QHideEvent *ev) |
|
{ |
|
QQuickWindow::hideEvent(ev); |
|
|
|
if (m_containment) { |
|
m_containment->setUserConfiguring(false); |
|
} |
|
deleteLater(); |
|
} |
|
|
|
void PanelConfigView::focusOutEvent(QFocusEvent *ev) |
|
{ |
|
const QWindow *focusWindow = QGuiApplication::focusWindow(); |
|
|
|
if (focusWindow && ((focusWindow->flags().testFlag(Qt::Popup)) || focusWindow->objectName() == QLatin1String("QMenuClassWindow"))) { |
|
return; |
|
} |
|
Q_UNUSED(ev) |
|
close(); |
|
} |
|
|
|
void PanelConfigView::moveEvent(QMoveEvent *ev) |
|
{ |
|
if (m_shellSurface) { |
|
m_shellSurface->setPosition(ev->pos()); |
|
} |
|
} |
|
|
|
bool PanelConfigView::event(QEvent *e) |
|
{ |
|
if (e->type() == QEvent::PlatformSurface) { |
|
switch (static_cast<QPlatformSurfaceEvent *>(e)->surfaceEventType()) { |
|
case QPlatformSurfaceEvent::SurfaceCreated: |
|
KWindowSystem::setState(winId(), NET::SkipTaskbar | NET::SkipPager); |
|
|
|
if (m_shellSurface) { |
|
break; |
|
} |
|
if (ShellCorona *c = qobject_cast<ShellCorona *>(m_containment->corona())) { |
|
using namespace KWayland::Client; |
|
PlasmaShell *interface = c->waylandPlasmaShellInterface(); |
|
if (!interface) { |
|
break; |
|
} |
|
Surface *s = Surface::fromWindow(this); |
|
if (!s) { |
|
break; |
|
} |
|
m_shellSurface = interface->createSurface(s, this); |
|
} |
|
break; |
|
case QPlatformSurfaceEvent::SurfaceAboutToBeDestroyed: |
|
delete m_shellSurface; |
|
m_shellSurface = nullptr; |
|
PanelShadows::self()->removeWindow(this); |
|
break; |
|
} |
|
} |
|
|
|
return PlasmaQuick::ConfigView::event(e); |
|
} |
|
|
|
void PanelConfigView::setVisibilityMode(PanelView::VisibilityMode mode) |
|
{ |
|
m_panelView->setVisibilityMode(mode); |
|
emit visibilityModeChanged(); |
|
} |
|
|
|
PanelView::VisibilityMode PanelConfigView::visibilityMode() const |
|
{ |
|
return m_panelView->visibilityMode(); |
|
} |
|
|
|
void PanelConfigView::setOpacityMode(PanelView::OpacityMode mode) |
|
{ |
|
m_panelView->setOpacityMode(mode); |
|
emit opacityModeChanged(); |
|
} |
|
|
|
PanelView::OpacityMode PanelConfigView::opacityMode() const |
|
{ |
|
return m_panelView->opacityMode(); |
|
} |
|
|
|
Plasma::FrameSvg::EnabledBorders PanelConfigView::enabledBorders() const |
|
{ |
|
return m_enabledBorders; |
|
} |
|
|
|
#include "moc_panelconfigview.cpp"
|
|
|