diff --git a/Graphs/gSegmentChart.cpp b/Graphs/gSegmentChart.cpp index 4c150903..b82e57b3 100644 --- a/Graphs/gSegmentChart.cpp +++ b/Graphs/gSegmentChart.cpp @@ -44,7 +44,7 @@ void gSegmentChart::Plot(gGraphWindow & w,float scrx,float scry) { if (!m_visible) return; if (!m_day) return; - if (!m_total) return; + //if (!m_total) return; int start_px=w.GetLeftMargin(); int start_py=w.GetBottomMargin(); int width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); @@ -59,10 +59,6 @@ void gSegmentChart::Plot(gGraphWindow & w,float scrx,float scry) float step=1.0/45.0; float px,py; float q; - glEnable(GL_BLEND); - glEnable(GL_LINE_SMOOTH); - glLineWidth(1.5); - glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); float xmult=float(width)/float(m_total); float ymult=float(height)/float(m_total); @@ -71,13 +67,26 @@ void gSegmentChart::Plot(gGraphWindow & w,float scrx,float scry) int xoffset=width/2; int yoffset=height/2; + if (m_total==0) { + w.qglColor(Qt::green); + QString a=":-)"; + float x,y; + GetTextExtent(a,x,y,bigfont); + w.renderText(start_px+xoffset-x/2, scry-(start_py+yoffset-y/2),a,*bigfont); + return; + } + glEnable(GL_BLEND); + glEnable(GL_LINE_SMOOTH); + glLineWidth(1.5); + glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); int data; unsigned size=m_values.size(); float line_step=float(width)/float(size-1); bool line_first=true; int line_last; + if (m_graph_type==GST_Line) { w.qglColor(m_outline_color); glBegin(GL_LINES); diff --git a/daily.cpp b/daily.cpp index e3a26bd2..e9438ba9 100644 --- a/daily.cpp +++ b/daily.cpp @@ -61,8 +61,10 @@ Daily::Daily(QWidget *parent,QGLWidget * shared, MainWindow *mw) ui->graphLayout->addWidget(scrollArea,1); scrollArea->setWidgetResizable(true); + scrollArea->setAutoFillBackground(false); GraphLayout=new QWidget(scrollArea); + GraphLayout->setAutoFillBackground(false); scrollArea->setWidget(GraphLayout); splitter=new QVBoxLayout(GraphLayout);