mirror of https://github.com/qTox/qTox.git
Browse Source
This prevents opening and closing of X11 connection and associated files every 1 second. X11 connection is used for userAutoAway feature and to read CapsLock status.reviewable/pr4525/r6
6 changed files with 118 additions and 5 deletions
@ -0,0 +1,64 @@
@@ -0,0 +1,64 @@
|
||||
/*
|
||||
Copyright © 2017 by The qTox Project Contributors |
||||
|
||||
This file is part of qTox, a Qt-based graphical interface for Tox. |
||||
|
||||
qTox is libre 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 |
||||
(at your option) any later version. |
||||
|
||||
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
|
||||
#include <QtCore/qsystemdetection.h> |
||||
#if defined(Q_OS_UNIX) && !defined(__APPLE__) && !defined(__MACH__) |
||||
#include "src/platform/x11_display.h" |
||||
#include <QMutex> |
||||
#include <X11/Xlib.h> |
||||
|
||||
namespace Platform { |
||||
|
||||
struct X11DisplayPrivate |
||||
{ |
||||
Display* display; |
||||
QMutex mutex; |
||||
|
||||
X11DisplayPrivate() |
||||
: display(XOpenDisplay(nullptr)) |
||||
{ |
||||
} |
||||
~X11DisplayPrivate() |
||||
{ |
||||
if (display) { |
||||
XCloseDisplay(display); |
||||
} |
||||
} |
||||
static X11DisplayPrivate& getSingleInstance() |
||||
{ |
||||
// object created on-demand
|
||||
static X11DisplayPrivate singleInstance; |
||||
return singleInstance; |
||||
} |
||||
}; |
||||
|
||||
Display* X11Display::lock() |
||||
{ |
||||
X11DisplayPrivate& singleInstance = X11DisplayPrivate::getSingleInstance(); |
||||
singleInstance.mutex.lock(); |
||||
return singleInstance.display; |
||||
} |
||||
|
||||
void X11Display::unlock() |
||||
{ |
||||
X11DisplayPrivate::getSingleInstance().mutex.unlock(); |
||||
} |
||||
} |
||||
|
||||
#endif // Q_OS_UNIX && !defined(__APPLE__) && !defined(__MACH__)
|
@ -0,0 +1,42 @@
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright © 2017 by The qTox Project Contributors |
||||
|
||||
This file is part of qTox, a Qt-based graphical interface for Tox. |
||||
|
||||
qTox is libre 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 |
||||
(at your option) any later version. |
||||
|
||||
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
|
||||
#ifdef QTOX_PLATFORM_EXT |
||||
|
||||
#ifndef PLATFORM_X11_DISPLAY_H |
||||
#define PLATFORM_X11_DISPLAY_H |
||||
|
||||
#if defined(Q_OS_UNIX) && !defined(__APPLE__) && !defined(__MACH__) |
||||
|
||||
typedef struct _XDisplay Display; |
||||
|
||||
namespace Platform { |
||||
|
||||
namespace X11Display { |
||||
Display* lock(); |
||||
void unlock(); |
||||
} |
||||
|
||||
} |
||||
|
||||
#endif // Q_OS_UNIX && !defined(__APPLE__) && !defined(__MACH__)
|
||||
|
||||
#endif // PLATFORM_X11_DISPLAY_H
|
||||
|
||||
#endif // QTOX_PLATFORM_EXT
|
Loading…
Reference in new issue