mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Noon Date Split option in View Menu
This commit is contained in:
parent
e4be1f16fc
commit
c9d3c5fbe7
@ -236,48 +236,50 @@ Day *Machine::AddSession(Session *s,Profile *p)
|
|||||||
QDateTime d1,d2=QDateTime::fromMSecsSinceEpoch(s->first());
|
QDateTime d1,d2=QDateTime::fromMSecsSinceEpoch(s->first());
|
||||||
|
|
||||||
QDate date=d2.date();
|
QDate date=d2.date();
|
||||||
date.addDays(-1);
|
|
||||||
|
|
||||||
//qint64 date=s->first()/86400000;
|
// pref["NoonDateSplit"]=true;
|
||||||
//date--; //=date.addDays(-1);
|
|
||||||
//date*=86400000;
|
|
||||||
|
|
||||||
const int hours_since_last_session=4;
|
if (pref["NoonDateSplit"].toBool()) {
|
||||||
const int hours_since_midnight=12;
|
if (d2.time().hour()<12) date.addDays(-1);
|
||||||
|
} else {
|
||||||
|
date.addDays(-1);
|
||||||
|
|
||||||
bool previous=false;
|
const int hours_since_last_session=4;
|
||||||
// Find what day session belongs to.
|
const int hours_since_midnight=12;
|
||||||
if (day.find(date)!=day.end()) {
|
|
||||||
// Previous day record exists...
|
|
||||||
|
|
||||||
// Calculate time since end of previous days last session
|
bool previous=false;
|
||||||
span=(s->first() - day[date]->last())/3600000.0;
|
// Find what day session belongs to.
|
||||||
|
if (day.find(date)!=day.end()) {
|
||||||
|
// Previous day record exists...
|
||||||
|
|
||||||
// less than n hours since last session yesterday?
|
// Calculate time since end of previous days last session
|
||||||
if (span < hours_since_last_session) {
|
span=(s->first() - day[date]->last())/3600000.0;
|
||||||
previous=true;
|
|
||||||
|
// less than n hours since last session yesterday?
|
||||||
|
if (span < hours_since_last_session) {
|
||||||
|
previous=true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!previous) {
|
||||||
|
// Calculate Hours since midnight.
|
||||||
|
d1=d2;
|
||||||
|
d1.setTime(QTime(0,0,0));
|
||||||
|
float secsto=d1.secsTo(d2);
|
||||||
|
span=secsto/3600.0;
|
||||||
|
|
||||||
|
// Bedtime was late last night.
|
||||||
|
if (span < hours_since_midnight) {
|
||||||
|
|
||||||
|
previous=true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!previous) {
|
||||||
|
// Revert to sessions original day.
|
||||||
|
date=date.addDays(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!previous) {
|
|
||||||
// Calculate Hours since midnight.
|
|
||||||
d1=d2;
|
|
||||||
d1.setTime(QTime(0,0,0));
|
|
||||||
float secsto=d1.secsTo(d2);
|
|
||||||
span=secsto/3600.0;
|
|
||||||
|
|
||||||
// Bedtime was late last night.
|
|
||||||
if (span < hours_since_midnight) {
|
|
||||||
|
|
||||||
previous=true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!previous) {
|
|
||||||
// Revert to sessions original day.
|
|
||||||
date=date.addDays(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
sessionlist[s->session()]=s;
|
sessionlist[s->session()]=s;
|
||||||
|
|
||||||
if (!firstsession) {
|
if (!firstsession) {
|
||||||
@ -287,6 +289,7 @@ Day *Machine::AddSession(Session *s,Profile *p)
|
|||||||
firstday=lastday=date;
|
firstday=lastday=date;
|
||||||
firstsession=false;
|
firstsession=false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (day.find(date)==day.end()) {
|
if (day.find(date)==day.end()) {
|
||||||
//QString dstr=date.toString("yyyyMMdd");
|
//QString dstr=date.toString("yyyyMMdd");
|
||||||
//qDebug("Adding Profile Day %s",dstr.toAscii().data());
|
//qDebug("Adding Profile Day %s",dstr.toAscii().data());
|
||||||
|
@ -56,6 +56,9 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
if (!pref.Exists("LinkGraphMovement")) pref["LinkGraphMovement"]=true;
|
if (!pref.Exists("LinkGraphMovement")) pref["LinkGraphMovement"]=true;
|
||||||
else ui->action_Link_Graphs->setChecked(pref["LinkGraphMovement"].toBool());
|
else ui->action_Link_Graphs->setChecked(pref["LinkGraphMovement"].toBool());
|
||||||
|
|
||||||
|
if (!pref.Exists("NoonDateSplit")) pref["NoonDateSplit"]=false;
|
||||||
|
else ui->action_Noon_Date_Split->setChecked(pref["NoonDateSplit"].toBool());
|
||||||
|
|
||||||
if (!pref.Exists("fruitsalad")) pref["fruitsalad"]=true;
|
if (!pref.Exists("fruitsalad")) pref["fruitsalad"]=true;
|
||||||
|
|
||||||
if (!pref.Exists("UseAntiAliasing")) pref["UseAntiAliasing"]=false;
|
if (!pref.Exists("UseAntiAliasing")) pref["UseAntiAliasing"]=false;
|
||||||
@ -231,3 +234,8 @@ void MainWindow::on_actionUse_AntiAliasing_triggered(bool checked)
|
|||||||
if (daily) daily->RedrawGraphs();
|
if (daily) daily->RedrawGraphs();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_action_Noon_Date_Split_toggled(bool checked)
|
||||||
|
{
|
||||||
|
pref["NoonDateSplit"]=checked;
|
||||||
|
}
|
||||||
|
@ -60,6 +60,8 @@ private slots:
|
|||||||
|
|
||||||
void on_actionUse_AntiAliasing_triggered(bool checked);
|
void on_actionUse_AntiAliasing_triggered(bool checked);
|
||||||
|
|
||||||
|
void on_action_Noon_Date_Split_toggled(bool );
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
Daily * daily;
|
Daily * daily;
|
||||||
|
@ -561,6 +561,7 @@
|
|||||||
<addaction name="separator"/>
|
<addaction name="separator"/>
|
||||||
<addaction name="actionUse_AntiAliasing"/>
|
<addaction name="actionUse_AntiAliasing"/>
|
||||||
<addaction name="action_Link_Graphs"/>
|
<addaction name="action_Link_Graphs"/>
|
||||||
|
<addaction name="action_Noon_Date_Split"/>
|
||||||
<addaction name="separator"/>
|
<addaction name="separator"/>
|
||||||
<addaction name="action_Fullscreen"/>
|
<addaction name="action_Fullscreen"/>
|
||||||
</widget>
|
</widget>
|
||||||
@ -655,6 +656,14 @@
|
|||||||
<string>&Fullscreen Toggle</string>
|
<string>&Fullscreen Toggle</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="action_Noon_Date_Split">
|
||||||
|
<property name="checkable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>&Noon Date Split</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<customwidgets>
|
<customwidgets>
|
||||||
<customwidget>
|
<customwidget>
|
||||||
|
Loading…
Reference in New Issue
Block a user