GNU Radio's HOWTO Package
ui_show_text_window.h
Go to the documentation of this file.
1 /********************************************************************************
2 ** Form generated from reading UI file 'show_text_window.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.12.7
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_SHOW_TEXT_WINDOW_H
10 #define UI_SHOW_TEXT_WINDOW_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QGridLayout>
15 #include <QtWidgets/QHBoxLayout>
16 #include <QtWidgets/QLabel>
17 #include <QtWidgets/QPushButton>
18 #include <QtWidgets/QScrollArea>
19 #include <QtWidgets/QSpacerItem>
20 #include <QtWidgets/QWidget>
21 
22 QT_BEGIN_NAMESPACE
23 
25 {
26 public:
27  QGridLayout *gridLayout;
28  QScrollArea *displayArea;
29  QLabel *textDisplay;
30  QHBoxLayout *horizontalLayout;
31  QPushButton *clear;
32  QSpacerItem *horizontalSpacer;
33  QPushButton *save;
34 
35  void setupUi(QWidget *show_text_window)
36  {
37  if (show_text_window->objectName().isEmpty())
38  show_text_window->setObjectName(QString::fromUtf8("show_text_window"));
39  show_text_window->resize(400, 300);
40  gridLayout = new QGridLayout(show_text_window);
41  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
42  displayArea = new QScrollArea(show_text_window);
43  displayArea->setObjectName(QString::fromUtf8("displayArea"));
44  displayArea->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
45  displayArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
46  displayArea->setSizeAdjustPolicy(QAbstractScrollArea::AdjustToContents);
47  displayArea->setWidgetResizable(true);
48  textDisplay = new QLabel();
49  textDisplay->setObjectName(QString::fromUtf8("textDisplay"));
50  textDisplay->setGeometry(QRect(0, 0, 367, 230));
51  textDisplay->setFrameShape(QFrame::Panel);
52  textDisplay->setFrameShadow(QFrame::Raised);
53  textDisplay->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop);
54  displayArea->setWidget(textDisplay);
55 
56  gridLayout->addWidget(displayArea, 0, 0, 1, 1);
57 
58  horizontalLayout = new QHBoxLayout();
59  horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
60  clear = new QPushButton(show_text_window);
61  clear->setObjectName(QString::fromUtf8("clear"));
62 
63  horizontalLayout->addWidget(clear);
64 
65  horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
66 
68 
69  save = new QPushButton(show_text_window);
70  save->setObjectName(QString::fromUtf8("save"));
71 
72  horizontalLayout->addWidget(save);
73 
74 
75  gridLayout->addLayout(horizontalLayout, 1, 0, 1, 1);
76 
77 
79 
80  QMetaObject::connectSlotsByName(show_text_window);
81  } // setupUi
82 
84  {
85  show_text_window->setWindowTitle(QApplication::translate("show_text_window", "TextDisplay", nullptr));
86  textDisplay->setText(QApplication::translate("show_text_window", "Starttext", nullptr));
87  clear->setText(QApplication::translate("show_text_window", "Clear", nullptr));
88  save->setText(QApplication::translate("show_text_window", "Save text to file", nullptr));
89  } // retranslateUi
90 
91 };
92 
93 namespace Ui {
95 } // namespace Ui
96 
97 QT_END_NAMESPACE
98 
99 #endif // UI_SHOW_TEXT_WINDOW_H
QScrollArea * displayArea
Definition: ui_show_text_window.h:28
Definition: ui_show_text_window.h:24
QLabel * textDisplay
Definition: ui_show_text_window.h:29
Definition: ui_show_text_window.h:93
QPushButton * clear
Definition: ui_show_text_window.h:31
QGridLayout * gridLayout
Definition: ui_show_text_window.h:27
Definition: show_text_window.h:29
void setupUi(QWidget *show_text_window)
Definition: ui_show_text_window.h:35
Definition: ui_show_text_window.h:94
QHBoxLayout * horizontalLayout
Definition: ui_show_text_window.h:30
QSpacerItem * horizontalSpacer
Definition: ui_show_text_window.h:32
void retranslateUi(QWidget *show_text_window)
Definition: ui_show_text_window.h:83
QPushButton * save
Definition: ui_show_text_window.h:33