Fix some windows layout bugs

This commit is contained in:
Mark Watkins 2014-08-29 14:02:16 +10:00
parent f0097e38ae
commit 51e58b8ae5
8 changed files with 37 additions and 22 deletions

View File

@ -291,7 +291,9 @@ void gGraph::paint(QPainter &painter, const QRegion &region)
int fw, font_height; int fw, font_height;
GetTextExtent("Wg@", fw, font_height); GetTextExtent("Wg@", fw, font_height);
if (m_margintop > 0) { m_margintop = font_height + (8); } if (m_margintop > 0) {
m_margintop = font_height + (2*printScaleY());
}
//m_marginbottom=5; //m_marginbottom=5;
@ -329,9 +331,13 @@ void gGraph::paint(QPainter &painter, const QRegion &region)
QString t = name().section(";", -1); QString t = name().section(";", -1);
QRect rec = m_rect; QString txt = QObject::tr("Snapshot %1").arg(t);
rec.moveTop(rec.top() + 4); QRectF rec = QRect(m_rect.left(),m_rect.top()+6*printScaleY(), m_rect.width(), 0);
painter.drawText(rec, Qt::AlignHCenter | Qt::AlignTop, QObject::tr("Snapshot %1").arg(t)); rec = painter.boundingRect(rec, Qt::AlignCenter, txt);
painter.drawText(rec, Qt::AlignCenter, txt);
m_margintop += rec.height();
top = m_margintop;
} }
@ -479,15 +485,19 @@ QPixmap gGraph::renderPixmap(int w, int h, bool printing)
QPixmap pm(w,h); QPixmap pm(w,h);
bool pixcaching = p_profile->appearance->usePixmapCaching();
graphView()->setUsePixmapCache(false); graphView()->setUsePixmapCache(false);
p_profile->appearance->setUsePixmapCaching(false);
QPainter painter(&pm); QPainter painter(&pm);
painter.fillRect(0,0,w,h,QBrush(QColor(Qt::white))); painter.fillRect(0,0,w,h,QBrush(QColor(Qt::white)));
QRegion region(0,0,w,h); QRegion region(0,0,w,h);
paint(painter, region); paint(painter, region);
DrawTextQue(painter); DrawTextQue(painter);
graphView()->setUsePixmapCache(p_profile->appearance->usePixmapCaching());
painter.end(); painter.end();
graphView()->setUsePixmapCache(pixcaching);
p_profile->appearance->setUsePixmapCaching(pixcaching);
graphView()->setPrintScaleX(1); graphView()->setPrintScaleX(1);
graphView()->setPrintScaleY(1); graphView()->setPrintScaleY(1);
@ -692,8 +702,8 @@ void gGraph::mouseMoveEvent(QMouseEvent *event)
if (isSnapshot() && (x> m_graphview->titleWidth)) { if (isSnapshot() && (x> m_graphview->titleWidth)) {
// this nag might be a little too much.. // this nag might be a little too much..
ToolTip(tr("Snapshot"),x+15,y, TT_AlignLeft); ToolTip(tr("Snapshot"),x+15,y, TT_AlignLeft);
timedRedraw(0);
} }
timedRedraw(0);
for (int i = 0; i < m_layers.size(); i++) { for (int i = 0; i < m_layers.size(); i++) {
@ -826,9 +836,9 @@ void gGraph::mouseMoveEvent(QMouseEvent *event)
} }
//if (!nolayer) { // no mouse button //if (!nolayer) { // no mouse button
if (doredraw) { // if (doredraw) {
m_graphview->timedRedraw(0); // m_graphview->timedRedraw(0);
} // }
//} //}
//if (x>left+m_marginleft && x<m_lastbounds.width()-(right+m_marginright) && y>top+m_margintop && y<m_lastbounds.height()-(bottom+m_marginbottom)) { // main area //if (x>left+m_marginleft && x<m_lastbounds.width()-(right+m_marginright) && y>top+m_margintop && y<m_lastbounds.height()-(bottom+m_marginbottom)) { // main area

View File

@ -917,7 +917,7 @@ void gGraphView::scrollbarValueChanged(int val)
//qDebug() << "Scrollbar Changed" << val; //qDebug() << "Scrollbar Changed" << val;
if (m_offsetY != val) { if (m_offsetY != val) {
m_offsetY = val; m_offsetY = val;
redraw(); // do this on a timer? timedRedraw(); // do this on a timer?
} }
} }
@ -1445,7 +1445,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent *event)
m_sizer_point.setX(x); m_sizer_point.setX(x);
m_sizer_point.setY(y); m_sizer_point.setY(y);
updateScrollBar(); updateScrollBar();
redraw(); timedRedraw();
} }
return; return;
@ -1503,7 +1503,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent *event)
if (!empty) { if (!empty) {
m_sizer_point.setY(yy + graphSpacer + m_graphs[m_graph_index]->height()*m_scaleY); m_sizer_point.setY(yy + graphSpacer + m_graphs[m_graph_index]->height()*m_scaleY);
redraw(); timedRedraw();
} }
m_graph_index++; m_graph_index++;
@ -3092,10 +3092,14 @@ void gGraphView::timedRedraw(int ms)
{ {
if (timer->isActive()) { if (timer->isActive()) {
int m = timer->remainingTime(); if (ms == 0) {
if (m > ms) {
timer->stop(); timer->stop();
} else return; } else {
int m = timer->remainingTime();
if (m > ms) {
timer->stop();
} else return;
}
} }
timer->setSingleShot(true); timer->setSingleShot(true);
timer->start(ms); timer->start(ms);
@ -3109,7 +3113,7 @@ void gGraphView::resetLayout()
} }
updateScale(); updateScale();
redraw(); timedRedraw(0);
} }
void gGraphView::deselect() void gGraphView::deselect()
{ {

View File

@ -389,7 +389,7 @@ class gGraphView
void setPointClicked(QPoint p) { m_point_clicked = p; } void setPointClicked(QPoint p) { m_point_clicked = p; }
//! \brief Set a redraw timer for ms milliseconds, clearing any previous redraw timer. //! \brief Set a redraw timer for ms milliseconds, clearing any previous redraw timer.
void timedRedraw(int ms); void timedRedraw(int ms=0);
gGraph *m_selected_graph; gGraph *m_selected_graph;
gToolTip *m_tooltip; gToolTip *m_tooltip;

View File

@ -1152,7 +1152,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
if (linecursormode) txt+=lasttext; if (linecursormode) txt+=lasttext;
w.renderText(txt,left,top-4); w.renderText(txt,left,top-6);
} }

View File

@ -258,7 +258,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion &region)
if (xx < (3600000)) { if (xx < (3600000)) {
QString lab = QString("%1").arg(m_label); QString lab = QString("%1").arg(m_label);
GetTextExtent(lab, x, y); GetTextExtent(lab, x, y);
w.renderText(lab, x1 - (x / 2), top - y + (3 * w.printScaleY()),0); w.renderText(lab, x1 - (x / 2), top - y + (5 * w.printScaleY()),0);
} }

View File

@ -18,7 +18,7 @@
class gXAxis: public Layer class gXAxis: public Layer
{ {
public: public:
static const int Margin = 20; // How much room does this take up. (Bottom margin) static const int Margin = 30; // How much room does this take up. (Bottom margin)
public: public:
gXAxis(QColor col = Qt::black, bool fadeout = true); gXAxis(QColor col = Qt::black, bool fadeout = true);

View File

@ -228,7 +228,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
SF->AddLayer(new gLabelArea(fg),LayerLeft,gYAxis::Margin); SF->AddLayer(new gLabelArea(fg),LayerLeft,gYAxis::Margin);
//SF->AddLayer(new gFooBar(),LayerBottom,0,1); //SF->AddLayer(new gFooBar(),LayerBottom,0,1);
SF->AddLayer(new gXAxis(COLOR_Text,false),LayerBottom,0,20); //gXAxis::Margin); SF->AddLayer(new gXAxis(COLOR_Text,false),LayerBottom,0,gXAxis::Margin);
// The following list contains graphs that don't have standard xgrid/yaxis labels // The following list contains graphs that don't have standard xgrid/yaxis labels
@ -354,7 +354,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
if (skipgraph.contains(it.key())) continue; if (skipgraph.contains(it.key())) continue;
it.value()->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin); it.value()->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
it.value()->AddLayer(new gXAxis(),LayerBottom,0,20); it.value()->AddLayer(new gXAxis(),LayerBottom,0,gXAxis::Margin);
} }
if (p_profile->cpap->showLeakRedline()) { if (p_profile->cpap->showLeakRedline()) {

View File

@ -92,6 +92,7 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date)
return; return;
} }
mainwin->Notify( mainwin->Notify(
QObject::tr("This make take some time to complete..\nPlease don't touch anything until it's done."), QObject::tr("This make take some time to complete..\nPlease don't touch anything until it's done."),
QObject::tr("Printing %1 Report").arg(name), 20000); QObject::tr("Printing %1 Report").arg(name), 20000);