525d12bee5
If you want git blame to ignore formatting revisions run: git config blame.ignoreRevsFile .git-blame-ignore-revs
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
#include "surface_interface.h"
|
|
#include "surface_interface_p.h"
|
|
#include "surfacerole_p.h"
|
|
|
|
namespace KWaylandServer
|
|
{
|
|
SurfaceRole::SurfaceRole(SurfaceInterface *surface, const QByteArray &name)
|
|
: m_surface(surface)
|
|
, m_name(name)
|
|
{
|
|
SurfaceInterfacePrivate *surfacePrivate = SurfaceInterfacePrivate::get(surface);
|
|
surfacePrivate->role = this;
|
|
}
|
|
|
|
SurfaceRole::~SurfaceRole()
|
|
{
|
|
// Lifetime of the surface role is not bounded to the associated surface.
|
|
if (m_surface) {
|
|
SurfaceInterfacePrivate *surfacePrivate = SurfaceInterfacePrivate::get(m_surface);
|
|
surfacePrivate->role = nullptr;
|
|
}
|
|
}
|
|
|
|
QByteArray SurfaceRole::name() const
|
|
{
|
|
return m_name;
|
|
}
|
|
|
|
SurfaceRole *SurfaceRole::get(SurfaceInterface *surface)
|
|
{
|
|
if (surface) {
|
|
SurfaceInterfacePrivate *surfacePrivate = SurfaceInterfacePrivate::get(surface);
|
|
return surfacePrivate->role;
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
}
|