1b2c7b248b
In C++20, there will be emit() class member, which can conflict with the emit keyword. Given that, there are plans to enable QT_NO_KEYWORDS by default in the future. See also https://lists.qt-project.org/pipermail/development/2020-February/038812.html
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2012 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#ifndef TEST_TABBOX_CLIENT_MODEL_H
|
|
#define TEST_TABBOX_CLIENT_MODEL_H
|
|
#include <QObject>
|
|
|
|
class TestTabBoxClientModel : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private Q_SLOTS:
|
|
void initTestCase();
|
|
/**
|
|
* Tests that calculating the longest caption does not
|
|
* crash in case the internal m_clientList contains a weak
|
|
* pointer to a deleted TabBoxClient.
|
|
*
|
|
* See bug #303840
|
|
*/
|
|
void testLongestCaptionWithNullClient();
|
|
/**
|
|
* Tests the creation of the Client list for the case that
|
|
* there is no active Client, but that Clients actually exist.
|
|
*
|
|
* See BUG: 305449
|
|
*/
|
|
void testCreateClientListNoActiveClient();
|
|
/**
|
|
* Tests the creation of the Client list for the case that
|
|
* the active Client is not in the Focus chain.
|
|
*
|
|
* See BUG: 306260
|
|
*/
|
|
void testCreateClientListActiveClientNotInFocusChain();
|
|
};
|
|
|
|
#endif
|