forked from quickshell/quickshell
34 lines
730 B
C++
34 lines
730 B
C++
#include <qguiapplication.h>
|
|
#include <qlist.h>
|
|
#include <qqml.h>
|
|
#include <qstring.h>
|
|
|
|
#include "../core/plugin.hpp"
|
|
#include "panel_window.hpp"
|
|
#include "util.hpp"
|
|
|
|
namespace {
|
|
|
|
class X11Plugin: public QuickshellPlugin {
|
|
QList<QString> dependencies() override { return {"window"}; }
|
|
|
|
bool applies() override { return QGuiApplication::platformName() == "xcb"; }
|
|
|
|
void init() override { XAtom::initAtoms(); }
|
|
|
|
void registerTypes() override {
|
|
qmlRegisterType<XPanelInterface>("Quickshell._X11Overlay", 1, 0, "PanelWindow");
|
|
|
|
qmlRegisterModuleImport(
|
|
"Quickshell",
|
|
QQmlModuleImportModuleAny,
|
|
"Quickshell._X11Overlay",
|
|
QQmlModuleImportLatest
|
|
);
|
|
}
|
|
};
|
|
|
|
QS_REGISTER_PLUGIN(X11Plugin);
|
|
|
|
} // namespace
|