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.9.2
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/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QDialog>
17 #include <QtWidgets/QDialogButtonBox>
18 #include <QtWidgets/QHeaderView>
19 #include <QtWidgets/QLabel>
20 #include <QtWidgets/QPlainTextEdit>
21 #include <QtWidgets/QVBoxLayout>
22 
23 QT_BEGIN_NAMESPACE
24 
25 class Ui_Dialog
26 {
27 public:
28  QVBoxLayout *verticalLayout;
29  QLabel *label;
30  QPlainTextEdit *plainTextEdit;
31  QDialogButtonBox *buttonBox;
32 
33  void setupUi(QDialog *Dialog)
34  {
35  if (Dialog->objectName().isEmpty())
36  Dialog->setObjectName(QStringLiteral("Dialog"));
37  Dialog->resize(426, 288);
38  verticalLayout = new QVBoxLayout(Dialog);
39  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
40  label = new QLabel(Dialog);
41  label->setObjectName(QStringLiteral("label"));
42 
43  verticalLayout->addWidget(label);
44 
45  plainTextEdit = new QPlainTextEdit(Dialog);
46  plainTextEdit->setObjectName(QStringLiteral("plainTextEdit"));
47 
48  verticalLayout->addWidget(plainTextEdit);
49 
50  buttonBox = new QDialogButtonBox(Dialog);
51  buttonBox->setObjectName(QStringLiteral("buttonBox"));
52  buttonBox->setOrientation(Qt::Horizontal);
53  buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
54 
55  verticalLayout->addWidget(buttonBox);
56 
57 
58  retranslateUi(Dialog);
59 
60  QMetaObject::connectSlotsByName(Dialog);
61  } // setupUi
62 
63  void retranslateUi(QDialog *Dialog)
64  {
65  Dialog->setWindowTitle(QApplication::translate("Dialog", "Insert HTML", Q_NULLPTR));
66  label->setText(QApplication::translate("Dialog", "HTML Code:", Q_NULLPTR));
67  } // retranslateUi
68 
69 };
70 
71 namespace Ui {
72  class Dialog: public Ui_Dialog {};
73 } // namespace Ui
74 
75 QT_END_NAMESPACE
76 
77 #endif // UI_INSERTHTMLDIALOG_H
Definition: addencodepresetdialog.h:24