mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Added Overview quick Range select combo, and a stub for print multiple daily reports from overview page
This commit is contained in:
parent
e67afcd896
commit
99c5a046e1
65
overview.cpp
65
overview.cpp
@ -11,6 +11,7 @@
|
||||
#include <QDateTimeEdit>
|
||||
#include <QCalendarWidget>
|
||||
#include <QFileDialog>
|
||||
#include <QMessageBox>
|
||||
//#include <QProgressBar>
|
||||
|
||||
#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 (start<PROFILE.FirstDay()) start=PROFILE.FirstDay();
|
||||
ui->dateStart->setDate(start);
|
||||
this->on_toolButton_clicked();
|
||||
}
|
||||
|
@ -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;
|
||||
|
55
overview.ui
55
overview.ui
@ -53,6 +53,52 @@
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_3">
|
||||
<property name="text">
|
||||
<string>Range:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QComboBox" name="rangeCombo">
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last Week</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last Two Weeks</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last Month</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last Two Months</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last Three Months</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last 6 Months</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last Year</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
@ -114,13 +160,20 @@
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="printDailyButton">
|
||||
<property name="text">
|
||||
<string>Print &Daily Reports</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="printButton">
|
||||
<property name="toolTip">
|
||||
<string>Send a Report to your Printer</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>&Print</string>
|
||||
<string>&Print Overview</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
Loading…
Reference in New Issue
Block a user