-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui_mainwindow.h
More file actions
111 lines (99 loc) · 4.56 KB
/
Copy pathui_mainwindow.h
File metadata and controls
111 lines (99 loc) · 4.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/********************************************************************************
** Form generated from reading UI file 'mainwindow.ui'
**
** Created by: Qt User Interface Compiler version 5.12.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_MAINWINDOW_H
#define UI_MAINWINDOW_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QLabel>
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QMenuBar>
#include <QtWidgets/QStatusBar>
#include <QtWidgets/QTextBrowser>
#include <QtWidgets/QToolBar>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_MainWindow
{
public:
QWidget *centralWidget;
QLabel *whiteNumber;
QLabel *blackNuber;
QWidget *gridLayoutWidget_2;
QGridLayout *gridChBoard;
QTextBrowser *debug;
QMenuBar *menuBar;
QToolBar *mainToolBar;
QStatusBar *statusBar;
void setupUi(QMainWindow *MainWindow)
{
if (MainWindow->objectName().isEmpty())
MainWindow->setObjectName(QString::fromUtf8("MainWindow"));
MainWindow->resize(650, 650);
QPalette palette;
QBrush brush(QColor(255, 255, 255, 255));
brush.setStyle(Qt::SolidPattern);
palette.setBrush(QPalette::Active, QPalette::Base, brush);
QBrush brush1(QColor(255, 255, 197, 255));
brush1.setStyle(Qt::SolidPattern);
palette.setBrush(QPalette::Active, QPalette::Window, brush1);
palette.setBrush(QPalette::Inactive, QPalette::Base, brush);
palette.setBrush(QPalette::Inactive, QPalette::Window, brush1);
palette.setBrush(QPalette::Disabled, QPalette::Base, brush1);
palette.setBrush(QPalette::Disabled, QPalette::Window, brush1);
MainWindow->setPalette(palette);
QFont font;
font.setFamily(QString::fromUtf8("Arial"));
font.setPointSize(10);
MainWindow->setFont(font);
centralWidget = new QWidget(MainWindow);
centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
centralWidget->setLayoutDirection(Qt::LeftToRight);
whiteNumber = new QLabel(centralWidget);
whiteNumber->setObjectName(QString::fromUtf8("whiteNumber"));
whiteNumber->setGeometry(QRect(40, 20, 81, 41));
blackNuber = new QLabel(centralWidget);
blackNuber->setObjectName(QString::fromUtf8("blackNuber"));
blackNuber->setGeometry(QRect(530, 20, 81, 41));
gridLayoutWidget_2 = new QWidget(centralWidget);
gridLayoutWidget_2->setObjectName(QString::fromUtf8("gridLayoutWidget_2"));
gridLayoutWidget_2->setGeometry(QRect(260, 100, 351, 351));
gridChBoard = new QGridLayout(gridLayoutWidget_2);
gridChBoard->setSpacing(0);
gridChBoard->setContentsMargins(11, 11, 11, 11);
gridChBoard->setObjectName(QString::fromUtf8("gridChBoard"));
gridChBoard->setContentsMargins(0, 0, 0, 0);
debug = new QTextBrowser(centralWidget);
debug->setObjectName(QString::fromUtf8("debug"));
debug->setGeometry(QRect(20, 100, 211, 401));
MainWindow->setCentralWidget(centralWidget);
menuBar = new QMenuBar(MainWindow);
menuBar->setObjectName(QString::fromUtf8("menuBar"));
menuBar->setGeometry(QRect(0, 0, 650, 21));
MainWindow->setMenuBar(menuBar);
mainToolBar = new QToolBar(MainWindow);
mainToolBar->setObjectName(QString::fromUtf8("mainToolBar"));
MainWindow->addToolBar(Qt::TopToolBarArea, mainToolBar);
statusBar = new QStatusBar(MainWindow);
statusBar->setObjectName(QString::fromUtf8("statusBar"));
MainWindow->setStatusBar(statusBar);
retranslateUi(MainWindow);
QMetaObject::connectSlotsByName(MainWindow);
} // setupUi
void retranslateUi(QMainWindow *MainWindow)
{
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", nullptr));
whiteNumber->setText(QApplication::translate("MainWindow", "<html><head/><body><p><span style=\" font-weight:600;\">White: 12</span></p></body></html>", nullptr));
blackNuber->setText(QApplication::translate("MainWindow", "<html><head/><body><p><span style=\" font-weight:600;\">Black: 12</span></p></body></html>", nullptr));
} // retranslateUi
};
namespace Ui {
class MainWindow: public Ui_MainWindow {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_MAINWINDOW_H