mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Implemented Daily View Bookmarks, Removed hidden Extras tab, added weight & Zombie-meter to Notes tab
This commit is contained in:
parent
ac3d6a17d9
commit
4d5d09b5f0
@ -1917,6 +1917,9 @@ void gGraphView::ResetBounds(bool refresh) //short group)
|
|||||||
}
|
}
|
||||||
if (!g) g=m_graphs[0];
|
if (!g) g=m_graphs[0];
|
||||||
|
|
||||||
|
m_minx=g->min_x;
|
||||||
|
m_maxx=g->max_x;
|
||||||
|
|
||||||
qint64 xx=g->max_x - g->min_x;
|
qint64 xx=g->max_x - g->min_x;
|
||||||
double d=xx/86400000L;
|
double d=xx/86400000L;
|
||||||
int h=xx/3600000L;
|
int h=xx/3600000L;
|
||||||
@ -1934,6 +1937,11 @@ void gGraphView::ResetBounds(bool refresh) //short group)
|
|||||||
}
|
}
|
||||||
updateScale();
|
updateScale();
|
||||||
}
|
}
|
||||||
|
void gGraphView::GetXBounds(qint64 & st,qint64 & et)
|
||||||
|
{
|
||||||
|
st=m_minx;
|
||||||
|
et=m_maxx;
|
||||||
|
}
|
||||||
|
|
||||||
void gGraphView::SetXBounds(qint64 minx, qint64 maxx,short group,bool refresh)
|
void gGraphView::SetXBounds(qint64 minx, qint64 maxx,short group,bool refresh)
|
||||||
{
|
{
|
||||||
@ -1942,6 +1950,9 @@ void gGraphView::SetXBounds(qint64 minx, qint64 maxx,short group,bool refresh)
|
|||||||
m_graphs[i]->SetXBounds(minx,maxx);
|
m_graphs[i]->SetXBounds(minx,maxx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
m_minx=minx;
|
||||||
|
m_maxx=maxx;
|
||||||
|
|
||||||
qint64 xx=maxx-minx;
|
qint64 xx=maxx-minx;
|
||||||
double d=xx/86400000L;
|
double d=xx/86400000L;
|
||||||
int h=xx/3600000L;
|
int h=xx/3600000L;
|
||||||
|
@ -402,6 +402,7 @@ public:
|
|||||||
|
|
||||||
float scaleY() { return m_scaleY; }
|
float scaleY() { return m_scaleY; }
|
||||||
|
|
||||||
|
void GetXBounds(qint64 & st,qint64 & et);
|
||||||
void ResetBounds(bool refresh=true); //short group=0);
|
void ResetBounds(bool refresh=true); //short group=0);
|
||||||
void SetXBounds(qint64 minx, qint64 maxx, short group=0,bool refresh=true);
|
void SetXBounds(qint64 minx, qint64 maxx, short group=0,bool refresh=true);
|
||||||
void SaveSettings(QString title);
|
void SaveSettings(QString title);
|
||||||
@ -504,6 +505,8 @@ protected:
|
|||||||
|
|
||||||
QString m_emptytext;
|
QString m_emptytext;
|
||||||
bool m_showsplitter;
|
bool m_showsplitter;
|
||||||
|
|
||||||
|
qint64 m_minx,m_maxx;
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,51 +7,9 @@
|
|||||||
#include "calcs.h"
|
#include "calcs.h"
|
||||||
#include "profiles.h"
|
#include "profiles.h"
|
||||||
|
|
||||||
Calculation::Calculation(ChannelID id,QString name)
|
|
||||||
:m_id(id),m_name(name)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
Calculation::~Calculation()
|
// Support function for calcRespRate()
|
||||||
{
|
int filterFlow(EventList *in, EventList *out, EventList *tv, EventList *mv, double rate)
|
||||||
}
|
|
||||||
|
|
||||||
CalcRespRate::CalcRespRate(ChannelID id)
|
|
||||||
:Calculation(id,"Resp. Rate")
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// Generate RespiratoryRate graph
|
|
||||||
int CalcRespRate::calculate(Session *session)
|
|
||||||
{
|
|
||||||
if (session->machine()->GetType()!=MT_CPAP) return 0;
|
|
||||||
if (session->eventlist.contains(CPAP_RespRate)) return 0; // already exists?
|
|
||||||
|
|
||||||
if (!session->eventlist.contains(CPAP_FlowRate)) return 0; //need flow waveform
|
|
||||||
|
|
||||||
EventList *flow, *rr, *tv=NULL, *mv=NULL;
|
|
||||||
if (!session->eventlist.contains(CPAP_TidalVolume)) {
|
|
||||||
tv=new EventList(EVL_Event);
|
|
||||||
session->eventlist[CPAP_TidalVolume].push_back(tv);
|
|
||||||
}
|
|
||||||
if (!session->eventlist.contains(CPAP_MinuteVent)) {
|
|
||||||
mv=new EventList(EVL_Event);
|
|
||||||
session->eventlist[CPAP_MinuteVent].push_back(mv);
|
|
||||||
}
|
|
||||||
int cnt=0;
|
|
||||||
for (int ws=0; ws < session->eventlist[CPAP_FlowRate].size(); ws++) {
|
|
||||||
flow=session->eventlist[CPAP_FlowRate][ws];
|
|
||||||
if (flow->count() > 5) {
|
|
||||||
rr=new EventList(EVL_Event);
|
|
||||||
session->eventlist[CPAP_RespRate].push_back(rr);
|
|
||||||
|
|
||||||
cnt+=filterFlow(flow,rr,tv,mv,flow->rate());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return cnt;
|
|
||||||
}
|
|
||||||
|
|
||||||
int CalcRespRate::filterFlow(EventList *in, EventList *out, EventList *tv, EventList *mv, double rate)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
int size=in->count();
|
int size=in->count();
|
||||||
@ -273,6 +231,37 @@ int CalcRespRate::filterFlow(EventList *in, EventList *out, EventList *tv, Event
|
|||||||
return out->count();
|
return out->count();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Generate RespiratoryRate graph
|
||||||
|
int calcRespRate(Session *session)
|
||||||
|
{
|
||||||
|
if (session->machine()->GetType()!=MT_CPAP) return 0;
|
||||||
|
if (session->eventlist.contains(CPAP_RespRate)) return 0; // already exists?
|
||||||
|
|
||||||
|
if (!session->eventlist.contains(CPAP_FlowRate)) return 0; //need flow waveform
|
||||||
|
|
||||||
|
EventList *flow, *rr, *tv=NULL, *mv=NULL;
|
||||||
|
if (!session->eventlist.contains(CPAP_TidalVolume)) {
|
||||||
|
tv=new EventList(EVL_Event);
|
||||||
|
session->eventlist[CPAP_TidalVolume].push_back(tv);
|
||||||
|
}
|
||||||
|
if (!session->eventlist.contains(CPAP_MinuteVent)) {
|
||||||
|
mv=new EventList(EVL_Event);
|
||||||
|
session->eventlist[CPAP_MinuteVent].push_back(mv);
|
||||||
|
}
|
||||||
|
int cnt=0;
|
||||||
|
for (int ws=0; ws < session->eventlist[CPAP_FlowRate].size(); ws++) {
|
||||||
|
flow=session->eventlist[CPAP_FlowRate][ws];
|
||||||
|
if (flow->count() > 5) {
|
||||||
|
rr=new EventList(EVL_Event);
|
||||||
|
session->eventlist[CPAP_RespRate].push_back(rr);
|
||||||
|
|
||||||
|
cnt+=filterFlow(flow,rr,tv,mv,flow->rate());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return cnt;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
EventDataType calcAHI(Session *session,qint64 start, qint64 end)
|
EventDataType calcAHI(Session *session,qint64 start, qint64 end)
|
||||||
{
|
{
|
||||||
double hours,ahi,cnt;
|
double hours,ahi,cnt;
|
||||||
@ -297,12 +286,7 @@ EventDataType calcAHI(Session *session,qint64 start, qint64 end)
|
|||||||
return ahi;
|
return ahi;
|
||||||
}
|
}
|
||||||
|
|
||||||
CalcAHIGraph::CalcAHIGraph(ChannelID id):
|
int calcAHIGraph(Session *session)
|
||||||
Calculation(id,"AHI/hour")
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
int CalcAHIGraph::calculate(Session *session)
|
|
||||||
{
|
{
|
||||||
if (session->machine()->GetType()!=MT_CPAP) return 0;
|
if (session->machine()->GetType()!=MT_CPAP) return 0;
|
||||||
if (session->eventlist.contains(CPAP_AHI)) return 0; // abort if already there
|
if (session->eventlist.contains(CPAP_AHI)) return 0; // abort if already there
|
||||||
|
@ -8,39 +8,14 @@
|
|||||||
|
|
||||||
#include "day.h"
|
#include "day.h"
|
||||||
|
|
||||||
class Calculation
|
int calcRespRate(Session *session);
|
||||||
{
|
int calcAHIGraph(Session *session);
|
||||||
public:
|
EventDataType calcAHI(Session *session,qint64 start=0, qint64 end=0);
|
||||||
Calculation(ChannelID id,QString name);
|
|
||||||
virtual ~Calculation();
|
|
||||||
virtual int calculate(Session *session)=0;
|
|
||||||
protected:
|
|
||||||
ChannelID m_id;
|
|
||||||
QString m_name;
|
|
||||||
};
|
|
||||||
|
|
||||||
class CalcRespRate:public Calculation
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
CalcRespRate(ChannelID id=CPAP_RespRate);
|
|
||||||
virtual int calculate(Session *session);
|
|
||||||
protected:
|
|
||||||
int filterFlow(EventList *in, EventList *out,EventList *tv, EventList *mv, double rate);
|
|
||||||
};
|
|
||||||
|
|
||||||
class CalcAHIGraph:public Calculation
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
CalcAHIGraph(ChannelID id=CPAP_AHI);
|
|
||||||
virtual int calculate(Session *session);
|
|
||||||
protected:
|
|
||||||
};
|
|
||||||
|
|
||||||
int calcLeaks(Session *session);
|
int calcLeaks(Session *session);
|
||||||
|
|
||||||
int calcPulseChange(Session *session);
|
int calcPulseChange(Session *session);
|
||||||
int calcSPO2Drop(Session *session);
|
int calcSPO2Drop(Session *session);
|
||||||
|
|
||||||
EventDataType calcAHI(Session *session,qint64 start=0, qint64 end=0);
|
|
||||||
|
|
||||||
#endif // CALCS_H
|
#endif // CALCS_H
|
||||||
|
@ -452,12 +452,8 @@ bool Session::LoadEvents(QString filename)
|
|||||||
|
|
||||||
void Session::UpdateSummaries()
|
void Session::UpdateSummaries()
|
||||||
{
|
{
|
||||||
CalcAHIGraph ahi;
|
calcAHIGraph(this);
|
||||||
CalcRespRate calc;
|
calcRespRate(this);
|
||||||
|
|
||||||
ahi.calculate(this);
|
|
||||||
calc.calculate(this);
|
|
||||||
|
|
||||||
calcLeaks(this);
|
calcLeaks(this);
|
||||||
|
|
||||||
calcSPO2Drop(this);
|
calcSPO2Drop(this);
|
||||||
|
192
daily.cpp
192
daily.cpp
@ -43,7 +43,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
|||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
// Remove Incomplete Extras Tab
|
// Remove Incomplete Extras Tab
|
||||||
ui->tabWidget->removeTab(3);
|
//ui->tabWidget->removeTab(3);
|
||||||
|
|
||||||
QList<int> a;
|
QList<int> a;
|
||||||
a.push_back(300);
|
a.push_back(300);
|
||||||
@ -73,6 +73,11 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
|||||||
scrollbar->setSizePolicy(QSizePolicy::Maximum,QSizePolicy::Expanding);
|
scrollbar->setSizePolicy(QSizePolicy::Maximum,QSizePolicy::Expanding);
|
||||||
scrollbar->setMaximumWidth(20);
|
scrollbar->setMaximumWidth(20);
|
||||||
|
|
||||||
|
ui->bookmarkTable->setColumnCount(2);
|
||||||
|
ui->bookmarkTable->setColumnWidth(0,70);
|
||||||
|
//ui->bookmarkTable->setEditTriggers(QAbstractItemView::SelectedClicked);
|
||||||
|
//ui->bookmarkTable->setColumnHidden(2,true);
|
||||||
|
//ui->bookmarkTable->setColumnHidden(3,true);
|
||||||
GraphView->setScrollBar(scrollbar);
|
GraphView->setScrollBar(scrollbar);
|
||||||
layout->addWidget(GraphView,1);
|
layout->addWidget(GraphView,1);
|
||||||
layout->addWidget(scrollbar,0);
|
layout->addWidget(scrollbar,0);
|
||||||
@ -461,9 +466,11 @@ void Daily::LoadDate(QDate date)
|
|||||||
|
|
||||||
void Daily::on_calendar_selectionChanged()
|
void Daily::on_calendar_selectionChanged()
|
||||||
{
|
{
|
||||||
|
|
||||||
if (previous_date.isValid())
|
if (previous_date.isValid())
|
||||||
Unload(previous_date);
|
Unload(previous_date);
|
||||||
|
|
||||||
|
ZombieMeterMoved=false;
|
||||||
Load(ui->calendar->selectedDate());
|
Load(ui->calendar->selectedDate());
|
||||||
ui->calButton->setText(ui->calendar->selectedDate().toString(Qt::TextDate));
|
ui->calButton->setText(ui->calendar->selectedDate().toString(Qt::TextDate));
|
||||||
ui->calendar->setFocus(Qt::ActiveWindowFocusReason);
|
ui->calendar->setFocus(Qt::ActiveWindowFocusReason);
|
||||||
@ -787,30 +794,121 @@ void Daily::Load(QDate date)
|
|||||||
ui->webView->setHtml(html);
|
ui->webView->setHtml(html);
|
||||||
|
|
||||||
ui->JournalNotes->clear();
|
ui->JournalNotes->clear();
|
||||||
|
|
||||||
|
ui->bookmarkTable->clear();
|
||||||
|
ui->bookmarkTable->setRowCount(0);
|
||||||
|
QStringList sl;
|
||||||
|
sl.append("Starts");
|
||||||
|
sl.append("Notes");
|
||||||
|
ui->bookmarkTable->setHorizontalHeaderLabels(sl);
|
||||||
|
ui->weightSpinBox->setValue(0);
|
||||||
|
ui->ZombieMeter->setValue(50);
|
||||||
Session *journal=GetJournalSession(date);
|
Session *journal=GetJournalSession(date);
|
||||||
if (journal) {
|
if (journal) {
|
||||||
ui->JournalNotes->setHtml(journal->settings[Journal_Notes].toString());
|
bool ok;
|
||||||
|
if (journal->settings.contains(Journal_Notes))
|
||||||
|
ui->JournalNotes->setHtml(journal->settings[Journal_Notes].toString());
|
||||||
|
|
||||||
|
if (journal->settings.contains("Weight"))
|
||||||
|
ui->weightSpinBox->setValue(journal->settings["Weight"].toDouble(&ok));
|
||||||
|
|
||||||
|
if (journal->settings.contains("ZombieMeter"))
|
||||||
|
ui->ZombieMeter->setValue(journal->settings["ZombieMeter"].toDouble(&ok));
|
||||||
|
|
||||||
|
if (journal->settings.contains("BookmarkStart")) {
|
||||||
|
QVariantList start=journal->settings["BookmarkStart"].toList();
|
||||||
|
QVariantList end=journal->settings["BookmarkEnd"].toList();
|
||||||
|
QStringList notes=journal->settings["BookmarkNotes"].toStringList();
|
||||||
|
|
||||||
|
bool ok;
|
||||||
|
for (int i=0;i<start.size();i++) {
|
||||||
|
qint64 st=start.at(i).toLongLong(&ok);
|
||||||
|
qint64 et=end.at(i).toLongLong(&ok);
|
||||||
|
|
||||||
|
QDateTime d=QDateTime::fromTime_t(st/1000L);
|
||||||
|
//int row=ui->bookmarkTable->rowCount();
|
||||||
|
ui->bookmarkTable->insertRow(i);
|
||||||
|
QTableWidgetItem *tw=new QTableWidgetItem(notes.at(i));
|
||||||
|
QTableWidgetItem *dw=new QTableWidgetItem(d.time().toString("HH:mm:ss"));
|
||||||
|
dw->setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled);
|
||||||
|
ui->bookmarkTable->setItem(i,0,dw);
|
||||||
|
ui->bookmarkTable->setItem(i,1,tw);
|
||||||
|
tw->setData(Qt::UserRole,st);
|
||||||
|
tw->setData(Qt::UserRole+1,et);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
void Daily::Unload(QDate date)
|
void Daily::Unload(QDate date)
|
||||||
{
|
{
|
||||||
Session *journal=GetJournalSession(date);
|
Session *journal=GetJournalSession(date);
|
||||||
if (!ui->JournalNotes->toPlainText().isEmpty()) {
|
|
||||||
QString jhtml=ui->JournalNotes->toHtml();
|
|
||||||
if (journal) {
|
|
||||||
if (journal->settings[Journal_Notes]!=jhtml) {
|
|
||||||
journal->settings[Journal_Notes]=jhtml;
|
|
||||||
journal->SetChanged(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
bool nonotes=ui->JournalNotes->toPlainText().isEmpty();
|
||||||
journal=CreateJournalSession(date);
|
bool ok;
|
||||||
|
if (journal) {
|
||||||
|
QString jhtml=ui->JournalNotes->toHtml();
|
||||||
|
if ((!journal->settings.contains(Journal_Notes) && !nonotes) || (!nonotes && (journal->settings[Journal_Notes]!=jhtml))) {
|
||||||
journal->settings[Journal_Notes]=jhtml;
|
journal->settings[Journal_Notes]=jhtml;
|
||||||
journal->SetChanged(true);
|
journal->SetChanged(true);
|
||||||
}
|
}
|
||||||
|
if ((!journal->settings.contains("Weight") && (ui->weightSpinBox->value()>0)) || (journal->settings["Weight"].toDouble(&ok)!=ui->weightSpinBox->value())) {
|
||||||
|
journal->settings["Weight"]=ui->weightSpinBox->value();
|
||||||
|
journal->SetChanged(true);
|
||||||
|
}
|
||||||
|
if ((!journal->settings.contains("ZombieMeter") && (ui->ZombieMeter->value()!=50)) || (journal->settings["ZombieMeter"].toDouble(&ok)!=ui->ZombieMeter->value())) {
|
||||||
|
journal->settings["ZombieMeter"]=ui->ZombieMeter->value();
|
||||||
|
journal->SetChanged(true);
|
||||||
|
}
|
||||||
|
bool ok;
|
||||||
|
if (ui->bookmarkTable->rowCount()>0) {
|
||||||
|
QVariantList start;
|
||||||
|
QVariantList end;
|
||||||
|
QStringList notes;
|
||||||
|
QTableWidgetItem *item;
|
||||||
|
for (int row=0;row<ui->bookmarkTable->rowCount();row++) {
|
||||||
|
item=ui->bookmarkTable->item(row,1);
|
||||||
|
start.push_back(item->data(Qt::UserRole));
|
||||||
|
end.push_back(item->data(Qt::UserRole+1));
|
||||||
|
notes.push_back(item->text());
|
||||||
|
}
|
||||||
|
journal->settings["BookmarkStart"]=start;
|
||||||
|
journal->settings["BookmarkEnd"]=end;
|
||||||
|
journal->settings["BookmarkNotes"]=notes;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (!nonotes || ZombieMeterMoved || (ui->weightSpinBox->value() > 0) || (ui->bookmarkTable->rowCount()>0)) {
|
||||||
|
journal=CreateJournalSession(date);
|
||||||
|
if (!nonotes) {
|
||||||
|
journal->settings[Journal_Notes]=ui->JournalNotes->toHtml();
|
||||||
|
journal->SetChanged(true);
|
||||||
|
}
|
||||||
|
if (ZombieMeterMoved) {
|
||||||
|
journal->settings["ZombieMeter"]=ui->ZombieMeter->value();
|
||||||
|
journal->SetChanged(true);
|
||||||
|
}
|
||||||
|
if (ui->weightSpinBox->value() > 0) {
|
||||||
|
journal->settings["Weight"]=ui->weightSpinBox->value();
|
||||||
|
journal->SetChanged(true);
|
||||||
|
}
|
||||||
|
if (ui->bookmarkTable->rowCount()>0) {
|
||||||
|
QVariantList start;
|
||||||
|
QVariantList end;
|
||||||
|
QStringList notes;
|
||||||
|
QTableWidgetItem *item;
|
||||||
|
for (int row=0;row<ui->bookmarkTable->rowCount();row++) {
|
||||||
|
item=ui->bookmarkTable->item(row,1);
|
||||||
|
start.push_back(item->data(Qt::UserRole));
|
||||||
|
end.push_back(item->data(Qt::UserRole+1));
|
||||||
|
notes.push_back(item->text());
|
||||||
|
}
|
||||||
|
journal->settings["BookmarkStart"]=start;
|
||||||
|
journal->settings["BookmarkEnd"]=end;
|
||||||
|
journal->settings["BookmarkNotes"]=notes;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (journal) {
|
if (journal) {
|
||||||
Machine *jm=PROFILE.GetMachine(MT_JOURNAL);
|
Machine *jm=PROFILE.GetMachine(MT_JOURNAL);
|
||||||
if (jm) jm->SaveSession(journal);
|
if (jm) jm->SaveSession(journal);
|
||||||
@ -925,16 +1023,6 @@ Session * Daily::GetJournalSession(QDate date) // Get the first journal session
|
|||||||
return *s;
|
return *s;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
void Daily::on_EnergySlider_sliderMoved(int position)
|
|
||||||
{
|
|
||||||
position=position;
|
|
||||||
//Session *s=GetJournalSession(previous_date);
|
|
||||||
//if (!s)
|
|
||||||
// s=CreateJournalSession(previous_date);
|
|
||||||
|
|
||||||
//s->summary[JOURNAL_Energy]=position;
|
|
||||||
//s->SetChanged(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
void Daily::UpdateCPAPGraphs(Day *day)
|
void Daily::UpdateCPAPGraphs(Day *day)
|
||||||
{
|
{
|
||||||
@ -1113,3 +1201,63 @@ void Daily::on_evViewSlider_valueChanged(int value)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Daily::on_bookmarkTable_itemClicked(QTableWidgetItem *item)
|
||||||
|
{
|
||||||
|
int row=item->row();
|
||||||
|
qint64 st,et;
|
||||||
|
|
||||||
|
QTableWidgetItem *it=ui->bookmarkTable->item(row,1);
|
||||||
|
bool ok;
|
||||||
|
st=it->data(Qt::UserRole).toLongLong(&ok);
|
||||||
|
et=it->data(Qt::UserRole+1).toLongLong(&ok);
|
||||||
|
GraphView->SetXBounds(st,et);
|
||||||
|
GraphView->updateGL();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Daily::on_bookmarkTable_itemActivated(QTableWidgetItem *item)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void Daily::on_addBookmarkButton_clicked()
|
||||||
|
{
|
||||||
|
qint64 st,et;
|
||||||
|
GraphView->GetXBounds(st,et);
|
||||||
|
QDateTime d=QDateTime::fromTime_t(st/1000L);
|
||||||
|
int row=ui->bookmarkTable->rowCount();
|
||||||
|
ui->bookmarkTable->insertRow(row);
|
||||||
|
QTableWidgetItem *tw=new QTableWidgetItem("Bookmark at "+d.time().toString("HH:mm:ss"));
|
||||||
|
QTableWidgetItem *dw=new QTableWidgetItem(d.time().toString("HH:mm:ss"));
|
||||||
|
dw->setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled);
|
||||||
|
ui->bookmarkTable->setItem(row,0,dw);
|
||||||
|
ui->bookmarkTable->setItem(row,1,tw);
|
||||||
|
tw->setData(Qt::UserRole,st);
|
||||||
|
tw->setData(Qt::UserRole+1,et);
|
||||||
|
|
||||||
|
//ui->bookmarkTable->setItem(row,2,new QTableWidgetItem(QString::number(st)));
|
||||||
|
//ui->bookmarkTable->setItem(row,3,new QTableWidgetItem(QString::number(et)));
|
||||||
|
}
|
||||||
|
|
||||||
|
void Daily::on_removeBookmarkButton_clicked()
|
||||||
|
{
|
||||||
|
int row=ui->bookmarkTable->currentRow();
|
||||||
|
if (row>=0) {
|
||||||
|
ui->bookmarkTable->removeRow(row);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Daily::on_ZombieMeter_actionTriggered(int action)
|
||||||
|
{
|
||||||
|
ZombieMeterMoved=true;
|
||||||
|
qDebug() << "ZombieMeter" << action;
|
||||||
|
}
|
||||||
|
|
||||||
|
//void Daily::on_EnergySlider_sliderMoved(int position)
|
||||||
|
//{
|
||||||
|
// position=position;
|
||||||
|
//Session *s=GetJournalSession(previous_date);
|
||||||
|
//if (!s)
|
||||||
|
// s=CreateJournalSession(previous_date);
|
||||||
|
|
||||||
|
//s->summary[JOURNAL_Energy]=position;
|
||||||
|
//s->SetChanged(true);
|
||||||
|
//}
|
||||||
|
16
daily.h
16
daily.h
@ -17,6 +17,7 @@
|
|||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include <QtOpenGL/QGLContext>
|
#include <QtOpenGL/QGLContext>
|
||||||
#include <QScrollBar>
|
#include <QScrollBar>
|
||||||
|
#include <QTableWidgetItem>
|
||||||
#include "Graphs/gSummaryChart.h"
|
#include "Graphs/gSummaryChart.h"
|
||||||
|
|
||||||
#include <SleepLib/profiles.h>
|
#include <SleepLib/profiles.h>
|
||||||
@ -55,7 +56,6 @@ private slots:
|
|||||||
void on_JournalNotesBold_clicked();
|
void on_JournalNotesBold_clicked();
|
||||||
void on_JournalNotesFontsize_activated(int index);
|
void on_JournalNotesFontsize_activated(int index);
|
||||||
void on_JournalNotesColour_clicked();
|
void on_JournalNotesColour_clicked();
|
||||||
void on_EnergySlider_sliderMoved(int position);
|
|
||||||
|
|
||||||
void on_treeWidget_itemSelectionChanged();
|
void on_treeWidget_itemSelectionChanged();
|
||||||
|
|
||||||
@ -75,6 +75,16 @@ private slots:
|
|||||||
void on_treeWidget_itemClicked(QTreeWidgetItem *item, int column);
|
void on_treeWidget_itemClicked(QTreeWidgetItem *item, int column);
|
||||||
|
|
||||||
void on_graphtogglebutton_toggled(bool);
|
void on_graphtogglebutton_toggled(bool);
|
||||||
|
void on_ZombieMeter_actionTriggered(int action);
|
||||||
|
|
||||||
|
void on_addBookmarkButton_clicked();
|
||||||
|
|
||||||
|
void on_removeBookmarkButton_clicked();
|
||||||
|
|
||||||
|
void on_bookmarkTable_itemActivated(QTableWidgetItem *item);
|
||||||
|
|
||||||
|
void on_bookmarkTable_itemClicked(QTableWidgetItem *item);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@ -110,6 +120,10 @@ private:
|
|||||||
gGraphView *GraphView,*snapGV;
|
gGraphView *GraphView,*snapGV;
|
||||||
MyScrollBar *scrollbar;
|
MyScrollBar *scrollbar;
|
||||||
QHBoxLayout *layout;
|
QHBoxLayout *layout;
|
||||||
|
bool ZombieMeterMoved;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // DAILY_H
|
#endif // DAILY_H
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
324
daily.ui
324
daily.ui
@ -6,8 +6,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>671</width>
|
<width>687</width>
|
||||||
<height>433</height>
|
<height>484</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
@ -248,7 +248,7 @@
|
|||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>1</number>
|
<number>3</number>
|
||||||
</property>
|
</property>
|
||||||
<property name="movable">
|
<property name="movable">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
@ -489,182 +489,176 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QWidget" name="widget" native="true">
|
||||||
|
<layout class="QFormLayout" name="formLayout">
|
||||||
|
<property name="horizontalSpacing">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<property name="verticalSpacing">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<property name="leftMargin">
|
||||||
|
<number>2</number>
|
||||||
|
</property>
|
||||||
|
<property name="topMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="rightMargin">
|
||||||
|
<number>2</number>
|
||||||
|
</property>
|
||||||
|
<property name="bottomMargin">
|
||||||
|
<number>2</number>
|
||||||
|
</property>
|
||||||
|
<item row="2" column="0" colspan="2">
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<weight>75</weight>
|
||||||
|
<bold>true</bold>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Zombie</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0" colspan="3">
|
||||||
|
<widget class="QSlider" name="ZombieMeter">
|
||||||
|
<property name="value">
|
||||||
|
<number>50</number>
|
||||||
|
</property>
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="tickPosition">
|
||||||
|
<enum>QSlider::TicksAbove</enum>
|
||||||
|
</property>
|
||||||
|
<property name="tickInterval">
|
||||||
|
<number>5</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="2">
|
||||||
|
<widget class="QLabel" name="label_10">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<weight>75</weight>
|
||||||
|
<bold>true</bold>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Awesome</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QLabel" name="label_9">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<weight>50</weight>
|
||||||
|
<bold>false</bold>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>I'm feeling...</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0">
|
||||||
|
<widget class="QLabel" name="label_8">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Weight</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="1">
|
||||||
|
<widget class="QDoubleSpinBox" name="weightSpinBox">
|
||||||
|
<property name="maximum">
|
||||||
|
<double>399.990000000000009</double>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="extras">
|
<widget class="QWidget" name="bookmarkTab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>Extras</string>
|
<string>Bookmarks</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_8">
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_6">
|
<widget class="QPushButton" name="addBookmarkButton">
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="frameShape">
|
|
||||||
<enum>QFrame::StyledPanel</enum>
|
|
||||||
</property>
|
|
||||||
<property name="frameShadow">
|
|
||||||
<enum>QFrame::Sunken</enum>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>This tab is fake.. What to put here?</string>
|
<string>Bookmark Selection</string>
|
||||||
</property>
|
|
||||||
<property name="scaledContents">
|
|
||||||
<bool>false</bool>
|
|
||||||
</property>
|
|
||||||
<property name="alignment">
|
|
||||||
<set>Qt::AlignCenter</set>
|
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
<widget class="QTableWidget" name="bookmarkTable">
|
||||||
<property name="spacing">
|
<property name="alternatingRowColors">
|
||||||
<number>2</number>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<property name="selectionMode">
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
<enum>QAbstractItemView::SingleSelection</enum>
|
||||||
<item>
|
</property>
|
||||||
<widget class="QLabel" name="label">
|
<property name="selectionBehavior">
|
||||||
<property name="sizePolicy">
|
<enum>QAbstractItemView::SelectRows</enum>
|
||||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
</property>
|
||||||
<horstretch>0</horstretch>
|
<property name="sortingEnabled">
|
||||||
<verstretch>0</verstretch>
|
<bool>true</bool>
|
||||||
</sizepolicy>
|
</property>
|
||||||
</property>
|
<attribute name="horizontalHeaderStretchLastSection">
|
||||||
<property name="text">
|
<bool>true</bool>
|
||||||
<string>Energy Level</string>
|
</attribute>
|
||||||
</property>
|
<column>
|
||||||
</widget>
|
<property name="text">
|
||||||
</item>
|
<string>Starts</string>
|
||||||
<item>
|
</property>
|
||||||
<widget class="QSlider" name="EnergySlider">
|
</column>
|
||||||
<property name="orientation">
|
<column>
|
||||||
<enum>Qt::Horizontal</enum>
|
<property name="text">
|
||||||
</property>
|
<string>Notes</string>
|
||||||
<property name="tickPosition">
|
</property>
|
||||||
<enum>QSlider::TicksAbove</enum>
|
</column>
|
||||||
</property>
|
</widget>
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_5">
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_2">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Mood</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QSlider" name="MoodSlider">
|
|
||||||
<property name="value">
|
|
||||||
<number>99</number>
|
|
||||||
</property>
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="tickPosition">
|
|
||||||
<enum>QSlider::TicksAbove</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
<widget class="QPushButton" name="removeBookmarkButton">
|
||||||
<property name="spacing">
|
<property name="text">
|
||||||
<number>2</number>
|
<string>Remove Bookmark</string>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
</widget>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
||||||
<item>
|
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_6">
|
|
||||||
<property name="sizeConstraint">
|
|
||||||
<enum>QLayout::SetMinimumSize</enum>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_3">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Weight</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QDoubleSpinBox" name="WeightBox">
|
|
||||||
<property name="suffix">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="maximum">
|
|
||||||
<double>999.990000000000009</double>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
||||||
<item>
|
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_7">
|
|
||||||
<property name="sizeConstraint">
|
|
||||||
<enum>QLayout::SetMinimumSize</enum>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_4">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Glucose</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QDoubleSpinBox" name="GlucoseBox"/>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<spacer name="verticalSpacer">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Vertical</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>20</width>
|
|
||||||
<height>77</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
Loading…
Reference in New Issue
Block a user