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#pragma once
7
8#include "ui_ArchiveInspector.h"
9
10struct VFile;
11
12namespace QGBA {
13
14class ArchiveInspector : public QDialog {
15Q_OBJECT
16
17public:
18 ArchiveInspector(const QString& filename, QWidget* parent = nullptr);
19
20 VFile* selectedVFile() const;
21 QPair<QString, QString> selectedPath() const;
22
23private:
24 Ui::ArchiveInspector m_ui;
25};
26
27}