MCPcopy Create free account
hub / github.com/Vector35/debugger / mousePressEvent

Method mousePressEvent

ui/registerswidget.cpp:724–737  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

722
723
724void DebugRegistersWidget::mousePressEvent(QMouseEvent *event)
725{
726 startHoverTimer(event);
727
728 if (event->button() == Qt::MiddleButton)
729 {
730 auto index = indexAt(event->pos());
731 jumpInNewPaneInternal(index);
732 }
733 else
734 {
735 QTableView::mousePressEvent(event);
736 }
737}
738
739
740void DebugRegistersWidget::mouseMoveEvent(QMouseEvent *event)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected