Files

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

42 lines
815 B
C++
Raw Permalink Normal View History

2015-12-30 19:03:13 -08:00
// Copyright 2015 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2015-12-30 19:03:13 -08:00
#pragma once
#include <QWidget>
2015-12-30 19:03:13 -08:00
class ConfigText;
class QGridLayout;
class QGroupBox;
class QListWidget;
class QPushButton;
class PathPane final : public QWidget
2015-12-30 19:03:13 -08:00
{
Q_OBJECT
2015-12-30 19:03:13 -08:00
public:
explicit PathPane(QWidget* parent = nullptr);
2015-12-30 19:03:13 -08:00
private:
2015-12-30 19:03:13 -08:00
void Browse();
void BrowseDefaultGame();
void BrowseWiiNAND();
2018-04-25 21:43:12 +02:00
void BrowseDump();
void BrowseLoad();
void BrowseResourcePack();
void BrowseWFS();
2015-12-30 19:03:13 -08:00
QGroupBox* MakeGameFolderBox();
QGridLayout* MakePathsLayout();
void RemovePath();
QListWidget* m_path_list;
ConfigText* m_game_edit;
ConfigText* m_nand_edit;
ConfigText* m_dump_edit;
ConfigText* m_load_edit;
ConfigText* m_resource_pack_edit;
ConfigText* m_wfs_edit;
QPushButton* m_remove_path;
2015-12-30 19:03:13 -08:00
};