CuteLogger
Fast and simple logging solution for Qt based applications
ui_inserthtmldialog.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'inserthtmldialog.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.11.3
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_INSERTHTMLDIALOG_H
10 #define UI_INSERTHTMLDIALOG_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QDialog>
15 #include <QtWidgets/QDialogButtonBox>
16 #include <QtWidgets/QLabel>
17 #include <QtWidgets/QPlainTextEdit>
18 #include <QtWidgets/QVBoxLayout>
19 
20 QT_BEGIN_NAMESPACE
21 
22 class Ui_Dialog
23 {
24 public:
25  QVBoxLayout *verticalLayout;
26  QLabel *label;
27  QPlainTextEdit *plainTextEdit;
28  QDialogButtonBox *buttonBox;
29 
30  void setupUi(QDialog *Dialog)
31  {
32  if (Dialog->objectName().isEmpty())
33  Dialog->setObjectName(QStringLiteral("Dialog"));
34  Dialog->resize(426, 288);
35  verticalLayout = new QVBoxLayout(Dialog);
36  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
37  label = new QLabel(Dialog);
38  label->setObjectName(QStringLiteral("label"));
39 
40  verticalLayout->addWidget(label);
41 
42  plainTextEdit = new QPlainTextEdit(Dialog);
43  plainTextEdit->setObjectName(QStringLiteral("plainTextEdit"));
44 
45  verticalLayout->addWidget(plainTextEdit);
46 
47  buttonBox = new QDialogButtonBox(Dialog);
48  buttonBox->setObjectName(QStringLiteral("buttonBox"));
49  buttonBox->setOrientation(Qt::Horizontal);
50  buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
51 
52  verticalLayout->addWidget(buttonBox);
53 
54 
55  retranslateUi(Dialog);
56 
57  QMetaObject::connectSlotsByName(Dialog);
58  } // setupUi
59 
60  void retranslateUi(QDialog *Dialog)
61  {
62  Dialog->setWindowTitle(QApplication::translate("Dialog", "Insert HTML", nullptr));
63  label->setText(QApplication::translate("Dialog", "HTML Code:", nullptr));
64  } // retranslateUi
65 
66 };
67 
68 namespace Ui {
69  class Dialog: public Ui_Dialog {};
70 } // namespace Ui
71 
72 QT_END_NAMESPACE
73 
74 #endif // UI_INSERTHTMLDIALOG_H