mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
Add tooltip data and cleanup size calculations
Tomaz' code had a fixed height per tooltip item and some rather suspicious logic how to position them (and how to size the surrounding box), based on a fixed height in pixels per item - which of course fails if you use larger fonts or multi line items. This uses the bounding rects to correctly calculate the sizes and populates the tooltip with the other dive data that we already had in a helper function. This also fixes a small formatting issue for gas change events. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
6f06c31d0b
commit
656b58f205
1 changed files with 13 additions and 7 deletions
|
@ -135,6 +135,10 @@ ProfileGraphicsView::ProfileGraphicsView(QWidget* parent) : QGraphicsView(parent
|
|||
void ProfileGraphicsView::mouseMoveEvent(QMouseEvent* event)
|
||||
{
|
||||
toolTip->clear();
|
||||
int time = (mapToScene(event->pos()).x() * gc.maxtime) / scene()->sceneRect().width();
|
||||
char buffer[500];
|
||||
get_plot_details(&gc, time, buffer, 500);
|
||||
toolTip->addToolTip(QString(buffer));
|
||||
QList<QGraphicsItem*> items = scene()->items(mapToScene(event->pos()), Qt::IntersectsItemShape, Qt::DescendingOrder, transform());
|
||||
Q_FOREACH(QGraphicsItem *item, items) {
|
||||
if (!item->toolTip().isEmpty())
|
||||
|
@ -356,9 +360,10 @@ void ProfileGraphicsView::plot_one_event(struct event *ev)
|
|||
unsigned int he = ev->value >> 16;
|
||||
unsigned int o2 = ev->value & 0xffff;
|
||||
|
||||
name += ": ";
|
||||
name += (he) ? QString("%1/%2").arg(o2, he)
|
||||
: (o2 == 21) ? name += tr(":air")
|
||||
: QString("%1 %% %2").arg(o2).arg("O" UTF8_SUBSCRIPT_2);
|
||||
: (o2 == 21) ? name += tr("air")
|
||||
: QString("%1% %2").arg(o2).arg("O" UTF8_SUBSCRIPT_2);
|
||||
|
||||
} else if (ev->name && !strcmp(ev->name, "SP change")) {
|
||||
name += QString(":%1").arg((double) ev->value / 1000);
|
||||
|
@ -664,8 +669,10 @@ void ProfileGraphicsView::plot_temperature_profile()
|
|||
void ToolTipItem::addToolTip(const QString& toolTip, const QIcon& icon)
|
||||
{
|
||||
QGraphicsPixmapItem *iconItem = 0;
|
||||
double yValue = title->boundingRect().height() + SPACING + toolTips.keys().size() * ICON_SMALL + SPACING;
|
||||
|
||||
double yValue = title->boundingRect().height() + SPACING;
|
||||
Q_FOREACH(ToolTip t, toolTips) {
|
||||
yValue += t.second->boundingRect().height();
|
||||
}
|
||||
if (!icon.isNull()) {
|
||||
iconItem = new QGraphicsPixmapItem(icon.pixmap(ICON_SMALL,ICON_SMALL), this);
|
||||
iconItem->setPos(SPACING, yValue);
|
||||
|
@ -764,13 +771,12 @@ void ToolTipItem::expand()
|
|||
QRectF currentRect = rectangle;
|
||||
QRectF nextRectangle;
|
||||
|
||||
double width = 0;
|
||||
double width = 0, height = title->boundingRect().height() + SPACING;
|
||||
Q_FOREACH(ToolTip t, toolTips) {
|
||||
if (t.second->boundingRect().width() > width)
|
||||
width = t.second->boundingRect().width();
|
||||
height += t.second->boundingRect().height();
|
||||
}
|
||||
|
||||
double height = toolTips.count() * 18 + title->boundingRect().height() + SPACING;
|
||||
/* Left padding, Icon Size, space, right padding */
|
||||
width += SPACING + ICON_SMALL + SPACING + SPACING;
|
||||
|
||||
|
|
Loading…
Reference in a new issue