GCMemcardCreateNewDialog.h 526 B

12345678910111213141516171819202122232425262728
  1. // Copyright 2019 Dolphin Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include <QDialog>
  5. class QComboBox;
  6. class QRadioButton;
  7. class GCMemcardCreateNewDialog : public QDialog
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit GCMemcardCreateNewDialog(QWidget* parent = nullptr);
  12. ~GCMemcardCreateNewDialog();
  13. std::string GetMemoryCardPath() const;
  14. private:
  15. bool CreateCard();
  16. QComboBox* m_combobox_size;
  17. QRadioButton* m_radio_western;
  18. QRadioButton* m_radio_shiftjis;
  19. std::string m_card_path;
  20. };