2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2014-10-07 12:30:54 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2014-10-07 12:30:54 +02:00
|
|
|
|
|
|
|
|
#include <utils/navigationtreeview.h>
|
|
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
class IContext;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace Autotest {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class TestTreeView : public Utils::NavigationTreeView
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2018-05-31 07:38:04 +02:00
|
|
|
explicit TestTreeView(QWidget *parent = nullptr);
|
2014-10-07 12:30:54 +02:00
|
|
|
|
2016-09-29 12:15:43 +02:00
|
|
|
void selectAll() override;
|
2014-10-07 12:30:54 +02:00
|
|
|
void deselectAll();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Core::IContext *m_context;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Autotest
|