mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-26 00:23:55 -07:00
Rename count to tally in the subtype breakdown feature
This commit is contained in:
parent
74381b5c06
commit
568e253a75
5 changed files with 45 additions and 45 deletions
|
|
@ -311,9 +311,9 @@ SettingsCache::SettingsCache()
|
||||||
focusCardViewSearchBar = settings->value("interface/focusCardViewSearchBar", true).toBool();
|
focusCardViewSearchBar = settings->value("interface/focusCardViewSearchBar", true).toBool();
|
||||||
keepGameChatFocus = settings->value("interface/keepGameChatFocus", false).toBool();
|
keepGameChatFocus = settings->value("interface/keepGameChatFocus", false).toBool();
|
||||||
|
|
||||||
showDragSelectionCount = settings->value("interface/showlassoselectioncount", true).toBool();
|
showDragSelectionTally = settings->value("interface/showlassoselectiontally", true).toBool();
|
||||||
showTotalSelectionCount = settings->value("interface/showpersistentselectioncount", true).toBool();
|
showTotalSelectionTally = settings->value("interface/showpersistentselectiontally", true).toBool();
|
||||||
showSubtypeSelectionCount = settings->value("interface/showsubtypeselectioncount", true).toBool();
|
showSubtypeSelectionTally = settings->value("interface/showsubtypeselectiontally", true).toBool();
|
||||||
|
|
||||||
showShortcuts = settings->value("menu/showshortcuts", true).toBool();
|
showShortcuts = settings->value("menu/showshortcuts", true).toBool();
|
||||||
showGameSelectorFilterToolbar = settings->value("menu/showgameselectorfiltertoolbar", true).toBool();
|
showGameSelectorFilterToolbar = settings->value("menu/showgameselectorfiltertoolbar", true).toBool();
|
||||||
|
|
@ -1376,22 +1376,22 @@ void SettingsCache::setRoundCardCorners(bool _roundCardCorners)
|
||||||
emit roundCardCornersChanged(roundCardCorners);
|
emit roundCardCornersChanged(roundCardCorners);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SettingsCache::setShowDragSelectionCount(QT_STATE_CHANGED_T _showDragSelectionCount)
|
void SettingsCache::setShowDragSelectionTally(QT_STATE_CHANGED_T _showDragSelectionTally)
|
||||||
{
|
{
|
||||||
showDragSelectionCount = static_cast<bool>(_showDragSelectionCount);
|
showDragSelectionTally = static_cast<bool>(_showDragSelectionTally);
|
||||||
settings->setValue("interface/showlassoselectioncount", showDragSelectionCount);
|
settings->setValue("interface/showlassoselectiontally", showDragSelectionTally);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SettingsCache::setShowTotalSelectionCount(QT_STATE_CHANGED_T _showTotalSelectionCount)
|
void SettingsCache::setShowTotalSelectionTally(QT_STATE_CHANGED_T _showTotalSelectionTally)
|
||||||
{
|
{
|
||||||
showTotalSelectionCount = static_cast<bool>(_showTotalSelectionCount);
|
showTotalSelectionTally = static_cast<bool>(_showTotalSelectionTally);
|
||||||
settings->setValue("interface/showpersistentselectioncount", showTotalSelectionCount);
|
settings->setValue("interface/showpersistentselectiontally", showTotalSelectionTally);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SettingsCache::setShowSubtypeSelectionCount(QT_STATE_CHANGED_T _showSubtypeSelectionCount)
|
void SettingsCache::setShowSubtypeSelectionTally(QT_STATE_CHANGED_T _showSubtypeSelectionTally)
|
||||||
{
|
{
|
||||||
showSubtypeSelectionCount = static_cast<bool>(_showSubtypeSelectionCount);
|
showSubtypeSelectionTally = static_cast<bool>(_showSubtypeSelectionTally);
|
||||||
settings->setValue("interface/showsubtypeselectioncount", showSubtypeSelectionCount);
|
settings->setValue("interface/showsubtypeselectiontally", showSubtypeSelectionTally);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SettingsCache::loadPaths()
|
void SettingsCache::loadPaths()
|
||||||
|
|
|
||||||
|
|
@ -351,9 +351,9 @@ private:
|
||||||
bool isPortableBuild;
|
bool isPortableBuild;
|
||||||
bool roundCardCorners;
|
bool roundCardCorners;
|
||||||
bool showStatusBar;
|
bool showStatusBar;
|
||||||
bool showDragSelectionCount;
|
bool showDragSelectionTally;
|
||||||
bool showTotalSelectionCount;
|
bool showTotalSelectionTally;
|
||||||
bool showSubtypeSelectionCount;
|
bool showSubtypeSelectionTally;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SettingsCache();
|
SettingsCache();
|
||||||
|
|
@ -469,17 +469,17 @@ public:
|
||||||
{
|
{
|
||||||
return showStatusBar;
|
return showStatusBar;
|
||||||
}
|
}
|
||||||
[[nodiscard]] bool getShowDragSelectionCount() const
|
[[nodiscard]] bool getShowDragSelectionTally() const
|
||||||
{
|
{
|
||||||
return showDragSelectionCount;
|
return showDragSelectionTally;
|
||||||
}
|
}
|
||||||
[[nodiscard]] bool getShowTotalSelectionCount() const
|
[[nodiscard]] bool getShowTotalSelectionTally() const
|
||||||
{
|
{
|
||||||
return showTotalSelectionCount;
|
return showTotalSelectionTally;
|
||||||
}
|
}
|
||||||
[[nodiscard]] bool getShowSubtypeSelectionCount() const
|
[[nodiscard]] bool getShowSubtypeSelectionTally() const
|
||||||
{
|
{
|
||||||
return showSubtypeSelectionCount;
|
return showSubtypeSelectionTally;
|
||||||
}
|
}
|
||||||
[[nodiscard]] bool getNotificationsEnabled() const
|
[[nodiscard]] bool getNotificationsEnabled() const
|
||||||
{
|
{
|
||||||
|
|
@ -1172,8 +1172,8 @@ public slots:
|
||||||
void setUpdateReleaseChannelIndex(int value);
|
void setUpdateReleaseChannelIndex(int value);
|
||||||
void setMaxFontSize(int _max);
|
void setMaxFontSize(int _max);
|
||||||
void setRoundCardCorners(bool _roundCardCorners);
|
void setRoundCardCorners(bool _roundCardCorners);
|
||||||
void setShowDragSelectionCount(QT_STATE_CHANGED_T _showDragSelectionCount);
|
void setShowDragSelectionTally(QT_STATE_CHANGED_T _showDragSelectionTally);
|
||||||
void setShowTotalSelectionCount(QT_STATE_CHANGED_T _showTotalSelectionCount);
|
void setShowTotalSelectionTally(QT_STATE_CHANGED_T _showTotalSelectionTally);
|
||||||
void setShowSubtypeSelectionCount(QT_STATE_CHANGED_T _showSubtypeSelectionCount);
|
void setShowSubtypeSelectionTally(QT_STATE_CHANGED_T _showSubtypeSelectionTally);
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,7 @@ void GameView::resizeRubberBand(const QPointF &cursorPoint, int selectedCount)
|
||||||
QRect rect = QRect(mapFromScene(selectionOrigin), cursor).normalized();
|
QRect rect = QRect(mapFromScene(selectionOrigin), cursor).normalized();
|
||||||
rubberBand->setGeometry(rect);
|
rubberBand->setGeometry(rect);
|
||||||
|
|
||||||
if (!SettingsCache::instance().getShowDragSelectionCount()) {
|
if (!SettingsCache::instance().getShowDragSelectionTally()) {
|
||||||
dragCountLabel->hide();
|
dragCountLabel->hide();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
@ -218,7 +218,7 @@ void GameView::updateTotalSelectionCount(const QSize &viewSize)
|
||||||
|
|
||||||
int count = scene()->selectedItems().count();
|
int count = scene()->selectedItems().count();
|
||||||
|
|
||||||
if (!SettingsCache::instance().getShowTotalSelectionCount() || count <= 1) {
|
if (!SettingsCache::instance().getShowTotalSelectionTally() || count <= 1) {
|
||||||
totalCountLabel->hide();
|
totalCountLabel->hide();
|
||||||
} else {
|
} else {
|
||||||
totalCountLabel->setText(QString::number(count));
|
totalCountLabel->setText(QString::number(count));
|
||||||
|
|
@ -230,7 +230,7 @@ void GameView::updateTotalSelectionCount(const QSize &viewSize)
|
||||||
totalCountLabel->show();
|
totalCountLabel->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!SettingsCache::instance().getShowSubtypeSelectionCount() || count <= 1) {
|
if (!SettingsCache::instance().getShowSubtypeSelectionTally() || count <= 1) {
|
||||||
subtypeCountContainer->hide();
|
subtypeCountContainer->hide();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -60,17 +60,17 @@ UserInterfaceSettingsPage::UserInterfaceSettingsPage()
|
||||||
connect(&annotateTokensCheckBox, &QCheckBox::QT_STATE_CHANGED, &SettingsCache::instance(),
|
connect(&annotateTokensCheckBox, &QCheckBox::QT_STATE_CHANGED, &SettingsCache::instance(),
|
||||||
&SettingsCache::setAnnotateTokens);
|
&SettingsCache::setAnnotateTokens);
|
||||||
|
|
||||||
showDragSelectionCountCheckBox.setChecked(SettingsCache::instance().getShowDragSelectionCount());
|
showDragSelectionTallyCheckBox.setChecked(SettingsCache::instance().getShowDragSelectionTally());
|
||||||
connect(&showDragSelectionCountCheckBox, &QCheckBox::QT_STATE_CHANGED, &SettingsCache::instance(),
|
connect(&showDragSelectionTallyCheckBox, &QCheckBox::QT_STATE_CHANGED, &SettingsCache::instance(),
|
||||||
&SettingsCache::setShowDragSelectionCount);
|
&SettingsCache::setShowDragSelectionTally);
|
||||||
|
|
||||||
showTotalSelectionCountCheckBox.setChecked(SettingsCache::instance().getShowTotalSelectionCount());
|
showTotalSelectionTallyCheckBox.setChecked(SettingsCache::instance().getShowTotalSelectionTally());
|
||||||
connect(&showTotalSelectionCountCheckBox, &QCheckBox::QT_STATE_CHANGED, &SettingsCache::instance(),
|
connect(&showTotalSelectionTallyCheckBox, &QCheckBox::QT_STATE_CHANGED, &SettingsCache::instance(),
|
||||||
&SettingsCache::setShowTotalSelectionCount);
|
&SettingsCache::setShowTotalSelectionTally);
|
||||||
|
|
||||||
showSubtypeSelectionCountCheckBox.setChecked(SettingsCache::instance().getShowSubtypeSelectionCount());
|
showSubtypeSelectionTallyCheckBox.setChecked(SettingsCache::instance().getShowSubtypeSelectionTally());
|
||||||
connect(&showSubtypeSelectionCountCheckBox, &QCheckBox::QT_STATE_CHANGED, &SettingsCache::instance(),
|
connect(&showSubtypeSelectionTallyCheckBox, &QCheckBox::QT_STATE_CHANGED, &SettingsCache::instance(),
|
||||||
&SettingsCache::setShowSubtypeSelectionCount);
|
&SettingsCache::setShowSubtypeSelectionTally);
|
||||||
|
|
||||||
useTearOffMenusCheckBox.setChecked(SettingsCache::instance().getUseTearOffMenus());
|
useTearOffMenusCheckBox.setChecked(SettingsCache::instance().getUseTearOffMenus());
|
||||||
connect(&useTearOffMenusCheckBox, &QCheckBox::QT_STATE_CHANGED, &SettingsCache::instance(),
|
connect(&useTearOffMenusCheckBox, &QCheckBox::QT_STATE_CHANGED, &SettingsCache::instance(),
|
||||||
|
|
@ -88,9 +88,9 @@ UserInterfaceSettingsPage::UserInterfaceSettingsPage()
|
||||||
generalGrid->addWidget(&closeEmptyCardViewCheckBox, 4, 0);
|
generalGrid->addWidget(&closeEmptyCardViewCheckBox, 4, 0);
|
||||||
generalGrid->addWidget(&focusCardViewSearchBarCheckBox, 5, 0);
|
generalGrid->addWidget(&focusCardViewSearchBarCheckBox, 5, 0);
|
||||||
generalGrid->addWidget(&annotateTokensCheckBox, 6, 0);
|
generalGrid->addWidget(&annotateTokensCheckBox, 6, 0);
|
||||||
generalGrid->addWidget(&showDragSelectionCountCheckBox, 7, 0);
|
generalGrid->addWidget(&showDragSelectionTallyCheckBox, 7, 0);
|
||||||
generalGrid->addWidget(&showTotalSelectionCountCheckBox, 8, 0);
|
generalGrid->addWidget(&showTotalSelectionTallyCheckBox, 8, 0);
|
||||||
generalGrid->addWidget(&showSubtypeSelectionCountCheckBox, 9, 0);
|
generalGrid->addWidget(&showSubtypeSelectionTallyCheckBox, 9, 0);
|
||||||
generalGrid->addWidget(&useTearOffMenusCheckBox, 10, 0);
|
generalGrid->addWidget(&useTearOffMenusCheckBox, 10, 0);
|
||||||
generalGrid->addWidget(&keepGameChatFocusCheckBox, 11, 0);
|
generalGrid->addWidget(&keepGameChatFocusCheckBox, 11, 0);
|
||||||
|
|
||||||
|
|
@ -214,9 +214,9 @@ void UserInterfaceSettingsPage::retranslateUi()
|
||||||
closeEmptyCardViewCheckBox.setText(tr("Close card view window when last card is removed"));
|
closeEmptyCardViewCheckBox.setText(tr("Close card view window when last card is removed"));
|
||||||
focusCardViewSearchBarCheckBox.setText(tr("Auto focus search bar when card view window is opened"));
|
focusCardViewSearchBarCheckBox.setText(tr("Auto focus search bar when card view window is opened"));
|
||||||
annotateTokensCheckBox.setText(tr("Annotate card text on tokens"));
|
annotateTokensCheckBox.setText(tr("Annotate card text on tokens"));
|
||||||
showDragSelectionCountCheckBox.setText(tr("Show selection counter during drag selection"));
|
showDragSelectionTallyCheckBox.setText(tr("Show selection tally during drag selection"));
|
||||||
showTotalSelectionCountCheckBox.setText(tr("Show total selection counter"));
|
showTotalSelectionTallyCheckBox.setText(tr("Show total selection tally"));
|
||||||
showSubtypeSelectionCountCheckBox.setText(tr("Show subtype breakdown in selection counter"));
|
showSubtypeSelectionTallyCheckBox.setText(tr("Show subtype breakdown in selection tally"));
|
||||||
useTearOffMenusCheckBox.setText(tr("Use tear-off menus, allowing right click menus to persist on screen"));
|
useTearOffMenusCheckBox.setText(tr("Use tear-off menus, allowing right click menus to persist on screen"));
|
||||||
keepGameChatFocusCheckBox.setText(
|
keepGameChatFocusCheckBox.setText(
|
||||||
tr("Keep game chat focused when clicking in game (Note: disables card view search bar)"));
|
tr("Keep game chat focused when clicking in game (Note: disables card view search bar)"));
|
||||||
|
|
|
||||||
|
|
@ -27,9 +27,9 @@ private:
|
||||||
QCheckBox closeEmptyCardViewCheckBox;
|
QCheckBox closeEmptyCardViewCheckBox;
|
||||||
QCheckBox focusCardViewSearchBarCheckBox;
|
QCheckBox focusCardViewSearchBarCheckBox;
|
||||||
QCheckBox annotateTokensCheckBox;
|
QCheckBox annotateTokensCheckBox;
|
||||||
QCheckBox showDragSelectionCountCheckBox;
|
QCheckBox showDragSelectionTallyCheckBox;
|
||||||
QCheckBox showTotalSelectionCountCheckBox;
|
QCheckBox showTotalSelectionTallyCheckBox;
|
||||||
QCheckBox showSubtypeSelectionCountCheckBox;
|
QCheckBox showSubtypeSelectionTallyCheckBox;
|
||||||
QCheckBox useTearOffMenusCheckBox;
|
QCheckBox useTearOffMenusCheckBox;
|
||||||
QCheckBox keepGameChatFocusCheckBox;
|
QCheckBox keepGameChatFocusCheckBox;
|
||||||
QCheckBox tapAnimationCheckBox;
|
QCheckBox tapAnimationCheckBox;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue