1/********************************************************************************
2** Form generated from reading UI file 'custommakefileinfodialog.ui'
3**
4** Created by: Qt User Interface Compiler version 5.15.3
5**
6** WARNING! All changes made in this file will be lost when recompiling UI file!
7********************************************************************************/
8
9#ifndef UI_CUSTOMMAKEFILEINFODIALOG_H
10#define UI_CUSTOMMAKEFILEINFODIALOG_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QDialog>
15#include <QtWidgets/QGridLayout>
16#include <QtWidgets/QLabel>
17#include <QtWidgets/QPushButton>
18#include <QtWidgets/QSpacerItem>
19
20QT_BEGIN_NAMESPACE
21
22class Ui_CustomMakefileInfoDialog
23{
24public:
25 QGridLayout *gridLayout;
26 QPushButton *pushButton;
27 QSpacerItem *horizontalSpacer;
28 QSpacerItem *horizontalSpacer_2;
29 QLabel *label;
30
31 void setupUi(QDialog *CustomMakefileInfoDialog)
32 {
33 if (CustomMakefileInfoDialog->objectName().isEmpty())
34 CustomMakefileInfoDialog->setObjectName(QString::fromUtf8("CustomMakefileInfoDialog"));
35 CustomMakefileInfoDialog->resize(849, 512);
36 gridLayout = new QGridLayout(CustomMakefileInfoDialog);
37 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
38 pushButton = new QPushButton(CustomMakefileInfoDialog);
39 pushButton->setObjectName(QString::fromUtf8("pushButton"));
40
41 gridLayout->addWidget(pushButton, 1, 1, 1, 1);
42
43 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
44
45 gridLayout->addItem(horizontalSpacer, 1, 0, 1, 1);
46
47 horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
48
49 gridLayout->addItem(horizontalSpacer_2, 1, 2, 1, 1);
50
51 label = new QLabel(CustomMakefileInfoDialog);
52 label->setObjectName(QString::fromUtf8("label"));
53 label->setTextFormat(Qt::RichText);
54 label->setAlignment(Qt::AlignCenter);
55
56 gridLayout->addWidget(label, 0, 0, 1, 3);
57
58
59 retranslateUi(CustomMakefileInfoDialog);
60
61 QMetaObject::connectSlotsByName(CustomMakefileInfoDialog);
62 } // setupUi
63
64 void retranslateUi(QDialog *CustomMakefileInfoDialog)
65 {
66 CustomMakefileInfoDialog->setWindowTitle(QCoreApplication::translate("CustomMakefileInfoDialog", "Information for custom makefile", nullptr));
67 pushButton->setText(QCoreApplication::translate("CustomMakefileInfoDialog", "Ok", nullptr));
68 label->setText(QCoreApplication::translate("CustomMakefileInfoDialog", "<html><head/><body><p>Red Panda C++'s Makefile has two important targets:</p><p>- all (which builds the executable)</p><p>- clean (which cleans up object files)</p><p><br/>&quot;all&quot; depends on 2 targets: all-before and all-after. All-before</p><p>gets called before the compilation process, and all-after gets</p><p>called after the compilation process.</p><p><br/>&quot;clean&quot; depends on the target clean-custom, which gets called</p><p>before the cleaning process.<br/></p><p>You can change the Makefile's behavior by defining the targets</p><p>that &quot;all&quot; and &quot;clean&quot; depend on.</p></body></html>", nullptr));
69 } // retranslateUi
70
71};
72
73namespace Ui {
74 class CustomMakefileInfoDialog: public Ui_CustomMakefileInfoDialog {};
75} // namespace Ui
76
77QT_END_NAMESPACE
78
79#endif // UI_CUSTOMMAKEFILEINFODIALOG_H
80