diff --git a/Graphs/gLineChart.cpp b/Graphs/gLineChart.cpp index 151f6567..7c512ad0 100644 --- a/Graphs/gLineChart.cpp +++ b/Graphs/gLineChart.cpp @@ -88,7 +88,6 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) if (yy<=0) { if (miny==0) return; - int i=5; } EventDataType lastpx,lastpy; @@ -164,9 +163,6 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) if (maxxxL) { if (siz==2) { // this happens on CPAP quint32 t=el.getTime()[0]; diff --git a/Graphs/gSegmentChart.cpp b/Graphs/gSegmentChart.cpp index 1159720e..4c150903 100644 --- a/Graphs/gSegmentChart.cpp +++ b/Graphs/gSegmentChart.cpp @@ -123,11 +123,24 @@ void gSegmentChart::Plot(gGraphWindow & w,float scrx,float scry) py=start_py+yoffset+cos(q*2*M_PI)*radius; glVertex2f(px,py); } + double tpx=start_px+xoffset+sin((sum+(j/2.0))*2*M_PI)*(radius/1.7); + double tpy=start_py+yoffset+cos((sum+(j/2.0))*2*M_PI)*(radius/1.7); q=sum+j; px=start_px+xoffset+sin(q*2*M_PI)*radius; py=start_py+yoffset+cos(q*2*M_PI)*radius; glVertex2f(px,py); glEnd(); + + if (j>.09) { + //glBegin(GL_POINTS); + //glVertex2f(tpx,tpy); + //glEnd(); + QString a=m_names[m]; //QString::number(floor(100.0/m_total*data),'f',0)+"%"; + float x,y; + GetTextExtent(a,x,y); + w.renderText(tpx-(x/2.0),scry-(tpy-y/2.0),a); + } + sum=q; ///////////////////////////////////////////////////////////////////////////////////// diff --git a/Graphs/gTitle.cpp b/Graphs/gTitle.cpp index b9af48e7..e5f06a9d 100644 --- a/Graphs/gTitle.cpp +++ b/Graphs/gTitle.cpp @@ -20,7 +20,7 @@ void gTitle::Plot(gGraphWindow & w,float scrx,float scry) float width,height; GetTextExtent(m_title,width,height); - int xp=(height/2)+15; + int xp=(height/2)+17; //if (m_alignment==wxALIGN_RIGHT) xp=scrx-4-height; int j=scry/2-w.GetTopMargin(); DrawText(w,m_title,xp,j,90.0,m_color,&m_font); diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index e99d2431..0d24451c 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -61,7 +61,7 @@ void gXAxis::Plot(gGraphWindow & w,float scrx,float scry) int divmax,dividx; int fitmode; if (xx>86400000L) { // Day - fd="00:00"; + fd="MMM 00:00"; dividx=0; divmax=10; fitmode=0; @@ -156,8 +156,9 @@ void gXAxis::Plot(gGraphWindow & w,float scrx,float scry) int s=(j/1000L) % 60L; if (fitmode==0) { - int day=(j/86400000) % 7; - tmpstr=QString("XXX %1:%2").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')); + static QString dow[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"}; + int d=(j/86400000) % 7; + tmpstr=QString("%1 %2:%3").arg(dow[d]).arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')); } else if (fitmode==1) { // minute tmpstr=QString("%1:%2").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')); } else if (fitmode==2) { // second diff --git a/SleepLib/machine.cpp b/SleepLib/machine.cpp index 7ca15f87..5c512123 100644 --- a/SleepLib/machine.cpp +++ b/SleepLib/machine.cpp @@ -337,7 +337,6 @@ Session *Machine::SessionExists(SessionID session) Day *Machine::AddSession(Session *s,Profile *p) { - double span=0; if (!s) { qWarning() << "Empty Session in Machine::AddSession()"; return NULL; diff --git a/SleepLib/session.cpp b/SleepLib/session.cpp index d4a94d1a..31dca4d5 100644 --- a/SleepLib/session.cpp +++ b/SleepLib/session.cpp @@ -524,7 +524,7 @@ qint64 Session::last(ChannelID id) m_lastchan[id]=max; return max; } -bool Session::hasChannel(ChannelID id) +bool Session::channelExists(ChannelID id) { QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) diff --git a/SleepLib/session.h b/SleepLib/session.h index 85745cab..0d44456c 100644 --- a/SleepLib/session.h +++ b/SleepLib/session.h @@ -111,7 +111,7 @@ public: EventDataType percentile(ChannelID id,EventDataType percentile); - bool hasChannel(ChannelID id); + bool channelExists(ChannelID id); bool IsLoneSession() { return s_lonesession; } void SetLoneSession(bool b) { s_lonesession=b; } diff --git a/daily.ui b/daily.ui index 8ba457d8..7c076f03 100644 --- a/daily.ui +++ b/daily.ui @@ -20,6 +20,12 @@ Form + + 0 + + + 0 + @@ -90,7 +96,7 @@ - 3 + 0 true diff --git a/main.cpp b/main.cpp index 1ed6a44f..1ff57c69 100644 --- a/main.cpp +++ b/main.cpp @@ -44,11 +44,11 @@ int main(int argc, char *argv[]) a.setApplicationName("SleepyHead"); - /* int id=QFontDatabase::addApplicationFont(":/fonts/FreeSans.ttf"); + int id=QFontDatabase::addApplicationFont(":/fonts/FreeSans.ttf"); QStringList ffam=QFontDatabase::applicationFontFamilies(id); for (QStringList::iterator i=ffam.begin();i!=ffam.end();i++) { qDebug() << "Loaded Font: " << (*i); - } */ + } a.setFont(QFont("Sans Serif",10));