From 99c5a046e1ed0c20981cf487a41bce5f2414813a Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 25 Dec 2011 16:24:40 +1000 Subject: [PATCH] Added Overview quick Range select combo, and a stub for print multiple daily reports from overview page --- overview.cpp | 65 ++++++++++++++++++++++++++++++++++++++++++++++++---- overview.h | 4 ++++ overview.ui | 55 +++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 119 insertions(+), 5 deletions(-) diff --git a/overview.cpp b/overview.cpp index 778e3f1b..dc5bcbd7 100644 --- a/overview.cpp +++ b/overview.cpp @@ -11,6 +11,7 @@ #include #include #include +#include //#include #include "SleepLib/profiles.h" @@ -245,6 +246,7 @@ Overview::Overview(QWidget *parent,gGraphView * shared) : // <--- The code to the previous marker is crap GraphView->LoadSettings("Overview"); //no trans + ui->rangeCombo->setCurrentIndex(6); } Overview::~Overview() { @@ -284,10 +286,8 @@ void Overview::ReloadGraphs() ui->dateStart->setDate(p_profile->FirstDay()); ui->dateEnd->setDate(p_profile->LastDay()); GraphView->setDay(NULL); - if (PROFILE.general->rebuildCache()) { - PROFILE.general->setRebuildCache(false); - mainwin->Notify(tr("Cache rebuild complete")); - } + + on_rangeCombo_activated(ui->rangeCombo->currentIndex()); } void Overview::RedrawGraphs() @@ -379,3 +379,60 @@ void Overview::ResetGraphLayout() GraphView->resetLayout(); } + +void Overview::on_printDailyButton_clicked() +{ + qint64 st,et; + GraphView->GetXBounds(st,et); + + QDate s1=QDateTime::fromTime_t(st/1000L).date(); + QDate s2=QDateTime::fromTime_t(et/1000L).date(); + + int len=PROFILE.countDays(MT_UNKNOWN,s1,s2); + if (len>7) { + if (QMessageBox::question(this, "Woah!", "Do you really want to print "+QString::number(len)+" days worth of Daily reports,\n from "+s1.toString(Qt::SystemLocaleShortDate)+" to "+s2.toString(Qt::SystemLocaleShortDate)+"?",QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) { + return; + } + if (len>14) { + int weeks=len/7; + if (QMessageBox::question(this, "Hold Up!", "We are talking about over "+QString::number(weeks)+" weeks of information.\n\nThis will likely take a very long time, and a heck of a lot of paper if your not printing to a PDF file.\n\nAre you really sure?",QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) { + return; + } + if (len>31) { + if (QMessageBox::question(this, "Are you serious!!??", "We are talking about printing a lot of information.\n\nIf your not printing to a PDF file, you must really hate trees.\n\nAre you really REALLY sure?",QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) { + return; + } + } + } + + mainwin->Notify("I'm not going to nag you any more, but it would probably help if I implemented this feature.. ;)"); + + + } else mainwin->Notify("If this was implemented yet, You'd be able to print multiple daily reports right now."); + +} + +void Overview::on_rangeCombo_activated(int index) +{ + QDate end=PROFILE.LastDay(); + QDate start; + ui->dateEnd->setDate(end); + if (index==0) { + start=end.addDays(-6); + } else if (index==1) { + start=end.addDays(-13); + } else if (index==2) { + start=end.addMonths(-1).addDays(1); + } else if (index==3) { + start=end.addMonths(-2).addDays(1); + } else if (index==4) { + start=end.addMonths(-3).addDays(1); + } else if (index==5) { + start=end.addMonths(-6).addDays(1); + } else if (index==6) { + start=end.addYears(-1).addDays(1); + } + if (startdateStart->setDate(start); + this->on_toolButton_clicked(); +} diff --git a/overview.h b/overview.h index 9b1c899f..75f73c95 100644 --- a/overview.h +++ b/overview.h @@ -86,6 +86,10 @@ private slots: //! \brief Resets view to currently shown start & end dates void on_toolButton_clicked(); + void on_printDailyButton_clicked(); + + void on_rangeCombo_activated(int index); + private: Ui::Overview *ui; gGraphView *GraphView; diff --git a/overview.ui b/overview.ui index fdb7fc82..a9d47634 100644 --- a/overview.ui +++ b/overview.ui @@ -53,6 +53,52 @@ 0 + + + + Range: + + + + + + + + Last Week + + + + + Last Two Weeks + + + + + Last Month + + + + + Last Two Months + + + + + Last Three Months + + + + + Last 6 Months + + + + + Last Year + + + + @@ -114,13 +160,20 @@ + + + + Print &Daily Reports + + + Send a Report to your Printer - &Print + &Print Overview