31018c000b
Clients can have valid reasons to change the selection when the same user action that also caused the selection request to lose keyboard focus. This is notbaly the case for menus created from a Plasma panel which itself will not take focus but when clicking on action it only triggers after the menu is closed. This also matches what weston and sway do. BUG:490803
55 lines
1 KiB
C++
55 lines
1 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#include <QClipboard>
|
|
#include <QGuiApplication>
|
|
#include <QPainter>
|
|
#include <QRasterWindow>
|
|
#include <QTimer>
|
|
|
|
class Window : public QRasterWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Window();
|
|
~Window() override;
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) override;
|
|
void keyPressEvent(QKeyEvent *) override;
|
|
};
|
|
|
|
Window::Window()
|
|
: QRasterWindow()
|
|
{
|
|
}
|
|
|
|
Window::~Window() = default;
|
|
|
|
void Window::paintEvent(QPaintEvent *event)
|
|
{
|
|
QPainter p(this);
|
|
p.fillRect(0, 0, width(), height(), Qt::red);
|
|
}
|
|
|
|
void Window::keyPressEvent(QKeyEvent *event)
|
|
{
|
|
qApp->clipboard()->setText(QStringLiteral("test"));
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
std::unique_ptr<Window> w(new Window);
|
|
w->setGeometry(QRect(0, 0, 100, 200));
|
|
w->show();
|
|
|
|
return app.exec();
|
|
}
|
|
|
|
#include "copy.moc"
|