|
|
@ -1012,7 +1012,7 @@ UnitDisplayStatusBarControl::UnitDisplayStatusBarControl():QLabel()
|
|
|
|
setToolTip(tr("Unit to show amounts in. Click to select another unit."));
|
|
|
|
setToolTip(tr("Unit to show amounts in. Click to select another unit."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** So that it responds to left-button clicks */
|
|
|
|
/** So that it responds to button clicks */
|
|
|
|
void UnitDisplayStatusBarControl::mousePressEvent(QMouseEvent *event)
|
|
|
|
void UnitDisplayStatusBarControl::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
onDisplayUnitsClicked(event->pos());
|
|
|
|
onDisplayUnitsClicked(event->pos());
|
|
|
@ -1029,10 +1029,6 @@ void UnitDisplayStatusBarControl::createContextMenu()
|
|
|
|
menu->addAction(menuAction);
|
|
|
|
menu->addAction(menuAction);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
connect(menu,SIGNAL(triggered(QAction*)),this,SLOT(onMenuSelection(QAction*)));
|
|
|
|
connect(menu,SIGNAL(triggered(QAction*)),this,SLOT(onMenuSelection(QAction*)));
|
|
|
|
|
|
|
|
|
|
|
|
// what happens on right click.
|
|
|
|
|
|
|
|
setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
|
|
|
|
connect(this,SIGNAL(customContextMenuRequested(const QPoint&)),this,SLOT(onDisplayUnitsClicked(const QPoint&)));
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Lets the control know about the Options Model (and its signals) */
|
|
|
|
/** Lets the control know about the Options Model (and its signals) */
|
|
|
|