9 #ifndef UI_FUNNEL_TEXT_DIALOG_H 10 #define UI_FUNNEL_TEXT_DIALOG_H 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/QHBoxLayout> 19 #include <QtWidgets/QHeaderView> 20 #include <QtWidgets/QLabel> 21 #include <QtWidgets/QLineEdit> 22 #include <QtWidgets/QTextEdit> 23 #include <QtWidgets/QVBoxLayout> 30 QVBoxLayout *verticalLayout;
32 QHBoxLayout *horizontalLayout;
34 QLineEdit *findLineEdit;
35 QDialogButtonBox *buttonBox;
39 if (FunnelTextDialog->objectName().isEmpty())
40 FunnelTextDialog->setObjectName(QStringLiteral(
"FunnelTextDialog"));
41 FunnelTextDialog->resize(620, 450);
42 verticalLayout =
new QVBoxLayout(FunnelTextDialog);
43 verticalLayout->setObjectName(QStringLiteral(
"verticalLayout"));
44 textEdit =
new QTextEdit(FunnelTextDialog);
45 textEdit->setObjectName(QStringLiteral(
"textEdit"));
47 verticalLayout->addWidget(textEdit);
49 horizontalLayout =
new QHBoxLayout();
50 horizontalLayout->setObjectName(QStringLiteral(
"horizontalLayout"));
51 label =
new QLabel(FunnelTextDialog);
52 label->setObjectName(QStringLiteral(
"label"));
54 horizontalLayout->addWidget(label);
56 findLineEdit =
new QLineEdit(FunnelTextDialog);
57 findLineEdit->setObjectName(QStringLiteral(
"findLineEdit"));
59 horizontalLayout->addWidget(findLineEdit);
62 verticalLayout->addLayout(horizontalLayout);
64 buttonBox =
new QDialogButtonBox(FunnelTextDialog);
65 buttonBox->setObjectName(QStringLiteral(
"buttonBox"));
66 buttonBox->setOrientation(Qt::Horizontal);
67 buttonBox->setStandardButtons(QDialogButtonBox::Close);
69 verticalLayout->addWidget(buttonBox);
72 retranslateUi(FunnelTextDialog);
73 QObject::connect(buttonBox, SIGNAL(accepted()), FunnelTextDialog, SLOT(accept()));
74 QObject::connect(buttonBox, SIGNAL(rejected()), FunnelTextDialog, SLOT(reject()));
76 QMetaObject::connectSlotsByName(FunnelTextDialog);
79 void retranslateUi(QDialog *FunnelTextDialog)
81 FunnelTextDialog->setWindowTitle(QApplication::translate(
"FunnelTextDialog",
"Dialog", 0));
83 label->setToolTip(QApplication::translate(
"FunnelTextDialog",
"<html><head/><body><p>Enter some text or a regular expression. It will be highlighted above.</p></body></html>", 0));
84 #endif // QT_NO_TOOLTIP 85 label->setText(QApplication::translate(
"FunnelTextDialog",
"Highlight:", 0));
87 findLineEdit->setToolTip(QApplication::translate(
"FunnelTextDialog",
"<html><head/><body><p>Enter some text or a regular expression. It will be highlighted above.</p></body></html>", 0));
88 #endif // QT_NO_TOOLTIP 99 #endif // UI_FUNNEL_TEXT_DIALOG_H Definition: ui_about_dialog.h:291
Definition: funnel_text_dialog.h:29
Definition: ui_funnel_text_dialog.h:27
Definition: ui_funnel_text_dialog.h:94