DolphinQt: Make block size configurable in convert dialog

This commit is contained in:
JosJuice
2020-04-10 15:14:03 +02:00
parent acd00723ad
commit 466b2d7202
4 changed files with 86 additions and 7 deletions

View File

@ -28,14 +28,17 @@ public:
QWidget* parent = nullptr);
private slots:
void OnFormatChanged();
void Convert();
private:
void AddToFormatComboBox(const QString& name, DiscIO::BlobType format);
void AddToBlockSizeComboBox(int size);
bool ShowAreYouSureDialog(const QString& text);
QComboBox* m_format;
QComboBox* m_block_size;
QCheckBox* m_scrub;
QList<std::shared_ptr<const UICommon::GameFile>> m_files;
};