Added millisecond lock between Horizontal and Vertical Panning on Touchpads

This commit is contained in:
Mark Watkins 2013-11-09 10:59:35 +10:00
parent e29d7f7efe
commit ab5ae5ad49
2 changed files with 18 additions and 7 deletions

View File

@ -2403,6 +2403,9 @@ gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
m_selected_graph=NULL;
cubetex=0;
horizScrollTime.start();
vertScrollTime.start();
this->setMouseTracking(true);
m_emptytext=QObject::tr("No Data");
InitGraphs();
@ -3852,12 +3855,20 @@ void gGraphView::wheelEvent(QWheelEvent * event)
py+=graphSpacer; // do we want the extra spacer down the bottom?
}
} else {
// Vertical Scrolling
if (event->orientation()==Qt::Vertical) {
if (event->orientation()==Qt::Vertical) { // Vertical Scrolling
if (horizScrollTime.elapsed()<100)
return;
m_scrollbar->SendWheelEvent(event); // Just forwarding the event to scrollbar for now..
m_tooltip->cancel();
} else {
//Horinontal Panning
vertScrollTime.start();
} else { //Horizontal Panning
// (This is a total pain in the butt on MacBook touchpads..)
if (vertScrollTime.elapsed()<100)
return;
horizScrollTime.start();
gGraph *g=NULL;
int group=0;
@ -3872,6 +3883,7 @@ void gGraphView::wheelEvent(QWheelEvent * event)
}
if (!g) {
// just pick any graph then
for (int i=0;i<m_graphs.size();i++) {
if (!m_graphs[i]->isEmpty()) {
g=m_graphs[i];
@ -3887,9 +3899,6 @@ void gGraphView::wheelEvent(QWheelEvent * event)
int delta=event->delta();
if (delta > 0)
g->min_x-=(xx/zoom)*(float)abs(delta);
else

View File

@ -1160,6 +1160,8 @@ protected:
qint32 pixmap_cache_size;
bool use_pixmap_cache;
QTime horizScrollTime, vertScrollTime;
//QVector<GLuint> texid;
signals: