Fix opengl screenshots on windows, remove the last of qprogress and statusbar, and add progressdialog to recompress/recalc

This commit is contained in:
Mark Watkins 2018-06-06 10:48:31 +10:00
parent ad0905db07
commit 63e4b1a643
14 changed files with 134 additions and 270 deletions

View File

@ -33,8 +33,6 @@ using namespace std;
#include "SleepLib/machine.h" #include "SleepLib/machine.h"
#include "SleepLib/session.h" #include "SleepLib/session.h"
extern QProgressBar *qprogress;
CMS50F37Loader::CMS50F37Loader() CMS50F37Loader::CMS50F37Loader()
{ {
m_type = MT_OXIMETER; m_type = MT_OXIMETER;

View File

@ -32,8 +32,6 @@ using namespace std;
#include "SleepLib/machine.h" #include "SleepLib/machine.h"
#include "SleepLib/session.h" #include "SleepLib/session.h"
extern QProgressBar *qprogress;
MD300W1Loader::MD300W1Loader() MD300W1Loader::MD300W1Loader()
{ {
m_type = MT_OXIMETER; m_type = MT_OXIMETER;

View File

@ -10,8 +10,6 @@
#include <QProgressBar> #include <QProgressBar>
#include "mseries_loader.h" #include "mseries_loader.h"
extern QProgressBar *qprogress;
MSeries::MSeries(Profile *profile, MachineID id) MSeries::MSeries(Profile *profile, MachineID id)

View File

@ -1135,7 +1135,7 @@ int ResmedLoader::scanFiles(Machine * mach, const QString & datalog_path)
EDForder.push_back(EDF_SAD); EDForder.push_back(EDF_SAD);
QHash<EDFType, QStringList>::iterator gi; QHash<EDFType, QStringList>::iterator gi;
qprogress->setMaximum(filesbytype[EDF_PLD].size() + filesbytype[EDF_BRP].size() + filesbytype[EDF_SAD].size()); emit setProgressMax(filesbytype[EDF_PLD].size() + filesbytype[EDF_BRP].size() + filesbytype[EDF_SAD].size());
cnt = 0; cnt = 0;
for (int i=0; i<3; i++) { for (int i=0; i<3; i++) {
@ -1146,7 +1146,7 @@ int ResmedLoader::scanFiles(Machine * mach, const QString & datalog_path)
int base_size = LIST.size(); int base_size = LIST.size();
for (int f=0; f < base_size; ++f) { for (int f=0; f < base_size; ++f) {
if ((cnt % 50) == 0) { if ((cnt % 50) == 0) {
qprogress->setValue(cnt); emit setProgressValue(cnt);
QApplication::processEvents(); QApplication::processEvents();
} }
cnt++; cnt++;

View File

@ -16,8 +16,6 @@
#include "weinmann_loader.h" #include "weinmann_loader.h"
extern QProgressBar *qprogress;
Weinmann::Weinmann(Profile *profile, MachineID id) Weinmann::Weinmann(Profile *profile, MachineID id)
: CPAP(profile, id) : CPAP(profile, id)
{ {

View File

@ -36,7 +36,6 @@
#include "mainwindow.h" #include "mainwindow.h"
extern MainWindow * mainwin; extern MainWindow * mainwin;
extern QProgressBar *qprogress;
////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////
// Machine Base-Class implmementation // Machine Base-Class implmementation
@ -739,13 +738,14 @@ bool Machine::SaveSession(Session *sess)
return true; return true;
} }
void Machine::queSaveList(Session * sess) /*void Machine::queSaveList(Session * sess)
{ {
if (!m_save_threads_running) { if (!m_save_threads_running) {
// Threads aren't being used.. so run the actual immediately... // Threads aren't being used.. so run the actual immediately...
int i = (float(m_donetasks) / float(m_totaltasks) * 100.0);
qprogress->setValue(i); int i = (float(m_donetasks) / float(m_totaltasks) * 100.0);
QApplication::processEvents(); //qprogress->setValue(i);
//QApplication::processEvents();
sess->UpdateSummaries(); sess->UpdateSummaries();
sess->Store(getDataPath()); sess->Store(getDataPath());
@ -759,7 +759,7 @@ void Machine::queSaveList(Session * sess)
m_savelist.append(sess); m_savelist.append(sess);
listMutex.unlock(); listMutex.unlock();
} }
} }*/
Session *Machine::popSaveList() Session *Machine::popSaveList()
{ {
@ -776,7 +776,7 @@ Session *Machine::popSaveList()
return sess; return sess;
} }
// Call any time queing starts /*// Call any time queing starts
void Machine::StartSaveThreads() void Machine::StartSaveThreads()
{ {
m_savelist.clear(); m_savelist.clear();
@ -827,7 +827,7 @@ void Machine::FinishSaveThreads()
} }
delete savelistSem; delete savelistSem;
} } */
void SaveThread::run() void SaveThread::run()
{ {
@ -898,14 +898,16 @@ void Machine::runTasks()
return; return;
QThreadPool * threadpool = QThreadPool::globalInstance(); QThreadPool * threadpool = QThreadPool::globalInstance();
int m_totaltasks=m_tasklist.size(); //int m_totaltasks=m_tasklist.size();
int m_currenttask=0; //int m_currenttask=0;
qprogress->setMaximum(m_totaltasks); // if (loader()) emit loader()->setProgressMax(m_totaltasks);
while (!m_tasklist.isEmpty()) { while (!m_tasklist.isEmpty()) {
if (threadpool->tryStart(m_tasklist.at(0))) { if (threadpool->tryStart(m_tasklist.at(0))) {
m_tasklist.pop_front(); m_tasklist.pop_front();
qprogress->setValue(m_currenttask++); /* if (loader()) {
QApplication::processEvents(); emit loader()->setProgressValue(++m_currenttask);
QApplication::processEvents();
}*/
} }
} }
QThreadPool::globalInstance()->waitForDone(-1); QThreadPool::globalInstance()->waitForDone(-1);

View File

@ -18,7 +18,6 @@
#include <QThread> #include <QThread>
#include <QMutex> #include <QMutex>
#include <QSemaphore> #include <QSemaphore>
#include <QProgressBar>
#include <QHash> #include <QHash>
#include <QVector> #include <QVector>
@ -160,19 +159,19 @@ class Machine
//! \brief Returns the date of the most recent loaded Session //! \brief Returns the date of the most recent loaded Session
const QDate &LastDay() { return lastday; } const QDate &LastDay() { return lastday; }
//! \brief Add a new task to the multithreaded save code // //! \brief Add a new task to the multithreaded save code
void queSaveList(Session * sess); //void queSaveList(Session * sess);
bool hasModifiedSessions(); bool hasModifiedSessions();
//! \brief Grab the next task in the multithreaded save code //! \brief Grab the next task in the multithreaded save code
Session *popSaveList(); Session *popSaveList();
//! \brief Start the save threads which handle indexing, file storage and waveform processing // //! \brief Start the save threads which handle indexing, file storage and waveform processing
void StartSaveThreads(); //void StartSaveThreads();
//! \brief Finish the save threads and safely close them // //! \brief Finish the save threads and safely close them
void FinishSaveThreads(); //void FinishSaveThreads();
//! \brief The list of sessions that need saving (for multithreaded save code) //! \brief The list of sessions that need saving (for multithreaded save code)
QList<Session *> m_savelist; QList<Session *> m_savelist;

View File

@ -40,7 +40,6 @@
#include "Graphs/gdailysummary.h" #include "Graphs/gdailysummary.h"
#include "Graphs/MinutesAtPressure.h" #include "Graphs/MinutesAtPressure.h"
//extern QProgressBar *qprogress;
extern MainWindow * mainwin; extern MainWindow * mainwin;
// This was Sean Stangl's idea.. but I couldn't apply that patch. // This was Sean Stangl's idea.. but I couldn't apply that patch.

View File

@ -16,7 +16,6 @@
#include "version.h" #include "version.h"
#include "logger.h" #include "logger.h"
#include "SleepLib/schema.h"
#include "mainwindow.h" #include "mainwindow.h"
#include "SleepLib/profiles.h" #include "SleepLib/profiles.h"
#include "translation.h" #include "translation.h"
@ -264,7 +263,6 @@ retry_directory:
CMS50Loader::Register(); CMS50Loader::Register();
CMS50F37Loader::Register(); CMS50F37Loader::Register();
MD300W1Loader::Register(); MD300W1Loader::Register();
//ZEOLoader::Register(); // Use outside of directory importer..
schema::setOrders(); // could be called in init... schema::setOrders(); // could be called in init...

View File

@ -29,6 +29,7 @@
#include <QTextBrowser> #include <QTextBrowser>
#include <QStandardPaths> #include <QStandardPaths>
#include <QDesktopServices> #include <QDesktopServices>
#include <QScreen>
#include <cmath> #include <cmath>
#include "common_gui.h" #include "common_gui.h"
@ -63,10 +64,6 @@
#include <QOpenGLFunctions> #include <QOpenGLFunctions>
#endif #endif
QProgressBar *qprogress;
QLabel *qstatus;
QStatusBar *qstatusbar;
MainWindow::MainWindow(QWidget *parent) : MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent), QMainWindow(parent),
ui(new Ui::MainWindow) ui(new Ui::MainWindow)
@ -113,15 +110,6 @@ MainWindow::MainWindow(QWidget *parent) :
m_inRecalculation = false; m_inRecalculation = false;
m_restartRequired = false; m_restartRequired = false;
// Initialize Status Bar objects // Initialize Status Bar objects
qstatusbar = ui->statusbar;
qprogress = new QProgressBar(this);
qprogress->setMaximum(100);
qstatus = new QLabel("", this);
qprogress->hide();
//ui->statusbar->setMinimumWidth(200);
ui->statusbar->addPermanentWidget(qstatus, 0);
ui->statusbar->addPermanentWidget(qprogress, 1);
QTextCharFormat format = ui->statStartDate->calendarWidget()->weekdayTextFormat(Qt::Saturday); QTextCharFormat format = ui->statStartDate->calendarWidget()->weekdayTextFormat(Qt::Saturday);
format.setForeground(QBrush(Qt::black, Qt::SolidPattern)); format.setForeground(QBrush(Qt::black, Qt::SolidPattern));
@ -217,10 +205,10 @@ MainWindow::MainWindow(QWidget *parent) :
QString loadingtxt = QString loadingtxt =
"<HTML><body style='text-align: center; vertical-align: center'><table width='100%' height='100%'>" "<HTML><body style='text-align: center; vertical-align: center'><table width='100%' height='100%'>"
"<tr><td align=center>" "<tr><td align=center>"
"<img src='qrc:/docs/sheep.png' heigh=300px>" "<img src='qrc:/docs/sheep.png'>"
//"<h1>" + tr("Please Wait, Loading...") + "</h1>" "<h1>" + tr("Under construction...") + "</h1>"
"</td></tr></table></body></HTML>"; "</td></tr></table></body></HTML>";
ui->statisticsView->setHtml(loadingtxt); ui->helpBrowser->setHtml(loadingtxt);
on_tabWidget_currentChanged(0); on_tabWidget_currentChanged(0);
#ifndef REMSTAR_M_SUPPORT #ifndef REMSTAR_M_SUPPORT
@ -322,8 +310,6 @@ void MainWindow::Notify(QString s, QString title, int ms)
#endif #endif
systray->showMessage(title, msg, QSystemTrayIcon::Information, ms); systray->showMessage(title, msg, QSystemTrayIcon::Information, ms);
} else {
ui->statusbar->showMessage(s, ms);
} }
} }
@ -427,9 +413,6 @@ bool MainWindow::OpenProfile(QString profileName, bool skippassword)
prof->removeLock(); prof->removeLock();
} }
// qstatus->setText(tr("Loading Data"));
// qprogress->show();
p_profile = prof; p_profile = prof;
ProgressDialog * progress = new ProgressDialog(this); ProgressDialog * progress = new ProgressDialog(this);
@ -524,9 +507,6 @@ bool MainWindow::OpenProfile(QString profileName, bool skippassword)
progress->close(); progress->close();
delete progress; delete progress;
//qprogress->hide();
//qstatus->setText("");
return true; return true;
} }
@ -962,10 +942,6 @@ void MainWindow::on_action_Import_Data_triggered()
// QStringList goodlocations; // QStringList goodlocations;
// waitmsg.setText(tr("Please wait, SleepyHead is importing data..."));
// qprogress->setVisible(true);
// popup.show();
ProgressDialog * prog = new ProgressDialog(this); ProgressDialog * prog = new ProgressDialog(this);
prog->setMessage(tr("Processing import list...")); prog->setMessage(tr("Processing import list..."));
prog->addAbortButton(); prog->addAbortButton();
@ -1329,10 +1305,18 @@ void MainWindow::on_action_Screenshot_triggered()
void MainWindow::DelayedScreenshot() void MainWindow::DelayedScreenshot()
{ {
// Make sure to scale for high resolution displays (like Retina) // Make sure to scale for high resolution displays (like Retina)
qreal pr = devicePixelRatio(); // qreal pr = devicePixelRatio();
QPixmap pixmap=grab(); QScreen * screen = QApplication::primaryScreen();
int titleBarHeight = -QApplication::style()->pixelMetric(QStyle::PM_TitleBarHeight);
#ifdef Q_OS_WIN
titleBarHeight += 6;
#endif
QPixmap pixmap = screen->grabWindow(winId(),0,titleBarHeight);
/*#if defined(Q_OS_WIN) || defined(Q_OS_LINUX) || defined(Q_OS_HAIKU) /*#if defined(Q_OS_WIN) || defined(Q_OS_LINUX) || defined(Q_OS_HAIKU)
// grab the whole screen // grab the whole screen
@ -1370,10 +1354,6 @@ void MainWindow::on_actionView_Oximetry_triggered()
{ {
on_oximetryButton_clicked(); on_oximetryButton_clicked();
} }
void MainWindow::updatestatusBarMessage(const QString &text)
{
ui->statusbar->showMessage(text, 1000);
}
void MainWindow::on_actionPrint_Report_triggered() void MainWindow::on_actionPrint_Report_triggered()
{ {
@ -2030,13 +2010,6 @@ void MainWindow::on_actionView_Statistics_triggered()
ui->tabWidget->setCurrentWidget(ui->statisticsTab); ui->tabWidget->setCurrentWidget(ui->statisticsTab);
} }
void MainWindow::LinkHovered(const QString &link, const QString &title, const QString &textContent)
{
Q_UNUSED(title);
Q_UNUSED(textContent);
ui->statusbar->showMessage(link);
}
void MainWindow::on_tabWidget_currentChanged(int index) void MainWindow::on_tabWidget_currentChanged(int index)
{ {
Q_UNUSED(index); Q_UNUSED(index);
@ -2101,181 +2074,111 @@ void MainWindow::MachineUnsupported(Machine * m)
void MainWindow::doRecompressEvents() void MainWindow::doRecompressEvents()
{ {
if (p_profile->countDays(MT_CPAP, p_profile->FirstDay(), p_profile->LastDay()) == 0) { if (!p_profile) return;
return; ProgressDialog progress(this);
} progress.setMessage("Recompressing Session Files");
m_inRecalculation = true; progress.setProgressMax(p_profile->daylist.size());
QDate first = p_profile->FirstDay(); QPixmap icon = QPixmap(":/docs/sheep.png").scaled(64,64);
QDate date = p_profile->LastDay(); progress.setPixmap(icon);
Session *sess; progress.open();
Day *day;
//FlowParser flowparser;
mainwin->Notify(tr("Performance will be degraded during these recalculations."),
tr("Recalculating Indices"));
// For each day in history
int daycount = first.daysTo(date);
int idx = 0;
qstatus->setText(tr("Re/Decompressing Session Event Data"));
if (qprogress) {
qprogress->setValue(0);
qprogress->setVisible(true);
qprogress->setMaximum(daycount);
}
bool isopen; bool isopen;
int idx = 0;
for (Day * day : p_profile->daylist) {
for (Session * sess : day->sessions) {
isopen = sess->eventsLoaded();
// Load the events and summary if they aren't loaded already
sess->LoadSummary();
sess->OpenEvents();
sess->SetChanged(true);
sess->machine()->SaveSession(sess);
do { if (!isopen) {
day = p_profile->GetDay(date, MT_CPAP); sess->TrashEvents();
if (day) {
for (int i = 0; i < day->size(); i++) {
sess = (*day)[i];
isopen = sess->eventsLoaded();
// Load the events if they aren't loaded already
sess->OpenEvents();
sess->SetChanged(true);
sess->machine()->SaveSession(sess);
if (!isopen) {
sess->TrashEvents();
}
} }
} }
progress.setProgressValue(++idx);
date = date.addDays(-1);
qprogress->setValue(idx);
QApplication::processEvents(); QApplication::processEvents();
idx++; }
} while (date >= first); progress.close();
qstatus->setText(tr(""));
qprogress->setVisible(false);
m_inRecalculation = false;
Notify(tr("Session re/decompression are now complete."), tr("Task Completed"));
} }
void MainWindow::doReprocessEvents() void MainWindow::doReprocessEvents()
{ {
if (p_profile->countDays(MT_CPAP, p_profile->FirstDay(), p_profile->LastDay()) == 0) { if (!p_profile) return;
return;
ProgressDialog progress(this);
progress.setMessage("Recalculating summaries");
progress.setProgressMax(p_profile->daylist.size());
QPixmap icon = QPixmap(":/docs/sheep.png").scaled(64,64);
progress.setPixmap(icon);
progress.open();
if (daily) {
daily->Unload();
daily->clearLastDay(); // otherwise Daily will crash
delete daily;
daily = nullptr;
}
if (welcome) {
delete welcome;
welcome = nullptr;
}
if (overview) {
delete overview;
overview = nullptr;
} }
m_inRecalculation = true; for (Day * day : p_profile->daylist) {
QDate first = p_profile->FirstDay(); for (Session * sess : day->sessions) {
QDate date = p_profile->LastDay(); bool isopen = sess->eventsLoaded();
Session *sess;
Day *day;
//FlowParser flowparser;
mainwin->Notify(tr("Performance will be degraded during these recalculations."), // Load the events if they aren't loaded already
tr("Recompressing Session Data")); sess->LoadSummary();
sess->OpenEvents();
// For each day in history // Destroy any current user flags..
int daycount = first.daysTo(date); sess->destroyEvent(CPAP_UserFlag1);
int idx = 0; sess->destroyEvent(CPAP_UserFlag2);
sess->destroyEvent(CPAP_UserFlag3);
QList<Machine *> machines = p_profile->GetMachines(MT_CPAP); // AHI flags
sess->destroyEvent(CPAP_AHI);
sess->destroyEvent(CPAP_RDI);
if (sess->machine()->loaderName() != STR_MACH_PRS1) {
sess->destroyEvent(CPAP_LargeLeak);
} else {
sess->destroyEvent(CPAP_Leak);
}
// Disabling multithreaded save as it appears it's causing problems sess->SetChanged(true);
bool cache_sessions = false; //p_profile->session->cacheSessions();
if (cache_sessions) { // Use multithreaded save to handle reindexing.. (hogs memory like hell) sess->UpdateSummaries();
qstatus->setText(tr("Loading Event Data")); sess->machine()->SaveSession(sess);
} else {
qstatus->setText(tr("Recalculating Summaries"));
}
if (qprogress) { if (!isopen) {
qprogress->setValue(0); sess->TrashEvents();
qprogress->setVisible(true);
qprogress->setMaximum(daycount);
}
bool isopen;
do {
day = p_profile->GetDay(date, MT_CPAP);
if (day) {
for (int i = 0; i < day->size(); i++) {
sess = (*day)[i];
isopen = sess->eventsLoaded();
// Load the events if they aren't loaded already
sess->OpenEvents();
//if (!sess->channelDataExists(CPAP_FlowRate)) continue;
//QVector<EventList *> & flowlist=sess->eventlist[CPAP_FlowRate];
// Destroy any current user flags..
sess->destroyEvent(CPAP_UserFlag1);
sess->destroyEvent(CPAP_UserFlag2);
sess->destroyEvent(CPAP_UserFlag3);
// AHI flags
sess->destroyEvent(CPAP_AHI);
sess->destroyEvent(CPAP_RDI);
if (sess->machine()->loaderName() != STR_MACH_PRS1) {
sess->destroyEvent(CPAP_LargeLeak);
} else {
sess->destroyEvent(CPAP_Leak);
}
sess->SetChanged(true);
if (!cache_sessions) {
sess->UpdateSummaries();
sess->machine()->SaveSession(sess);
if (!isopen) {
sess->TrashEvents();
}
}
} }
} }
date = date.addDays(-1);
qprogress->setValue(++idx);
QApplication::processEvents();
} while (date >= first);
if (cache_sessions) {
qstatus->setText(tr("Recalculating Summaries"));
for (int i = 0; i < machines.size(); i++) {
machines.at(i)->Save();
}
} }
progress.close();
qstatus->setText(tr("")); welcome = new Welcome(ui->tabWidget);
qprogress->setVisible(false); ui->tabWidget->insertTab(1, welcome, tr("Welcome"));
m_inRecalculation = false;
if (m_restartRequired) { daily = new Daily(ui->tabWidget, nullptr);
QMessageBox::information(this, tr("Restart Required"), ui->tabWidget->insertTab(2, daily, STR_TR_Daily);
tr("Recalculations are complete, the application now needs to restart to display the changes."), daily->ReloadGraphs();
QMessageBox::Ok);
RestartApplication();
return;
} else {
Notify(tr("Recalculations are now complete."), tr("Task Completed"));
FreeSessions(); overview = new Overview(ui->tabWidget, daily->graphView());
QDate current = daily->getDate(); ui->tabWidget->insertTab(3, overview, STR_TR_Overview);
daily->LoadDate(current); overview->ReloadGraphs();
// Should really create welcome and statistics here, but they need redoing later anyway to kill off webkit
ui->tabWidget->setCurrentIndex(AppSetting->openTabAtStart());
GenerateStatistics();
PopulatePurgeMenu();
if (overview) { overview->ReloadGraphs(); }
}
} }
void MainWindow::on_actionImport_ZEO_Data_triggered() void MainWindow::on_actionImport_ZEO_Data_triggered()

View File

@ -223,9 +223,6 @@ class MainWindow : public QMainWindow
//! \brief a slot that calls the real Oximetry tab selector //! \brief a slot that calls the real Oximetry tab selector
void on_actionView_Oximetry_triggered(); void on_actionView_Oximetry_triggered();
//! \brief Updates the Statusbar message with the QString message contained in Text
void updatestatusBarMessage(const QString &text);
//! \brief Passes the Daily, Overview & Oximetry object to Print Report, based on current tab //! \brief Passes the Daily, Overview & Oximetry object to Print Report, based on current tab
void on_actionPrint_Report_triggered(); void on_actionPrint_Report_triggered();
@ -259,8 +256,6 @@ class MainWindow : public QMainWindow
//void on_favouritesList_itemClicked(QListWidgetItem *item); //void on_favouritesList_itemClicked(QListWidgetItem *item);
//! \brief Display Help WebView Link in statusbar.
void LinkHovered(const QString &link, const QString &title, const QString &textContent);
void on_tabWidget_currentChanged(int index); void on_tabWidget_currentChanged(int index);
void on_filterBookmarks_editingFinished(); void on_filterBookmarks_editingFinished();

View File

@ -1403,8 +1403,8 @@ QToolBox::tab:selected {
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>310</width> <width>327</width>
<height>676</height> <height>687</height>
</rect> </rect>
</property> </property>
<property name="palette"> <property name="palette">
@ -1862,7 +1862,7 @@ border: 2px solid #56789a; border-radius: 30px;
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>327</width> <width>327</width>
<height>667</height> <height>687</height>
</rect> </rect>
</property> </property>
<property name="palette"> <property name="palette">
@ -2918,7 +2918,7 @@ p, li { white-space: pre-wrap; }
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>327</width> <width>327</width>
<height>667</height> <height>687</height>
</rect> </rect>
</property> </property>
<property name="mouseTracking"> <property name="mouseTracking">
@ -3097,23 +3097,6 @@ p, li { white-space: pre-wrap; }
<addaction name="menu_Data"/> <addaction name="menu_Data"/>
<addaction name="menu_Help"/> <addaction name="menu_Help"/>
</widget> </widget>
<widget class="QStatusBar" name="statusbar">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>20</height>
</size>
</property>
<property name="sizeGripEnabled">
<bool>true</bool>
</property>
</widget>
<action name="action_Import_Data"> <action name="action_Import_Data">
<property name="text"> <property name="text">
<string>&amp;Import Data</string> <string>&amp;Import Data</string>

View File

@ -1,4 +1,4 @@
/* Overview GUI Implementation /* Overview GUI Implementation
* *
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net> * Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
* *
@ -26,7 +26,6 @@
#include "mainwindow.h" #include "mainwindow.h"
extern MainWindow *mainwin; extern MainWindow *mainwin;
//extern QProgressBar * qprogress;
Overview::Overview(QWidget *parent, gGraphView *shared) : Overview::Overview(QWidget *parent, gGraphView *shared) :
QWidget(parent), QWidget(parent),

View File

@ -10,15 +10,14 @@
#include <QtPrintSupport/qprinter.h> #include <QtPrintSupport/qprinter.h>
#include <QtPrintSupport/qprintdialog.h> #include <QtPrintSupport/qprintdialog.h>
#include <QTextDocument> #include <QTextDocument>
#include <QProgressBar>
#include <QApplication> #include <QApplication>
#include <cmath> #include <cmath>
#include "reports.h" #include "reports.h"
#include "mainwindow.h" #include "mainwindow.h"
#include "common_gui.h" #include "common_gui.h"
#include "SleepLib/progressdialog.h"
extern QProgressBar *qprogress;
extern MainWindow *mainwin; extern MainWindow *mainwin;
@ -93,12 +92,14 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date)
return; return;
} }
QPainter painter(printer);
ProgressDialog progress(mainwin);
progress.setMessage(QObject::tr("Printing %1 Report").arg(name));
QPixmap icon = QPixmap(":/docs/sheep.png").scaled(64,64);
progress.setPixmap(icon);
progress.open();
mainwin->Notify(
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);
QPainter painter;
painter.begin(printer);
GLint gw; GLint gw;
gw = 2048; // Rough guess.. No GL_MAX_RENDERBUFFER_SIZE in mingw.. :( gw = 2048; // Rough guess.. No GL_MAX_RENDERBUFFER_SIZE in mingw.. :(
@ -526,11 +527,7 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date)
int pages = ceil(float(graphs.size() + graph_slots) / float(graphs_per_page)); int pages = ceil(float(graphs.size() + graph_slots) / float(graphs_per_page));
if (qprogress) { progress.setProgressMax(graphs.size());
qprogress->setValue(0);
qprogress->setMaximum(graphs.size());
qprogress->show();
}
int page = 1; int page = 1;
int gcnt = 0; int gcnt = 0;
@ -614,17 +611,14 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date)
gcnt++; gcnt++;
if (qprogress) { progress.setProgressValue(i);
qprogress->setValue(i); QApplication::processEvents();
QApplication::processEvents();
}
} }
gv->SetXBounds(savest, saveet); gv->SetXBounds(savest, saveet);
qprogress->hide();
painter.end(); painter.end();
progress.close();
delete printer; delete printer;
mainwin->Notify(QObject::tr("SleepyHead has finished sending the job to the printer."));
AppSetting->setLineCursorMode(lineCursorMode); AppSetting->setLineCursorMode(lineCursorMode);
} }