core/popupanchor: rework popup anchoring and add PopupAnchor

This commit is contained in:
outfoxxed 2024-07-23 22:12:27 -07:00
parent 14910b1b60
commit ebfa8ec448
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
14 changed files with 770 additions and 108 deletions

14
src/wayland/xdgshell.cpp Normal file
View file

@ -0,0 +1,14 @@
#include "xdgshell.hpp"
#include <qwaylandclientextension.h>
namespace qs::wayland::xdg_shell {
XdgWmBase::XdgWmBase(): QWaylandClientExtensionTemplate(6) { this->initialize(); }
XdgWmBase* XdgWmBase::instance() {
static auto* instance = new XdgWmBase(); // NOLINT
return instance;
}
} // namespace qs::wayland::xdg_shell