mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Stop tooltip appearing over grab area
This commit is contained in:
parent
f77847b6a1
commit
084f63a645
@ -2297,7 +2297,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
|||||||
|
|
||||||
if (m_button_down || ((py + h + graphSpacer) >= 0)) {
|
if (m_button_down || ((py + h + graphSpacer) >= 0)) {
|
||||||
if (m_button_down || ((y >= py) && (y < py + h))) {
|
if (m_button_down || ((y >= py) && (y < py + h))) {
|
||||||
if (m_button_down || (x >= titleWidth+(gYAxis::Margin-5))) {
|
if (m_button_down || (x >= titleWidth+10)) { //(gYAxis::Margin-5)
|
||||||
this->setCursor(Qt::ArrowCursor);
|
this->setCursor(Qt::ArrowCursor);
|
||||||
m_horiz_travel+=qAbs(x-m_lastxpos)+qAbs(y-m_lastypos);
|
m_horiz_travel+=qAbs(x-m_lastxpos)+qAbs(y-m_lastypos);
|
||||||
m_lastxpos=x;
|
m_lastxpos=x;
|
||||||
@ -2306,38 +2306,41 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
|||||||
QMouseEvent e(event->type(),p,event->button(),event->buttons(),event->modifiers());
|
QMouseEvent e(event->type(),p,event->button(),event->buttons(),event->modifiers());
|
||||||
|
|
||||||
m_graphs[i]->mouseMoveEvent(&e);
|
m_graphs[i]->mouseMoveEvent(&e);
|
||||||
} else {
|
if (x<=titleWidth+(gYAxis::Margin-5)) {
|
||||||
//qDebug() << "Hovering over" << m_graphs[i]->title();
|
//qDebug() << "Hovering over" << m_graphs[i]->title();
|
||||||
if (m_graphsbytitle["Event Flags"]==m_graphs[i]) {
|
if (m_graphsbytitle["Event Flags"]==m_graphs[i]) {
|
||||||
QVector<Layer *> & layers=m_graphs[i]->layers();
|
QVector<Layer *> & layers=m_graphs[i]->layers();
|
||||||
gFlagsGroup *fg;
|
gFlagsGroup *fg;
|
||||||
for (int i=0;i<layers.size();i++) {
|
for (int i=0;i<layers.size();i++) {
|
||||||
if ((fg=dynamic_cast<gFlagsGroup *>(layers[i]))!=NULL) {
|
if ((fg=dynamic_cast<gFlagsGroup *>(layers[i]))!=NULL) {
|
||||||
float bh=fg->barHeight();
|
float bh=fg->barHeight();
|
||||||
int count=fg->count();
|
int count=fg->count();
|
||||||
float yp=py+m_graphs[i]->marginTop();
|
float yp=py+m_graphs[i]->marginTop();
|
||||||
yp=y-yp;
|
yp=y-yp;
|
||||||
float th=(float(count)*bh);
|
float th=(float(count)*bh);
|
||||||
if (yp>=0 && yp<th) {
|
if (yp>=0 && yp<th) {
|
||||||
int i=yp/bh;
|
int i=yp/bh;
|
||||||
if (i<count) {
|
if (i<count) {
|
||||||
ChannelID code=fg->visibleLayers()[i]->code();
|
ChannelID code=fg->visibleLayers()[i]->code();
|
||||||
QString ttip=schema::channel[code].description();
|
QString ttip=schema::channel[code].description();
|
||||||
m_tooltip->display(ttip,x,y-20,800);
|
m_tooltip->display(ttip,x,y-20,800);
|
||||||
updateGL();
|
updateGL();
|
||||||
//qDebug() << code << ttip;
|
//qDebug() << code << ttip;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (!m_graphs[i]->units().isEmpty()) {
|
||||||
|
m_tooltip->display(m_graphs[i]->units(),x,y-20,800);
|
||||||
|
updateGL();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
if (!m_graphs[i]->units().isEmpty()) {
|
|
||||||
m_tooltip->display(m_graphs[i]->units(),x,y-20,800);
|
|
||||||
updateGL();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
|
||||||
this->setCursor(Qt::OpenHandCursor);
|
this->setCursor(Qt::OpenHandCursor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user