Remove hardcoded colors from the typing display

This commit is contained in:
Konstantinos Sideris 2018-08-08 12:51:40 +03:00
parent 88e535debe
commit 8d3ef470f9
5 changed files with 38 additions and 20 deletions

View File

@ -48,6 +48,10 @@ RoomList > * {
border: none;
}
TypingDisplay {
qproperty-textColor: #caccd1;
}
#roomlist_area {
background-color: #2d3139;
}

View File

@ -33,6 +33,10 @@ InfoMessage {
qproperty-boxColor: rgba(220, 220, 220, 120);
}
TypingDisplay {
qproperty-textColor: #333;
}
SuggestionsPopup {
background-color: white;
}

View File

@ -31,6 +31,10 @@ QuickSwitcher {
background-color: palette(window);
}
TypingDisplay {
qproperty-textColor: palette(text);
}
InfoMessage {
qproperty-textColor: palette(text);
qproperty-boxColor: palette(window);

View File

@ -3,24 +3,30 @@
#include "Config.h"
#include "TypingDisplay.h"
#include "ui/Painter.h"
constexpr int LEFT_PADDING = 24;
TypingDisplay::TypingDisplay(QWidget *parent)
: QWidget(parent)
, leftPadding_{24}
{
QFont font;
font.setPixelSize(conf::typingNotificationFontSize);
QFont f;
f.setPixelSize(conf::typingNotificationFontSize);
setFixedHeight(QFontMetrics(font).height() + 2);
setFont(f);
setFixedHeight(QFontMetrics(font()).height() + 2);
}
void
TypingDisplay::setUsers(const QStringList &uid)
{
if (uid.isEmpty())
if (uid.isEmpty()) {
text_.clear();
else
text_ = uid.join(", ");
return;
}
text_ = uid.join(", ");
if (uid.size() == 1)
text_ += tr(" is typing");
@ -33,22 +39,17 @@ TypingDisplay::setUsers(const QStringList &uid)
void
TypingDisplay::paintEvent(QPaintEvent *)
{
QPen pen(QColor("#898989"));
Painter p(this);
PainterHighQualityEnabler hq(p);
QFont font("Open Sans Bold");
font.setPixelSize(conf::typingNotificationFontSize);
font.setItalic(true);
QPainter p(this);
p.setRenderHint(QPainter::Antialiasing);
p.setFont(font);
p.setPen(pen);
p.setFont(font());
p.setPen(QPen(textColor()));
QRect region = rect();
region.translate(leftPadding_, 0);
region.translate(LEFT_PADDING, 0);
QFontMetrics fm(font);
text_ = fm.elidedText(text_, Qt::ElideRight, width() - 3 * leftPadding_);
QFontMetrics fm(font());
text_ = fm.elidedText(text_, Qt::ElideRight, width() - 3 * LEFT_PADDING);
p.drawText(region, Qt::AlignVCenter, text_);
}

View File

@ -7,15 +7,20 @@ class TypingDisplay : public QWidget
{
Q_OBJECT
Q_PROPERTY(QColor textColor WRITE setTextColor READ textColor)
public:
TypingDisplay(QWidget *parent = nullptr);
void setUsers(const QStringList &user_ids);
void setTextColor(const QColor &color) { textColor_ = color; };
QColor textColor() const { return textColor_; };
protected:
void paintEvent(QPaintEvent *event) override;
private:
QColor textColor_;
QString text_;
int leftPadding_;
};