feat: before threading

This commit is contained in:
semenov
2024-08-19 11:57:33 +03:00
parent 6878eb0697
commit ea18836923
48 changed files with 722 additions and 562 deletions

View File

@@ -41,6 +41,7 @@ public:
QHBoxLayout *loginButtonsLayout;
QPushButton *settingsButton;
QPushButton *loginButton;
QLineEdit *notificationLabel;
QWidget *settingsWidget;
QPushButton *saveServerButton;
QWidget *layoutWidget_4;
@@ -61,7 +62,6 @@ public:
QLabel *displayCountTitle;
QLabel *disblayCount;
QTextEdit *debugText;
QPushButton *checkUpdate;
QMenuBar *menubar;
QStatusBar *statusbar;
@@ -125,6 +125,9 @@ public:
loginButtonsLayout->addWidget(loginButton);
notificationLabel = new QLineEdit(loginWidget);
notificationLabel->setObjectName(QString::fromUtf8("notificationLabel"));
notificationLabel->setGeometry(QRect(100, 50, 191, 24));
settingsWidget = new QWidget(centralwidget);
settingsWidget->setObjectName(QString::fromUtf8("settingsWidget"));
settingsWidget->setEnabled(true);
@@ -185,6 +188,7 @@ public:
startButton = new QPushButton(layoutWidget3);
startButton->setObjectName(QString::fromUtf8("startButton"));
startButton->setEnabled(true);
downLayout->addWidget(startButton);
@@ -207,16 +211,12 @@ public:
debugText = new QTextEdit(centralwidget);
debugText->setObjectName(QString::fromUtf8("debugText"));
debugText->setGeometry(QRect(630, 10, 341, 461));
checkUpdate = new QPushButton(centralwidget);
checkUpdate->setObjectName(QString::fromUtf8("checkUpdate"));
checkUpdate->setGeometry(QRect(10, 440, 161, 25));
MainWindow->setCentralWidget(centralwidget);
layoutWidget4->raise();
layoutWidget4->raise();
settingsWidget->raise();
layoutWidget4->raise();
layoutWidget4->raise();
loginWidget->raise();
debugText->raise();
checkUpdate->raise();
menubar = new QMenuBar(MainWindow);
menubar->setObjectName(QString::fromUtf8("menubar"));
menubar->setGeometry(QRect(0, 0, 993, 25));
@@ -237,6 +237,7 @@ public:
passwordTitle->setText(QCoreApplication::translate("MainWindow", "\320\237\320\260\321\200\320\276\320\273\321\214:", nullptr));
settingsButton->setText(QCoreApplication::translate("MainWindow", "\320\235\320\260\321\201\321\202\321\200\320\276\320\271\320\272\320\270", nullptr));
loginButton->setText(QCoreApplication::translate("MainWindow", "\320\222\320\276\320\271\321\202\320\270", nullptr));
notificationLabel->setText(QCoreApplication::translate("MainWindow", "\320\235\320\265\320\262\320\265\321\200\320\275\321\213\320\271 \320\273\320\276\320\263\320\270\320\275/\320\277\320\260\321\200\320\276\320\273\321\214", nullptr));
saveServerButton->setText(QCoreApplication::translate("MainWindow", "\320\241\320\276\321\205\321\200\320\260\320\275\320\270\321\202\321\214", nullptr));
serverTitle->setText(QCoreApplication::translate("MainWindow", "\320\241\320\265\321\200\320\262\320\265\321\200:", nullptr));
portTitle->setText(QCoreApplication::translate("MainWindow", "\320\237\320\276\321\200\321\202:", nullptr));
@@ -244,7 +245,6 @@ public:
startButton->setText(QCoreApplication::translate("MainWindow", "\320\227\320\260\320\277\321\203\321\201\320\272", nullptr));
displayCountTitle->setText(QCoreApplication::translate("MainWindow", "\320\224\320\276\321\201\321\202\321\203\320\277\320\275\320\276 \320\274\320\276\320\275\320\270\321\202\320\276\321\200\320\276\320\262: ", nullptr));
disblayCount->setText(QCoreApplication::translate("MainWindow", "0", nullptr));
checkUpdate->setText(QCoreApplication::translate("MainWindow", "\320\237\321\200\320\276\320\262\320\265\321\200\320\270\321\202\321\214 \320\276\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\321\217", nullptr));
} // retranslateUi
};