| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /********************************************************************************
- ** Form generated from reading UI file 'PaintWidget.ui'
- **
- ** Created by: Qt User Interface Compiler version 5.12.10
- **
- ** WARNING! All changes made in this file will be lost when recompiling UI file!
- ********************************************************************************/
- #ifndef UI_PAINTWIDGET_H
- #define UI_PAINTWIDGET_H
- #include <QtCore/QVariant>
- #include <QtWidgets/QApplication>
- #include <QtWidgets/QWidget>
- QT_BEGIN_NAMESPACE
- class Ui_PaintWidget
- {
- public:
- void setupUi(QWidget *PaintWidget)
- {
- if (PaintWidget->objectName().isEmpty())
- PaintWidget->setObjectName(QString::fromUtf8("PaintWidget"));
- PaintWidget->resize(400, 300);
- retranslateUi(PaintWidget);
- QMetaObject::connectSlotsByName(PaintWidget);
- } // setupUi
- void retranslateUi(QWidget *PaintWidget)
- {
- PaintWidget->setWindowTitle(QApplication::translate("PaintWidget", "Form", nullptr));
- } // retranslateUi
- };
- namespace Ui {
- class PaintWidget: public Ui_PaintWidget {};
- } // namespace Ui
- QT_END_NAMESPACE
- #endif // UI_PAINTWIDGET_H
|