437 lines
14 KiB
C++
437 lines
14 KiB
C++
#include "dlg_manage_sets.h"
|
|
|
|
#include "customlineedit.h"
|
|
#include "main.h"
|
|
#include "pictureloader.h"
|
|
#include "setsmodel.h"
|
|
|
|
#include <QAction>
|
|
#include <QDebug>
|
|
#include <QDialogButtonBox>
|
|
#include <QGridLayout>
|
|
#include <QGroupBox>
|
|
#include <QHBoxLayout>
|
|
#include <QHeaderView>
|
|
#include <QItemSelection>
|
|
#include <QLabel>
|
|
#include <QMessageBox>
|
|
#include <QPushButton>
|
|
#include <QToolBar>
|
|
#include <QTreeView>
|
|
#include <algorithm>
|
|
|
|
#define SORT_RESET -1
|
|
|
|
WndSets::WndSets(QWidget *parent) : QMainWindow(parent)
|
|
{
|
|
setOrderIsSorted = false;
|
|
|
|
// left toolbar
|
|
setsEditToolBar = new QToolBar;
|
|
setsEditToolBar->setOrientation(Qt::Vertical);
|
|
setsEditToolBar->setIconSize(QSize(24, 24));
|
|
setsEditToolBar->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
|
|
|
|
aTop = new QAction(QString(), this);
|
|
aTop->setIcon(QPixmap("theme:icons/arrow_top_green"));
|
|
aTop->setToolTip(tr("Move selected set to the top"));
|
|
aTop->setEnabled(false);
|
|
connect(aTop, SIGNAL(triggered()), this, SLOT(actTop()));
|
|
setsEditToolBar->addAction(aTop);
|
|
|
|
aUp = new QAction(QString(), this);
|
|
aUp->setIcon(QPixmap("theme:icons/arrow_up_green"));
|
|
aUp->setToolTip(tr("Move selected set up"));
|
|
aUp->setEnabled(false);
|
|
connect(aUp, SIGNAL(triggered()), this, SLOT(actUp()));
|
|
setsEditToolBar->addAction(aUp);
|
|
|
|
aDown = new QAction(QString(), this);
|
|
aDown->setIcon(QPixmap("theme:icons/arrow_down_green"));
|
|
aDown->setToolTip(tr("Move selected set down"));
|
|
aDown->setEnabled(false);
|
|
connect(aDown, SIGNAL(triggered()), this, SLOT(actDown()));
|
|
setsEditToolBar->addAction(aDown);
|
|
|
|
aBottom = new QAction(QString(), this);
|
|
aBottom->setIcon(QPixmap("theme:icons/arrow_bottom_green"));
|
|
aBottom->setToolTip(tr("Move selected set to the bottom"));
|
|
aBottom->setEnabled(false);
|
|
connect(aBottom, SIGNAL(triggered()), this, SLOT(actBottom()));
|
|
setsEditToolBar->addAction(aBottom);
|
|
|
|
// search field
|
|
searchField = new LineEditUnfocusable;
|
|
searchField->setObjectName("searchEdit");
|
|
searchField->setPlaceholderText(tr("Search by set name, code, or type"));
|
|
searchField->addAction(QPixmap("theme:icons/search"), LineEditUnfocusable::LeadingPosition);
|
|
searchField->setClearButtonEnabled(true);
|
|
setFocusProxy(searchField);
|
|
|
|
defaultSortButton = new QPushButton(tr("Default order"));
|
|
defaultSortButton->setToolTip(tr("Restore original art priority order"));
|
|
|
|
connect(defaultSortButton, SIGNAL(clicked()), this, SLOT(actRestoreOriginalOrder()));
|
|
|
|
filterBox = new QHBoxLayout;
|
|
filterBox->addWidget(searchField);
|
|
filterBox->addWidget(defaultSortButton);
|
|
|
|
// view
|
|
model = new SetsModel(db, this);
|
|
displayModel = new SetsDisplayModel(this);
|
|
displayModel->setSourceModel(model);
|
|
displayModel->setDynamicSortFilter(false);
|
|
view = new QTreeView;
|
|
view->setModel(displayModel);
|
|
view->setMinimumSize(QSize(500, 250));
|
|
|
|
view->setAlternatingRowColors(true);
|
|
view->setUniformRowHeights(true);
|
|
view->setAllColumnsShowFocus(true);
|
|
view->setSortingEnabled(true);
|
|
view->setSelectionBehavior(QAbstractItemView::SelectRows);
|
|
view->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
|
|
view->setDragEnabled(true);
|
|
view->setAcceptDrops(true);
|
|
view->setDropIndicatorShown(true);
|
|
view->setDragDropMode(QAbstractItemView::InternalMove);
|
|
|
|
view->header()->setSectionResizeMode(QHeaderView::Stretch);
|
|
view->header()->setSectionResizeMode(SetsModel::EnabledCol, QHeaderView::ResizeToContents);
|
|
view->header()->setSectionResizeMode(SetsModel::LongNameCol, QHeaderView::ResizeToContents);
|
|
|
|
view->sortByColumn(SetsModel::SortKeyCol, Qt::AscendingOrder);
|
|
view->setColumnHidden(SetsModel::SortKeyCol, true);
|
|
view->setColumnHidden(SetsModel::IsKnownCol, true);
|
|
view->setRootIsDecorated(false);
|
|
|
|
connect(view->header(), SIGNAL(sectionClicked(int)), this, SLOT(actSort(int)));
|
|
|
|
// bottom buttons
|
|
enableAllButton = new QPushButton(tr("Enable all sets"));
|
|
disableAllButton = new QPushButton(tr("Disable all sets"));
|
|
enableSomeButton = new QPushButton(tr("Enable selected set(s)"));
|
|
disableSomeButton = new QPushButton(tr("Disable selected set(s)"));
|
|
|
|
connect(enableAllButton, SIGNAL(clicked()), this, SLOT(actEnableAll()));
|
|
connect(disableAllButton, SIGNAL(clicked()), this, SLOT(actDisableAll()));
|
|
connect(enableSomeButton, SIGNAL(clicked()), this, SLOT(actEnableSome()));
|
|
connect(disableSomeButton, SIGNAL(clicked()), this, SLOT(actDisableSome()));
|
|
connect(view->selectionModel(), SIGNAL(selectionChanged(const QItemSelection &, const QItemSelection &)), this,
|
|
SLOT(actToggleButtons(const QItemSelection &, const QItemSelection &)));
|
|
connect(searchField, SIGNAL(textChanged(const QString &)), displayModel, SLOT(setFilterRegExp(const QString &)));
|
|
connect(view->header(), SIGNAL(sortIndicatorChanged(int, Qt::SortOrder)), this, SLOT(actDisableSortButtons(int)));
|
|
connect(searchField, SIGNAL(textChanged(const QString &)), this, SLOT(actDisableResetButton(const QString &)));
|
|
|
|
labNotes = new QLabel;
|
|
labNotes->setWordWrap(true);
|
|
labNotes->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
|
labNotes->setOpenExternalLinks(true);
|
|
labNotes->setText(tr("Use CTRL+A to select all sets in the view.") + "<br><b>" + tr("Deck Editor") + ":</b> " +
|
|
tr("Only cards in enabled sets will appear in the card list of the deck editor.") + "<br><b>" +
|
|
tr("Card Art") + ":</b> " + tr("Image priority is decided in the following order:") + "<br>" +
|
|
tr("first the CUSTOM Folder (%1), then the Enabled Sets in this dialog (Top to Bottom)",
|
|
"%1 is a link to the wiki")
|
|
.arg("<a href='https://github.com/Cockatrice/Cockatrice/wiki/Custom-Cards-%26-Sets"
|
|
"#to-add-custom-art-for-cards-the-easiest-way-is-to-use-the-custom-folder'>" +
|
|
tr("How to use custom card art") + "</a>"));
|
|
|
|
QGridLayout *hintsGrid = new QGridLayout;
|
|
hintsGrid->setMargin(2);
|
|
hintsGrid->addWidget(labNotes, 0, 0);
|
|
hintsGroupBox = new QGroupBox(tr("Hints"));
|
|
hintsGroupBox->setLayout(hintsGrid);
|
|
|
|
sortWarning = new QGroupBox(tr("Note"));
|
|
QGridLayout *sortWarningLayout = new QGridLayout;
|
|
sortWarningText = new QLabel;
|
|
sortWarningText->setWordWrap(true);
|
|
sortWarningText->setText(tr("Sorting by column allows you to find a set while not changing set priority.") + " " +
|
|
tr("To enable ordering again, click the column header until this message disappears."));
|
|
sortWarningLayout->addWidget(sortWarningText, 0, 0, 1, 2);
|
|
sortWarningButton = new QPushButton;
|
|
sortWarningButton->setText(tr("Use the current sorting as the set priority instead"));
|
|
sortWarningButton->setToolTip(tr("Sorts the set priority using the same column"));
|
|
sortWarningButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
|
connect(sortWarningButton, SIGNAL(released()), this, SLOT(actIgnoreWarning()));
|
|
sortWarningLayout->addWidget(sortWarningButton, 1, 0);
|
|
sortWarning->setLayout(sortWarningLayout);
|
|
sortWarning->setVisible(false);
|
|
|
|
buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
connect(buttonBox, SIGNAL(accepted()), this, SLOT(actSave()));
|
|
connect(buttonBox, SIGNAL(rejected()), this, SLOT(actRestore()));
|
|
|
|
mainLayout = new QGridLayout;
|
|
mainLayout->addLayout(filterBox, 0, 1, 1, 2);
|
|
mainLayout->addWidget(setsEditToolBar, 1, 0, 2, 1);
|
|
mainLayout->addWidget(view, 1, 1, 1, 2);
|
|
mainLayout->addWidget(enableAllButton, 2, 1);
|
|
mainLayout->addWidget(disableAllButton, 2, 2);
|
|
mainLayout->addWidget(enableSomeButton, 2, 1);
|
|
mainLayout->addWidget(disableSomeButton, 2, 2);
|
|
mainLayout->addWidget(sortWarning, 3, 1, 1, 2);
|
|
mainLayout->addWidget(hintsGroupBox, 4, 1, 1, 2);
|
|
mainLayout->addWidget(buttonBox, 5, 1, 1, 2);
|
|
mainLayout->setColumnStretch(1, 1);
|
|
mainLayout->setColumnStretch(2, 1);
|
|
|
|
enableSomeButton->hide();
|
|
disableSomeButton->hide();
|
|
|
|
QWidget *centralWidget = new QWidget;
|
|
centralWidget->setLayout(mainLayout);
|
|
setCentralWidget(centralWidget);
|
|
|
|
setWindowTitle(tr("Manage sets"));
|
|
resize(800, 500);
|
|
}
|
|
|
|
WndSets::~WndSets()
|
|
{
|
|
}
|
|
|
|
void WndSets::rebuildMainLayout(int actionToTake)
|
|
{
|
|
if (mainLayout == nullptr)
|
|
return;
|
|
|
|
switch (actionToTake) {
|
|
case NO_SETS_SELECTED:
|
|
enableAllButton->show();
|
|
disableAllButton->show();
|
|
enableSomeButton->hide();
|
|
disableSomeButton->hide();
|
|
break;
|
|
|
|
case SOME_SETS_SELECTED:
|
|
enableAllButton->hide();
|
|
disableAllButton->hide();
|
|
enableSomeButton->show();
|
|
disableSomeButton->show();
|
|
break;
|
|
}
|
|
}
|
|
|
|
void WndSets::actSave()
|
|
{
|
|
model->save(db);
|
|
PictureLoader::clearPixmapCache();
|
|
close();
|
|
}
|
|
|
|
void WndSets::actRestore()
|
|
{
|
|
model->restore(db);
|
|
close();
|
|
}
|
|
|
|
void WndSets::actRestoreOriginalOrder()
|
|
{
|
|
view->header()->setSortIndicator(SORT_RESET, Qt::DescendingOrder);
|
|
model->sort(model->ReleaseDateCol, Qt::DescendingOrder);
|
|
sortWarning->setVisible(false);
|
|
}
|
|
|
|
void WndSets::actDisableResetButton(const QString &filterString)
|
|
{
|
|
if (filterString.isEmpty()) {
|
|
defaultSortButton->setEnabled(true);
|
|
} else {
|
|
defaultSortButton->setEnabled(false);
|
|
}
|
|
}
|
|
|
|
void WndSets::actSort(int index)
|
|
{
|
|
if (sortIndex != index) {
|
|
view->sortByColumn(index, Qt::AscendingOrder);
|
|
sortOrder = Qt::AscendingOrder;
|
|
sortIndex = index;
|
|
sortWarning->setVisible(true);
|
|
} else {
|
|
if (sortOrder == Qt::AscendingOrder) {
|
|
view->sortByColumn(index, Qt::DescendingOrder);
|
|
sortOrder = Qt::DescendingOrder;
|
|
sortIndex = index;
|
|
sortWarning->setVisible(true);
|
|
} else {
|
|
view->header()->setSortIndicator(SORT_RESET, Qt::DescendingOrder);
|
|
sortIndex = -1;
|
|
sortWarning->setVisible(false);
|
|
}
|
|
}
|
|
}
|
|
|
|
void WndSets::actIgnoreWarning()
|
|
{
|
|
if (sortIndex < 0) {
|
|
return;
|
|
}
|
|
model->sort(sortIndex, sortOrder);
|
|
view->header()->setSortIndicator(SORT_RESET, Qt::DescendingOrder);
|
|
sortIndex = -1;
|
|
sortWarning->setVisible(false);
|
|
}
|
|
|
|
void WndSets::actDisableSortButtons(int index)
|
|
{
|
|
if (index != SORT_RESET) {
|
|
view->setDragEnabled(false);
|
|
setOrderIsSorted = true;
|
|
} else {
|
|
setOrderIsSorted = false;
|
|
view->setDragEnabled(true);
|
|
}
|
|
if (!view->selectionModel()->selection().empty()) {
|
|
view->scrollTo(view->selectionModel()->selectedRows().first());
|
|
}
|
|
actToggleButtons(view->selectionModel()->selection(), QItemSelection());
|
|
}
|
|
|
|
void WndSets::actToggleButtons(const QItemSelection &selected, const QItemSelection &)
|
|
{
|
|
bool emptySelection = selected.empty();
|
|
aTop->setDisabled(emptySelection || setOrderIsSorted);
|
|
aUp->setDisabled(emptySelection || setOrderIsSorted);
|
|
aDown->setDisabled(emptySelection || setOrderIsSorted);
|
|
aBottom->setDisabled(emptySelection || setOrderIsSorted);
|
|
|
|
int rows = view->selectionModel()->selectedRows().size();
|
|
rebuildMainLayout((rows > 1) ? SOME_SETS_SELECTED : NO_SETS_SELECTED);
|
|
}
|
|
|
|
void WndSets::selectRows(QSet<int> rows)
|
|
{
|
|
for (auto i : rows) {
|
|
QModelIndex idx = model->index(i, 0);
|
|
view->selectionModel()->select(idx, QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
|
view->scrollTo(idx, QAbstractItemView::EnsureVisible);
|
|
}
|
|
}
|
|
|
|
void WndSets::actEnableAll()
|
|
{
|
|
model->toggleAll(true);
|
|
}
|
|
|
|
void WndSets::actDisableAll()
|
|
{
|
|
model->toggleAll(false);
|
|
}
|
|
|
|
void WndSets::actEnableSome()
|
|
{
|
|
QModelIndexList rows = view->selectionModel()->selectedRows();
|
|
|
|
for (auto i : rows) {
|
|
model->toggleRow(displayModel->mapToSource(i).row(), true);
|
|
}
|
|
}
|
|
|
|
void WndSets::actDisableSome()
|
|
{
|
|
QModelIndexList rows = view->selectionModel()->selectedRows();
|
|
|
|
for (auto i : rows) {
|
|
model->toggleRow(displayModel->mapToSource(i).row(), false);
|
|
}
|
|
}
|
|
|
|
void WndSets::actUp()
|
|
{
|
|
QModelIndexList rows = view->selectionModel()->selectedRows();
|
|
std::sort(rows.begin(), rows.end(), std::less<QModelIndex>());
|
|
QSet<int> newRows;
|
|
|
|
if (rows.empty())
|
|
return;
|
|
|
|
for (auto i : rows) {
|
|
if (i.row() <= 0)
|
|
continue;
|
|
int oldRow = displayModel->mapToSource(i).row();
|
|
int newRow = i.row() - 1;
|
|
|
|
model->swapRows(oldRow, displayModel->mapToSource(displayModel->index(newRow, 0)).row());
|
|
newRows.insert(newRow);
|
|
}
|
|
|
|
selectRows(newRows);
|
|
}
|
|
|
|
void WndSets::actDown()
|
|
{
|
|
QModelIndexList rows = view->selectionModel()->selectedRows();
|
|
// QModelIndex only implements operator<, so we can't use std::greater
|
|
std::sort(rows.begin(), rows.end(), [](const QModelIndex &a, const QModelIndex &b) { return b < a; });
|
|
QSet<int> newRows;
|
|
|
|
if (rows.empty())
|
|
return;
|
|
|
|
for (auto i : rows) {
|
|
if (i.row() >= displayModel->rowCount() - 1)
|
|
continue;
|
|
int oldRow = displayModel->mapToSource(i).row();
|
|
int newRow = i.row() + 1;
|
|
|
|
model->swapRows(oldRow, displayModel->mapToSource(displayModel->index(newRow, 0)).row());
|
|
newRows.insert(newRow);
|
|
}
|
|
|
|
selectRows(newRows);
|
|
}
|
|
|
|
void WndSets::actTop()
|
|
{
|
|
QModelIndexList rows = view->selectionModel()->selectedRows();
|
|
std::sort(rows.begin(), rows.end(), std::less<QModelIndex>());
|
|
QSet<int> newRows;
|
|
int newRow = 0;
|
|
|
|
if (rows.empty())
|
|
return;
|
|
|
|
for (int i = 0; i < rows.length(); i++) {
|
|
int oldRow = displayModel->mapToSource(rows.at(i)).row();
|
|
|
|
if (oldRow <= 0) {
|
|
newRow++;
|
|
continue;
|
|
}
|
|
|
|
newRows.insert(newRow);
|
|
model->swapRows(oldRow, newRow++);
|
|
}
|
|
|
|
selectRows(newRows);
|
|
}
|
|
|
|
void WndSets::actBottom()
|
|
{
|
|
QModelIndexList rows = view->selectionModel()->selectedRows();
|
|
// QModelIndex only implements operator<, so we can't use std::greater
|
|
std::sort(rows.begin(), rows.end(), [](const QModelIndex &a, const QModelIndex &b) { return b < a; });
|
|
QSet<int> newRows;
|
|
int newRow = model->rowCount() - 1;
|
|
|
|
if (rows.empty())
|
|
return;
|
|
|
|
for (int i = 0; i < rows.length(); i++) {
|
|
int oldRow = displayModel->mapToSource(rows.at(i)).row();
|
|
|
|
if (oldRow >= newRow) {
|
|
newRow--;
|
|
continue;
|
|
}
|
|
|
|
newRows.insert(newRow);
|
|
model->swapRows(oldRow, newRow--);
|
|
}
|
|
|
|
selectRows(newRows);
|
|
}
|