mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
DolphinQt: Show raw memory card path and AGP cartridge path in config window.
This commit is contained in:
@ -14,8 +14,11 @@
|
||||
|
||||
class QCheckBox;
|
||||
class QComboBox;
|
||||
class QHBoxLayout;
|
||||
class QLabel;
|
||||
class QLineEdit;
|
||||
class QPushButton;
|
||||
class QString;
|
||||
|
||||
class GameCubePane : public QWidget
|
||||
{
|
||||
@ -38,7 +41,9 @@ private:
|
||||
void OnConfigPressed(ExpansionInterface::Slot slot);
|
||||
|
||||
void BrowseMemcard(ExpansionInterface::Slot slot);
|
||||
bool SetMemcard(ExpansionInterface::Slot slot, const QString& filename);
|
||||
void BrowseAGPRom(ExpansionInterface::Slot slot);
|
||||
void SetAGPRom(ExpansionInterface::Slot slot, const QString& filename);
|
||||
void BrowseGBABios();
|
||||
void BrowseGBARom(size_t index);
|
||||
void SaveRomPathChanged();
|
||||
@ -50,6 +55,14 @@ private:
|
||||
Common::EnumMap<QPushButton*, ExpansionInterface::MAX_SLOT> m_slot_buttons;
|
||||
Common::EnumMap<QComboBox*, ExpansionInterface::MAX_SLOT> m_slot_combos;
|
||||
|
||||
Common::EnumMap<QHBoxLayout*, ExpansionInterface::MAX_MEMCARD_SLOT> m_memcard_path_layouts;
|
||||
Common::EnumMap<QLabel*, ExpansionInterface::MAX_MEMCARD_SLOT> m_memcard_path_labels;
|
||||
Common::EnumMap<QLineEdit*, ExpansionInterface::MAX_MEMCARD_SLOT> m_memcard_paths;
|
||||
|
||||
Common::EnumMap<QHBoxLayout*, ExpansionInterface::MAX_MEMCARD_SLOT> m_agp_path_layouts;
|
||||
Common::EnumMap<QLabel*, ExpansionInterface::MAX_MEMCARD_SLOT> m_agp_path_labels;
|
||||
Common::EnumMap<QLineEdit*, ExpansionInterface::MAX_MEMCARD_SLOT> m_agp_paths;
|
||||
|
||||
QCheckBox* m_gba_threads;
|
||||
QCheckBox* m_gba_save_rom_path;
|
||||
QPushButton* m_gba_browse_bios;
|
||||
|
Reference in New Issue
Block a user