d2fb4147fc
Things such as Output, InputDevice and so on are made to be multi-purpose. In order to make this separation more clear, this change moves that code in the core directory. Some things still link to the abstraction level above (kwin), they can be tackled in future refactors. Ideally code in core/ should depend either on other code in core/ or system libs.
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
SPDX-FileCopyrightText: 2003 Lubos Lunak <l.lunak@kde.org>
|
|
SPDX-FileCopyrightText: 2012 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#include "killwindow.h"
|
|
#include "core/platform.h"
|
|
#include "main.h"
|
|
#include "osd.h"
|
|
#include "unmanaged.h"
|
|
#include "window.h"
|
|
|
|
#include <KLocalizedString>
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
KillWindow::KillWindow()
|
|
{
|
|
}
|
|
|
|
KillWindow::~KillWindow()
|
|
{
|
|
}
|
|
|
|
void KillWindow::start()
|
|
{
|
|
OSD::show(i18n("Select window to force close with left click or enter.\nEscape or right click to cancel."),
|
|
QStringLiteral("window-close"));
|
|
kwinApp()->platform()->startInteractiveWindowSelection(
|
|
[](KWin::Window *t) {
|
|
OSD::hide();
|
|
if (!t) {
|
|
return;
|
|
}
|
|
if (Window *c = static_cast<Window *>(t->isClient() ? t : nullptr)) {
|
|
c->killWindow();
|
|
} else if (Unmanaged *u = qobject_cast<Unmanaged *>(t)) {
|
|
xcb_kill_client(kwinApp()->x11Connection(), u->window());
|
|
}
|
|
},
|
|
QByteArrayLiteral("pirate"));
|
|
}
|
|
|
|
} // namespace
|