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.9.2
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/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QDialog>
17 #include <QtWidgets/QDialogButtonBox>
18 #include <QtWidgets/QHeaderView>
19 #include <QtWidgets/QPlainTextEdit>
20 #include <QtWidgets/QVBoxLayout>
21 
22 QT_BEGIN_NAMESPACE
23 
24 class Ui_TextViewerDialog
25 {
26 public:
27  QVBoxLayout *verticalLayout;
28  QPlainTextEdit *plainTextEdit;
29  QDialogButtonBox *buttonBox;
30 
31  void setupUi(QDialog *TextViewerDialog)
32  {
33  if (TextViewerDialog->objectName().isEmpty())
34  TextViewerDialog->setObjectName(QStringLiteral("TextViewerDialog"));
35  TextViewerDialog->setWindowModality(Qt::WindowModal);
36  TextViewerDialog->resize(709, 398);
37  TextViewerDialog->setSizeGripEnabled(true);
38  verticalLayout = new QVBoxLayout(TextViewerDialog);
39  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
40  plainTextEdit = new QPlainTextEdit(TextViewerDialog);
41  plainTextEdit->setObjectName(QStringLiteral("plainTextEdit"));
42  plainTextEdit->setUndoRedoEnabled(false);
43  plainTextEdit->setReadOnly(true);
44 
45  verticalLayout->addWidget(plainTextEdit);
46 
47  buttonBox = new QDialogButtonBox(TextViewerDialog);
48  buttonBox->setObjectName(QStringLiteral("buttonBox"));
49  buttonBox->setOrientation(Qt::Horizontal);
50  buttonBox->setStandardButtons(QDialogButtonBox::Close|QDialogButtonBox::Save);
51 
52  verticalLayout->addWidget(buttonBox);
53 
54 
55  retranslateUi(TextViewerDialog);
56  QObject::connect(buttonBox, SIGNAL(accepted()), TextViewerDialog, SLOT(accept()));
57  QObject::connect(buttonBox, SIGNAL(rejected()), TextViewerDialog, SLOT(reject()));
58 
59  QMetaObject::connectSlotsByName(TextViewerDialog);
60  } // setupUi
61 
62  void retranslateUi(QDialog *TextViewerDialog)
63  {
64  TextViewerDialog->setWindowTitle(QApplication::translate("TextViewerDialog", "Dialog", Q_NULLPTR));
65  } // retranslateUi
66 
67 };
68 
69 namespace Ui {
70  class TextViewerDialog: public Ui_TextViewerDialog {};
71 } // namespace Ui
72 
73 QT_END_NAMESPACE
74 
75 #endif // UI_TEXTVIEWERDIALOG_H
Definition: addencodepresetdialog.h:24