src/platform/qt/ArchiveInspector.h (view raw)
1/* Copyright (c) 2013-2017 Jeffrey Pfau
2 *
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6#ifndef QGBA_ARCHIVE_INSPECTOR
7#define QGBA_ARCHIVE_INSPECTOR
8
9#include "ui_ArchiveInspector.h"
10
11struct VFile;
12
13namespace QGBA {
14
15class ArchiveInspector : public QDialog {
16Q_OBJECT
17
18public:
19 ArchiveInspector(const QString& filename, QWidget* parent = nullptr);
20
21 VFile* selectedVFile() const;
22
23private:
24 Ui::ArchiveInspector m_ui;
25};
26
27}
28
29#endif