Files
pineapple-pictures/app/metadatadialog.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
557 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
//
// SPDX-License-Identifier: MIT
2025-07-23 21:20:34 +08:00
2020-10-30 13:06:46 +08:00
#ifndef METADATADIALOG_H
#define METADATADIALOG_H
2025-07-23 21:20:34 +08:00
2020-10-30 13:06:46 +08:00
#include <QDialog>
2025-07-23 21:20:34 +08:00
2020-10-30 13:06:46 +08:00
QT_BEGIN_NAMESPACE
class QTreeView;
QT_END_NAMESPACE
2025-07-23 21:20:34 +08:00
2020-10-30 13:06:46 +08:00
class MetadataModel;
class MetadataDialog : public QDialog
{
Q_OBJECT
public:
explicit MetadataDialog(QWidget * parent);
~MetadataDialog() override;
2025-07-23 21:20:34 +08:00
2020-10-30 13:06:46 +08:00
void setMetadataModel(MetadataModel * model);
2025-07-23 21:20:34 +08:00
2020-10-30 13:06:46 +08:00
QSize sizeHint() const override;
2025-07-23 21:20:34 +08:00
2020-10-30 13:06:46 +08:00
private:
QTreeView * m_treeView = nullptr;
};
2025-07-23 21:20:34 +08:00
2020-10-30 13:06:46 +08:00
#endif // METADATADIALOG_H