f2b2a7eb4a
Implement the basic barebone structure of GIF recording. While it is likely broken (probably black frames and similar issues) it's a good start. Good night.
30 lines
1.2 KiB
C++
30 lines
1.2 KiB
C++
#include "x11backend.hpp"
|
|
|
|
#include <QPixmap>
|
|
#include <QX11Info>
|
|
#include <unistd.h>
|
|
#include <xcb/xcb_cursor.h>
|
|
#include <xcb/xcb_util.h>
|
|
#include <xcb/xfixes.h>
|
|
|
|
std::tuple<QPoint, QPixmap> PlatformBackend::getCursor() {
|
|
xcb_connection_t *connection = QX11Info::connection();
|
|
xcb_xfixes_get_cursor_image_cookie_t cursorCookie = xcb_xfixes_get_cursor_image_unchecked(connection);
|
|
QScopedPointer<xcb_xfixes_get_cursor_image_reply_t> cursorReply(xcb_xfixes_get_cursor_image_reply(connection, cursorCookie, NULL));
|
|
if (cursorReply.isNull()) {
|
|
return std::tuple<QPoint, QPixmap>(QPoint(0, 0), QPixmap());
|
|
}
|
|
|
|
quint32 *pixels = xcb_xfixes_get_cursor_image_cursor_image(cursorReply.data());
|
|
if (!pixels) {
|
|
return std::tuple<QPoint, QPixmap>(QPoint(0, 0), QPixmap());
|
|
}
|
|
return std::tuple<QPoint, QPixmap>(QPoint(cursorReply->xhot, cursorReply->yhot),
|
|
QPixmap::fromImage(QImage((quint8 *)pixels, cursorReply->width, cursorReply->height,
|
|
QImage::Format_ARGB32_Premultiplied)));
|
|
}
|
|
|
|
pid_t PlatformBackend::pid() {
|
|
return getpid();
|
|
}
|