mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Weighted Average fixes in Overview SummaryCharts
This commit is contained in:
parent
651046698a
commit
a4d497660b
@ -1370,36 +1370,25 @@ void gGraph::resize(int width, int height)
|
|||||||
|
|
||||||
qint64 gGraph::MinX()
|
qint64 gGraph::MinX()
|
||||||
{
|
{
|
||||||
bool first=true;
|
|
||||||
qint64 val=0,tmp;
|
qint64 val=0,tmp;
|
||||||
for (QVector<Layer *>::iterator l=m_layers.begin();l!=m_layers.end();l++) {
|
for (QVector<Layer *>::iterator l=m_layers.begin();l!=m_layers.end();l++) {
|
||||||
if ((*l)->isEmpty()) continue;
|
if ((*l)->isEmpty()) continue;
|
||||||
tmp=(*l)->Minx();
|
tmp=(*l)->Minx();
|
||||||
if (!tmp) continue;
|
//if (!tmp) continue;
|
||||||
if (first) {
|
if (!val || tmp < val) val = tmp;
|
||||||
val=tmp;
|
|
||||||
first=false;
|
|
||||||
} else {
|
|
||||||
if (tmp < val) val = tmp;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (val) rmin_x=val;
|
if (val) rmin_x=val;
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
qint64 gGraph::MaxX()
|
qint64 gGraph::MaxX()
|
||||||
{
|
{
|
||||||
bool first=true;
|
//bool first=true;
|
||||||
qint64 val=0,tmp;
|
qint64 val=0,tmp;
|
||||||
for (QVector<Layer *>::iterator l=m_layers.begin();l!=m_layers.end();l++) {
|
for (QVector<Layer *>::iterator l=m_layers.begin();l!=m_layers.end();l++) {
|
||||||
if ((*l)->isEmpty()) continue;
|
if ((*l)->isEmpty()) continue;
|
||||||
tmp=(*l)->Maxx();
|
tmp=(*l)->Maxx();
|
||||||
if (!tmp) continue;
|
//if (!tmp) continue;
|
||||||
if (first) {
|
if (!val || tmp > val) val = tmp;
|
||||||
val=tmp;
|
|
||||||
first=false;
|
|
||||||
} else {
|
|
||||||
if (tmp > val) val = tmp;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (val) rmax_x=val;
|
if (val) rmax_x=val;
|
||||||
return val;
|
return val;
|
||||||
@ -1412,7 +1401,8 @@ EventDataType gGraph::MinY()
|
|||||||
for (QVector<Layer *>::iterator l=m_layers.begin();l!=m_layers.end();l++) {
|
for (QVector<Layer *>::iterator l=m_layers.begin();l!=m_layers.end();l++) {
|
||||||
if ((*l)->isEmpty()) continue;
|
if ((*l)->isEmpty()) continue;
|
||||||
tmp=(*l)->Miny();
|
tmp=(*l)->Miny();
|
||||||
if (tmp==0 && tmp==(*l)->Maxy()) continue;
|
if (tmp==0 && tmp==(*l)->Maxy())
|
||||||
|
continue;
|
||||||
if (first) {
|
if (first) {
|
||||||
val=tmp;
|
val=tmp;
|
||||||
first=false;
|
first=false;
|
||||||
@ -1443,11 +1433,11 @@ EventDataType gGraph::MaxY()
|
|||||||
|
|
||||||
void gGraph::SetMinX(qint64 v)
|
void gGraph::SetMinX(qint64 v)
|
||||||
{
|
{
|
||||||
rmax_x=min_x=v;
|
rmin_x=min_x=v;
|
||||||
}
|
}
|
||||||
void gGraph::SetMaxX(qint64 v)
|
void gGraph::SetMaxX(qint64 v)
|
||||||
{
|
{
|
||||||
rmin_x=max_x=v;
|
rmax_x=max_x=v;
|
||||||
}
|
}
|
||||||
void gGraph::SetMinY(EventDataType v)
|
void gGraph::SetMinY(EventDataType v)
|
||||||
{
|
{
|
||||||
@ -1721,8 +1711,19 @@ void gGraphView::scrollbarValueChanged(int val)
|
|||||||
void gGraphView::ResetBounds(bool refresh) //short group)
|
void gGraphView::ResetBounds(bool refresh) //short group)
|
||||||
{
|
{
|
||||||
for (int i=0;i<m_graphs.size();i++) {
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
//if (m_graphs[i]->group()==group)
|
m_graphs[i]->ResetBounds();
|
||||||
m_graphs[i]->ResetBounds();
|
}
|
||||||
|
|
||||||
|
if (PROFILE["LinkGroups"].toBool()) {
|
||||||
|
qint64 m1=0,m2=0;
|
||||||
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
|
if (!m1 || m_graphs[i]->min_x<m1) m1=m_graphs[i]->min_x;
|
||||||
|
if (!m2 || m_graphs[i]->max_x>m2) m2=m_graphs[i]->max_x;
|
||||||
|
}
|
||||||
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
|
m_graphs[i]->SetMinX(m1);
|
||||||
|
m_graphs[i]->SetMaxX(m2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
qint64 xx=m_graphs[0]->max_x-m_graphs[0]->min_x;
|
qint64 xx=m_graphs[0]->max_x-m_graphs[0]->min_x;
|
||||||
double d=xx/86400000L;
|
double d=xx/86400000L;
|
||||||
@ -1731,7 +1732,6 @@ void gGraphView::ResetBounds(bool refresh) //short group)
|
|||||||
int s=(xx/1000) % 60;
|
int s=(xx/1000) % 60;
|
||||||
int ms(xx % 1000);
|
int ms(xx % 1000);
|
||||||
QString str;
|
QString str;
|
||||||
|
|
||||||
if (d>1) {
|
if (d>1) {
|
||||||
str.sprintf("%1.0f days",ceil(double(xx)/86400000.0));
|
str.sprintf("%1.0f days",ceil(double(xx)/86400000.0));
|
||||||
} else {
|
} else {
|
||||||
@ -1746,8 +1746,9 @@ void gGraphView::ResetBounds(bool refresh) //short group)
|
|||||||
void gGraphView::SetXBounds(qint64 minx, qint64 maxx,short group,bool refresh)
|
void gGraphView::SetXBounds(qint64 minx, qint64 maxx,short group,bool refresh)
|
||||||
{
|
{
|
||||||
for (int i=0;i<m_graphs.size();i++) {
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
if (m_graphs[i]->group()==group)
|
if (PROFILE["LinkGroups"].toBool()|| (m_graphs[i]->group()==group)) {
|
||||||
m_graphs[i]->SetXBounds(minx,maxx);
|
m_graphs[i]->SetXBounds(minx,maxx);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
qint64 xx=maxx-minx;
|
qint64 xx=maxx-minx;
|
||||||
double d=xx/86400000L;
|
double d=xx/86400000L;
|
||||||
|
@ -105,12 +105,13 @@ void SummaryChart::SetDay(Day * nullday)
|
|||||||
if (fnd) {
|
if (fnd) {
|
||||||
if (!m_fday) m_fday=dn;
|
if (!m_fday) m_fday=dn;
|
||||||
m_values[dn][0]=total;
|
m_values[dn][0]=total;
|
||||||
|
m_hours[dn]=day->hours();
|
||||||
if (m_graphtype==GT_BAR) {
|
if (m_graphtype==GT_BAR) {
|
||||||
if (total<m_miny) m_miny=total;
|
if (total<m_miny) m_miny=total;
|
||||||
if (total>m_maxy) m_maxy=total;
|
if (total>m_maxy) m_maxy=total;
|
||||||
}
|
}
|
||||||
m_empty=false;
|
m_empty=false;
|
||||||
}
|
} else m_hours[dn]=0;
|
||||||
}
|
}
|
||||||
if (m_graphtype==GT_BAR) {
|
if (m_graphtype==GT_BAR) {
|
||||||
m_miny=0;
|
m_miny=0;
|
||||||
@ -202,8 +203,8 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
double total_val=0;
|
double total_val=0;
|
||||||
qint64 lastQ=0;
|
qint64 lastQ=0;
|
||||||
bool lastdaygood=false;
|
bool lastdaygood=false;
|
||||||
QVector<int> totalcounts;
|
QVector<double> totalcounts;
|
||||||
QVector<EventDataType> totalvalues;
|
QVector<double> totalvalues;
|
||||||
//QVector<EventDataType> lastvalues;
|
//QVector<EventDataType> lastvalues;
|
||||||
QVector<float> lastX;
|
QVector<float> lastX;
|
||||||
QVector<short> lastY;
|
QVector<short> lastY;
|
||||||
@ -242,6 +243,7 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
}
|
}
|
||||||
|
|
||||||
Day * day;
|
Day * day;
|
||||||
|
EventDataType hours;
|
||||||
for (qint64 Q=minx;Q<=maxx+86400000L;Q+=86400000L) {
|
for (qint64 Q=minx;Q<=maxx+86400000L;Q+=86400000L) {
|
||||||
zd=Q/86400000L;
|
zd=Q/86400000L;
|
||||||
d=m_values.find(zd);
|
d=m_values.find(zd);
|
||||||
@ -250,6 +252,7 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
if (Q<minx) continue;
|
if (Q<minx) continue;
|
||||||
if (d!=m_values.end()) {
|
if (d!=m_values.end()) {
|
||||||
day=m_days[zd];
|
day=m_days[zd];
|
||||||
|
hours=m_hours[zd];
|
||||||
|
|
||||||
int x1=px;
|
int x1=px;
|
||||||
//x1-=(barw/2.0);
|
//x1-=(barw/2.0);
|
||||||
@ -284,10 +287,11 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
} else if (m_type[j]==ST_MIN) {
|
} else if (m_type[j]==ST_MIN) {
|
||||||
if (tmp<totalvalues[j]) totalvalues[j]=tmp;
|
if (tmp<totalvalues[j]) totalvalues[j]=tmp;
|
||||||
} else {
|
} else {
|
||||||
totalvalues[j]+=tmp;
|
totalvalues[j]+=tmp*hours;
|
||||||
}
|
}
|
||||||
if (tmp)
|
//if (tmp) {
|
||||||
totalcounts[j]++;
|
totalcounts[j]+=hours;
|
||||||
|
//}
|
||||||
tmp-=miny;
|
tmp-=miny;
|
||||||
h=tmp*ymult; // height in pixels
|
h=tmp*ymult; // height in pixels
|
||||||
|
|
||||||
@ -357,7 +361,7 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
if ((m_type[j]==ST_MIN) || (m_type[j]==ST_MAX)) {
|
if ((m_type[j]==ST_MIN) || (m_type[j]==ST_MAX)) {
|
||||||
f=totalvalues[j];
|
f=totalvalues[j];
|
||||||
} else {
|
} else {
|
||||||
f=totalvalues[j]/float(totalcounts[j]);
|
f=totalvalues[j]/totalcounts[j];
|
||||||
}
|
}
|
||||||
if (m_type[j]==ST_HOURS) {
|
if (m_type[j]==ST_HOURS) {
|
||||||
int h=f;
|
int h=f;
|
||||||
|
@ -33,6 +33,7 @@ class SummaryChart:public Layer
|
|||||||
QVector<ChannelID> m_codes;
|
QVector<ChannelID> m_codes;
|
||||||
QVector<SummaryType> m_type;
|
QVector<SummaryType> m_type;
|
||||||
QHash<int,QHash<short,EventDataType> > m_values;
|
QHash<int,QHash<short,EventDataType> > m_values;
|
||||||
|
QHash<int,EventDataType> m_hours;
|
||||||
QHash<int,Day *> m_days;
|
QHash<int,Day *> m_days;
|
||||||
|
|
||||||
GLShortBuffer *quads,*lines;
|
GLShortBuffer *quads,*lines;
|
||||||
|
10
daily.cpp
10
daily.cpp
@ -191,6 +191,8 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
|||||||
SPO2->AddLayer(AddOXI(new gLineChart(OXI_SPO2,Qt::blue,true)));
|
SPO2->AddLayer(AddOXI(new gLineChart(OXI_SPO2,Qt::blue,true)));
|
||||||
PLETHY->AddLayer(AddOXI(new gLineChart(OXI_Plethy,Qt::darkBlue,false)));
|
PLETHY->AddLayer(AddOXI(new gLineChart(OXI_Plethy,Qt::darkBlue,false)));
|
||||||
|
|
||||||
|
SPO2->forceMinY(60);
|
||||||
|
PULSE->forceMinY(40);
|
||||||
for (int i=0;i<ng;i++){
|
for (int i=0;i<ng;i++){
|
||||||
graphs[i]->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
graphs[i]->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
||||||
graphs[i]->AddLayer(new gXAxis(),LayerBottom,0,20);
|
graphs[i]->AddLayer(new gXAxis(),LayerBottom,0,20);
|
||||||
@ -614,6 +616,14 @@ void Daily::Load(QDate date)
|
|||||||
tmp.sprintf(("<tr><td align=center>%08i</td><td align=center>"+fd.date().toString(Qt::SystemLocaleShortDate)+"</td><td align=center>"+fd.toString("HH:mm ")+"</td><td align=center>"+ld.toString("HH:mm")+"</td></tr>").toLatin1(),(*s)->session());
|
tmp.sprintf(("<tr><td align=center>%08i</td><td align=center>"+fd.date().toString(Qt::SystemLocaleShortDate)+"</td><td align=center>"+fd.toString("HH:mm ")+"</td><td align=center>"+ld.toString("HH:mm")+"</td></tr>").toLatin1(),(*s)->session());
|
||||||
html+=tmp;
|
html+=tmp;
|
||||||
}
|
}
|
||||||
|
for (QVector<Session *>::iterator s=oxi->begin();s!=oxi->end();s++) {
|
||||||
|
fd=QDateTime::fromTime_t((*s)->first()/1000L);
|
||||||
|
ld=QDateTime::fromTime_t((*s)->last()/1000L);
|
||||||
|
QHash<ChannelID,QVariant>::iterator i=(*s)->settings.find("BrokenWaveform");
|
||||||
|
if ((i!=(*s)->settings.end()) && i.value().toBool()) corrupted_waveform=true;
|
||||||
|
tmp.sprintf(("<tr><td align=center>%08i</td><td align=center>"+fd.date().toString(Qt::SystemLocaleShortDate)+"</td><td align=center>"+fd.toString("HH:mm ")+"</td><td align=center>"+ld.toString("HH:mm")+"</td></tr>").toLatin1(),(*s)->session());
|
||||||
|
html+=tmp;
|
||||||
|
}
|
||||||
html+="</table>";
|
html+="</table>";
|
||||||
if (corrupted_waveform) {
|
if (corrupted_waveform) {
|
||||||
html+="<hr><div align=center><i>One or more waveform record for this session had faulty source data. Some waveform overlay points may not match up correctly.</i></div>";
|
html+="<hr><div align=center><i>One or more waveform record for this session had faulty source data. Some waveform overlay points may not match up correctly.</i></div>";
|
||||||
|
@ -10,9 +10,9 @@ One id code per item
|
|||||||
<!-- Channel List -->
|
<!-- Channel List -->
|
||||||
<channel id="0x1000" class="data" name="CSR" details="Cheyne Stokes Respiration" label="CSR" color="light green"/>
|
<channel id="0x1000" class="data" name="CSR" details="Cheyne Stokes Respiration" label="CSR" color="light green"/>
|
||||||
<channel id="0x1001" class="data" name="ClearAirway" details="Clear Airway Apnea" label="CA" color="purple"/>
|
<channel id="0x1001" class="data" name="ClearAirway" details="Clear Airway Apnea" label="CA" color="purple"/>
|
||||||
<channel id="0x1002" class="data" name="Obstructive" details="Obstructive Apnea" label="O" color="#40c0ff"/>
|
<channel id="0x1002" class="data" name="Obstructive" details="Obstructive Apnea" label="OA" color="#40c0ff"/>
|
||||||
<channel id="0x1003" class="data" name="Hypopnea" details="Hypopnea" label="H" color="blue"/>
|
<channel id="0x1003" class="data" name="Hypopnea" details="Hypopnea" label="H" color="blue"/>
|
||||||
<channel id="0x1004" class="data" name="Apnea" details="Unspecified Apnea" label="A" color="dark green"/>
|
<channel id="0x1004" class="data" name="Apnea" details="Unspecified Apnea" label="UA" color="dark green"/>
|
||||||
<channel id="0x1005" class="data" name="FlowLimit" details="Flow Limitation" label="FL" color="dark grey"/>
|
<channel id="0x1005" class="data" name="FlowLimit" details="Flow Limitation" label="FL" color="dark grey"/>
|
||||||
<channel id="0x1006" class="data" name="RERA" details="Respiratory Effort Related Arousal" label="RERA" color="gold"/>
|
<channel id="0x1006" class="data" name="RERA" details="Respiratory Effort Related Arousal" label="RERA" color="gold"/>
|
||||||
<channel id="0x1007" class="data" name="VSnore" details="Vibratory Snore" label="VS" unit="" color="red"/>
|
<channel id="0x1007" class="data" name="VSnore" details="Vibratory Snore" label="VS" unit="" color="red"/>
|
||||||
|
@ -110,6 +110,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
if (!PROFILE.Exists("EnableMultithreading")) PROFILE["EnableMultithreading"]=QThread::idealThreadCount()>1;
|
if (!PROFILE.Exists("EnableMultithreading")) PROFILE["EnableMultithreading"]=QThread::idealThreadCount()>1;
|
||||||
if (!PROFILE.Exists("MemoryHog")) PROFILE["MemoryHog"]=false;
|
if (!PROFILE.Exists("MemoryHog")) PROFILE["MemoryHog"]=false;
|
||||||
if (!PROFILE.Exists("EnableGraphSnapshots")) PROFILE["EnableGraphSnapshots"]=false;
|
if (!PROFILE.Exists("EnableGraphSnapshots")) PROFILE["EnableGraphSnapshots"]=false;
|
||||||
|
if (!PROFILE.Exists("LinkGroups")) PROFILE["LinkGroups"]=true;
|
||||||
if (!PROFILE.Exists("AlwaysShowOverlayBars")) PROFILE["AlwaysShowOverlayBars"]=0;
|
if (!PROFILE.Exists("AlwaysShowOverlayBars")) PROFILE["AlwaysShowOverlayBars"]=0;
|
||||||
if (!PROFILE.Exists("UseAntiAliasing")) PROFILE["UseAntiAliasing"]=false;
|
if (!PROFILE.Exists("UseAntiAliasing")) PROFILE["UseAntiAliasing"]=false;
|
||||||
if (!PROFILE.Exists("IntentionalLeak")) PROFILE["IntentionalLeak"]=(double)0.0;
|
if (!PROFILE.Exists("IntentionalLeak")) PROFILE["IntentionalLeak"]=(double)0.0;
|
||||||
@ -120,7 +121,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
|
|
||||||
|
|
||||||
//ui->actionUse_AntiAliasing->setChecked(PROFILE["UseAntiAliasing"].toBool());
|
//ui->actionUse_AntiAliasing->setChecked(PROFILE["UseAntiAliasing"].toBool());
|
||||||
|
ui->action_Link_Graph_Groups->setChecked(PROFILE["LinkGroups"].toBool());
|
||||||
|
|
||||||
first_load=true;
|
first_load=true;
|
||||||
|
|
||||||
@ -464,3 +465,9 @@ void MainWindow::on_action_Edit_Profile_triggered()
|
|||||||
newprof.exec();
|
newprof.exec();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_action_Link_Graph_Groups_toggled(bool arg1)
|
||||||
|
{
|
||||||
|
PROFILE["LinkGroups"]=arg1;
|
||||||
|
if (daily) daily->ReloadGraphs();
|
||||||
|
}
|
||||||
|
@ -92,6 +92,8 @@ private slots:
|
|||||||
|
|
||||||
void on_action_Edit_Profile_triggered();
|
void on_action_Edit_Profile_triggered();
|
||||||
|
|
||||||
|
void on_action_Link_Graph_Groups_toggled(bool arg1);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
Daily * daily;
|
Daily * daily;
|
||||||
|
@ -593,6 +593,7 @@
|
|||||||
<addaction name="action_Fullscreen"/>
|
<addaction name="action_Fullscreen"/>
|
||||||
<addaction name="action_Screenshot"/>
|
<addaction name="action_Screenshot"/>
|
||||||
<addaction name="separator"/>
|
<addaction name="separator"/>
|
||||||
|
<addaction name="action_Link_Graph_Groups"/>
|
||||||
<addaction name="action_Reset_Graph_Layout"/>
|
<addaction name="action_Reset_Graph_Layout"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menu_Help">
|
<widget class="QMenu" name="menu_Help">
|
||||||
@ -674,14 +675,6 @@
|
|||||||
<string>&About SleepyHead</string>
|
<string>&About SleepyHead</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="action_Link_Graphs">
|
|
||||||
<property name="checkable">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>&Link Graphs</string>
|
|
||||||
</property>
|
|
||||||
</action>
|
|
||||||
<action name="action_Fullscreen">
|
<action name="action_Fullscreen">
|
||||||
<property name="checkable">
|
<property name="checkable">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
@ -693,14 +686,6 @@
|
|||||||
<string>F11</string>
|
<string>F11</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>
|
|
||||||
<action name="actionDebug">
|
<action name="actionDebug">
|
||||||
<property name="checkable">
|
<property name="checkable">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
@ -709,39 +694,11 @@
|
|||||||
<string>Debug</string>
|
<string>Debug</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionOverlay_Bars">
|
|
||||||
<property name="checkable">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>&Overlay Bars</string>
|
|
||||||
</property>
|
|
||||||
</action>
|
|
||||||
<action name="action_Memory_Hog">
|
|
||||||
<property name="checkable">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>&Memory Hog</string>
|
|
||||||
</property>
|
|
||||||
</action>
|
|
||||||
<action name="action_Reset_Graph_Layout">
|
<action name="action_Reset_Graph_Layout">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Reset Graph Layout</string>
|
<string>&Reset Graph Layout</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionEnable_Multithreading">
|
|
||||||
<property name="checkable">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Enable Multithreading</string>
|
|
||||||
</property>
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Warning: Enabling this feature may require you to either hand edit the Preferences.xml or delete SleepyHeads data folder.
|
|
||||||
</string>
|
|
||||||
</property>
|
|
||||||
</action>
|
|
||||||
<action name="actionCheck_for_Updates">
|
<action name="actionCheck_for_Updates">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Check for &Updates</string>
|
<string>Check for &Updates</string>
|
||||||
@ -773,6 +730,14 @@
|
|||||||
<string>&Edit Profile</string>
|
<string>&Edit Profile</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="action_Link_Graph_Groups">
|
||||||
|
<property name="checkable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>&Link Graph Groups</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<customwidgets>
|
<customwidgets>
|
||||||
<customwidget>
|
<customwidget>
|
||||||
|
@ -79,8 +79,8 @@ Overview::Overview(QWidget *parent,gGraphView * shared) :
|
|||||||
|
|
||||||
set=new SummaryChart("",GT_LINE);
|
set=new SummaryChart("",GT_LINE);
|
||||||
//set->addSlice("SysOneResistSet",QColor("grey"),ST_SETAVG);
|
//set->addSlice("SysOneResistSet",QColor("grey"),ST_SETAVG);
|
||||||
set->addSlice("HumidSet",QColor("blue"),ST_SETAVG);
|
set->addSlice("HumidSet",QColor("blue"),ST_SETWAVG);
|
||||||
set->addSlice("FlexSet",QColor("red"),ST_SETAVG);
|
set->addSlice("FlexSet",QColor("red"),ST_SETWAVG);
|
||||||
//set->addSlice("PAPMode",QColor("red"),ST_SETAVG);
|
//set->addSlice("PAPMode",QColor("red"),ST_SETAVG);
|
||||||
SET->forceMinY(0);
|
SET->forceMinY(0);
|
||||||
SET->forceMaxY(5);
|
SET->forceMaxY(5);
|
||||||
|
Loading…
Reference in New Issue
Block a user