Qt: Add open button to memory card editor
This commit is contained in:
parent
175bc66c91
commit
44ea51306a
|
@ -77,6 +77,8 @@ void MemoryCardEditorDialog::connectUi()
|
|||
[this](int index) { loadCardFromComboBox(&m_card_b, index); });
|
||||
connect(m_ui.newCardA, &QPushButton::clicked, [this]() { newCard(&m_card_a); });
|
||||
connect(m_ui.newCardB, &QPushButton::clicked, [this]() { newCard(&m_card_b); });
|
||||
connect(m_ui.openCardA, &QPushButton::clicked, [this]() { openCard(&m_card_a); });
|
||||
connect(m_ui.openCardB, &QPushButton::clicked, [this]() { openCard(&m_card_b); });
|
||||
connect(m_ui.saveCardA, &QPushButton::clicked, [this]() { saveCard(&m_card_a); });
|
||||
connect(m_ui.saveCardB, &QPushButton::clicked, [this]() { saveCard(&m_card_b); });
|
||||
connect(m_ui.importCardA, &QPushButton::clicked, [this]() { importCard(&m_card_a); });
|
||||
|
@ -258,6 +260,35 @@ void MemoryCardEditorDialog::newCard(Card* card)
|
|||
saveCard(card);
|
||||
}
|
||||
|
||||
void MemoryCardEditorDialog::openCard(Card* card)
|
||||
{
|
||||
promptForSave(card);
|
||||
|
||||
QString filename =
|
||||
QFileDialog::getOpenFileName(this, tr("Select Memory Card"), QString(), tr(MEMORY_CARD_IMAGE_FILTER));
|
||||
if (filename.isEmpty())
|
||||
return;
|
||||
|
||||
if (!MemoryCardImage::LoadFromFile(&card->data, filename.toUtf8().constData()))
|
||||
{
|
||||
QMessageBox::critical(this, tr("Error"), tr("Failed to load memory card image."));
|
||||
return;
|
||||
}
|
||||
|
||||
{
|
||||
// add to combo box
|
||||
QFileInfo file(filename);
|
||||
QSignalBlocker sb(card->path_cb);
|
||||
card->path_cb->addItem(file.baseName(), QVariant(filename));
|
||||
card->path_cb->setCurrentIndex(card->path_cb->count() - 1);
|
||||
}
|
||||
|
||||
card->filename = filename.toStdString();
|
||||
updateCardTable(card);
|
||||
updateCardBlocksFree(card);
|
||||
updateButtonState();
|
||||
}
|
||||
|
||||
void MemoryCardEditorDialog::saveCard(Card* card)
|
||||
{
|
||||
if (card->filename.empty())
|
||||
|
|
|
@ -52,6 +52,7 @@ private:
|
|||
void updateCardBlocksFree(Card* card);
|
||||
void setCardDirty(Card* card);
|
||||
void newCard(Card* card);
|
||||
void openCard(Card* card);
|
||||
void saveCard(Card* card);
|
||||
void promptForSave(Card* card);
|
||||
void importCard(Card* card);
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="0" column="3">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2" stretch="0,1,0">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2" stretch="0,1,0,0">
|
||||
<item>
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
|
@ -73,10 +73,25 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="newCardB">
|
||||
<widget class="QToolButton" name="newCardB">
|
||||
<property name="text">
|
||||
<string>New...</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="resources/resources.qrc">
|
||||
<normaloff>:/icons/document-new.png</normaloff>:/icons/document-new.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="openCardB">
|
||||
<property name="text">
|
||||
<string>Open...</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="resources/resources.qrc">
|
||||
<normaloff>:/icons/document-open.png</normaloff>:/icons/document-open.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
|
@ -164,7 +179,7 @@
|
|||
</layout>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout" stretch="0,1,0">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout" stretch="0,1,0,0">
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
|
@ -176,10 +191,25 @@
|
|||
<widget class="QComboBox" name="cardAPath"/>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="newCardA">
|
||||
<widget class="QToolButton" name="newCardA">
|
||||
<property name="text">
|
||||
<string>New...</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="resources/resources.qrc">
|
||||
<normaloff>:/icons/document-new.png</normaloff>:/icons/document-new.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="openCardA">
|
||||
<property name="text">
|
||||
<string>Open...</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="resources/resources.qrc">
|
||||
<normaloff>:/icons/document-open.png</normaloff>:/icons/document-open.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
|
@ -285,6 +315,8 @@
|
|||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<resources>
|
||||
<include location="resources/resources.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
|
@ -35,6 +35,8 @@
|
|||
<file>icons/debug-step-into.png</file>
|
||||
<file>icons/debug-step-out.png</file>
|
||||
<file>icons/debug-step-over.png</file>
|
||||
<file>icons/document-new.png</file>
|
||||
<file>icons/document-new@2x.png</file>
|
||||
<file>icons/document-open.png</file>
|
||||
<file>icons/document-open@2x.png</file>
|
||||
<file>icons/document-save.png</file>
|
||||
|
|
Loading…
Reference in New Issue