mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
144 lines
4.3 KiB
C++
144 lines
4.3 KiB
C++
/* This file is part of the KDE libraries
|
|
Copyright (C) 2022 Ivailo Monev <xakepa10@gmail.com>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License version 2, as published by the Free Software Foundation.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "kselectionowner.h"
|
|
#include "kxerrorhandler.h"
|
|
#include "kdebug.h"
|
|
|
|
#include <QX11Info>
|
|
#include <QApplication>
|
|
#include <QThread>
|
|
#include <QTimer>
|
|
|
|
#define KSELECTIONOWNER_TIMEOUT 400
|
|
#define KSELECTIONOWNER_SLEEPTIME 400
|
|
#define KSELECTIONOWNER_CHECKTIME 200
|
|
|
|
class KSelectionOwnerPrivate
|
|
{
|
|
public:
|
|
KSelectionOwnerPrivate();
|
|
|
|
Atom x11atom;
|
|
Display* x11display;
|
|
int x11screen;
|
|
Window x11window;
|
|
};
|
|
|
|
KSelectionOwnerPrivate::KSelectionOwnerPrivate()
|
|
: x11atom(None),
|
|
x11display(QX11Info::display()),
|
|
x11screen(QX11Info::appScreen()),
|
|
x11window(None)
|
|
{
|
|
}
|
|
|
|
|
|
KSelectionOwner::KSelectionOwner(const char* atom, const int screen, QObject *parent)
|
|
: QObject(parent),
|
|
d(new KSelectionOwnerPrivate())
|
|
{
|
|
d->x11atom = XInternAtom(d->x11display, atom, False);
|
|
if (screen >= 0) {
|
|
d->x11screen = screen;
|
|
}
|
|
}
|
|
|
|
KSelectionOwner::~KSelectionOwner()
|
|
{
|
|
release();
|
|
delete d;
|
|
}
|
|
|
|
bool KSelectionOwner::claim(const bool force)
|
|
{
|
|
Window currentowner = XGetSelectionOwner(d->x11display, d->x11atom);
|
|
if (currentowner != None && !force) {
|
|
kDebug() << "Selection is owned";
|
|
return false;
|
|
}
|
|
if (currentowner != None) {
|
|
kDebug() << "Selection is owned, destroying owner";
|
|
XDestroyWindow(d->x11display, currentowner);
|
|
XFlush(d->x11display);
|
|
ushort counter = 0;
|
|
kDebug() << "Waiting for owner";
|
|
while (currentowner != None && counter < 10) {
|
|
currentowner = XGetSelectionOwner(d->x11display, d->x11atom);
|
|
QCoreApplication::processEvents(QEventLoop::AllEvents, KSELECTIONOWNER_TIMEOUT);
|
|
QThread::msleep(KSELECTIONOWNER_SLEEPTIME);
|
|
counter++;
|
|
}
|
|
}
|
|
if (currentowner != None) {
|
|
kDebug() << "Selection is owned, killing owner";
|
|
KXErrorHandler kx11errorhandler;
|
|
XKillClient(d->x11display, currentowner);
|
|
XFlush(d->x11display);
|
|
if (kx11errorhandler.error(true)) {
|
|
kWarning() << KXErrorHandler::errorMessage(kx11errorhandler.errorEvent());
|
|
return false;
|
|
}
|
|
}
|
|
kDebug() << "Creating selection owner";
|
|
XSetWindowAttributes x11attrs;
|
|
x11attrs.override_redirect = True;
|
|
d->x11window = XCreateWindow(
|
|
d->x11display, RootWindow(d->x11display, d->x11screen),
|
|
0, 0, 1, 1,
|
|
0, CopyFromParent, InputOnly, CopyFromParent, CWOverrideRedirect, &x11attrs
|
|
);
|
|
XSetSelectionOwner(d->x11display, d->x11atom, d->x11window, CurrentTime);
|
|
XFlush(d->x11display);
|
|
QTimer::singleShot(KSELECTIONOWNER_CHECKTIME, this, SLOT(_checkOwnership()));
|
|
return true;
|
|
}
|
|
|
|
void KSelectionOwner::release()
|
|
{
|
|
if (d->x11window == None) {
|
|
kDebug() << "No owner";
|
|
return;
|
|
}
|
|
kDebug() << "Destroying owner window";
|
|
XDestroyWindow(d->x11display, d->x11window);
|
|
XFlush(d->x11display);
|
|
d->x11window = None;
|
|
}
|
|
|
|
Window KSelectionOwner::ownerWindow() const
|
|
{
|
|
kDebug() << "Current selection owner is" << d->x11window;
|
|
return d->x11window;
|
|
}
|
|
|
|
void KSelectionOwner::_checkOwnership()
|
|
{
|
|
if (d->x11window == None) {
|
|
kDebug() << "Not going to poll";
|
|
return;
|
|
}
|
|
// kDebug() << "Checking selection owner";
|
|
Window currentowner = XGetSelectionOwner(d->x11display, d->x11atom);
|
|
if (currentowner != d->x11window) {
|
|
kDebug() << "Selection owner changed";
|
|
emit lostOwnership();
|
|
return;
|
|
}
|
|
QTimer::singleShot(KSELECTIONOWNER_CHECKTIME, this, SLOT(_checkOwnership()));
|
|
}
|