Files
qt-creator/src/plugins/autotest/testtreeview.h
hjk 2c40765e86 Core: Add a static IContext::attach() function
... to simplify the user code.

Some, but not all, potential beneficiaries are adapted.

Change-Id: Ia7d514a0114a4f99f8ee745523435f5b990bd095
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2024-07-04 10:09:53 +00:00

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