mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
3b3ef37848
Also added Tx status to status UDP message. Added the above features to the reference UDP server message_aggregator. Merged from the wsjtx-1.5 branch. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5334 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
38 lines
981 B
C++
38 lines
981 B
C++
#include "qt_helpers.hpp"
|
|
|
|
#include <QString>
|
|
#include <QFont>
|
|
#include <QWidget>
|
|
#include <QStyle>
|
|
#include <QVariant>
|
|
|
|
QString font_as_stylesheet (QFont const& font)
|
|
{
|
|
QString font_weight;
|
|
switch (font.weight ())
|
|
{
|
|
case QFont::Light: font_weight = "light"; break;
|
|
case QFont::Normal: font_weight = "normal"; break;
|
|
case QFont::DemiBold: font_weight = "demibold"; break;
|
|
case QFont::Bold: font_weight = "bold"; break;
|
|
case QFont::Black: font_weight = "black"; break;
|
|
}
|
|
return QString {
|
|
" font-family: %1;\n"
|
|
" font-size: %2pt;\n"
|
|
" font-style: %3;\n"
|
|
" font-weight: %4;\n"}
|
|
.arg (font.family ())
|
|
.arg (font.pointSize ())
|
|
.arg (font.styleName ())
|
|
.arg (font_weight);
|
|
}
|
|
|
|
void update_dynamic_property (QWidget * widget, char const * property, QVariant const& value)
|
|
{
|
|
widget->setProperty (property, value);
|
|
widget->style ()->unpolish (widget);
|
|
widget->style ()->polish (widget);
|
|
widget->update ();
|
|
}
|