blob: 57d175f5ad9cc70746b3023769b3c02bfddef11e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// 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 "core_global.h"
#include <utils/itemviews.h>
namespace Core {
namespace Internal { class OpenDocumentsDelegate; }
class CORE_EXPORT OpenDocumentsTreeView : public Utils::TreeView
{
Q_OBJECT
public:
explicit OpenDocumentsTreeView(QWidget *parent = nullptr);
void setModel(QAbstractItemModel *model) override;
void setCloseButtonVisible(bool visible);
signals:
void closeActivated(const QModelIndex &index);
protected:
bool eventFilter(QObject *obj, QEvent *event) override;
private:
Internal::OpenDocumentsDelegate *m_delegate;
};
} // namespace Core
|