CuteLogger
Fast and simple logging solution for Qt based applications
ui_textviewerdialog.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'textviewerdialog.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.12.5
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_TEXTVIEWERDIALOG_H
10 #define UI_TEXTVIEWERDIALOG_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QDialog>
15 #include <QtWidgets/QDialogButtonBox>
16 #include <QtWidgets/QPlainTextEdit>
17 #include <QtWidgets/QVBoxLayout>
18 
19 QT_BEGIN_NAMESPACE
20 
21 class Ui_TextViewerDialog
22 {
23 public:
24  QVBoxLayout *verticalLayout;
25  QPlainTextEdit *plainTextEdit;
26  QDialogButtonBox *buttonBox;
27 
28  void setupUi(QDialog *TextViewerDialog)
29  {
30  if (TextViewerDialog->objectName().isEmpty())
31  TextViewerDialog->setObjectName(QString::fromUtf8("TextViewerDialog"));
32  TextViewerDialog->setWindowModality(Qt::WindowModal);
33  TextViewerDialog->resize(709, 398);
34  TextViewerDialog->setSizeGripEnabled(true);
35  verticalLayout = new QVBoxLayout(TextViewerDialog);
36  verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
37  plainTextEdit = new QPlainTextEdit(TextViewerDialog);
38  plainTextEdit->setObjectName(QString::fromUtf8("plainTextEdit"));
39  plainTextEdit->setUndoRedoEnabled(false);
40  plainTextEdit->setReadOnly(true);
41 
42  verticalLayout->addWidget(plainTextEdit);
43 
44  buttonBox = new QDialogButtonBox(TextViewerDialog);
45  buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
46  buttonBox->setOrientation(Qt::Horizontal);
47  buttonBox->setStandardButtons(QDialogButtonBox::Close|QDialogButtonBox::Save);
48 
49  verticalLayout->addWidget(buttonBox);
50 
51 
52  retranslateUi(TextViewerDialog);
53  QObject::connect(buttonBox, SIGNAL(accepted()), TextViewerDialog, SLOT(accept()));
54  QObject::connect(buttonBox, SIGNAL(rejected()), TextViewerDialog, SLOT(reject()));
55 
56  QMetaObject::connectSlotsByName(TextViewerDialog);
57  } // setupUi
58 
59  void retranslateUi(QDialog *TextViewerDialog)
60  {
61  TextViewerDialog->setWindowTitle(QApplication::translate("TextViewerDialog", "Dialog", nullptr));
62  } // retranslateUi
63 
64 };
65 
66 namespace Ui {
67  class TextViewerDialog: public Ui_TextViewerDialog {};
68 } // namespace Ui
69 
70 QT_END_NAMESPACE
71 
72 #endif // UI_TEXTVIEWERDIALOG_H