Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef UI_DIALOG_H
- #define UI_DIALOG_H
- #include <QtCore/QVariant>
- #include <QtGui/QAction>
- #include <QtGui/QApplication>
- #include <QtGui/QButtonGroup>
- #include <QtGui/QDialog>
- #include <QtGui/QHeaderView>
- #include <QtGui/QPushButton>
- #include <QtGui/QTreeWidget>
- #include <QtGui/QVBoxLayout>
- QT_BEGIN_NAMESPACE
- class Ui_Dialog
- {
- public:
- QVBoxLayout *verticalLayout;
- QTreeWidget *treeWidget;
- QPushButton *pushButton;
- void setupUi(QDialog *Dialog)
- {
- if (Dialog->objectName().isEmpty())
- Dialog->setObjectName(QString::fromUtf8("Dialog"));
- Dialog->resize(400, 300);
- verticalLayout = new QVBoxLayout(Dialog);
- verticalLayout->setSpacing(6);
- verticalLayout->setContentsMargins(11, 11, 11, 11);
- verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
- treeWidget = new QTreeWidget(Dialog);
- QTreeWidgetItem *__qtreewidgetitem = new QTreeWidgetItem();
- __qtreewidgetitem->setText(0, QString::fromUtf8("1"));
- treeWidget->setHeaderItem(__qtreewidgetitem);
- treeWidget->setObjectName(QString::fromUtf8("treeWidget"));
- verticalLayout->addWidget(treeWidget);
- pushButton = new QPushButton(Dialog);
- pushButton->setObjectName(QString::fromUtf8("pushButton"));
- verticalLayout->addWidget(pushButton);
- retranslateUi(Dialog);
- QMetaObject::connectSlotsByName(Dialog);
- } // setupUi
- void retranslateUi(QDialog *Dialog)
- {
- Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", 0, QApplication::UnicodeUTF8));
- pushButton->setText(QApplication::translate("Dialog", "Click Me", 0, QApplication::UnicodeUTF8));
- } // retranslateUi
- };
- namespace Ui {
- class Dialog: public Ui_Dialog {};
- } // namespace Ui
- QT_END_NAMESPACE
- #endif // UI_DIALOG_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement