596 lines
20 KiB
C++
596 lines
20 KiB
C++
#include <QLabel>
|
|
#include <QToolButton>
|
|
#include <QTreeView>
|
|
#include <QHBoxLayout>
|
|
#include <QVBoxLayout>
|
|
#include <QToolBar>
|
|
#include <QTextEdit>
|
|
#include <QMenu>
|
|
#include <QAction>
|
|
#include <QCloseEvent>
|
|
#include <QFileDialog>
|
|
#include <QMenuBar>
|
|
#include <QMessageBox>
|
|
#include <QPrintPreviewDialog>
|
|
#include <QHeaderView>
|
|
#include <QApplication>
|
|
#include <QClipboard>
|
|
#include <QTextStream>
|
|
#include "tab_deck_editor.h"
|
|
#include "window_sets.h"
|
|
#include "carddatabase.h"
|
|
#include "carddatabasemodel.h"
|
|
#include "decklistmodel.h"
|
|
#include "cardinfowidget.h"
|
|
#include "dlg_cardsearch.h"
|
|
#include "dlg_load_deck_from_clipboard.h"
|
|
#include "main.h"
|
|
#include "settingscache.h"
|
|
#include "priceupdater.h"
|
|
#include "tab_supervisor.h"
|
|
#include "abstractclient.h"
|
|
#include "pending_command.h"
|
|
#include "pb/response.pb.h"
|
|
#include "pb/command_deck_upload.pb.h"
|
|
|
|
void SearchLineEdit::keyPressEvent(QKeyEvent *event)
|
|
{
|
|
if (treeView && ((event->key() == Qt::Key_Up) || (event->key() == Qt::Key_Down)))
|
|
QCoreApplication::sendEvent(treeView, event);
|
|
QLineEdit::keyPressEvent(event);
|
|
}
|
|
|
|
TabDeckEditor::TabDeckEditor(TabSupervisor *_tabSupervisor, QWidget *parent)
|
|
: Tab(_tabSupervisor, parent)
|
|
{
|
|
aSearch = new QAction(QString(), this);
|
|
aSearch->setIcon(QIcon(":/resources/icon_search.svg"));
|
|
connect(aSearch, SIGNAL(triggered()), this, SLOT(actSearch()));
|
|
aClearSearch = new QAction(QString(), this);
|
|
aClearSearch->setIcon(QIcon(":/resources/icon_clearsearch.svg"));
|
|
connect(aClearSearch, SIGNAL(triggered()), this, SLOT(actClearSearch()));
|
|
|
|
searchLabel = new QLabel();
|
|
searchEdit = new SearchLineEdit;
|
|
searchLabel->setBuddy(searchEdit);
|
|
connect(searchEdit, SIGNAL(textChanged(const QString &)), this, SLOT(updateSearch(const QString &)));
|
|
connect(searchEdit, SIGNAL(returnPressed()), this, SLOT(actAddCard()));
|
|
QToolButton *searchButton = new QToolButton;
|
|
searchButton->setDefaultAction(aSearch);
|
|
QToolButton *clearSearchButton = new QToolButton;
|
|
clearSearchButton->setDefaultAction(aClearSearch);
|
|
|
|
QHBoxLayout *searchLayout = new QHBoxLayout;
|
|
searchLayout->addWidget(searchLabel);
|
|
searchLayout->addWidget(searchEdit);
|
|
searchLayout->addWidget(searchButton);
|
|
searchLayout->addWidget(clearSearchButton);
|
|
|
|
databaseModel = new CardDatabaseModel(db, this);
|
|
databaseDisplayModel = new CardDatabaseDisplayModel(this);
|
|
databaseDisplayModel->setSourceModel(databaseModel);
|
|
databaseDisplayModel->setFilterKeyColumn(0);
|
|
databaseDisplayModel->sort(0, Qt::AscendingOrder);
|
|
databaseView = new QTreeView();
|
|
databaseView->setModel(databaseDisplayModel);
|
|
databaseView->setUniformRowHeights(true);
|
|
databaseView->setRootIsDecorated(false);
|
|
databaseView->setAlternatingRowColors(true);
|
|
databaseView->setSortingEnabled(true);
|
|
databaseView->sortByColumn(0, Qt::AscendingOrder);
|
|
databaseView->resizeColumnToContents(0);
|
|
connect(databaseView->selectionModel(), SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), this, SLOT(updateCardInfoLeft(const QModelIndex &, const QModelIndex &)));
|
|
connect(databaseView, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(actAddCard()));
|
|
searchEdit->setTreeView(databaseView);
|
|
|
|
QVBoxLayout *leftFrame = new QVBoxLayout;
|
|
leftFrame->addLayout(searchLayout);
|
|
leftFrame->addWidget(databaseView);
|
|
|
|
cardInfo = new CardInfoWidget(CardInfoWidget::ModeDeckEditor);
|
|
cardInfo->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Expanding);
|
|
|
|
QToolBar *verticalToolBar = new QToolBar;
|
|
verticalToolBar->setOrientation(Qt::Vertical);
|
|
verticalToolBar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
verticalToolBar->setIconSize(QSize(24, 24));
|
|
QHBoxLayout *verticalToolBarLayout = new QHBoxLayout;
|
|
verticalToolBarLayout->addStretch();
|
|
verticalToolBarLayout->addWidget(verticalToolBar);
|
|
verticalToolBarLayout->addStretch();
|
|
|
|
QVBoxLayout *middleFrame = new QVBoxLayout;
|
|
middleFrame->addWidget(cardInfo, 10);
|
|
middleFrame->addLayout(verticalToolBarLayout);
|
|
|
|
deckModel = new DeckListModel(this);
|
|
connect(deckModel, SIGNAL(deckHashChanged()), this, SLOT(updateHash()));
|
|
deckView = new QTreeView();
|
|
deckView->setModel(deckModel);
|
|
deckView->setUniformRowHeights(true);
|
|
deckView->header()->setResizeMode(QHeaderView::ResizeToContents);
|
|
connect(deckView->selectionModel(), SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), this, SLOT(updateCardInfoRight(const QModelIndex &, const QModelIndex &)));
|
|
|
|
nameLabel = new QLabel();
|
|
nameEdit = new QLineEdit;
|
|
nameLabel->setBuddy(nameEdit);
|
|
connect(nameEdit, SIGNAL(textChanged(const QString &)), this, SLOT(updateName(const QString &)));
|
|
commentsLabel = new QLabel();
|
|
commentsEdit = new QTextEdit;
|
|
commentsEdit->setMaximumHeight(70);
|
|
commentsLabel->setBuddy(commentsEdit);
|
|
connect(commentsEdit, SIGNAL(textChanged()), this, SLOT(updateComments()));
|
|
hashLabel1 = new QLabel();
|
|
hashLabel = new QLabel;
|
|
|
|
QGridLayout *grid = new QGridLayout;
|
|
grid->addWidget(nameLabel, 0, 0);
|
|
grid->addWidget(nameEdit, 0, 1);
|
|
|
|
grid->addWidget(commentsLabel, 1, 0);
|
|
grid->addWidget(commentsEdit, 1, 1);
|
|
|
|
grid->addWidget(hashLabel1, 2, 0);
|
|
grid->addWidget(hashLabel, 2, 1);
|
|
|
|
// Update price
|
|
aUpdatePrices = new QAction(QString(), this);
|
|
aUpdatePrices->setIcon(QIcon(":/resources/icon_update.png"));
|
|
connect(aUpdatePrices, SIGNAL(triggered()), this, SLOT(actUpdatePrices()));
|
|
if (!settingsCache->getPriceTagFeature())
|
|
aUpdatePrices->setVisible(false);
|
|
|
|
QToolBar *deckToolBar = new QToolBar;
|
|
deckToolBar->setOrientation(Qt::Vertical);
|
|
deckToolBar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
deckToolBar->setIconSize(QSize(24, 24));
|
|
deckToolBar->addAction(aUpdatePrices);
|
|
QHBoxLayout *deckToolbarLayout = new QHBoxLayout;
|
|
deckToolbarLayout->addStretch();
|
|
deckToolbarLayout->addWidget(deckToolBar);
|
|
deckToolbarLayout->addStretch();
|
|
|
|
QVBoxLayout *rightFrame = new QVBoxLayout;
|
|
rightFrame->addLayout(grid);
|
|
rightFrame->addWidget(deckView, 10);
|
|
rightFrame->addLayout(deckToolbarLayout);
|
|
|
|
QHBoxLayout *mainLayout = new QHBoxLayout;
|
|
mainLayout->addLayout(leftFrame, 10);
|
|
mainLayout->addLayout(middleFrame);
|
|
mainLayout->addLayout(rightFrame, 10);
|
|
setLayout(mainLayout);
|
|
|
|
setWindowTitle(tr("Deck editor [*]"));
|
|
|
|
aNewDeck = new QAction(QString(), this);
|
|
aNewDeck->setShortcuts(QKeySequence::New);
|
|
connect(aNewDeck, SIGNAL(triggered()), this, SLOT(actNewDeck()));
|
|
aLoadDeck = new QAction(QString(), this);
|
|
aLoadDeck->setShortcuts(QKeySequence::Open);
|
|
connect(aLoadDeck, SIGNAL(triggered()), this, SLOT(actLoadDeck()));
|
|
aSaveDeck = new QAction(QString(), this);
|
|
aSaveDeck->setShortcuts(QKeySequence::Save);
|
|
connect(aSaveDeck, SIGNAL(triggered()), this, SLOT(actSaveDeck()));
|
|
aSaveDeckAs = new QAction(QString(), this);
|
|
// aSaveDeckAs->setShortcuts(QKeySequence::SaveAs);
|
|
connect(aSaveDeckAs, SIGNAL(triggered()), this, SLOT(actSaveDeckAs()));
|
|
aLoadDeckFromClipboard = new QAction(QString(), this);
|
|
connect(aLoadDeckFromClipboard, SIGNAL(triggered()), this, SLOT(actLoadDeckFromClipboard()));
|
|
aLoadDeckFromClipboard->setShortcuts(QKeySequence::Paste);
|
|
aSaveDeckToClipboard = new QAction(QString(), this);
|
|
connect(aSaveDeckToClipboard, SIGNAL(triggered()), this, SLOT(actSaveDeckToClipboard()));
|
|
aSaveDeckToClipboard->setShortcuts(QKeySequence::Copy);
|
|
aPrintDeck = new QAction(tr("&Print deck..."), this);
|
|
aPrintDeck->setShortcuts(QKeySequence::Print);
|
|
connect(aPrintDeck, SIGNAL(triggered()), this, SLOT(actPrintDeck()));
|
|
aClose = new QAction(tr("&Close"), this);
|
|
aClose->setShortcut(tr("Ctrl+Q"));
|
|
connect(aClose, SIGNAL(triggered()), this, SLOT(closeRequest()));
|
|
|
|
aEditSets = new QAction(tr("&Edit sets..."), this);
|
|
connect(aEditSets, SIGNAL(triggered()), this, SLOT(actEditSets()));
|
|
|
|
deckMenu = new QMenu(this);
|
|
deckMenu->addAction(aNewDeck);
|
|
deckMenu->addAction(aLoadDeck);
|
|
deckMenu->addAction(aSaveDeck);
|
|
deckMenu->addAction(aSaveDeckAs);
|
|
deckMenu->addSeparator();
|
|
deckMenu->addAction(aLoadDeckFromClipboard);
|
|
deckMenu->addAction(aSaveDeckToClipboard);
|
|
deckMenu->addSeparator();
|
|
deckMenu->addAction(aPrintDeck);
|
|
deckMenu->addSeparator();
|
|
deckMenu->addAction(aClose);
|
|
addTabMenu(deckMenu);
|
|
|
|
dbMenu = new QMenu(this);
|
|
dbMenu->addAction(aEditSets);
|
|
dbMenu->addSeparator();
|
|
dbMenu->addAction(aSearch);
|
|
dbMenu->addAction(aClearSearch);
|
|
addTabMenu(dbMenu);
|
|
|
|
aAddCard = new QAction(QString(), this);
|
|
aAddCard->setIcon(QIcon(":/resources/arrow_right_green.svg"));
|
|
connect(aAddCard, SIGNAL(triggered()), this, SLOT(actAddCard()));
|
|
aAddCardToSideboard = new QAction(QString(), this);
|
|
aAddCardToSideboard->setIcon(QIcon(":/resources/add_to_sideboard.svg"));
|
|
connect(aAddCardToSideboard, SIGNAL(triggered()), this, SLOT(actAddCardToSideboard()));
|
|
aRemoveCard = new QAction(QString(), this);
|
|
aRemoveCard->setIcon(QIcon(":/resources/remove_row.svg"));
|
|
connect(aRemoveCard, SIGNAL(triggered()), this, SLOT(actRemoveCard()));
|
|
aIncrement = new QAction(QString(), this);
|
|
aIncrement->setIcon(QIcon(":/resources/increment.svg"));
|
|
connect(aIncrement, SIGNAL(triggered()), this, SLOT(actIncrement()));
|
|
aDecrement = new QAction(QString(), this);
|
|
aDecrement->setIcon(QIcon(":/resources/decrement.svg"));
|
|
connect(aDecrement, SIGNAL(triggered()), this, SLOT(actDecrement()));
|
|
|
|
verticalToolBar->addAction(aAddCard);
|
|
verticalToolBar->addAction(aAddCardToSideboard);
|
|
verticalToolBar->addAction(aRemoveCard);
|
|
verticalToolBar->addAction(aIncrement);
|
|
verticalToolBar->addAction(aDecrement);
|
|
verticalToolBar->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
|
|
|
|
dlgCardSearch = new DlgCardSearch(this);
|
|
|
|
retranslateUi();
|
|
|
|
resize(950, 700);
|
|
}
|
|
|
|
TabDeckEditor::~TabDeckEditor()
|
|
{
|
|
emit deckEditorClosing(this);
|
|
}
|
|
|
|
void TabDeckEditor::retranslateUi()
|
|
{
|
|
aSearch->setText(tr("&Search..."));
|
|
aClearSearch->setText(tr("&Clear search"));
|
|
searchLabel->setText(tr("&Search for:"));
|
|
|
|
nameLabel->setText(tr("Deck &name:"));
|
|
commentsLabel->setText(tr("&Comments:"));
|
|
hashLabel1->setText(tr("Hash:"));
|
|
|
|
aUpdatePrices->setText(tr("&Update prices"));
|
|
aUpdatePrices->setShortcut(tr("Ctrl+U"));
|
|
|
|
aNewDeck->setText(tr("&New deck"));
|
|
aLoadDeck->setText(tr("&Load deck..."));
|
|
aSaveDeck->setText(tr("&Save deck"));
|
|
aSaveDeckAs->setText(tr("Save deck &as..."));
|
|
aLoadDeckFromClipboard->setText(tr("Load deck from cl&ipboard..."));
|
|
aSaveDeckToClipboard->setText(tr("Save deck to clip&board"));
|
|
|
|
aAddCard->setText(tr("Add card to &maindeck"));
|
|
aAddCard->setShortcuts(QList<QKeySequence>() << QKeySequence(tr("Return")) << QKeySequence(tr("Enter")));
|
|
aAddCardToSideboard->setText(tr("Add card to &sideboard"));
|
|
aAddCardToSideboard->setShortcuts(QList<QKeySequence>() << QKeySequence(tr("Ctrl+Return")) << QKeySequence(tr("Ctrl+Enter")));
|
|
aRemoveCard->setText(tr("&Remove row"));
|
|
aRemoveCard->setShortcut(tr("Del"));
|
|
aIncrement->setText(tr("&Increment number"));
|
|
aIncrement->setShortcut(tr("+"));
|
|
aDecrement->setText(tr("&Decrement number"));
|
|
aDecrement->setShortcut(tr("-"));
|
|
|
|
deckMenu->setTitle(tr("&Deck editor"));
|
|
dbMenu->setTitle(tr("C&ard database"));
|
|
}
|
|
|
|
QString TabDeckEditor::getTabText() const
|
|
{
|
|
QString result = tr("Deck: %1").arg(nameEdit->text());
|
|
if (isWindowModified())
|
|
result.prepend("* ");
|
|
return result;
|
|
}
|
|
|
|
void TabDeckEditor::updateName(const QString &name)
|
|
{
|
|
deckModel->getDeckList()->setName(name);
|
|
setWindowModified(true);
|
|
}
|
|
|
|
void TabDeckEditor::updateComments()
|
|
{
|
|
deckModel->getDeckList()->setComments(commentsEdit->toPlainText());
|
|
setWindowModified(true);
|
|
}
|
|
|
|
void TabDeckEditor::updateCardInfoLeft(const QModelIndex ¤t, const QModelIndex &/*previous*/)
|
|
{
|
|
cardInfo->setCard(current.sibling(current.row(), 0).data().toString());
|
|
}
|
|
|
|
void TabDeckEditor::updateCardInfoRight(const QModelIndex ¤t, const QModelIndex &/*previous*/)
|
|
{
|
|
if (!current.isValid())
|
|
return;
|
|
if (!current.model()->hasChildren(current.sibling(current.row(), 0)))
|
|
cardInfo->setCard(current.sibling(current.row(), 1).data().toString());
|
|
}
|
|
|
|
void TabDeckEditor::updateSearch(const QString &search)
|
|
{
|
|
databaseDisplayModel->setCardNameBeginning(search);
|
|
QModelIndexList sel = databaseView->selectionModel()->selectedRows();
|
|
if (sel.isEmpty() && databaseDisplayModel->rowCount())
|
|
databaseView->selectionModel()->setCurrentIndex(databaseDisplayModel->index(0, 0), QItemSelectionModel::SelectCurrent | QItemSelectionModel::Rows);
|
|
}
|
|
|
|
void TabDeckEditor::updateHash()
|
|
{
|
|
hashLabel->setText(deckModel->getDeckList()->getDeckHash());
|
|
}
|
|
|
|
bool TabDeckEditor::confirmClose()
|
|
{
|
|
if (isWindowModified()) {
|
|
QMessageBox::StandardButton ret = QMessageBox::warning(this, tr("Are you sure?"),
|
|
tr("The decklist has been modified.\nDo you want to save the changes?"),
|
|
QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);
|
|
if (ret == QMessageBox::Save)
|
|
return actSaveDeck();
|
|
else if (ret == QMessageBox::Cancel)
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void TabDeckEditor::closeRequest()
|
|
{
|
|
if (confirmClose())
|
|
deleteLater();
|
|
}
|
|
|
|
void TabDeckEditor::actNewDeck()
|
|
{
|
|
if (!confirmClose())
|
|
return;
|
|
|
|
deckModel->cleanList();
|
|
nameEdit->setText(QString());
|
|
commentsEdit->setText(QString());
|
|
hashLabel->setText(QString());
|
|
setWindowModified(false);
|
|
}
|
|
|
|
void TabDeckEditor::actLoadDeck()
|
|
{
|
|
if (!confirmClose())
|
|
return;
|
|
|
|
QFileDialog dialog(this, tr("Load deck"));
|
|
dialog.setDirectory(settingsCache->getDeckPath());
|
|
dialog.setNameFilters(DeckLoader::fileNameFilters);
|
|
if (!dialog.exec())
|
|
return;
|
|
|
|
QString fileName = dialog.selectedFiles().at(0);
|
|
DeckLoader::FileFormat fmt = DeckLoader::getFormatFromNameFilter(dialog.selectedNameFilter());
|
|
|
|
DeckLoader *l = new DeckLoader;
|
|
if (l->loadFromFile(fileName, fmt))
|
|
setDeck(l);
|
|
else
|
|
delete l;
|
|
}
|
|
|
|
void TabDeckEditor::saveDeckRemoteFinished(const Response &response)
|
|
{
|
|
if (response.response_code() != Response::RespOk)
|
|
QMessageBox::critical(this, tr("Error"), tr("The deck could not be saved."));
|
|
else
|
|
setWindowModified(false);
|
|
}
|
|
|
|
bool TabDeckEditor::actSaveDeck()
|
|
{
|
|
DeckLoader *const deck = deckModel->getDeckList();
|
|
if (deck->getLastRemoteDeckId() != -1) {
|
|
Command_DeckUpload cmd;
|
|
cmd.set_deck_id(deck->getLastRemoteDeckId());
|
|
cmd.set_deck_list(deck->writeToString_Native().toStdString());
|
|
|
|
PendingCommand *pend = AbstractClient::prepareSessionCommand(cmd);
|
|
connect(pend, SIGNAL(finished(Response, CommandContainer, QVariant)), this, SLOT(saveDeckRemoteFinished(Response)));
|
|
tabSupervisor->getClient()->sendCommand(pend);
|
|
|
|
return true;
|
|
} else if (deck->getLastFileName().isEmpty())
|
|
return actSaveDeckAs();
|
|
else if (deck->saveToFile(deck->getLastFileName(), deck->getLastFileFormat())) {
|
|
setWindowModified(false);
|
|
return true;
|
|
}
|
|
QMessageBox::critical(this, tr("Error"), tr("The deck could not be saved.\nPlease check that the directory is writable and try again."));
|
|
return false;
|
|
}
|
|
|
|
bool TabDeckEditor::actSaveDeckAs()
|
|
{
|
|
QFileDialog dialog(this, tr("Save deck"));
|
|
dialog.setDirectory(settingsCache->getDeckPath());
|
|
dialog.setAcceptMode(QFileDialog::AcceptSave);
|
|
dialog.setConfirmOverwrite(true);
|
|
dialog.setDefaultSuffix("cod");
|
|
dialog.setNameFilters(DeckLoader::fileNameFilters);
|
|
dialog.selectFile(deckModel->getDeckList()->getName());
|
|
if (!dialog.exec())
|
|
return false;
|
|
|
|
QString fileName = dialog.selectedFiles().at(0);
|
|
DeckLoader::FileFormat fmt = DeckLoader::getFormatFromNameFilter(dialog.selectedNameFilter());
|
|
|
|
if (!deckModel->getDeckList()->saveToFile(fileName, fmt)) {
|
|
QMessageBox::critical(this, tr("Error"), tr("The deck could not be saved.\nPlease check that the directory is writable and try again."));
|
|
return false;
|
|
}
|
|
setWindowModified(false);
|
|
return true;
|
|
}
|
|
|
|
void TabDeckEditor::actLoadDeckFromClipboard()
|
|
{
|
|
if (!confirmClose())
|
|
return;
|
|
|
|
DlgLoadDeckFromClipboard dlg;
|
|
if (!dlg.exec())
|
|
return;
|
|
|
|
setDeck(dlg.getDeckList());
|
|
setWindowModified(true);
|
|
}
|
|
|
|
void TabDeckEditor::actSaveDeckToClipboard()
|
|
{
|
|
QString buffer;
|
|
QTextStream stream(&buffer);
|
|
deckModel->getDeckList()->saveToStream_Plain(stream);
|
|
QApplication::clipboard()->setText(buffer, QClipboard::Clipboard);
|
|
QApplication::clipboard()->setText(buffer, QClipboard::Selection);
|
|
}
|
|
|
|
void TabDeckEditor::actPrintDeck()
|
|
{
|
|
QPrintPreviewDialog *dlg = new QPrintPreviewDialog(this);
|
|
connect(dlg, SIGNAL(paintRequested(QPrinter *)), deckModel, SLOT(printDeckList(QPrinter *)));
|
|
dlg->exec();
|
|
}
|
|
|
|
void TabDeckEditor::actEditSets()
|
|
{
|
|
WndSets *w = new WndSets;
|
|
w->setWindowModality(Qt::WindowModal);
|
|
w->show();
|
|
}
|
|
|
|
void TabDeckEditor::actSearch()
|
|
{
|
|
if (dlgCardSearch->exec()) {
|
|
searchEdit->clear();
|
|
databaseDisplayModel->setCardName(dlgCardSearch->getCardName());
|
|
databaseDisplayModel->setCardText(dlgCardSearch->getCardText());
|
|
databaseDisplayModel->setCardTypes(dlgCardSearch->getCardTypes());
|
|
databaseDisplayModel->setCardColors(dlgCardSearch->getCardColors());
|
|
}
|
|
}
|
|
|
|
void TabDeckEditor::actClearSearch()
|
|
{
|
|
databaseDisplayModel->clearSearch();
|
|
}
|
|
|
|
void TabDeckEditor::recursiveExpand(const QModelIndex &index)
|
|
{
|
|
if (index.parent().isValid())
|
|
recursiveExpand(index.parent());
|
|
deckView->expand(index);
|
|
}
|
|
|
|
void TabDeckEditor::addCardHelper(QString zoneName)
|
|
{
|
|
const QModelIndex currentIndex = databaseView->selectionModel()->currentIndex();
|
|
if (!currentIndex.isValid())
|
|
return;
|
|
const QString cardName = currentIndex.sibling(currentIndex.row(), 0).data().toString();
|
|
|
|
CardInfo *info = db->getCard(cardName);
|
|
if (info->getIsToken())
|
|
zoneName = "tokens";
|
|
|
|
QModelIndex newCardIndex = deckModel->addCard(cardName, zoneName);
|
|
recursiveExpand(newCardIndex);
|
|
deckView->setCurrentIndex(newCardIndex);
|
|
|
|
setWindowModified(true);
|
|
}
|
|
|
|
void TabDeckEditor::actAddCard()
|
|
{
|
|
addCardHelper("main");
|
|
}
|
|
|
|
void TabDeckEditor::actAddCardToSideboard()
|
|
{
|
|
addCardHelper("side");
|
|
}
|
|
|
|
void TabDeckEditor::actRemoveCard()
|
|
{
|
|
const QModelIndex ¤tIndex = deckView->selectionModel()->currentIndex();
|
|
if (!currentIndex.isValid() || deckModel->hasChildren(currentIndex))
|
|
return;
|
|
deckModel->removeRow(currentIndex.row(), currentIndex.parent());
|
|
setWindowModified(true);
|
|
}
|
|
|
|
void TabDeckEditor::actIncrement()
|
|
{
|
|
const QModelIndex ¤tIndex = deckView->selectionModel()->currentIndex();
|
|
if (!currentIndex.isValid())
|
|
return;
|
|
const QModelIndex numberIndex = currentIndex.sibling(currentIndex.row(), 0);
|
|
const int count = deckModel->data(numberIndex, Qt::EditRole).toInt();
|
|
deckView->setCurrentIndex(numberIndex);
|
|
deckModel->setData(numberIndex, count + 1, Qt::EditRole);
|
|
setWindowModified(true);
|
|
}
|
|
|
|
void TabDeckEditor::actDecrement()
|
|
{
|
|
const QModelIndex ¤tIndex = deckView->selectionModel()->currentIndex();
|
|
if (!currentIndex.isValid())
|
|
return;
|
|
const QModelIndex numberIndex = currentIndex.sibling(currentIndex.row(), 0);
|
|
const int count = deckModel->data(numberIndex, Qt::EditRole).toInt();
|
|
deckView->setCurrentIndex(numberIndex);
|
|
if (count == 1)
|
|
deckModel->removeRow(currentIndex.row(), currentIndex.parent());
|
|
else
|
|
deckModel->setData(numberIndex, count - 1, Qt::EditRole);
|
|
setWindowModified(true);
|
|
}
|
|
|
|
void TabDeckEditor::actUpdatePrices()
|
|
{
|
|
aUpdatePrices->setDisabled(true);
|
|
PriceUpdater *up = new PriceUpdater(deckModel->getDeckList());
|
|
connect(up, SIGNAL(finishedUpdate()), this, SLOT(finishedUpdatingPrices()));
|
|
up->updatePrices();
|
|
}
|
|
|
|
void TabDeckEditor::finishedUpdatingPrices()
|
|
{
|
|
deckModel->pricesUpdated();
|
|
setWindowModified(true);
|
|
aUpdatePrices->setDisabled(false);
|
|
}
|
|
|
|
void TabDeckEditor::setDeck(DeckLoader *_deck)
|
|
{
|
|
deckModel->setDeckList(_deck);
|
|
|
|
nameEdit->setText(deckModel->getDeckList()->getName());
|
|
commentsEdit->setText(deckModel->getDeckList()->getComments());
|
|
updateHash();
|
|
deckModel->sort(1);
|
|
deckView->expandAll();
|
|
setWindowModified(false);
|
|
|
|
db->cacheCardPixmaps(deckModel->getDeckList()->getCardList());
|
|
deckView->expandAll();
|
|
setWindowModified(false);
|
|
}
|
|
|
|
void TabDeckEditor::setWindowModified(bool _windowModified)
|
|
{
|
|
Tab::setWindowModified(_windowModified);
|
|
emit tabTextChanged(this, getTabText());
|
|
}
|