yacreader/custom_widgets/yacreader_search_line_edit.cpp
Luis Ángel San Martín Rodríguez d4b1913c1c Update the search edit style in macos
2022-09-29 21:59:47 +02:00

116 lines
4.2 KiB
C++

#include "yacreader_search_line_edit.h"
#include <QToolButton>
#include <QStyle>
#include <QLabel>
#include "QsLog.h"
YACReaderSearchLineEdit::YACReaderSearchLineEdit(QWidget *parent)
: QLineEdit(parent)
{
clearButton = new QToolButton(this);
searchLabel = new QLabel(this);
QPixmap clearIcon;
QPixmap searchIcon;
clearIcon.setDevicePixelRatio(devicePixelRatioF());
searchIcon.setDevicePixelRatio(devicePixelRatioF());
if (devicePixelRatioF() > 1) {
if (!clearIcon.load(":/images/clearSearch@2x.png")) {
clearIcon.load(":/images/clearSearch.png");
}
if (!searchIcon.load(":/images/iconSearch@2x.png")) {
searchIcon.load(":/images/iconSearch.png");
}
} else {
clearIcon.load(":/images/clearSearch.png");
searchIcon.load(":/images/iconSearch.png");
}
searchLabel->setStyleSheet("QLabel { border: none; padding: 0px; }");
searchLabel->setPixmap(searchIcon);
clearButton->setIcon(QIcon(clearIcon));
#ifdef Q_OS_MAC
clearButton->setIconSize(QSize(14, 14));
#else
clearButton->setIconSize(QSize(12, 12));
#endif
clearButton->setCursor(Qt::ArrowCursor);
clearButton->setStyleSheet("QToolButton { border: none; padding: 0px; }");
clearButton->hide();
connect(clearButton, &QAbstractButton::clicked, this, &QLineEdit::clear);
connect(this, &QLineEdit::textChanged, this, &YACReaderSearchLineEdit::updateCloseButton);
int frameWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth);
#ifdef Q_OS_MAC
setStyleSheet(QString("QLineEdit {border-top:1px solid #9F9F9F; border-bottom:1px solid #ACACAC; border-right:1px solid #ACACAC; border-left:1px solid #ACACAC; border-radius: 4px; background-color:#EEEEEE; padding-left: %1px; padding-right: %2px; padding-bottom: 1px; margin-bottom: 1px;} ").arg(searchLabel->sizeHint().width() + frameWidth + 6).arg(clearButton->sizeHint().width() + frameWidth + 2));
#else
setStyleSheet(QString("QLineEdit {color: #ABABAB; border:none; border-radius: 4px; background-color:#404040; padding-left: %1px; padding-right: %2px; padding-bottom: 1px; margin-right: 9px;} ").arg(searchLabel->sizeHint().width() + frameWidth + 6 + 5).arg(clearButton->sizeHint().width() + frameWidth + 2));
#endif
QSize msz = minimumSizeHint();
setMinimumSize(qMax(msz.width(), clearButton->sizeHint().height() + frameWidth * 2 + 2),
qMax(msz.height(), clearButton->sizeHint().height() + frameWidth * 2 + 2));
#ifdef Q_OS_MAC
setMaximumWidth(212);
setFixedHeight(26);
#else
setMaximumWidth(255);
setFixedHeight(26);
#endif
setAttribute(Qt::WA_MacShowFocusRect, false);
setPlaceholderText(tr("type to search"));
connect(this, &QLineEdit::textChanged, this, &YACReaderSearchLineEdit::processText);
}
void YACReaderSearchLineEdit::clearText()
{
disconnect(this, &QLineEdit::textChanged, this, &YACReaderSearchLineEdit::processText);
clear();
connect(this, &QLineEdit::textChanged, this, &YACReaderSearchLineEdit::processText);
}
const QString YACReaderSearchLineEdit::text()
{
return QLineEdit::text();
}
void YACReaderSearchLineEdit::resizeEvent(QResizeEvent *)
{
#ifdef Q_OS_MAC
QSize sz = clearButton->sizeHint();
int frameWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth);
clearButton->move(rect().right() - frameWidth - sz.width(),
(rect().bottom() + 1 - sz.height()) / 2);
QSize szl = searchLabel->sizeHint();
searchLabel->move(6, (rect().bottom() + 1 - szl.height()) / 2);
#else
QSize sz = clearButton->sizeHint();
int frameWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth);
int marginRight = style()->pixelMetric(QStyle::PM_LayoutRightMargin);
clearButton->move(rect().right() - frameWidth - sz.width() - marginRight - 6,
(rect().bottom() + 2 - sz.height()) / 2);
QSize szl = searchLabel->sizeHint();
searchLabel->move(8, (rect().bottom() + 2 - szl.height()) / 2);
#endif
}
void YACReaderSearchLineEdit::updateCloseButton(const QString &text)
{
clearButton->setVisible(!text.isEmpty());
}
void YACReaderSearchLineEdit::processText(const QString &text)
{
emit filterChanged(text);
}