Added Selection Area Display in StatusBar

This commit is contained in:
Mark Watkins 2011-09-13 14:36:49 +10:00
parent 2749998f93
commit 845fd13159
2 changed files with 66 additions and 4 deletions

View File

@ -3,6 +3,7 @@
#include "gGraphView.h" #include "gGraphView.h"
#include "SleepLib/profiles.h" #include "SleepLib/profiles.h"
#include <QTimer> #include <QTimer>
#include <QLabel>
bool _graph_init=false; bool _graph_init=false;
QFont * defaultfont=NULL; QFont * defaultfont=NULL;
@ -11,6 +12,8 @@ QFont * bigfont=NULL;
bool evil_intel_graphics_chip=false; bool evil_intel_graphics_chip=false;
extern QLabel * qstatus2;
// Must be called from a thread inside the application. // Must be called from a thread inside the application.
void InitGraphs() void InitGraphs()
{ {
@ -770,6 +773,26 @@ void gGraph::mouseMoveEvent(QMouseEvent * event)
if (a2>w) a2=w; if (a2>w) a2=w;
m_selecting_area=true; m_selecting_area=true;
m_selection=QRect(a1-m_marginleft-1,0,a2-a1,m_lastbounds.height()); m_selection=QRect(a1-m_marginleft-1,0,a2-a1,m_lastbounds.height());
double w2=m_lastbounds.width()-(right+m_marginright)-(m_marginleft+left);
if (m_blockzoom) {
xmult=(rmax_x-rmin_x)/w2;
} else xmult=(max_x-min_x)/w2;
qint64 a=double(a2-a1)*xmult;
int d=a/86400000L;
int h=a/3600000;
int m=(a/60000) % 60;
int s=(a/1000) % 60;
int ms(a % 1000);
QString str;
if (d>1) {
str.sprintf("%i days",d);
} else {
str.sprintf("%02i:%02i:%02i:%03i",h,m,s,ms);
}
if (qstatus2) {
qstatus2->setText(str);
}
//m_graphview->updateGL(); //m_graphview->updateGL();
nolayer=false; nolayer=false;
doredraw=true; doredraw=true;
@ -886,9 +909,11 @@ void gGraph::mouseReleaseEvent(QMouseEvent * event)
if (x2<0) x2=0; if (x2<0) x2=0;
if (x>w) x=w; if (x>w) x=w;
if (x2>w) x2=w; if (x2>w) x2=w;
double xx;
double xmult;
if (!m_blockzoom) { if (!m_blockzoom) {
double xx=max_x-min_x; xx=max_x-min_x;
double xmult=xx/double(w); xmult=xx/double(w);
qint64 j1=min_x+xmult*x; qint64 j1=min_x+xmult*x;
qint64 j2=min_x+xmult*x2; qint64 j2=min_x+xmult*x2;
qint64 a1=MIN(j1,j2) qint64 a1=MIN(j1,j2)
@ -898,8 +923,8 @@ void gGraph::mouseReleaseEvent(QMouseEvent * event)
if (a2>rmax_x) a2=rmax_x; if (a2>rmax_x) a2=rmax_x;
m_graphview->SetXBounds(a1,a2,m_group); m_graphview->SetXBounds(a1,a2,m_group);
} else { } else {
double xx=rmax_x-rmin_x; xx=rmax_x-rmin_x;
double xmult=xx/double(w); xmult=xx/double(w);
qint64 j1=rmin_x+xmult*x; qint64 j1=rmin_x+xmult*x;
qint64 j2=rmin_x+xmult*x2; qint64 j2=rmin_x+xmult*x2;
qint64 a1=MIN(j1,j2) qint64 a1=MIN(j1,j2)
@ -909,6 +934,7 @@ void gGraph::mouseReleaseEvent(QMouseEvent * event)
if (a2>rmax_x) a2=rmax_x; if (a2>rmax_x) a2=rmax_x;
m_graphview->SetXBounds(a1,a2,m_group); m_graphview->SetXBounds(a1,a2,m_group);
} }
return; return;
} else m_graphview->updateGL(); } else m_graphview->updateGL();
} }
@ -1417,6 +1443,22 @@ void gGraphView::ResetBounds(bool refresh) //short group)
//if (m_graphs[i]->group()==group) //if (m_graphs[i]->group()==group)
m_graphs[i]->ResetBounds(); m_graphs[i]->ResetBounds();
} }
qint64 xx=m_graphs[0]->max_x-m_graphs[0]->min_x;
double d=xx/86400000L;
int h=xx/3600000L;
int m=(xx/60000) % 60;
int s=(xx/1000) % 60;
int ms(xx % 1000);
QString str;
if (d>1) {
str.sprintf("%1.0f days",ceil(xx/86400000.0));
} else {
str.sprintf("%02i:%02i:%02i:%03i",h,m,s,ms);
}
if (qstatus2) {
qstatus2->setText(str);
}
updateScale(); updateScale();
} }
@ -1426,6 +1468,23 @@ void gGraphView::SetXBounds(qint64 minx, qint64 maxx,short group,bool refresh)
if (m_graphs[i]->group()==group) if (m_graphs[i]->group()==group)
m_graphs[i]->SetXBounds(minx,maxx); m_graphs[i]->SetXBounds(minx,maxx);
} }
qint64 xx=maxx-minx;
double d=xx/86400000L;
int h=xx/3600000L;
int m=(xx/60000) % 60;
int s=(xx/1000) % 60;
int ms(xx % 1000);
QString str;
if (d>1) {
str.sprintf("%1.0f days",ceil(xx/86400000.0));
} else {
str.sprintf("%02i:%02i:%02i:%03i",h,m,s,ms);
}
if (qstatus2) {
qstatus2->setText(str);
}
if (refresh) updateGL(); if (refresh) updateGL();
} }
void gGraphView::updateScale() void gGraphView::updateScale()

View File

@ -295,11 +295,13 @@ void MainWindow::on_dailyButton_clicked()
{ {
ui->tabWidget->setCurrentWidget(daily); ui->tabWidget->setCurrentWidget(daily);
daily->RedrawGraphs(); daily->RedrawGraphs();
qstatus2->setText("Daily");
} }
void MainWindow::on_overviewButton_clicked() void MainWindow::on_overviewButton_clicked()
{ {
ui->tabWidget->setCurrentWidget(overview); ui->tabWidget->setCurrentWidget(overview);
qstatus2->setText("Overview");
} }
void MainWindow::on_webView_loadFinished(bool arg1) void MainWindow::on_webView_loadFinished(bool arg1)
@ -394,6 +396,7 @@ void MainWindow::on_oximetryButton_clicked()
{ {
if (oximetry) { if (oximetry) {
ui->tabWidget->setCurrentWidget(oximetry); ui->tabWidget->setCurrentWidget(oximetry);
qstatus2->setText("Oximetry");
oximetry->RedrawGraphs(); oximetry->RedrawGraphs();
} }
} }