Shift click on summary chart jumps to Daily view with selected date

This commit is contained in:
Mark Watkins 2011-10-28 13:45:31 +10:00
parent b9fc8c8eba
commit 32482c6083
8 changed files with 41 additions and 0 deletions

View File

@ -1314,6 +1314,10 @@ void gGraph::mouseDoubleClickEvent(QMouseEvent * event)
}
void gGraph::keyPressEvent(QKeyEvent * event)
{
bool ok=false;
for (QVector<Layer *>::iterator i=m_layers.begin();i!=m_layers.end();i++) {
(*i)->keyPressEvent(event);
}
qDebug() << m_title << "Key Pressed.. implement me" << event->key();
}
@ -2255,6 +2259,7 @@ void gGraphView::keyPressEvent(QKeyEvent * event)
}
}
if (!g) return;
g->keyPressEvent(event);
if (event->key()==Qt::Key_Left) {
double xx=g->max_x-g->min_x;

View File

@ -495,12 +495,30 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event)
bool SummaryChart::mousePressEvent(QMouseEvent * event)
{
if (event->modifiers() && Qt::ShiftModifier) {
//qDebug() << "Jump to daily view?";
return true;
}
Q_UNUSED(event)
return false;
}
bool SummaryChart::keyPressEvent(QKeyEvent * event)
{
//qDebug() << "Summarychart Keypress";
}
#include "mainwindow.h"
extern MainWindow *mainwin;
bool SummaryChart::mouseReleaseEvent(QMouseEvent * event)
{
if (event->modifiers() && Qt::ShiftModifier) {
QDateTime d=QDateTime::fromTime_t(hl_day*86400).toUTC();
mainwin->getDaily()->LoadDate(d.date());
mainwin->JumpDaily();
//qDebug() << "Jump to daily view?" << d;
return true;
}
Q_UNUSED(event)
hl_day=-1;
graph->timedRedraw(2000);

View File

@ -51,6 +51,8 @@ class SummaryChart:public Layer
gGraph * graph;
GraphType m_graphtype;
MachineType m_machinetype;
virtual bool keyPressEvent(QKeyEvent * event);
virtual bool mouseMoveEvent(QMouseEvent * event);
virtual bool mousePressEvent(QMouseEvent * event);
virtual bool mouseReleaseEvent(QMouseEvent * event);

View File

@ -343,6 +343,12 @@ void Daily::UpdateCalendarDay(QDate date)
ui->calendar->setHorizontalHeaderFormat(QCalendarWidget::ShortDayNames);
}
void Daily::LoadDate(QDate date)
{
ui->calendar->setSelectedDate(date);
on_calendar_selectionChanged();
}
void Daily::on_calendar_selectionChanged()
{
if (previous_date.isValid())

View File

@ -41,6 +41,7 @@ public:
void ResetGraphLayout();
gGraphView *SharedWidget() { return GraphView; }
void RedrawGraphs();
void LoadDate(QDate date);
private slots:

View File

@ -63,6 +63,7 @@ int main(int argc, char *argv[])
XInitThreads();
#endif
QGL::setPreferredPaintEngine(QPaintEngine::OpenGL);
QApplication a(argc, argv);
a.setApplicationName("SleepyHead");
initialize();

View File

@ -326,6 +326,10 @@ void MainWindow::on_dailyButton_clicked()
daily->RedrawGraphs();
qstatus2->setText("Daily");
}
void MainWindow::JumpDaily()
{
on_dailyButton_clicked();
}
void MainWindow::on_overviewButton_clicked()
{

View File

@ -45,6 +45,10 @@ public:
QMenu * CreateMenu(QString title);
void CheckForUpdates();
void Notify(QString s);
Daily *getDaily() { return daily; }
Overview *getOverview() { return overview; }
Oximetry *getOximetry() { return oximetry; }
void JumpDaily();
private slots:
void on_action_Import_Data_triggered();