mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-18 14:21:49 -05:00
Set title text color of rollup widget depending on title bar peceived brightness
This commit is contained in:
parent
1e33bc3e8d
commit
f9fc22c234
@ -14,7 +14,9 @@ RollupWidget::RollupWidget(QWidget* parent) :
|
|||||||
setAutoFillBackground(false);
|
setAutoFillBackground(false);
|
||||||
setAttribute(Qt::WA_OpaquePaintEvent, true);
|
setAttribute(Qt::WA_OpaquePaintEvent, true);
|
||||||
|
|
||||||
|
// Vorgaben aus der Palette
|
||||||
m_titleColor = palette().highlight().color();
|
m_titleColor = palette().highlight().color();
|
||||||
|
m_titleTextColor = palette().highlightedText().color();
|
||||||
}
|
}
|
||||||
|
|
||||||
QByteArray RollupWidget::saveState(int version) const
|
QByteArray RollupWidget::saveState(int version) const
|
||||||
@ -92,6 +94,8 @@ bool RollupWidget::restoreState(const QByteArray& state, int version)
|
|||||||
void RollupWidget::setTitleColor(const QColor& c)
|
void RollupWidget::setTitleColor(const QColor& c)
|
||||||
{
|
{
|
||||||
m_titleColor = c;
|
m_titleColor = c;
|
||||||
|
float l = 0.2126*c.redF() + 0.7152*c.greenF() + 0.0722*c.blueF();
|
||||||
|
m_titleTextColor = l < 0.5f ? Qt::white : Qt::black;
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -187,7 +191,8 @@ void RollupWidget::paintEvent(QPaintEvent*)
|
|||||||
p.drawLine(r.bottomLeft() + QPointF(1, -1), r.topRight() + QPointF(-1, 1));
|
p.drawLine(r.bottomLeft() + QPointF(1, -1), r.topRight() + QPointF(-1, 1));
|
||||||
|
|
||||||
// Titel
|
// Titel
|
||||||
p.setPen(palette().highlightedText().color());
|
//p.setPen(palette().highlightedText().color());
|
||||||
|
p.setPen(m_titleTextColor);
|
||||||
p.drawText(QRect(2 + fm.height(), 2, width() - 4 - 2 * fm.height(), fm.height()),
|
p.drawText(QRect(2 + fm.height(), 2, width() - 4 - 2 * fm.height(), fm.height()),
|
||||||
fm.elidedText(windowTitle(), Qt::ElideMiddle, width() - 4 - 2 * fm.height(), 0));
|
fm.elidedText(windowTitle(), Qt::ElideMiddle, width() - 4 - 2 * fm.height(), 0));
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@ protected:
|
|||||||
};
|
};
|
||||||
|
|
||||||
QColor m_titleColor;
|
QColor m_titleColor;
|
||||||
|
QColor m_titleTextColor;
|
||||||
|
|
||||||
int arrangeRollups();
|
int arrangeRollups();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user