lolautoaccept/src/x11helper_other.cpp

26 lines
472 B
C++
Raw Normal View History

2023-09-06 21:17:05 +02:00
#include "x11helper.h"
#include <X11/Xlib.h>
const bool X11Helper::IsSupported = false;
X11Helper::X11Helper(QObject *parent) : QObject(parent) {
}
X11Helper::~X11Helper() {}
2023-10-21 21:30:25 +02:00
Window X11Helper::findWindow(const QString&, float) {
return InvalidWindow;
2023-09-06 21:17:05 +02:00
}
2023-10-21 21:30:25 +02:00
Window X11Helper::searchWindows(Window, const QString&, float) {
return InvalidWindow;
2023-09-06 21:17:05 +02:00
}
void X11Helper::map(Window win) {}
void X11Helper::unmap(Window win) {}
void X11Helper::setMap(Window win, bool b) {}