2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2012-07-21 09:25:17 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2012 Martin Gräßlin <mgraesslin@kde.org>
|
2012-07-21 09:25:17 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2012-07-21 09:25:17 +00:00
|
|
|
#ifndef TEST_TABBOX_CLIENT_MODEL_H
|
|
|
|
#define TEST_TABBOX_CLIENT_MODEL_H
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
class TestTabBoxClientModel : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2021-06-08 07:02:14 +00:00
|
|
|
private Q_SLOTS:
|
2015-02-18 10:19:04 +00:00
|
|
|
void initTestCase();
|
2012-07-21 09:25:17 +00:00
|
|
|
/**
|
|
|
|
* 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
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2012-07-21 09:25:17 +00:00
|
|
|
void testLongestCaptionWithNullClient();
|
2012-08-19 17:32:56 +00:00
|
|
|
/**
|
|
|
|
* Tests the creation of the Client list for the case that
|
|
|
|
* there is no active Client, but that Clients actually exist.
|
|
|
|
*
|
|
|
|
* See BUG: 305449
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2012-08-19 17:32:56 +00:00
|
|
|
void testCreateClientListNoActiveClient();
|
2012-09-05 18:55:07 +00:00
|
|
|
/**
|
|
|
|
* Tests the creation of the Client list for the case that
|
|
|
|
* the active Client is not in the Focus chain.
|
|
|
|
*
|
|
|
|
* See BUG: 306260
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2012-09-05 18:55:07 +00:00
|
|
|
void testCreateClientListActiveClientNotInFocusChain();
|
2012-07-21 09:25:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|