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