diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index aafda712..25451af7 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -1957,6 +1957,14 @@ void gGraphView::timedRedraw(int ms) { QTimer::singleShot(ms,this,SLOT(TimedRefresh())); } +void gGraphView::resetLayout() +{ + for (int i=0;isetHeight(default_height); + } + updateScale(); + updateGL(); +} MyScrollBar::MyScrollBar(QWidget * parent) diff --git a/Graphs/gGraphView.h b/Graphs/gGraphView.h index 0cba50c5..f73a9bc3 100644 --- a/Graphs/gGraphView.h +++ b/Graphs/gGraphView.h @@ -16,6 +16,7 @@ #define MAX(a,b) (((a)<(b)) ? (b) : (a)); enum FlagType { FT_Bar, FT_Dot, FT_Span }; +const int default_height=170; void InitGraphs(); void DoneGraphs(); @@ -359,6 +360,7 @@ public: void updateScrollBar(); void updateScale(); // update scale & Scrollbar + void resetLayout(); void setEmptyText(QString s) { m_emptytext=s; } QMutex text_mutex; QMutex gl_mutex; diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index c8b078ab..07f987b7 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -15,8 +15,8 @@ gYSpacer::gYSpacer(int spacer) :Layer(EmptyChannel) gXGrid::gXGrid(QColor col) :Layer(EmptyChannel) { - m_major_color=QColor(190,190,190,64); - m_minor_color=QColor(220,220,220,64); + m_major_color=QColor(180,180,180,128); + m_minor_color=QColor(220,220,220,128); m_show_major_lines=true; m_show_minor_lines=true; } diff --git a/daily.cpp b/daily.cpp index b07ae38d..95de5c3e 100644 --- a/daily.cpp +++ b/daily.cpp @@ -29,7 +29,6 @@ #include "Graphs/gStatsLine.h" const int min_height=150; -const int default_height=150; Daily::Daily(QWidget *parent,Profile * _profile,gGraphView * shared, MainWindow *mw) :QWidget(parent),mainwin(mw), ui(new Ui::Daily),profile(_profile) @@ -695,6 +694,7 @@ void Daily::on_calendar_selectionChanged() } void Daily::ResetGraphLayout() { + GraphView->resetLayout(); //splitter->setSizes(splitter_sizes); } diff --git a/mainwindow.cpp b/mainwindow.cpp index ad60ccac..8fe0e9bf 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -377,7 +377,8 @@ void MainWindow::on_actionOverlay_Bars_toggled(bool checked) void MainWindow::on_action_Reset_Graph_Layout_triggered() { - if (daily) daily->ResetGraphLayout(); + if (daily && (ui->tabWidget->currentWidget()==daily)) daily->ResetGraphLayout(); + if (overview && (ui->tabWidget->currentWidget()==overview)) overview->ResetGraphLayout(); } void MainWindow::on_action_Preferences_triggered() diff --git a/overview.cpp b/overview.cpp index 18515e91..5f339c6b 100644 --- a/overview.cpp +++ b/overview.cpp @@ -17,8 +17,6 @@ #include "Graphs/gLineChart.h" #include "Graphs/gYAxis.h" -const int default_height=180; - Overview::Overview(QWidget *parent,Profile * _profile,gGraphView * shared) : QWidget(parent), ui(new Ui::Overview), @@ -271,3 +269,7 @@ void Overview::on_htmlButton_clicked() } } +void Overview::ResetGraphLayout() +{ + GraphView->resetLayout(); +} diff --git a/overview.h b/overview.h index 94eeaf26..9ca3a43e 100644 --- a/overview.h +++ b/overview.h @@ -31,6 +31,7 @@ public: void ReloadGraphs(); //void UpdateGraphs(); + void ResetGraphLayout(); gGraph *AHI,*UC,*PR,*LK,*NPB; SummaryChart *bc,*uc,*pr,*lk,*npb; diff --git a/report.cpp b/report.cpp index 9770013e..bc264cfb 100644 --- a/report.cpp +++ b/report.cpp @@ -231,7 +231,7 @@ QString Report::GenerateReport(QString templ,QDate start, QDate end) if ((*profile).Exists("Height") && !(*profile)["Height"].toString().isEmpty()) { if ((*profile)["UnitSystem"].toString()=="Metric") locals["DistanceMeasure"]="cm"; - else locals["DistanceMeasure"]="inches"; + else locals["DistanceMeasure"]=" inches"; } //QFile file(":/docs/template_overview.sht"); //file.open(QIODevice::ReadOnly); @@ -254,7 +254,7 @@ void Report::Print(QString html) //printer.setPaperSize(QPrinter::A4); printer.setResolution(QPrinter::HighResolution); //printer.setPageSize(); - printer.setFullPage(false); + printer.setFullPage(false); // This has nothing to do with scaling printer.setNumCopies(1); printer.setPageMargins(10,10,10,10,QPrinter::Millimeter); QPrintDialog *dialog = new QPrintDialog(&printer);