2023-08-06 08:48:11 -04:00
|
|
|
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-04-09 15:32:09 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QMdiSubWindow>
|
|
|
|
#include <physis.hpp>
|
|
|
|
|
2023-10-10 18:02:13 -04:00
|
|
|
class FilePropertiesWindow : public QWidget
|
|
|
|
{
|
2023-04-09 15:32:09 -04:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2023-10-10 18:02:13 -04:00
|
|
|
explicit FilePropertiesWindow(GameData *data, QString path, QWidget *parent = nullptr);
|
2023-04-09 15:32:09 -04:00
|
|
|
|
|
|
|
private:
|
2023-10-10 18:02:13 -04:00
|
|
|
GameData *data = nullptr;
|
2023-04-09 15:32:09 -04:00
|
|
|
};
|