Mouse control problem

This commit is contained in:
Mark Watkins 2011-06-27 20:46:33 +10:00
parent 4000d73edc
commit 263b38749e
2 changed files with 6 additions and 21 deletions

View File

@ -47,25 +47,6 @@ gGraphWindow::gGraphWindow(QWidget *parent, const QString & title, QGLContext *
ti=QDateTime::currentDateTime();
gtitle=foobar=xaxis=yaxis=NULL;
/* if (!shared_context) {
int q=0;
#if defined(__DARWIN__) && !wxCHECK_VERSION(2,9,0)
// Screw you apple..
int *attribList = (int*) NULL;
AGLPixelFormat aglpf=aglChoosePixelFormat(NULL,0,attribList);
shared_context=new wxGLContext(aglpf,this,wxNullPalette,NULL);
// Mmmmm.. Platform incosistency with wx..
#else // (Darwin joins the rest of the platforms as of wx2.9)
shared_context=new wxGLContext(this,NULL);
#endif
}
*/
//texfont=::texfont;
if (!title.isEmpty()) {
AddLayer(new gTitle(title));
}
@ -335,10 +316,11 @@ void gGraphWindow::mouseMoveEvent(QMouseEvent * event)
int x2=x;
int t1=MIN(x1,x2);
int t2=MAX(x1,x2);
if (t1<=m_marginLeft) t1=m_marginLeft+1;
if (t1<m_marginLeft) t1=m_marginLeft;
if (t2<m_marginLeft) t2=m_marginLeft;
if (t2>(m_scrX-m_marginRight)) t2=m_scrX-m_marginRight;
QRect r(t1, m_marginBottom, t2-t1, m_scrY-m_marginBottom-m_marginTop);
QRect r(t1-1, m_marginBottom, t2-t1, m_scrY-m_marginBottom-m_marginTop);
m_mouseRBlast=m_mouseRBrect;
m_mouseRBrect=r;

View File

@ -9,6 +9,7 @@
#include <QMessageBox>
#include <QResource>
#include <QProgressBar>
#include <QWebHistory>
#include <QTimer>
#include "mainwindow.h"
#include "ui_mainwindow.h"
@ -198,6 +199,8 @@ void MainWindow::on_webView_loadFinished(bool arg1)
} else {
qstatus->setText("Ready");
}
ui->backButton->setEnabled(ui->webView->history()->canGoBack());
ui->forwardButton->setEnabled(ui->webView->history()->canGoForward());
}