structure, layout, parser and its modules
This commit is contained in:
		@@ -0,0 +1,123 @@
 | 
			
		||||
/********************************************************************************
 | 
			
		||||
** Form generated from reading UI file 'mainwindow.ui'
 | 
			
		||||
**
 | 
			
		||||
** Created by: Qt User Interface Compiler version 5.15.14
 | 
			
		||||
**
 | 
			
		||||
** 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/QAction>
 | 
			
		||||
#include <QtWidgets/QApplication>
 | 
			
		||||
#include <QtWidgets/QComboBox>
 | 
			
		||||
#include <QtWidgets/QLabel>
 | 
			
		||||
#include <QtWidgets/QMainWindow>
 | 
			
		||||
#include <QtWidgets/QMenu>
 | 
			
		||||
#include <QtWidgets/QMenuBar>
 | 
			
		||||
#include <QtWidgets/QPlainTextEdit>
 | 
			
		||||
#include <QtWidgets/QPushButton>
 | 
			
		||||
#include <QtWidgets/QStatusBar>
 | 
			
		||||
#include <QtWidgets/QWidget>
 | 
			
		||||
 | 
			
		||||
QT_BEGIN_NAMESPACE
 | 
			
		||||
 | 
			
		||||
class Ui_MainWindow
 | 
			
		||||
{
 | 
			
		||||
public:
 | 
			
		||||
    QWidget *centralwidget;
 | 
			
		||||
    QComboBox *storeType;
 | 
			
		||||
    QLabel *storeTypeLabel;
 | 
			
		||||
    QWidget *checkInfo;
 | 
			
		||||
    QLabel *checkContentLabel;
 | 
			
		||||
    QPlainTextEdit *checkContent;
 | 
			
		||||
    QPushButton *parseButton;
 | 
			
		||||
    QLabel *storeTypeLabel_2;
 | 
			
		||||
    QComboBox *checkType;
 | 
			
		||||
    QMenuBar *menubar;
 | 
			
		||||
    QMenu *menuchecks_parser;
 | 
			
		||||
    QStatusBar *statusbar;
 | 
			
		||||
 | 
			
		||||
    void setupUi(QMainWindow *MainWindow)
 | 
			
		||||
    {
 | 
			
		||||
        if (MainWindow->objectName().isEmpty())
 | 
			
		||||
            MainWindow->setObjectName(QString::fromUtf8("MainWindow"));
 | 
			
		||||
        MainWindow->resize(827, 680);
 | 
			
		||||
        centralwidget = new QWidget(MainWindow);
 | 
			
		||||
        centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
 | 
			
		||||
        storeType = new QComboBox(centralwidget);
 | 
			
		||||
        storeType->addItem(QString());
 | 
			
		||||
        storeType->addItem(QString());
 | 
			
		||||
        storeType->addItem(QString());
 | 
			
		||||
        storeType->setObjectName(QString::fromUtf8("storeType"));
 | 
			
		||||
        storeType->setGeometry(QRect(90, 10, 211, 31));
 | 
			
		||||
        storeTypeLabel = new QLabel(centralwidget);
 | 
			
		||||
        storeTypeLabel->setObjectName(QString::fromUtf8("storeTypeLabel"));
 | 
			
		||||
        storeTypeLabel->setGeometry(QRect(10, 10, 81, 31));
 | 
			
		||||
        checkInfo = new QWidget(centralwidget);
 | 
			
		||||
        checkInfo->setObjectName(QString::fromUtf8("checkInfo"));
 | 
			
		||||
        checkInfo->setGeometry(QRect(0, 90, 801, 551));
 | 
			
		||||
        checkContentLabel = new QLabel(checkInfo);
 | 
			
		||||
        checkContentLabel->setObjectName(QString::fromUtf8("checkContentLabel"));
 | 
			
		||||
        checkContentLabel->setGeometry(QRect(20, 10, 121, 18));
 | 
			
		||||
        checkContent = new QPlainTextEdit(checkInfo);
 | 
			
		||||
        checkContent->setObjectName(QString::fromUtf8("checkContent"));
 | 
			
		||||
        checkContent->setGeometry(QRect(20, 40, 401, 411));
 | 
			
		||||
        parseButton = new QPushButton(checkInfo);
 | 
			
		||||
        parseButton->setObjectName(QString::fromUtf8("parseButton"));
 | 
			
		||||
        parseButton->setGeometry(QRect(20, 480, 80, 26));
 | 
			
		||||
        storeTypeLabel_2 = new QLabel(centralwidget);
 | 
			
		||||
        storeTypeLabel_2->setObjectName(QString::fromUtf8("storeTypeLabel_2"));
 | 
			
		||||
        storeTypeLabel_2->setGeometry(QRect(10, 50, 81, 20));
 | 
			
		||||
        checkType = new QComboBox(centralwidget);
 | 
			
		||||
        checkType->addItem(QString());
 | 
			
		||||
        checkType->addItem(QString());
 | 
			
		||||
        checkType->setObjectName(QString::fromUtf8("checkType"));
 | 
			
		||||
        checkType->setGeometry(QRect(90, 50, 211, 26));
 | 
			
		||||
        MainWindow->setCentralWidget(centralwidget);
 | 
			
		||||
        menubar = new QMenuBar(MainWindow);
 | 
			
		||||
        menubar->setObjectName(QString::fromUtf8("menubar"));
 | 
			
		||||
        menubar->setGeometry(QRect(0, 0, 827, 23));
 | 
			
		||||
        menuchecks_parser = new QMenu(menubar);
 | 
			
		||||
        menuchecks_parser->setObjectName(QString::fromUtf8("menuchecks_parser"));
 | 
			
		||||
        MainWindow->setMenuBar(menubar);
 | 
			
		||||
        statusbar = new QStatusBar(MainWindow);
 | 
			
		||||
        statusbar->setObjectName(QString::fromUtf8("statusbar"));
 | 
			
		||||
        MainWindow->setStatusBar(statusbar);
 | 
			
		||||
 | 
			
		||||
        menubar->addAction(menuchecks_parser->menuAction());
 | 
			
		||||
 | 
			
		||||
        retranslateUi(MainWindow);
 | 
			
		||||
 | 
			
		||||
        QMetaObject::connectSlotsByName(MainWindow);
 | 
			
		||||
    } // setupUi
 | 
			
		||||
 | 
			
		||||
    void retranslateUi(QMainWindow *MainWindow)
 | 
			
		||||
    {
 | 
			
		||||
        MainWindow->setWindowTitle(QCoreApplication::translate("MainWindow", "MainWindow", nullptr));
 | 
			
		||||
        storeType->setItemText(0, QCoreApplication::translate("MainWindow", "Pyaterochka (\320\237\321\217\321\202\321\221\321\200\320\276\321\207\320\272\320\260)", nullptr));
 | 
			
		||||
        storeType->setItemText(1, QCoreApplication::translate("MainWindow", "Perekrestok (\320\237\320\265\321\200\320\265\320\272\321\200\321\221\321\201\321\202\320\276\320\272)", nullptr));
 | 
			
		||||
        storeType->setItemText(2, QCoreApplication::translate("MainWindow", "FixPrice", nullptr));
 | 
			
		||||
 | 
			
		||||
        storeTypeLabel->setText(QCoreApplication::translate("MainWindow", "Store", nullptr));
 | 
			
		||||
        checkContentLabel->setText(QCoreApplication::translate("MainWindow", "Check content", nullptr));
 | 
			
		||||
        checkContent->setPlainText(QString());
 | 
			
		||||
        parseButton->setText(QCoreApplication::translate("MainWindow", "Parse", nullptr));
 | 
			
		||||
        storeTypeLabel_2->setText(QCoreApplication::translate("MainWindow", "Check type", nullptr));
 | 
			
		||||
        checkType->setItemText(0, QCoreApplication::translate("MainWindow", "Text", nullptr));
 | 
			
		||||
        checkType->setItemText(1, QCoreApplication::translate("MainWindow", "Image (not yet implemented)", nullptr));
 | 
			
		||||
 | 
			
		||||
        menuchecks_parser->setTitle(QCoreApplication::translate("MainWindow", "checks parser", nullptr));
 | 
			
		||||
    } // retranslateUi
 | 
			
		||||
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
namespace Ui {
 | 
			
		||||
    class MainWindow: public Ui_MainWindow {};
 | 
			
		||||
} // namespace Ui
 | 
			
		||||
 | 
			
		||||
QT_END_NAMESPACE
 | 
			
		||||
 | 
			
		||||
#endif // UI_MAINWINDOW_H
 | 
			
		||||
		Reference in New Issue
	
	Block a user