mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
* [VDD] Reorder quick filters Took 1 hour 10 minutes Took 5 seconds Took 49 seconds * [VDD] Use Font Awesome Icons Took 49 minutes Took 5 seconds * [VDD] Shuffle some widgets around, label things. Took 31 minutes Took 5 seconds * Change buttons to be push rather than toggle. Took 17 minutes Took 9 seconds * Reduce margins, retranslate button texts. Took 15 minutes Took 9 seconds * Actually do it, don't commit the commented out testing version lol Took 3 minutes * Start sets in include, correct subtype include/exact match logic. Took 12 minutes * Block sync. Took 16 minutes Took 8 seconds --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
100 lines
3 KiB
C++
100 lines
3 KiB
C++
#include "settings_button_widget.h"
|
|
|
|
#include <QApplication>
|
|
#include <QHBoxLayout>
|
|
#include <QMouseEvent>
|
|
#include <QScreen>
|
|
|
|
SettingsButtonWidget::SettingsButtonWidget(QWidget *parent)
|
|
: QWidget(parent), button(new QToolButton(this)), popup(new SettingsPopupWidget(nullptr))
|
|
{
|
|
button->setIcon(QPixmap("theme:icons/cogwheel"));
|
|
button->setCheckable(true);
|
|
button->setFixedSize(32, 32);
|
|
connect(button, &QToolButton::clicked, this, &SettingsButtonWidget::togglePopup);
|
|
connect(popup, &SettingsPopupWidget::aboutToClose, this, &SettingsButtonWidget::onPopupClosed);
|
|
|
|
layout = new QHBoxLayout(this);
|
|
layout->addWidget(button);
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
setLayout(layout);
|
|
}
|
|
|
|
void SettingsButtonWidget::addSettingsWidget(QWidget *toAdd) const
|
|
{
|
|
popup->addSettingsWidget(toAdd);
|
|
}
|
|
|
|
void SettingsButtonWidget::removeSettingsWidget(QWidget *toRemove) const
|
|
{
|
|
popup->removeSettingsWidget(toRemove);
|
|
}
|
|
|
|
void SettingsButtonWidget::setButtonIcon(QPixmap iconMap)
|
|
{
|
|
button->setIcon(iconMap);
|
|
}
|
|
|
|
void SettingsButtonWidget::setButtonText(const QString &buttonText)
|
|
{
|
|
// 🔓 unlock size constraints
|
|
button->setMinimumSize(QSize());
|
|
button->setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX));
|
|
|
|
button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
button->setText(buttonText);
|
|
|
|
button->setFixedHeight(32);
|
|
button->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);
|
|
|
|
button->setMinimumWidth(button->sizeHint().width());
|
|
}
|
|
|
|
void SettingsButtonWidget::togglePopup()
|
|
{
|
|
if (popup->isVisible()) {
|
|
popup->close();
|
|
} else {
|
|
popup->adjustSizeToFitScreen(); // Ensure proper size
|
|
|
|
QSize popupSize = popup->size();
|
|
QPoint buttonGlobalPos = button->mapToGlobal(QPoint(0, button->height()));
|
|
|
|
QScreen *screen = QApplication::screenAt(buttonGlobalPos);
|
|
QRect screenGeom = screen ? screen->availableGeometry() : QApplication::primaryScreen()->availableGeometry();
|
|
|
|
int x = buttonGlobalPos.x();
|
|
int y = buttonGlobalPos.y();
|
|
|
|
// Adjust position to stay within screen bounds
|
|
if (x + popupSize.width() > screenGeom.right()) {
|
|
x = buttonGlobalPos.x() - popupSize.width() + button->width();
|
|
}
|
|
|
|
if (y + popupSize.height() > screenGeom.bottom()) {
|
|
y = buttonGlobalPos.y() - popupSize.height() - button->height();
|
|
}
|
|
|
|
popup->move(x, y);
|
|
popup->show();
|
|
popup->setFocus();
|
|
button->setChecked(true);
|
|
}
|
|
}
|
|
|
|
void SettingsButtonWidget::onPopupClosed() const
|
|
{
|
|
button->setChecked(false); // Ensure button unchecks when popup closes
|
|
}
|
|
|
|
void SettingsButtonWidget::mousePressEvent(QMouseEvent *event)
|
|
{
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
|
|
if (popup->isVisible() && !popup->geometry().contains(event->globalPosition().toPoint())) {
|
|
#else
|
|
if (popup->isVisible() && !popup->geometry().contains(event->globalPos())) {
|
|
#endif
|
|
popup->close();
|
|
}
|
|
QWidget::mousePressEvent(event);
|
|
}
|