Merge SeatInterface::Private::pointerForSurface and ::keyboardForSurface
templated helper method.
This commit is contained in:
parent
6504e067bc
commit
7baf5896be
1 changed files with 11 additions and 13 deletions
|
@ -255,27 +255,15 @@ SeatInterface::Private *SeatInterface::Private::cast(wl_resource *r)
|
|||
return r ? reinterpret_cast<SeatInterface::Private*>(wl_resource_get_user_data(r)) : nullptr;
|
||||
}
|
||||
|
||||
PointerInterface *SeatInterface::Private::pointerForSurface(SurfaceInterface *surface) const
|
||||
template <typename T>
|
||||
static
|
||||
T *interfaceForSurface(SurfaceInterface *surface, const QVector<T*> &interfaces)
|
||||
{
|
||||
if (!surface) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
for (auto it = pointers.begin(); it != pointers.end(); ++it) {
|
||||
if (wl_resource_get_client((*it)->resource()) == *surface->client()) {
|
||||
return (*it);
|
||||
}
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
KeyboardInterface *SeatInterface::Private::keyboardForSurface(SurfaceInterface *surface) const
|
||||
{
|
||||
if (!surface) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
for (auto it = keyboards.begin(); it != keyboards.end(); ++it) {
|
||||
for (auto it = interfaces.begin(); it != interfaces.end(); ++it) {
|
||||
if ((*it)->client() == surface->client()) {
|
||||
return (*it);
|
||||
}
|
||||
|
@ -283,6 +271,16 @@ KeyboardInterface *SeatInterface::Private::keyboardForSurface(SurfaceInterface *
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
PointerInterface *SeatInterface::Private::pointerForSurface(SurfaceInterface *surface) const
|
||||
{
|
||||
return interfaceForSurface(surface, pointers);
|
||||
}
|
||||
|
||||
KeyboardInterface *SeatInterface::Private::keyboardForSurface(SurfaceInterface *surface) const
|
||||
{
|
||||
return interfaceForSurface(surface, keyboards);
|
||||
}
|
||||
|
||||
void SeatInterface::setHasKeyboard(bool has)
|
||||
{
|
||||
Q_D();
|
||||
|
|
Loading…
Reference in a new issue