forked from qt-creator/qt-creator
... to simplify the user code. Some, but not all, potential beneficiaries are adapted. Change-Id: Ia7d514a0114a4f99f8ee745523435f5b990bd095 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
24 lines
474 B
C++
24 lines
474 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <utils/navigationtreeview.h>
|
|
|
|
namespace Autotest {
|
|
namespace Internal {
|
|
|
|
class TestTreeView : public Utils::NavigationTreeView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TestTreeView(QWidget *parent = nullptr);
|
|
|
|
void selectAll() override;
|
|
void deselectAll();
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace Autotest
|