namespace view {
const int Header::Padding = 12;
+const int Header::BaselineOffset = 5;
Header::Header(View &parent) :
MarginWidget(parent),
}
}
- return QSize(max_width + Padding, 0);
+ return QSize(max_width + Padding + BaselineOffset, 0);
}
shared_ptr<Trace> Header::get_mouse_over_trace(const QPoint &pt)
void Header::paintEvent(QPaintEvent*)
{
- const int w = width();
+ // The trace labels are not drawn with the arrows exactly on the
+ // left edge of the widget, because then the selection shadow
+ // would be clipped away.
+ const int w = width() - BaselineOffset;
const vector< shared_ptr<Trace> > traces(_view.get_traces());
QPainter painter(this);
const shared_ptr<Trace> mouse_over_trace =
get_mouse_over_trace(event->pos());
if (mouse_over_trace) {
+ const int w = width() - BaselineOffset;
Popup *const p =
mouse_over_trace->create_popup(&_view);
- p->set_position(mapToGlobal(QPoint(width(),
+ p->set_position(mapToGlobal(QPoint(w,
mouse_over_trace->get_y())),
Popup::Right);
p->show();
QSize sizeHint() const;
+ /**
+ * The horizontal offset, relative to the left edge of the widget,
+ * where the arrows of the trace labels end.
+ */
+ static const int BaselineOffset;
+
private:
std::shared_ptr<pv::view::Trace> get_mouse_over_trace(
const QPoint &pt);
// which were created before this object came into being
signals_changed();
- // make sure the cursorheader is over the ruler
+ // make sure the transparent widgets are on the top
_cursorheader->raise();
+ _header->raise();
}
SigSession& View::session()
void View::update_layout()
{
- setViewportMargins(_header->sizeHint().width(),
+ setViewportMargins(
+ _header->sizeHint().width() - pv::view::Header::BaselineOffset,
_ruler->sizeHint().height(), 0, 0);
_ruler->setGeometry(_viewport->x(), 0,
_viewport->width(), _viewport->y());
_ruler->sizeHint().height() - _cursorheader->sizeHint().height() / 2,
_viewport->width(), _cursorheader->sizeHint().height());
_header->setGeometry(0, _viewport->y(),
- _viewport->x(), _viewport->height());
+ _header->sizeHint().width(), _viewport->height());
update_scroll();
}