mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-18 13:30:34 +01:00
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2081 bfdf4180-ca20-0410-9c96-a3a8aa849046
79 lines
2.4 KiB
C++
79 lines
2.4 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'inserthtmldialog.ui'
|
|
**
|
|
** Created: Sun 31. Mar 20:12:38 2013
|
|
** by: Qt User Interface Compiler version 4.8.4
|
|
**
|
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
********************************************************************************/
|
|
|
|
#ifndef UI_INSERTHTMLDIALOG_H
|
|
#define UI_INSERTHTMLDIALOG_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtGui/QAction>
|
|
#include <QtGui/QApplication>
|
|
#include <QtGui/QButtonGroup>
|
|
#include <QtGui/QDialog>
|
|
#include <QtGui/QDialogButtonBox>
|
|
#include <QtGui/QHeaderView>
|
|
#include <QtGui/QLabel>
|
|
#include <QtGui/QPlainTextEdit>
|
|
#include <QtGui/QVBoxLayout>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_Dialog
|
|
{
|
|
public:
|
|
QVBoxLayout *verticalLayout;
|
|
QLabel *label;
|
|
QPlainTextEdit *plainTextEdit;
|
|
QDialogButtonBox *buttonBox;
|
|
|
|
void setupUi(QDialog *Dialog)
|
|
{
|
|
if (Dialog->objectName().isEmpty())
|
|
Dialog->setObjectName(QString::fromUtf8("Dialog"));
|
|
Dialog->resize(426, 288);
|
|
verticalLayout = new QVBoxLayout(Dialog);
|
|
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
|
|
label = new QLabel(Dialog);
|
|
label->setObjectName(QString::fromUtf8("label"));
|
|
|
|
verticalLayout->addWidget(label);
|
|
|
|
plainTextEdit = new QPlainTextEdit(Dialog);
|
|
plainTextEdit->setObjectName(QString::fromUtf8("plainTextEdit"));
|
|
|
|
verticalLayout->addWidget(plainTextEdit);
|
|
|
|
buttonBox = new QDialogButtonBox(Dialog);
|
|
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
|
|
buttonBox->setOrientation(Qt::Horizontal);
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
|
|
|
|
verticalLayout->addWidget(buttonBox);
|
|
|
|
|
|
retranslateUi(Dialog);
|
|
|
|
QMetaObject::connectSlotsByName(Dialog);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QDialog *Dialog)
|
|
{
|
|
Dialog->setWindowTitle(QApplication::translate("Dialog", "Insert HTML", 0, QApplication::UnicodeUTF8));
|
|
label->setText(QApplication::translate("Dialog", "HTML Code:", 0, QApplication::UnicodeUTF8));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class Dialog: public Ui_Dialog {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // UI_INSERTHTMLDIALOG_H
|