2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2015-04-29 12:13:20 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
|
2015-04-29 12:13:20 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2015-04-29 12:13:20 +00:00
|
|
|
#include "mock_abstract_client.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
AbstractClient::AbstractClient(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, m_active(false)
|
|
|
|
, m_screen(0)
|
|
|
|
, m_fullscreen(false)
|
|
|
|
, m_hiddenInternal(false)
|
2015-10-11 20:48:29 +00:00
|
|
|
, m_keepBelow(false)
|
2019-09-27 10:01:10 +00:00
|
|
|
, m_frameGeometry()
|
2017-06-18 11:36:27 +00:00
|
|
|
, m_resize(false)
|
2015-04-29 12:13:20 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AbstractClient::~AbstractClient() = default;
|
|
|
|
|
|
|
|
bool AbstractClient::isActive() const
|
|
|
|
{
|
|
|
|
return m_active;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AbstractClient::setActive(bool active)
|
|
|
|
{
|
|
|
|
m_active = active;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AbstractClient::setScreen(int screen)
|
|
|
|
{
|
|
|
|
m_screen = screen;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AbstractClient::isOnScreen(int screen) const
|
|
|
|
{
|
|
|
|
// TODO: mock checking client geometry
|
|
|
|
return screen == m_screen;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AbstractClient::screen() const
|
|
|
|
{
|
|
|
|
return m_screen;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AbstractClient::setFullScreen(bool set)
|
|
|
|
{
|
|
|
|
m_fullscreen = set;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AbstractClient::isFullScreen() const
|
|
|
|
{
|
|
|
|
return m_fullscreen;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AbstractClient::isHiddenInternal() const
|
|
|
|
{
|
|
|
|
return m_hiddenInternal;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AbstractClient::setHiddenInternal(bool set)
|
|
|
|
{
|
|
|
|
m_hiddenInternal = set;
|
|
|
|
}
|
|
|
|
|
2019-09-27 10:01:10 +00:00
|
|
|
void AbstractClient::setFrameGeometry(const QRect &rect)
|
2015-04-29 12:13:20 +00:00
|
|
|
{
|
2019-09-27 10:01:10 +00:00
|
|
|
m_frameGeometry = rect;
|
2015-04-29 12:13:20 +00:00
|
|
|
emit geometryChanged();
|
|
|
|
}
|
|
|
|
|
2019-09-27 10:01:10 +00:00
|
|
|
QRect AbstractClient::frameGeometry() const
|
2015-04-29 12:13:20 +00:00
|
|
|
{
|
2019-09-27 10:01:10 +00:00
|
|
|
return m_frameGeometry;
|
2015-04-29 12:13:20 +00:00
|
|
|
}
|
|
|
|
|
2015-10-11 20:48:29 +00:00
|
|
|
bool AbstractClient::keepBelow() const
|
|
|
|
{
|
|
|
|
return m_keepBelow;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AbstractClient::setKeepBelow(bool keepBelow)
|
|
|
|
{
|
|
|
|
m_keepBelow = keepBelow;
|
|
|
|
emit keepBelowChanged();
|
|
|
|
}
|
|
|
|
|
2017-06-18 11:36:27 +00:00
|
|
|
bool AbstractClient::isResize() const
|
|
|
|
{
|
|
|
|
return m_resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AbstractClient::setResize(bool set)
|
|
|
|
{
|
|
|
|
m_resize = set;
|
|
|
|
}
|
|
|
|
|
2015-04-29 12:13:20 +00:00
|
|
|
}
|