|
|
|
@ -1450,9 +1450,10 @@ bool BitcoinGUI::isPrivacyModeActivated() const
|
|
|
|
|
return m_mask_values_action->isChecked();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UnitDisplayStatusBarControl::UnitDisplayStatusBarControl(const PlatformStyle *platformStyle) :
|
|
|
|
|
optionsModel(nullptr),
|
|
|
|
|
menu(nullptr)
|
|
|
|
|
UnitDisplayStatusBarControl::UnitDisplayStatusBarControl(const PlatformStyle *platformStyle)
|
|
|
|
|
: optionsModel(nullptr),
|
|
|
|
|
menu(nullptr),
|
|
|
|
|
m_platform_style{platformStyle}
|
|
|
|
|
{
|
|
|
|
|
createContextMenu();
|
|
|
|
|
setToolTip(tr("Unit to show amounts in. Click to select another unit."));
|
|
|
|
@ -1465,7 +1466,7 @@ UnitDisplayStatusBarControl::UnitDisplayStatusBarControl(const PlatformStyle *pl
|
|
|
|
|
}
|
|
|
|
|
setMinimumSize(max_width, 0);
|
|
|
|
|
setAlignment(Qt::AlignRight | Qt::AlignVCenter);
|
|
|
|
|
setStyleSheet(QString("QLabel { color : %1 }").arg(platformStyle->SingleColor().name()));
|
|
|
|
|
setStyleSheet(QString("QLabel { color : %1 }").arg(m_platform_style->SingleColor().name()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** So that it responds to button clicks */
|
|
|
|
@ -1474,6 +1475,18 @@ void UnitDisplayStatusBarControl::mousePressEvent(QMouseEvent *event)
|
|
|
|
|
onDisplayUnitsClicked(event->pos());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UnitDisplayStatusBarControl::changeEvent(QEvent* e)
|
|
|
|
|
{
|
|
|
|
|
#ifdef Q_OS_MACOS
|
|
|
|
|
if (e->type() == QEvent::PaletteChange) {
|
|
|
|
|
QString style = QString("QLabel { color : %1 }").arg(m_platform_style->SingleColor().name());
|
|
|
|
|
if (style != styleSheet()) {
|
|
|
|
|
setStyleSheet(style);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Creates context menu, its actions, and wires up all the relevant signals for mouse events. */
|
|
|
|
|
void UnitDisplayStatusBarControl::createContextMenu()
|
|
|
|
|
{
|
|
|
|
|