This commit is contained in:
2025-07-02 07:45:34 +03:00
parent a4135d45d8
commit 1fee25a38c
121 changed files with 16425 additions and 0 deletions

36
vvodready.cpp Normal file
View File

@@ -0,0 +1,36 @@
#include "vvodready.h"
#include "ui_vvodready.h"
vvodReady::vvodReady(QWidget *parent) :
QDialog(parent),
ui(new Ui::vvodReady)
{
ui->setupUi(this);
setAttribute(Qt::WA_DeleteOnClose);
((Widget*)parent)->changeOpenWidget(this);
ui->checkBox->setChecked(((Widget*)parent)->readyBoegotov);
}
vvodReady::~vvodReady()
{
delete ui;
}
void vvodReady::on_pushButton_2_clicked()
{
close();
}
void vvodReady::on_pushButton_clicked()
{
((Widget*)parent())->readyBoegotov = ui->checkBox->isChecked();
close();
}
void vvodReady::closeEvent(QCloseEvent *event)
{
((Widget*)parent())->clearOpenWidget();
event->accept();
}