#include "servicehistorymain.h" #include "ui_servicehistorymain.h" #include "historylistwindow.h" serviceHistoryMain::serviceHistoryMain(QWidget *parent) : QMainWindow(parent), ui(new Ui::serviceHistoryMain) { ui->setupUi(this); connect(ui->backButton, SIGNAL(released()), this, SLOT(deleteLater())); } serviceHistoryMain::~serviceHistoryMain() { delete ui; } void serviceHistoryMain::on_btnUpperBunner_clicked() { historyListWindow *w = new historyListWindow(this); w->setWindosDataSet(ERROR_HISTORY_UPPERBUNNER); w->setWindowModality(Qt::WindowModal); w->showFullScreen(); } void serviceHistoryMain::on_btnSteamBunner_clicked() { historyListWindow *w = new historyListWindow(this); w->setWindosDataSet(ERROR_HISTORY_STEAMBUNNER); w->setWindowModality(Qt::WindowModal); w->showFullScreen(); } void serviceHistoryMain::on_btnLowerBunner_clicked() { historyListWindow *w = new historyListWindow(this); w->setWindosDataSet(ERROR_HISTORY_LOWERBUNNER); w->setWindowModality(Qt::WindowModal); w->showFullScreen(); } void serviceHistoryMain::on_btnErrorTotal_clicked() { historyListWindow *w = new historyListWindow(this); w->setWindosDataSet(ERROR_HISTORY_TOTAL); w->setWindowModality(Qt::WindowModal); w->showFullScreen(); }