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

42 lines
785 B
C
Raw Normal View History

2015-12-30 19:03:13 -08:00
// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <QWidget>
2015-12-30 19:03:13 -08:00
class QGridLayout;
class QGroupBox;
class QLineEdit;
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 BrowseSDCard();
2015-12-30 19:03:13 -08:00
QGroupBox* MakeGameFolderBox();
QGridLayout* MakePathsLayout();
void RemovePath();
2018-04-29 01:01:14 +02:00
void OnSDCardPathChanged();
void OnNANDPathChanged();
2015-12-30 19:03:13 -08:00
QListWidget* m_path_list;
QLineEdit* m_game_edit;
QLineEdit* m_nand_edit;
2018-04-25 21:43:12 +02:00
QLineEdit* m_dump_edit;
QLineEdit* m_sdcard_edit;
QPushButton* m_remove_path;
2015-12-30 19:03:13 -08:00
};