transmission/qt/FilterBarComboBox.cc

132 lines
4.2 KiB
C++
Raw Normal View History

/*
* This file Copyright (C) 2012-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#include <QApplication>
#include <QStyle>
#include <QStylePainter>
#include "FilterBarComboBox.h"
#include "StyleHelper.h"
#include "Utils.h"
namespace
{
int getHSpacing(QWidget const* w)
{
return qMax(3, w->style()->pixelMetric(QStyle::PM_LayoutHorizontalSpacing, nullptr, w));
}
} // namespace
FilterBarComboBox::FilterBarComboBox(QWidget* parent)
: QComboBox(parent)
{
setSizeAdjustPolicy(QComboBox::AdjustToContents);
}
QSize FilterBarComboBox::minimumSizeHint() const
{
QFontMetrics fm(fontMetrics());
QSize const text_size = fm.boundingRect(itemText(0)).size();
QSize const count_size = fm.boundingRect(itemData(0, CountStringRole).toString()).size();
return calculateSize(text_size, count_size);
}
QSize FilterBarComboBox::sizeHint() const
{
QFontMetrics fm(fontMetrics());
QSize max_text_size(0, 0);
QSize max_count_size(0, 0);
for (int i = 0, n = count(); i < n; ++i)
{
QSize const text_size = fm.boundingRect(itemText(i)).size();
max_text_size.setHeight(qMax(max_text_size.height(), text_size.height()));
max_text_size.setWidth(qMax(max_text_size.width(), text_size.width()));
QSize const count_size = fm.boundingRect(itemData(i, CountStringRole).toString()).size();
max_count_size.setHeight(qMax(max_count_size.height(), count_size.height()));
max_count_size.setWidth(qMax(max_count_size.width(), count_size.width()));
}
return calculateSize(max_text_size, max_count_size);
}
QSize FilterBarComboBox::calculateSize(QSize const& text_size, QSize const& count_size) const
{
int const hmargin = getHSpacing(this);
QStyleOptionComboBox option;
initStyleOption(&option);
QSize content_size = iconSize() + QSize(4, 2);
content_size.setHeight(qMax(content_size.height(), text_size.height()));
content_size.rwidth() += hmargin + text_size.width();
content_size.rwidth() += hmargin + count_size.width();
Qt 6 support (#2069) * Bump minimum Qt version to 5.6 * Switch from QRegExp to QRegularExpression While still available, QRegExp has been moved to Qt6::Core5Compat module and is not part of Qt6::Core. * Use qIsEffectiveTLD instead of QUrl::topLevelDomain The latter is not part of Qt6::Core. The former is a private utility in Qt6::Network; using it for now, until (and if) we switch to something non-Qt-specific. * Use QStyle::State_Horizontal state when drawing progress bars Although available for a long time, this state either didn't apply to progress bars before Qt 6, or was deduced based on bar size. With Qt 6, failing to specify it results in bad rendering. * Don't use QStringRef (and associated methods) While still available, QStringRef has been moved to Qt6::Core5Compat module and is not part of Qt6::Core. Related method (e.g. QString::midRef) have been removed in Qt 6. * Use Qt::ItemIsAutoTristate instead of Qt::ItemIsTristate The latter was deprecated and replaced with the former in Qt 5.6. * Don't use QApplication::globalStrut This property has been deprecated in Qt 5.15 and removed in Qt 6. * Use QImage::fromHICON instead of QtWin::fromHICON WinExtras module (providind the latter helper) has been removed in Qt 6. * Use QStringDecoder instead of QTextCodec While still available, QTextCodec has been moved to Qt6::Core5Compat module and is not part of Qt6::Core. * Don't forward-declare QStringList Instead of being a standalone class, its definition has changed to QList<QString> template specialization in Qt 6. * Use explicit (since Qt 6) QFileInfo constructor * Use QDateTime's {to,from}SecsSinceEpoch instead of {to,from}Time_t The latter was deprecated in Qt 5.8 and removed in Qt 6. * Don't use QFuture<>'s operator== It has been removed in Qt 6. Since the original issue this code was solving was caused by future reuse, just don't reuse futures and create new finished ones when necessary. * Use std::vector<> instead of QVector<> The latter has been changed to a typedef for QList<>, which might not be what one wants, and which also changed behavior a bit leading to compilation errors. * Don't use + for flags, cast to int explicitly Operator+ for enum values has been deleted in Qt 6, so using operator| instead. Then, there's no conversion from QFlags<> to QVariant, so need to cast to int. * Support Qt 6 in CMake and for MSI packaging * Remove extra (empty) CMake variable use when constructing Qt target names * Simplify logic in tr_qt_add_translation CMake helper Co-authored-by: Charles Kerr <charles@charleskerr.com>
2021-11-03 21:20:11 +00:00
return style()->sizeFromContents(QStyle::CT_ComboBox, &option, content_size, this);
}
void FilterBarComboBox::paintEvent(QPaintEvent* e)
{
Q_UNUSED(e)
QStylePainter painter(this);
painter.setPen(palette().color(QPalette::Text));
// draw the combobox frame, focusrect and selected etc.
QStyleOptionComboBox opt;
initStyleOption(&opt);
painter.drawComplexControl(QStyle::CC_ComboBox, opt);
// draw the icon and text
QModelIndex const model_index = model()->index(currentIndex(), 0, rootModelIndex());
if (model_index.isValid())
{
QStyle* s = style();
int const hmargin = getHSpacing(this);
QRect rect = s->subControlRect(QStyle::CC_ComboBox, &opt, QStyle::SC_ComboBoxEditField, this);
rect.adjust(2, 1, -2, -1);
// draw the icon
QIcon const icon = Utils::getIconFromIndex(model_index);
if (!icon.isNull())
{
QRect const icon_rect = QStyle::alignedRect(opt.direction, Qt::AlignLeft | Qt::AlignVCenter, opt.iconSize, rect);
icon.paint(&painter, icon_rect, Qt::AlignCenter, StyleHelper::getIconMode(opt.state), QIcon::Off);
Utils::narrowRect(rect, icon_rect.width() + hmargin, 0, opt.direction);
}
// draw the count
QString text = model_index.data(CountStringRole).toString();
if (!text.isEmpty())
{
QPen const pen = painter.pen();
painter.setPen(Utils::getFadedColor(pen.color()));
QRect const text_rect = QStyle::alignedRect(
opt.direction,
Qt::AlignRight | Qt::AlignVCenter,
QSize(opt.fontMetrics.boundingRect(text).width(), rect.height()),
rect);
painter.drawText(text_rect, Qt::AlignRight | Qt::AlignVCenter, text);
Utils::narrowRect(rect, 0, text_rect.width() + hmargin, opt.direction);
painter.setPen(pen);
}
// draw the text
text = model_index.data(Qt::DisplayRole).toString();
text = painter.fontMetrics().elidedText(text, Qt::ElideRight, rect.width());
painter.drawText(rect, Qt::AlignLeft | Qt::AlignVCenter, text);
}
}