mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-14 19:18:55 -07:00
Fix subtype tally alignment by using grid layout instead of character padding
This commit is contained in:
parent
ca6cb8fb91
commit
11bd4f5640
5 changed files with 74 additions and 73 deletions
|
|
@ -5,7 +5,7 @@
|
|||
#include <QMap>
|
||||
#include <algorithm>
|
||||
|
||||
namespace SelectionSubtypeTally
|
||||
namespace
|
||||
{
|
||||
|
||||
QStringList extractSubtypesFromFace(const QString &faceType)
|
||||
|
|
@ -17,6 +17,11 @@ QStringList extractSubtypesFromFace(const QString &faceType)
|
|||
return {};
|
||||
}
|
||||
|
||||
} // anonymous namespace
|
||||
|
||||
namespace SelectionSubtypeTally
|
||||
{
|
||||
|
||||
QList<MainTypeGroup> countSubtypes(const QList<CardItem *> &cards)
|
||||
{
|
||||
QMap<QString, QMap<QString, int>> subtypesByMainType;
|
||||
|
|
@ -81,49 +86,4 @@ QList<MainTypeGroup> countSubtypes(const QList<CardItem *> &cards)
|
|||
return groups;
|
||||
}
|
||||
|
||||
QString formatAsHtml(const QList<MainTypeGroup> &groups)
|
||||
{
|
||||
// Flatten to final ordered list
|
||||
QList<SubtypeEntry> sortedEntries;
|
||||
for (const MainTypeGroup &group : groups) {
|
||||
for (const auto &entry : group.subtypes) {
|
||||
sortedEntries.append(entry);
|
||||
}
|
||||
}
|
||||
|
||||
// Calculate padding widths
|
||||
int maxNameLen = 0;
|
||||
int maxCountLen = 0;
|
||||
for (const auto &entry : sortedEntries) {
|
||||
maxNameLen = qMax(maxNameLen, entry.name.length());
|
||||
maxCountLen = qMax(maxCountLen, QString::number(entry.count).length());
|
||||
}
|
||||
|
||||
// Format output
|
||||
QStringList lines;
|
||||
for (const auto &entry : sortedEntries) {
|
||||
QString name = entry.name.toHtmlEscaped();
|
||||
QString count = QString::number(entry.count);
|
||||
|
||||
QString namePadding = QString(QStringLiteral(" ")).repeated(maxNameLen - entry.name.length());
|
||||
QString countPadding = QString(QStringLiteral(" ")).repeated(maxCountLen - count.length());
|
||||
|
||||
lines << QStringLiteral(
|
||||
"%1%2 <span style='font-size:14px;font-weight:bold;vertical-align:middle;'>%3%4</span>")
|
||||
.arg(namePadding, name, countPadding, count);
|
||||
}
|
||||
|
||||
return QStringLiteral("<span style='font-family: monospace;'>") + lines.join(QStringLiteral("<br>")) +
|
||||
QStringLiteral("</span>");
|
||||
}
|
||||
|
||||
QString buildSubtypeTallyText(const QList<CardItem *> &cards)
|
||||
{
|
||||
QList<MainTypeGroup> groups = countSubtypes(cards);
|
||||
if (groups.isEmpty()) {
|
||||
return QString();
|
||||
}
|
||||
return formatAsHtml(groups);
|
||||
}
|
||||
|
||||
} // namespace SelectionSubtypeTally
|
||||
|
|
|
|||
|
|
@ -22,10 +22,7 @@ struct MainTypeGroup
|
|||
|
||||
namespace SelectionSubtypeTally
|
||||
{
|
||||
QStringList extractSubtypesFromFace(const QString &faceType);
|
||||
QList<MainTypeGroup> countSubtypes(const QList<CardItem *> &cards);
|
||||
QString formatAsHtml(const QList<MainTypeGroup> &groups);
|
||||
QString buildSubtypeTallyText(const QList<CardItem *> &cards);
|
||||
} // namespace SelectionSubtypeTally
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -2,10 +2,13 @@
|
|||
|
||||
#include "../client/settings/cache_settings.h"
|
||||
#include "game_scene.h"
|
||||
#include "libcockatrice/utility/qt_utils.h"
|
||||
#include "selection_subtype_tally.h"
|
||||
|
||||
#include <QAction>
|
||||
#include <QGridLayout>
|
||||
#include <QLabel>
|
||||
#include <QLayout>
|
||||
#include <QResizeEvent>
|
||||
#include <QRubberBand>
|
||||
|
||||
|
|
@ -74,10 +77,12 @@ GameView::GameView(GameScene *scene, QWidget *parent) : QGraphicsView(scene, par
|
|||
totalCountLabel->setStyleSheet(totalCountLabelStyle);
|
||||
totalCountLabel->hide();
|
||||
|
||||
subtypeCountLabel = new QLabel(this);
|
||||
subtypeCountLabel->setStyleSheet(subtypeCountLabelStyle);
|
||||
subtypeCountLabel->setTextFormat(Qt::RichText);
|
||||
subtypeCountLabel->hide();
|
||||
subtypeCountContainer = new QWidget(this);
|
||||
subtypeCountContainer->setStyleSheet(subtypeCountLabelStyle);
|
||||
subtypeCountLayout = new QGridLayout(subtypeCountContainer);
|
||||
subtypeCountLayout->setContentsMargins(2, 2, 2, 2);
|
||||
subtypeCountLayout->setSpacing(2);
|
||||
subtypeCountContainer->hide();
|
||||
}
|
||||
|
||||
void GameView::resizeEvent(QResizeEvent *event)
|
||||
|
|
@ -172,13 +177,33 @@ void GameView::refreshShortcuts()
|
|||
SettingsCache::instance().shortcuts().getShortcut("Player/aCloseMostRecentZoneView"));
|
||||
}
|
||||
|
||||
QString GameView::buildSubtypeTallyText() const
|
||||
void GameView::clearSubtypeLabels()
|
||||
{
|
||||
GameScene *gameScene = dynamic_cast<GameScene *>(scene());
|
||||
if (!gameScene) {
|
||||
return QString();
|
||||
QtUtils::clearLayoutRec(subtypeCountLayout);
|
||||
}
|
||||
|
||||
void GameView::rebuildSubtypeLabels(const QList<SubtypeEntry> &entries)
|
||||
{
|
||||
clearSubtypeLabels();
|
||||
|
||||
const QString nameStyle = QStringLiteral("color: white; font-size: 12px; background: transparent;");
|
||||
const QString countStyle =
|
||||
QStringLiteral("color: white; font-size: 14px; font-weight: bold; background: transparent;");
|
||||
|
||||
int row = 0;
|
||||
for (const SubtypeEntry &entry : entries) {
|
||||
auto *nameLabel = new QLabel(entry.name, subtypeCountContainer);
|
||||
nameLabel->setStyleSheet(nameStyle);
|
||||
nameLabel->setAlignment(Qt::AlignRight | Qt::AlignVCenter);
|
||||
subtypeCountLayout->addWidget(nameLabel, row, 0);
|
||||
|
||||
auto *countLabel = new QLabel(QString::number(entry.count), subtypeCountContainer);
|
||||
countLabel->setStyleSheet(countStyle);
|
||||
countLabel->setAlignment(Qt::AlignRight | Qt::AlignVCenter);
|
||||
subtypeCountLayout->addWidget(countLabel, row, 1);
|
||||
|
||||
++row;
|
||||
}
|
||||
return SelectionSubtypeTally::buildSubtypeTallyText(gameScene->selectedCards());
|
||||
}
|
||||
|
||||
void GameView::updateSelectionCount(const QSize &viewSize)
|
||||
|
|
@ -204,31 +229,46 @@ void GameView::updateSelectionCount(const QSize &viewSize)
|
|||
}
|
||||
|
||||
if (!SettingsCache::instance().getShowSubtypeSelectionCount() || count <= 1) {
|
||||
subtypeCountLabel->hide();
|
||||
subtypeCountContainer->hide();
|
||||
return;
|
||||
}
|
||||
|
||||
QString subtypeText = buildSubtypeTallyText();
|
||||
|
||||
if (subtypeText.isEmpty()) {
|
||||
subtypeCountLabel->hide();
|
||||
GameScene *gameScene = dynamic_cast<GameScene *>(scene());
|
||||
if (!gameScene) {
|
||||
subtypeCountContainer->hide();
|
||||
return;
|
||||
}
|
||||
|
||||
subtypeCountLabel->setText(subtypeText);
|
||||
subtypeCountLabel->adjustSize();
|
||||
QList<MainTypeGroup> groups = SelectionSubtypeTally::countSubtypes(gameScene->selectedCards());
|
||||
if (groups.isEmpty()) {
|
||||
subtypeCountContainer->hide();
|
||||
return;
|
||||
}
|
||||
|
||||
int x = availableWidth - subtypeCountLabel->width() - kMarginInPixels;
|
||||
QList<SubtypeEntry> entries;
|
||||
for (const MainTypeGroup &group : groups) {
|
||||
entries.append(group.subtypes);
|
||||
}
|
||||
|
||||
if (entries.isEmpty()) {
|
||||
subtypeCountContainer->hide();
|
||||
return;
|
||||
}
|
||||
|
||||
rebuildSubtypeLabels(entries);
|
||||
subtypeCountContainer->adjustSize();
|
||||
|
||||
int x = availableWidth - subtypeCountContainer->width() - kMarginInPixels;
|
||||
int y;
|
||||
|
||||
if (totalCountLabel->isVisible()) {
|
||||
y = totalCountLabel->y() - subtypeCountLabel->height() - kSpacingBetweenLabels;
|
||||
y = totalCountLabel->y() - subtypeCountContainer->height() - kSpacingBetweenLabels;
|
||||
} else {
|
||||
y = availableHeight - subtypeCountLabel->height() - kMarginInPixels;
|
||||
y = availableHeight - subtypeCountContainer->height() - kMarginInPixels;
|
||||
}
|
||||
|
||||
y = qMax(kMarginInPixels, y);
|
||||
|
||||
subtypeCountLabel->move(x, y);
|
||||
subtypeCountLabel->show();
|
||||
subtypeCountContainer->move(x, y);
|
||||
subtypeCountContainer->show();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,8 +10,10 @@
|
|||
#include <QGraphicsView>
|
||||
|
||||
class GameScene;
|
||||
class QGridLayout;
|
||||
class QLabel;
|
||||
class QRubberBand;
|
||||
struct SubtypeEntry;
|
||||
|
||||
class GameView : public QGraphicsView
|
||||
{
|
||||
|
|
@ -21,11 +23,12 @@ private:
|
|||
QRubberBand *rubberBand;
|
||||
QLabel *dragCountLabel;
|
||||
QLabel *totalCountLabel;
|
||||
QLabel *subtypeCountLabel; ///< Label displaying subtype breakdown for selected cards
|
||||
QWidget *subtypeCountContainer; ///< Container widget for subtype tally display
|
||||
QGridLayout *subtypeCountLayout; ///< Grid layout for subtype name/count pairs
|
||||
QPointF selectionOrigin;
|
||||
|
||||
/** @brief Builds formatted text showing subtype tally for all selected cards */
|
||||
QString buildSubtypeTallyText() const;
|
||||
void rebuildSubtypeLabels(const QList<SubtypeEntry> &entries);
|
||||
void clearSubtypeLabels();
|
||||
|
||||
protected:
|
||||
void resizeEvent(QResizeEvent *event) override;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#ifndef COCKATRICE_QT_UTILS_H
|
||||
#define COCKATRICE_QT_UTILS_H
|
||||
#include <QLayout>
|
||||
#include <QObject>
|
||||
|
||||
namespace QtUtils
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue