MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / makeSettingLabel

Function makeSettingLabel

src/gui/WaveApplet.cpp:61–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61QLabel* makeSettingLabel(const QString& text, QWidget* parent)
62{
63 auto* label = new QLabel(text, parent);
64 label->setFixedWidth(62);
65 label->setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
66 AetherSDR::ThemeManager::instance().applyStyleSheet(label, "QLabel { color: {{color.text.secondary}}; font-size: 10px; }");
67 return label;
68}
69
70WaveformWidget::ViewMode viewModeFromSetting(const QString& value)
71{

Callers 1

buildSettingsDrawerMethod · 0.85

Calls 1

applyStyleSheetMethod · 0.80

Tested by

no test coverage detected