2024-11-24 09:48:52 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "./ui_mainwindow.h"
|
|
|
|
|
2024-11-24 21:46:29 +00:00
|
|
|
#include <QGridLayout>
|
|
|
|
#include <QResizeEvent>
|
|
|
|
#include <QComboBox>
|
|
|
|
|
2024-11-24 09:48:52 +00:00
|
|
|
MainWindow::MainWindow(QWidget *parent)
|
|
|
|
: QMainWindow(parent)
|
|
|
|
, ui(new Ui::MainWindow)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
2024-11-24 21:46:29 +00:00
|
|
|
|
|
|
|
void MainWindow::ResizeEvent(QResizeEvent *event)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::SetupTabs()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::SetupSensorTab(QWidget *tab, QVBoxLayout *mainLayout)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::SetupIncidentTab(QWidget *tab, QVBoxLayout *mainLayout)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::SetupStatisticsTab(QWidget *tab, QVBoxLayout *mainLayout)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::SetupJournalTab(QWidget *tab, QVBoxLayout *mainLayout)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::SetupSettingsTab(QWidget *tab, QVBoxLayout *mainLayout)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|