feat: monitor list

This commit is contained in:
semenov
2024-09-30 16:52:47 +03:00
parent 63df783cc0
commit dfe08fc2db
22 changed files with 10653 additions and 216 deletions

View File

@@ -14,17 +14,25 @@ void ScreenChecker::check()
{ {
screens = QGuiApplication::screens(); screens = QGuiApplication::screens();
qint8 sizeVertical = 90;
quint16 sizeHorizontal = 150;
for (int i = 0; i < screens.size();i++) if(screens.length() > 3)
{
sizeVertical = 80;
sizeHorizontal = 120;
}
for (int i = 0; i < screens.length() ;i++)
{ {
QScreen *display = screens[i]; QScreen *display = screens[i];
qDebug() << screens[i]->name();
screenCount++; screenCount++;
QString sizeText = QString::number(display->size().width()) + "x" + QString::number(display->size().height()); QString sizeText = QString::number(display->size().width()) + "x" + QString::number(display->size().height());
sizeText.append("\n"); sizeText.append("\n");
sizeText.append(QString::number(display->refreshRate()) + "Hz"); sizeText.append(QString::number(display->refreshRate()) + "Hz");
QPushButton *button = new QPushButton(sizeText); QPushButton *button = new QPushButton(sizeText);
button->setObjectName("displayView");
buttons.append(button); buttons.append(button);
layout->addWidget(button); layout->addWidget(button);
@@ -34,9 +42,9 @@ void ScreenChecker::check()
QSize *sizeResult; QSize *sizeResult;
if(height > width){ if(height > width){
sizeResult = new QSize(90,90 / ratio); sizeResult = new QSize(sizeVertical,sizeVertical / ratio);
}else{ }else{
sizeResult = new QSize(150,150 / ratio); sizeResult = new QSize(sizeHorizontal,sizeHorizontal/ ratio);
} }
button->setMinimumSize(*sizeResult); button->setMinimumSize(*sizeResult);

View File

@@ -166,9 +166,11 @@ debug/qrc_resources.cpp: resources.qrc \
D:/QT/5.14.2/mingw73_64/bin/rcc.exe \ D:/QT/5.14.2/mingw73_64/bin/rcc.exe \
style.css \ style.css \
resource/SSJ-100.png \ resource/SSJ-100.png \
resource/plane.png \ resource/Fonts/HelveticaNeue-Medium.ttf \
resource/Fonts/Kanit\ Cyrillic.ttf \ resource/Fonts/Kanit\ Cyrillic.ttf \
resource/Fonts/LiberationSans-Regular.ttf resource/Fonts/LiberationSans-Regular.ttf \
resource/Icons/monitor-display.png \
resource/Icons/plane.png
D:\QT\5.14.2\mingw73_64\bin\rcc.exe -name resources resources.qrc -o debug\qrc_resources.cpp D:\QT\5.14.2\mingw73_64\bin\rcc.exe -name resources resources.qrc -o debug\qrc_resources.cpp
compiler_moc_predefs_make_all: debug/moc_predefs.h compiler_moc_predefs_make_all: debug/moc_predefs.h
@@ -3240,13 +3242,48 @@ debug/mainwindow.o: mainwindow.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
ui_mainwindow.h \ ui_mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QVariant \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qapplication.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdesktopwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QCheckBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qcheckbox.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QComboBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qcombobox.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemdelegate.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyleoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractspinbox.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qvalidator.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qregularexpression.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyle.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtabbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qrubberband.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qabstractitemmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QFrame \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QGridLayout \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLineEdit \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlineedit.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextcursor.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextformat.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpen.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QProgressBar \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qprogressbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QTextEdit \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtextedit.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractscrollarea.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextdocument.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QVBoxLayout \
D:/QT/5.14.2/mingw73_64/include/QtGui/QFontDatabase \ D:/QT/5.14.2/mingw73_64/include/QtGui/QFontDatabase \
D:/QT/5.14.2/mingw73_64/include/QtGui/qfontdatabase.h \ D:/QT/5.14.2/mingw73_64/include/QtGui/qfontdatabase.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/QPaintEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QPaintEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QPainter \ D:/QT/5.14.2/mingw73_64/include/QtGui/QPainter \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpainter.h \ D:/QT/5.14.2/mingw73_64/include/QtGui/qpainter.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextoption.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpen.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QTimer \ D:/QT/5.14.2/mingw73_64/include/QtCore/QTimer \
D:/QT/5.14.2/mingw73_64/include/QtCore/qtimer.h \ D:/QT/5.14.2/mingw73_64/include/QtCore/qtimer.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qbasictimer.h D:/QT/5.14.2/mingw73_64/include/QtCore/qbasictimer.h
@@ -3432,6 +3469,34 @@ debug/updatenotifywidget.o: updatenotifywidget.cpp updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
ui_updatenotifywidget.h \ ui_updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QVariant \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qapplication.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdesktopwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QGridLayout \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QListWidget \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlistwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlistview.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemview.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractscrollarea.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qabstractitemmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qitemselectionmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemdelegate.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyleoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractspinbox.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qvalidator.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qregularexpression.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyle.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtabbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qrubberband.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QProgressBar \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qprogressbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QVBoxLayout \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qmessagebox.h D:/QT/5.14.2/mingw73_64/include/QtWidgets/qmessagebox.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\updatenotifywidget.o updatenotifywidget.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\updatenotifywidget.o updatenotifywidget.cpp

View File

@@ -166,9 +166,11 @@ release/qrc_resources.cpp: resources.qrc \
D:/QT/5.14.2/mingw73_64/bin/rcc.exe \ D:/QT/5.14.2/mingw73_64/bin/rcc.exe \
style.css \ style.css \
resource/SSJ-100.png \ resource/SSJ-100.png \
resource/plane.png \ resource/Fonts/HelveticaNeue-Medium.ttf \
resource/Fonts/Kanit\ Cyrillic.ttf \ resource/Fonts/Kanit\ Cyrillic.ttf \
resource/Fonts/LiberationSans-Regular.ttf resource/Fonts/LiberationSans-Regular.ttf \
resource/Icons/monitor-display.png \
resource/Icons/plane.png
D:\QT\5.14.2\mingw73_64\bin\rcc.exe -name resources resources.qrc -o release\qrc_resources.cpp D:\QT\5.14.2\mingw73_64\bin\rcc.exe -name resources resources.qrc -o release\qrc_resources.cpp
compiler_moc_predefs_make_all: release/moc_predefs.h compiler_moc_predefs_make_all: release/moc_predefs.h
@@ -3240,13 +3242,48 @@ release/mainwindow.o: mainwindow.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
ui_mainwindow.h \ ui_mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QVariant \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qapplication.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdesktopwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QCheckBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qcheckbox.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QComboBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qcombobox.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemdelegate.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyleoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractspinbox.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qvalidator.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qregularexpression.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyle.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtabbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qrubberband.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qabstractitemmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QFrame \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QGridLayout \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLineEdit \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlineedit.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextcursor.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextformat.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpen.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QProgressBar \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qprogressbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QTextEdit \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtextedit.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractscrollarea.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextdocument.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QVBoxLayout \
D:/QT/5.14.2/mingw73_64/include/QtGui/QFontDatabase \ D:/QT/5.14.2/mingw73_64/include/QtGui/QFontDatabase \
D:/QT/5.14.2/mingw73_64/include/QtGui/qfontdatabase.h \ D:/QT/5.14.2/mingw73_64/include/QtGui/qfontdatabase.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/QPaintEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QPaintEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QPainter \ D:/QT/5.14.2/mingw73_64/include/QtGui/QPainter \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpainter.h \ D:/QT/5.14.2/mingw73_64/include/QtGui/qpainter.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextoption.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpen.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QTimer \ D:/QT/5.14.2/mingw73_64/include/QtCore/QTimer \
D:/QT/5.14.2/mingw73_64/include/QtCore/qtimer.h \ D:/QT/5.14.2/mingw73_64/include/QtCore/qtimer.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qbasictimer.h D:/QT/5.14.2/mingw73_64/include/QtCore/qbasictimer.h
@@ -3432,6 +3469,34 @@ release/updatenotifywidget.o: updatenotifywidget.cpp updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
ui_updatenotifywidget.h \ ui_updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QVariant \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qapplication.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdesktopwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QGridLayout \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QListWidget \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlistwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlistview.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemview.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractscrollarea.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qabstractitemmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qitemselectionmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemdelegate.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyleoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractspinbox.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qvalidator.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qregularexpression.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyle.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtabbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qrubberband.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QProgressBar \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qprogressbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QVBoxLayout \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qmessagebox.h D:/QT/5.14.2/mingw73_64/include/QtWidgets/qmessagebox.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\updatenotifywidget.o updatenotifywidget.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\updatenotifywidget.o updatenotifywidget.cpp

View File

@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<AuthData Login="FDS" Password="FSD" InstructorName="" ClientName="" AccessType=""/> <AuthData Login="O1" Password="1111" InstructorName="Администратор" ClientName="Иванов И.И." AccessType="trainee"/>

205
StaticData/serverHash.xml Normal file
View File

@@ -0,0 +1,205 @@
<?xml version="1.0" encoding="UTF-8"?>
<FileDataList>
<FileData Path="/Application" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/D3D12" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/EmbedRuntime" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/Browsers" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/Browsers" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/Browsers" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/mconfig" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip/Data" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip/Data/Plugins" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip/Data/Plugins/x86_64" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Resources" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Folder14636" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/D3D12/D3D12Core.dll" Hash="7fc05c9a8366d19302dfd13d09d3ebac"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/EmbedRuntime/mono-2.0-bdwgc.dll" Hash="1ce1473bec6862c3445a5697d28c3b7d"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/EmbedRuntime/MonoPosixHelper.dll" Hash="2734ad3f554d1b95d7b04766260175e5"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/Browsers/Compat.browser" Hash="0d831c1264b5b32a39fa347de368fe48"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx" Hash="f7be9f1841ff92f9d4040aed832e0c79"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/machine.config" Hash="5b791b8493c4e9a55d8c5ee522ce1cef"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/settings.map" Hash="22c818a23169e12bd3c8587b6394c731"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/web.config" Hash="dc6dd6d8d1fc74e76c84b0b38dc6b1e3"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/Browsers/Compat.browser" Hash="0d831c1264b5b32a39fa347de368fe48"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx" Hash="f7be9f1841ff92f9d4040aed832e0c79"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/machine.config" Hash="32bf879734966ef6659d914a217691e0"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/settings.map" Hash="ba17ade8a8e3ee221377534c8136f617"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/web.config" Hash="d081581e16b06480a5aaef8cdfb305ab"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/Browsers/Compat.browser" Hash="0d831c1264b5b32a39fa347de368fe48"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx" Hash="f7be9f1841ff92f9d4040aed832e0c79"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/machine.config" Hash="25ff1ec49e3ac9285bd943cf036bd813"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/settings.map" Hash="ba17ade8a8e3ee221377534c8136f617"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/web.config" Hash="5075af18fe1d2b5f9555d5cc68029814"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/browscap.ini" Hash="378be809df7d15aac75a175693e25fbb"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/config" Hash="67611b783439b35abfe05a97413bba46"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/mconfig/config.xml" Hash="f34b330f20dce1bdcce9058fca287099"/>
<FileData Path="/Application/RRJLoader/RRJ.exe" Hash="d8d1ae60ce447c51879c27f15dde7195"/>
<FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip/Data/Plugins/x86_64/lib_burst_generated.txt" Hash="28a5d827e5b26c4e8af32f3022116f54"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/app.info" Hash="40abc32f793ac28bdd0bfa15c090595d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/boot.config" Hash="d2efbaf133b8c9a5d752a0c8fcfc1ef9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers" Hash="9e04e3c9575add79ccecb56d2909b916"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers.assets" Hash="4487c33f4272a4900326138859f8daa1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers.assets.resS" Hash="cc481c35e79b509dcd950c6adf2346ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/level0" Hash="65b76c3483f64609f9be534f2cf161c7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Assembly-CSharp.dll" Hash="2b075722e64700cbdba7d1bb766e96c8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/IngameDebugConsole.Runtime.dll" Hash="db7bfb1bd97dfba03252aa79e5dc4b53"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Mono.Security.dll" Hash="dbd7e99a9ac5352fd4febaa5a7660e09"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/mscorlib.dll" Hash="9c0f93ea22eb12021728a1effe48ccad"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/netstandard.dll" Hash="c61967ebe7f07f6a5a1b3f91842bbc3c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.ComponentModel.Composition.dll" Hash="9a5463df5469541750cca835743414c1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Configuration.dll" Hash="ea06fc126f0f0e6a9d44e089469b7653"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Core.dll" Hash="5df5fd16437d20f41e58f8db73b42b47"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Data.DataSetExtensions.dll" Hash="48ff393c9b420ade92a47c8cded8df57"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Data.dll" Hash="83260b81a7f2c359842ae712cf8403a5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.dll" Hash="97151f7e52d13119d4b7fc147c01dcd7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Drawing.dll" Hash="e9a4ee8d28124309d5068758ae9cf29a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.EnterpriseServices.dll" Hash="ce5f01bef57e504e6bcba5136f6cac3f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.IO.Compression.dll" Hash="968bf6f5309660610233bf75b21584c1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.IO.Compression.FileSystem.dll" Hash="941b52daf342862624349b9cec0cb4a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Net.Http.dll" Hash="dab4d77c5675bd94394baa2c45e4a311"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Numerics.dll" Hash="73cd840f06347a172cdc8764564c6361"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Runtime.dll" Hash="77d74adcdea84d53a1fbe89e79737c1e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Runtime.Serialization.dll" Hash="4ef33c922491087198e413279a709791"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Security.dll" Hash="c3030222a71dad399344f8067dd36299"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.ServiceModel.Internals.dll" Hash="0b563b4cf046e3e484669ce10ce3bfa1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Transactions.dll" Hash="6191fb6d054e9f0910f42730230d7e5b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Xml.dll" Hash="6fed4a1385091135fcc224bda4f83222"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Xml.Linq.dll" Hash="f59d549bdb4b3310647d344446958c3d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Burst.dll" Hash="3d93246db4e4fa4e519fa15ff5ee3ff4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Burst.Unsafe.dll" Hash="129351e9879a83262ea92a4a45aacc46"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Collections.dll" Hash="9896d66646d20face9591a222cf2ccdf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Collections.LowLevel.ILSupport.dll" Hash="a28c546a9e048223b6899d2856ef6c11"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Mathematics.dll" Hash="88db1f1b78092627dd59ba7098212fb9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Rendering.LightTransport.Runtime.dll" Hash="e47312870d4e8ef8f50dfa0504db5ab3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.Core.Runtime.dll" Hash="b7f1b29575e39edb80529f80dbe96b51"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.Core.Runtime.Shared.dll" Hash="ebbeac963fbf7bb908ab0aa5d698c350"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.Core.ShaderLibrary.dll" Hash="b5f27626025df2464cc3216bfb349ff6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.HighDefinition.Config.Runtime.dll" Hash="4232e384bb18cf0b470748f16a451077"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.HighDefinition.Runtime.dll" Hash="8b2775ed44dd1b71ea4d8dc9c33df5a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll" Hash="bb8e7c89045af4b8e7886720e5dc2474"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.TextMeshPro.dll" Hash="a944c0a16abff15b71bf7c220de5bcbd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Timeline.dll" Hash="9d32cd828350ca76224a61f9cf98211c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualEffectGraph.Runtime.dll" Hash="ddd586575079cc22739a5e5e49d18a77"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.Antlr3.Runtime.dll" Hash="62a6ef88ac683a13104417515323896b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.Core.dll" Hash="de557512eb1a4da119ef4b7cdf0de9ea"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.Flow.dll" Hash="6078b460cb8803b87f89410f2fdef9f2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.State.dll" Hash="0a778b955b1a2df7397f338386070323"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AccessibilityModule.dll" Hash="bf51e59da996c816b7d3944d9d235ca3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AIModule.dll" Hash="245cfae2b9eaee92e87eae662d3b8ca5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AndroidJNIModule.dll" Hash="19aba924468d523bd6ab0af1977ce553"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AnimationModule.dll" Hash="5301e420d7216e0376b2ae6771836a08"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ARModule.dll" Hash="5007e1920fd5f556be659d873b07f1a4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AssetBundleModule.dll" Hash="5c3168c646fb035e811a09fd4de30759"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AudioModule.dll" Hash="12b91b4940b3418061837bc12e7d7050"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ClothModule.dll" Hash="6ca3c4a421c921526e07950998a89ee9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ClusterInputModule.dll" Hash="9ed9069d73075969a156f89851e58d4c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ClusterRendererModule.dll" Hash="525752cc5b0c1d39c49ec4ac50a4101b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.CommandStateObserverModule.dll" Hash="55957ff738edeb5fb2723f625112d4d3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ContentLoadModule.dll" Hash="eedc3dcf14a3ce65072b84335b54b758"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.CoreModule.dll" Hash="7352cddb3575dbbcca53a8fa9568fe6f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.CrashReportingModule.dll" Hash="ea3c9f6c8098cf864e3353697a32ff65"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.DirectorModule.dll" Hash="87d7f67b284b7e5748bb8cc4c645662c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.dll" Hash="8ffa9dfdffe9c31b96856f5be0f839e4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.DSPGraphModule.dll" Hash="347a60da7e315fbfeca71360aa69169b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GameCenterModule.dll" Hash="ceb426370ca4ccd14de6d2bf86b143c6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GIModule.dll" Hash="2918d57cd975b218d0d5a94a0e6c386a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GraphToolsFoundationModule.dll" Hash="b2c7eea97fa9ee185d6be4dbccbaad68"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GridModule.dll" Hash="3cb34eb625d4fabbbefed7563619f854"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.HierarchyCoreModule.dll" Hash="4f1dfca0153c6cda61b749cf04b864d4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.HotReloadModule.dll" Hash="f1c6fd8ef2ec0c3a607b148bcd87038d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ImageConversionModule.dll" Hash="102bfdba9d7a2b1f876c7dd9ff0fd440"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.IMGUIModule.dll" Hash="c9fc2dcdf69f5c081ee1d809715624f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.InputForUIModule.dll" Hash="2c6253ae2586b692d55140e38fc3e242"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.InputLegacyModule.dll" Hash="a9a370555a93c547284b2e8a27945bc5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.InputModule.dll" Hash="cf38dc062b4d1218628488ee5cbbdd5d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.JSONSerializeModule.dll" Hash="0b294a1c0dca9e8180f122ba7ac942dc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.LocalizationModule.dll" Hash="ecc911c3f4fb74ef6fe9d756e3d18408"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.MarshallingModule.dll" Hash="4be2900caf53c5a77e14d40d26804016"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.MultiplayerModule.dll" Hash="3821d1940fef8c2fd2bc09f8cdc50b7b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.NVIDIAModule.dll" Hash="0dde1799779f99200903622ecf279b4b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ParticleSystemModule.dll" Hash="fb86ca13989f7357917cb8fad2bc9571"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.PerformanceReportingModule.dll" Hash="76ea7a15db5d193ffd90ac126ecdf573"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.Physics2DModule.dll" Hash="c2e6a62916ad3207cdc8daf42e033d37"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.PhysicsModule.dll" Hash="b3d8e6427893f8ed1c6717e8bc8480eb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ProfilerModule.dll" Hash="f1f4d1ee69bff46452fba519b3a0c90b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.PropertiesModule.dll" Hash="dff0bf609e5e116146f3139297a8cf55"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" Hash="b3c3f7cf1d76fbf5cb72d06b48fadce8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ScreenCaptureModule.dll" Hash="512a77e433577d2aea66bbf774b26e68"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SharedInternalsModule.dll" Hash="b5dfed05ba23999348fb41a3946a8c60"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SpriteMaskModule.dll" Hash="d35600c344dda3162201ee876109dfa2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SpriteShapeModule.dll" Hash="c1da3125886675c29f911186ba57c77f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.StreamingModule.dll" Hash="3c1a919df199410b6d97d3233c2ae8af"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SubstanceModule.dll" Hash="5654a4342f349a828d1e42100bd5b069"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SubsystemsModule.dll" Hash="bd7ad5e02272b6cffc6ac3c9f64a5d00"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TerrainModule.dll" Hash="3f4b1cca251fc0e4ac8ee5855c21c829"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TerrainPhysicsModule.dll" Hash="2d87f1c8ac3b32158d0c8751989c97f7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TextCoreFontEngineModule.dll" Hash="f02c97fc1dc7cee24efb7a161761cad7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TextCoreTextEngineModule.dll" Hash="211586ac1307e75b04944ae69602d439"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TextRenderingModule.dll" Hash="7c4b7a99c671f612956c8d9a8b059d3d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TilemapModule.dll" Hash="680c311a782c27b84939de1109387abf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TLSModule.dll" Hash="f5e69a25d7e5711f9d96c6d72ebef3a6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UI.dll" Hash="c5ff0bd048336c6e10704e5bf0151e05"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UIElementsModule.dll" Hash="edb209860d38406902f38078afb09dc4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UIModule.dll" Hash="6dc8c0bd62247ae98f3ab47b58dbe79b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UmbraModule.dll" Hash="9e9645956824b3d24d0a5c721ebedfcc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityAnalyticsCommonModule.dll" Hash="35cc2a3004f37694740edc9394bc05bf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityAnalyticsModule.dll" Hash="07396be9516ddff18c7f49ba9ed9d5c2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityConnectModule.dll" Hash="c2b0504f4621a92e91d5ed5e79017295"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityCurlModule.dll" Hash="92203292162a4a4ea627f41e2032855d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityTestProtocolModule.dll" Hash="f7995ec8be70852443cefdf2b9ec8a4e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll" Hash="57d96c793a720456cc5ebc45d0b6f4e1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll" Hash="8490f076ba120cb60dab94932adff771"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestModule.dll" Hash="f033891c341f917838a1ae9caa9c73e8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll" Hash="fe6a04ff44a2f53a27331ca4834211e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll" Hash="3e9d46adb7d36d390783d7917dd043b8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VehiclesModule.dll" Hash="74065cdf5a92f299a5197a7cf2505725"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VFXModule.dll" Hash="ae89bc0a52ba6cfeea7261e330bc972b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VideoModule.dll" Hash="c00f0cfb424ad22ecf90a1f5d6f5bd2b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VirtualTexturingModule.dll" Hash="a68ac0d470b2de4b492e6c0d9b88e9de"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VRModule.dll" Hash="1943a6b4296e967056f48f34e7cc10b3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.WindModule.dll" Hash="4cb40be94a81fac1bb759d28e6dcd381"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.XRModule.dll" Hash="635e638a237f3b28a661c6cf4a18046a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64/lib_burst_generated.dll" Hash="57c1f876ac85e909504eb6fb9ce2ab8c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64/pdfrenderer.dll" Hash="bb9613277346c4b3bf0ea29a44c903e9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Resources/unity default resources" Hash="510aeddf6e1cb415533ad2b13937f0bd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Resources/unity_builtin_extra" Hash="4ec578ed51d7dd617c9245fc406c1fc2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/resources.assets" Hash="aa1503fcf0cca3c176162ed3d985eca3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/resources.assets.resS" Hash="415d6f432a82d14f862a7fc1897ab50e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/RuntimeInitializeOnLoads.json" Hash="6208c41654630850756b3fca5a5e6905"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/ScriptingAssemblies.json" Hash="bc1156dee1f08ecf1afb66a3cbd653a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/sharedassets0.assets" Hash="1007009da1bc4721385a45b38f143ea3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/sharedassets0.assets.resS" Hash="897317a657f377346d8932827dc78da0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file13931.txt" Hash="954d9a6e0466cdaad0507a4a7a3e786f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file3933.txt" Hash="2d442c6f94171b6e5c9e4d3ed7cddc92"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file4501.txt" Hash="0e144c8bce682d33f9014c8106ed251b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file4697.txt" Hash="03b84da69e2dfa920a1170b593bf300f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file5855.txt" Hash="1bbc37c7a7c8cbbe43c47d6d5ecd4839"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100/docs.xml" Hash="fcad1626c1ef3851931bf68a1aa054c6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS/024.31.00a.xml" Hash="e730fbd64cd77dd163732cfaf2bd0e75"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/ir_begin.wav" Hash="2e0057ee08c7b6fa07d28863a40d1cbf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/ir_end.wav" Hash="e83345df81f1e577bb53766875efc31d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Menu Command.wav" Hash="822b4c37ce07436e2192785f3274386f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Minimize.wav" Hash="8fb59dad02c94ebc63590b14f4d1de2e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Navigation Start.wav" Hash="b82aa79f496456ffc5b952b484af25f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Proximity Connection.wav" Hash="00882d550b9389c6183ee3da0b668b2d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Proximity Notification.wav" Hash="e15f0210410a574af39b07840ccbe4cc"/>
<FileData Path="/Application/RRJLoader/UnityCrashHandler64.exe" Hash="ea440810e323f7b7ca54727cd23d068e"/>
<FileData Path="/Application/RRJLoader/UnityPlayer.dll" Hash="0486f8cc69625acdb24a62855754b228"/>
</FileDataList>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<FileDataList/>

View File

@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ClientAutorization Login="FDS" Password="FSD"/> <ClientAutorization Login="O1" Password="1111"/>

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@@ -12,7 +12,7 @@ int main(int argc, char *argv[])
QFile file(":/style.css"); QFile file(":/style.css");
file.open(QFile::ReadOnly); file.open(QFile::ReadOnly);
a.setStyleSheet(file.readAll()); a.setStyleSheet(file.readAll());
a.setWindowIcon(QIcon(":/resource/plane.png")); a.setWindowIcon(QIcon(":/resource/Icons/plane.png"));
MainWindow w; MainWindow w;
UpdateNotifyWidget *notifyWidget = new UpdateNotifyWidget; UpdateNotifyWidget *notifyWidget = new UpdateNotifyWidget;
w.bindNotifyWidget(notifyWidget); w.bindNotifyWidget(notifyWidget);

View File

@@ -68,7 +68,7 @@ void MainWindow::createObjects()
recognizeSystem = new RecognizeSystem; recognizeSystem = new RecognizeSystem;
recognizeSystem->moveToThread(connectionThread); recognizeSystem->moveToThread(connectionThread);
screenChecker = new ScreenChecker(dataParser,ui->displayWidget); screenChecker = new ScreenChecker(dataParser,ui->displayLayout);
externalExecuter = new ExternalExecuter; externalExecuter = new ExternalExecuter;
hashComparer = new HashComparer(dataParser); hashComparer = new HashComparer(dataParser);
@@ -187,6 +187,7 @@ void MainWindow::checkLoginResult(ServerAuthorization *serverAuth)
dataParser->createAuthData(serverAuth); dataParser->createAuthData(serverAuth);
ui->loginWidget->hide(); ui->loginWidget->hide();
ui->LanguageWidget->hide();
} }
else { else {
@@ -407,15 +408,8 @@ void MainWindow::keyPressEvent(QKeyEvent *event)
void MainWindow::painting() void MainWindow::painting()
{ {
// QPixmap background(":/resource/SSJ-100.jpg");
// QColor color(77,77,77,255);
// background.scaled(this->size(),Qt::IgnoreAspectRatio);
// QPalette palette;
// palette.setBrush(QPalette::Window,background);
// palette.dark();
// this->setPalette(palette);
QFontDatabase::addApplicationFont(":/Fonts/Kanit Cyrillic.ttf"); QFontDatabase::addApplicationFont(":/Fonts/Kanit Cyrillic.ttf");
QFontDatabase::addApplicationFont(":/Fonts/HelveticaNeue-Medium.ttf");
} }

View File

@@ -173,7 +173,8 @@
</property> </property>
<property name="font"> <property name="font">
<font> <font>
<family>Helvetica Cyr Upright</family> <family>Calibri</family>
<pointsize>8</pointsize>
</font> </font>
</property> </property>
<property name="text"> <property name="text">
@@ -232,9 +233,9 @@
<widget class="QWidget" name="horizontalLayoutWidget"> <widget class="QWidget" name="horizontalLayoutWidget">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>10</x> <x>-10</x>
<y>110</y> <y>150</y>
<width>661</width> <width>691</width>
<height>221</height> <height>221</height>
</rect> </rect>
</property> </property>
@@ -408,28 +409,28 @@
<widget class="QWidget" name="displayGroupWidget" native="true"> <widget class="QWidget" name="displayGroupWidget" native="true">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>50</x> <x>-10</x>
<y>70</y> <y>-10</y>
<width>600</width> <width>691</width>
<height>200</height> <height>250</height>
</rect> </rect>
</property> </property>
<property name="sizePolicy"> <property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Minimum"> <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch> <horstretch>0</horstretch>
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>600</width> <width>300</width>
<height>200</height> <height>250</height>
</size> </size>
</property> </property>
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>500</width> <width>700</width>
<height>200</height> <height>300</height>
</size> </size>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_4"> <layout class="QVBoxLayout" name="verticalLayout_4">
@@ -447,19 +448,49 @@
<height>30</height> <height>30</height>
</size> </size>
</property> </property>
<property name="font">
<font>
<pointsize>10</pointsize>
</font>
</property>
<property name="text"> <property name="text">
<string>Выберите активные мониторы:</string> <string>Выберите активные мониторы:</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignHCenter|Qt::AlignTop</set> <set>Qt::AlignBottom|Qt::AlignHCenter</set>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QWidget" name="screenWidget" native="true"> <widget class="QWidget" name="screenWidget" native="true">
<layout class="QHBoxLayout" name="displayWidget"> <property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>700</width>
<height>16777215</height>
</size>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_3">
<item> <item>
<layout class="QHBoxLayout" name="displayLayout"/> <layout class="QHBoxLayout" name="displayLayout">
<property name="spacing">
<number>6</number>
</property>
<property name="sizeConstraint">
<enum>QLayout::SetDefaultConstraint</enum>
</property>
</layout>
</item> </item>
</layout> </layout>
</widget> </widget>
@@ -514,76 +545,77 @@
<set>Qt::AlignCenter</set> <set>Qt::AlignCenter</set>
</property> </property>
</widget> </widget>
<widget class="QWidget" name="LanguageWidget" native="true"> </widget>
<property name="geometry"> <widget class="QWidget" name="LanguageWidget" native="true">
<rect> <property name="geometry">
<x>0</x> <rect>
<y>0</y> <x>10</x>
<width>201</width> <y>440</y>
<height>30</height> <width>200</width>
</rect> <height>30</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<property name="topMargin">
<number>0</number>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout_2"> <property name="bottomMargin">
<property name="topMargin"> <number>0</number>
<number>0</number> </property>
</property> <item>
<property name="bottomMargin"> <widget class="QLabel" name="languageTitle">
<number>0</number> <property name="sizePolicy">
</property> <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<item> <horstretch>0</horstretch>
<widget class="QLabel" name="languageTitle"> <verstretch>0</verstretch>
<property name="sizePolicy"> </sizepolicy>
<sizepolicy hsizetype="Expanding" vsizetype="Expanding"> </property>
<horstretch>0</horstretch> <property name="font">
<verstretch>0</verstretch> <font>
</sizepolicy> <family>Calibri</family>
</property> <pointsize>10</pointsize>
<property name="font"> <weight>50</weight>
<font> <bold>false</bold>
<family>Calibri</family> <stylestrategy>PreferAntialias</stylestrategy>
<pointsize>10</pointsize> </font>
<weight>50</weight> </property>
<bold>false</bold> <property name="text">
<stylestrategy>PreferAntialias</stylestrategy> <string>Язык/Language</string>
</font> </property>
</property> </widget>
</item>
<item>
<widget class="QComboBox" name="languageComboBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>Helvetica Cyr Upright-Bold</family>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<item>
<property name="text"> <property name="text">
<string>Язык/Language</string> <string>RUS</string>
</property> </property>
</widget> </item>
</item> <item>
<item> <property name="text">
<widget class="QComboBox" name="languageComboBox"> <string>ENG</string>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property> </property>
<property name="font"> </item>
<font> </widget>
<family>Helvetica Cyr Upright-Bold</family> </item>
<weight>75</weight> </layout>
<bold>true</bold>
</font>
</property>
<item>
<property name="text">
<string>RUS</string>
</property>
</item>
<item>
<property name="text">
<string>ENG</string>
</property>
</item>
</widget>
</item>
</layout>
</widget>
</widget> </widget>
<zorder>mainFrame</zorder> <zorder>mainFrame</zorder>
<zorder>layoutWidget</zorder> <zorder>layoutWidget</zorder>
<zorder>LanguageWidget</zorder>
</widget> </widget>
</widget> </widget>
<resources/> <resources/>

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -1,10 +1,12 @@
<RCC> <RCC>
<qresource prefix="/new/resoures"/> <qresource prefix="/new/resoures"/>
<qresource prefix="/"> <qresource prefix="/">
<file>resource/plane.png</file>
<file>style.css</file> <file>style.css</file>
<file>resource/SSJ-100.png</file> <file>resource/SSJ-100.png</file>
<file>resource/Fonts/Kanit Cyrillic.ttf</file> <file>resource/Fonts/Kanit Cyrillic.ttf</file>
<file>resource/Fonts/LiberationSans-Regular.ttf</file> <file>resource/Fonts/LiberationSans-Regular.ttf</file>
<file>resource/Fonts/HelveticaNeue-Medium.ttf</file>
<file>resource/Icons/monitor-display.png</file>
<file>resource/Icons/plane.png</file>
</qresource> </qresource>
</RCC> </RCC>

View File

@@ -10,19 +10,48 @@ QPushButton
background-color: rgb(203,228,255); background-color: rgb(203,228,255);
border-style: outset; border-style: outset;
border-radius: 3px; border-radius: 3px;
font-family: "Helvetica Cyr Upright"; font-family: "Calibri";
font: 16px;
color: rgb(45,84,130); color: rgb(45,84,130);
} }
QLineEdit QLineEdit
{ {
border-style: outset; border-style: outset;
border-radius: 3px; border-radius: 3px;
} }
#languageTitle QLabel
{
font-family: "Calibri";
font: 17px;
color: white;
}
QLabel#languageTitle
{ {
font-family: "Calibri"; font-family: "Calibri";
color: white; color: white;
} }
QLabel#notificationLabel
{
font: 20px;
}
QPushButton#displayView
{
border: 4px solid rgb(45,84,130);
border-radius: 5px;
background-color: white;
}
QPushButton#displayView:checked
{
background-color: rgb(151,176,201);
}

View File

@@ -67,7 +67,7 @@ public:
QVBoxLayout *verticalLayout_4; QVBoxLayout *verticalLayout_4;
QLabel *displayChoiceTitle; QLabel *displayChoiceTitle;
QWidget *screenWidget; QWidget *screenWidget;
QHBoxLayout *displayWidget; QHBoxLayout *horizontalLayout_3;
QHBoxLayout *displayLayout; QHBoxLayout *displayLayout;
QLabel *notificationLabel; QLabel *notificationLabel;
QWidget *LanguageWidget; QWidget *LanguageWidget;
@@ -151,7 +151,8 @@ public:
updateButton->setMinimumSize(QSize(100, 30)); updateButton->setMinimumSize(QSize(100, 30));
updateButton->setMaximumSize(QSize(100, 30)); updateButton->setMaximumSize(QSize(100, 30));
QFont font; QFont font;
font.setFamily(QString::fromUtf8("Helvetica Cyr Upright")); font.setFamily(QString::fromUtf8("Calibri"));
font.setPointSize(8);
updateButton->setFont(font); updateButton->setFont(font);
updateButton->setFlat(false); updateButton->setFlat(false);
@@ -178,7 +179,7 @@ public:
debugText->setGeometry(QRect(10, 290, 661, 81)); debugText->setGeometry(QRect(10, 290, 661, 81));
horizontalLayoutWidget = new QWidget(mainFrame); horizontalLayoutWidget = new QWidget(mainFrame);
horizontalLayoutWidget->setObjectName(QString::fromUtf8("horizontalLayoutWidget")); horizontalLayoutWidget->setObjectName(QString::fromUtf8("horizontalLayoutWidget"));
horizontalLayoutWidget->setGeometry(QRect(10, 110, 661, 221)); horizontalLayoutWidget->setGeometry(QRect(-10, 150, 691, 221));
horizontalLayout = new QHBoxLayout(horizontalLayoutWidget); horizontalLayout = new QHBoxLayout(horizontalLayoutWidget);
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
horizontalLayout->setSizeConstraint(QLayout::SetDefaultConstraint); horizontalLayout->setSizeConstraint(QLayout::SetDefaultConstraint);
@@ -288,14 +289,14 @@ public:
displayGroupWidget = new QWidget(mainFrame); displayGroupWidget = new QWidget(mainFrame);
displayGroupWidget->setObjectName(QString::fromUtf8("displayGroupWidget")); displayGroupWidget->setObjectName(QString::fromUtf8("displayGroupWidget"));
displayGroupWidget->setGeometry(QRect(50, 70, 600, 200)); displayGroupWidget->setGeometry(QRect(-10, -10, 691, 250));
QSizePolicy sizePolicy3(QSizePolicy::Preferred, QSizePolicy::Minimum); QSizePolicy sizePolicy3(QSizePolicy::Preferred, QSizePolicy::Preferred);
sizePolicy3.setHorizontalStretch(0); sizePolicy3.setHorizontalStretch(0);
sizePolicy3.setVerticalStretch(0); sizePolicy3.setVerticalStretch(0);
sizePolicy3.setHeightForWidth(displayGroupWidget->sizePolicy().hasHeightForWidth()); sizePolicy3.setHeightForWidth(displayGroupWidget->sizePolicy().hasHeightForWidth());
displayGroupWidget->setSizePolicy(sizePolicy3); displayGroupWidget->setSizePolicy(sizePolicy3);
displayGroupWidget->setMinimumSize(QSize(600, 200)); displayGroupWidget->setMinimumSize(QSize(300, 250));
displayGroupWidget->setMaximumSize(QSize(500, 200)); displayGroupWidget->setMaximumSize(QSize(700, 300));
verticalLayout_4 = new QVBoxLayout(displayGroupWidget); verticalLayout_4 = new QVBoxLayout(displayGroupWidget);
verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4")); verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4"));
displayChoiceTitle = new QLabel(displayGroupWidget); displayChoiceTitle = new QLabel(displayGroupWidget);
@@ -303,18 +304,27 @@ public:
sizePolicy1.setHeightForWidth(displayChoiceTitle->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(displayChoiceTitle->sizePolicy().hasHeightForWidth());
displayChoiceTitle->setSizePolicy(sizePolicy1); displayChoiceTitle->setSizePolicy(sizePolicy1);
displayChoiceTitle->setMaximumSize(QSize(16777215, 30)); displayChoiceTitle->setMaximumSize(QSize(16777215, 30));
displayChoiceTitle->setAlignment(Qt::AlignHCenter|Qt::AlignTop); QFont font1;
font1.setPointSize(10);
displayChoiceTitle->setFont(font1);
displayChoiceTitle->setAlignment(Qt::AlignBottom|Qt::AlignHCenter);
verticalLayout_4->addWidget(displayChoiceTitle); verticalLayout_4->addWidget(displayChoiceTitle);
screenWidget = new QWidget(displayGroupWidget); screenWidget = new QWidget(displayGroupWidget);
screenWidget->setObjectName(QString::fromUtf8("screenWidget")); screenWidget->setObjectName(QString::fromUtf8("screenWidget"));
displayWidget = new QHBoxLayout(screenWidget); sizePolicy3.setHeightForWidth(screenWidget->sizePolicy().hasHeightForWidth());
displayWidget->setObjectName(QString::fromUtf8("displayWidget")); screenWidget->setSizePolicy(sizePolicy3);
screenWidget->setMinimumSize(QSize(0, 0));
screenWidget->setMaximumSize(QSize(700, 16777215));
horizontalLayout_3 = new QHBoxLayout(screenWidget);
horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));
displayLayout = new QHBoxLayout(); displayLayout = new QHBoxLayout();
displayLayout->setSpacing(6);
displayLayout->setObjectName(QString::fromUtf8("displayLayout")); displayLayout->setObjectName(QString::fromUtf8("displayLayout"));
displayLayout->setSizeConstraint(QLayout::SetDefaultConstraint);
displayWidget->addLayout(displayLayout); horizontalLayout_3->addLayout(displayLayout);
verticalLayout_4->addWidget(screenWidget); verticalLayout_4->addWidget(screenWidget);
@@ -326,16 +336,14 @@ public:
notificationLabel->setSizePolicy(sizePolicy); notificationLabel->setSizePolicy(sizePolicy);
notificationLabel->setMinimumSize(QSize(300, 0)); notificationLabel->setMinimumSize(QSize(300, 0));
notificationLabel->setMaximumSize(QSize(300, 16777215)); notificationLabel->setMaximumSize(QSize(300, 16777215));
QFont font1;
font1.setPointSize(10);
notificationLabel->setFont(font1); notificationLabel->setFont(font1);
notificationLabel->setFrameShape(QFrame::StyledPanel); notificationLabel->setFrameShape(QFrame::StyledPanel);
notificationLabel->setFrameShadow(QFrame::Plain); notificationLabel->setFrameShadow(QFrame::Plain);
notificationLabel->setTextFormat(Qt::RichText); notificationLabel->setTextFormat(Qt::RichText);
notificationLabel->setAlignment(Qt::AlignCenter); notificationLabel->setAlignment(Qt::AlignCenter);
LanguageWidget = new QWidget(mainFrame); LanguageWidget = new QWidget(centralwidget);
LanguageWidget->setObjectName(QString::fromUtf8("LanguageWidget")); LanguageWidget->setObjectName(QString::fromUtf8("LanguageWidget"));
LanguageWidget->setGeometry(QRect(0, 0, 201, 30)); LanguageWidget->setGeometry(QRect(10, 440, 200, 30));
horizontalLayout_2 = new QHBoxLayout(LanguageWidget); horizontalLayout_2 = new QHBoxLayout(LanguageWidget);
horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
horizontalLayout_2->setContentsMargins(-1, 0, -1, 0); horizontalLayout_2->setContentsMargins(-1, 0, -1, 0);
@@ -376,6 +384,7 @@ public:
MainWindow->setCentralWidget(centralwidget); MainWindow->setCentralWidget(centralwidget);
mainFrame->raise(); mainFrame->raise();
layoutWidget->raise(); layoutWidget->raise();
LanguageWidget->raise();
retranslateUi(MainWindow); retranslateUi(MainWindow);