mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
43 lines
988 B
C++
43 lines
988 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef XBELTREE_H
|
|
#define XBELTREE_H
|
|
|
|
#include <QDomDocument>
|
|
#include <QIcon>
|
|
#include <QTreeWidget>
|
|
|
|
//! [0]
|
|
class XbelTree : public QTreeWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit XbelTree(QWidget *parent = nullptr);
|
|
|
|
bool read(QIODevice *device);
|
|
bool write(QIODevice *device) const;
|
|
|
|
protected:
|
|
#if QT_CONFIG(clipboard) && QT_CONFIG(contextmenu)
|
|
void contextMenuEvent(QContextMenuEvent *event) override;
|
|
#endif
|
|
|
|
private slots:
|
|
void updateDomElement(const QTreeWidgetItem *item, int column);
|
|
|
|
private:
|
|
void parseFolderElement(const QDomElement &element,
|
|
QTreeWidgetItem *parentItem = nullptr);
|
|
QTreeWidgetItem *createItem(const QDomElement &element,
|
|
QTreeWidgetItem *parentItem = nullptr);
|
|
|
|
QDomDocument domDocument;
|
|
QIcon folderIcon;
|
|
QIcon bookmarkIcon;
|
|
};
|
|
//! [0]
|
|
|
|
#endif
|