|
- /********************************************************************************
- ** Form generated from reading UI file 'CMainPage.ui'
- **
- ** Created: Tue Jul 16 13:17:58 2024
- ** by: Qt User Interface Compiler version 4.8.1
- **
- ** WARNING! All changes made in this file will be lost when recompiling UI file!
- ********************************************************************************/
-
- #ifndef UI_CMAINPAGE_H
- #define UI_CMAINPAGE_H
-
- #include <QtCore/QVariant>
- #include <QtGui/QAction>
- #include <QtGui/QApplication>
- #include <QtGui/QButtonGroup>
- #include <QtGui/QCheckBox>
- #include <QtGui/QHeaderView>
- #include <QtGui/QTabWidget>
- #include <QtGui/QWidget>
-
- QT_BEGIN_NAMESPACE
-
- class Ui_CMainPage
- {
- public:
- QCheckBox *checkBox;
- QTabWidget *mMainTabWidget;
- QWidget *Test;
- QWidget *tab_2;
-
- void setupUi(QWidget *CMainPage)
- {
- if (CMainPage->objectName().isEmpty())
- CMainPage->setObjectName(QString::fromUtf8("CMainPage"));
- CMainPage->resize(2048, 1024);
- checkBox = new QCheckBox(CMainPage);
- checkBox->setObjectName(QString::fromUtf8("checkBox"));
- checkBox->setGeometry(QRect(270, 230, 70, 17));
- mMainTabWidget = new QTabWidget(CMainPage);
- mMainTabWidget->setObjectName(QString::fromUtf8("mMainTabWidget"));
- mMainTabWidget->setGeometry(QRect(0, 0, 2051, 1031));
- Test = new QWidget();
- Test->setObjectName(QString::fromUtf8("Test"));
- mMainTabWidget->addTab(Test, QString());
- tab_2 = new QWidget();
- tab_2->setObjectName(QString::fromUtf8("tab_2"));
- mMainTabWidget->addTab(tab_2, QString());
-
- retranslateUi(CMainPage);
-
- mMainTabWidget->setCurrentIndex(0);
-
-
- QMetaObject::connectSlotsByName(CMainPage);
- } // setupUi
-
- void retranslateUi(QWidget *CMainPage)
- {
- CMainPage->setWindowTitle(QApplication::translate("CMainPage", "Form", 0, QApplication::UnicodeUTF8));
- checkBox->setText(QApplication::translate("CMainPage", "CheckBox", 0, QApplication::UnicodeUTF8));
- mMainTabWidget->setTabText(mMainTabWidget->indexOf(Test), QApplication::translate("CMainPage", "Tab 1", 0, QApplication::UnicodeUTF8));
- mMainTabWidget->setTabText(mMainTabWidget->indexOf(tab_2), QApplication::translate("CMainPage", "Tab 2", 0, QApplication::UnicodeUTF8));
- } // retranslateUi
-
- };
-
- namespace Ui {
- class CMainPage: public Ui_CMainPage {};
- } // namespace Ui
-
- QT_END_NAMESPACE
-
- #endif // UI_CMAINPAGE_H
|