File indexing completed on 2025-01-26 03:28:31

0001 /*
0002     SPDX-FileCopyrightText: 2023 Montel Laurent <montel@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #pragma once
0008 #include "libaccessibilityinspector_private_export.h"
0009 #include <QTreeView>
0010 
0011 class LIBACCESSIBILITYINSPECTOR_TEST_EXPORT PropertyTreeView : public QTreeView
0012 {
0013     Q_OBJECT
0014 public:
0015     explicit PropertyTreeView(QWidget *parent = nullptr);
0016     ~PropertyTreeView() override;
0017 
0018 Q_SIGNALS:
0019     void copyValue();
0020 
0021 private:
0022     void treeCustomContextMenuRequested(const QPoint &pos);
0023 };