ui_frm_update.h

来自「qt4.4.3下编写的嵌入式UI界面」· C头文件 代码 · 共 107 行

H
107
字号
/********************************************************************************** Form generated from reading ui file 'frm_Update.ui'**** Created: Tue Mar 3 18:00:41 2009**      by: Qt User Interface Compiler version 4.4.3**** WARNING! All changes made in this file will be lost when recompiling ui file!********************************************************************************/#ifndef UI_FRM_UPDATE_H#define UI_FRM_UPDATE_H#include <QtCore/QVariant>#include <QtGui/QAction>#include <QtGui/QApplication>#include <QtGui/QButtonGroup>#include <QtGui/QComboBox>#include <QtGui/QLabel>#include <QtGui/QLineEdit>#include <QtGui/QPushButton>#include <QtGui/QWidget>QT_BEGIN_NAMESPACEclass Ui_frm_Update{public:    QPushButton *pbtn_close;    QLabel *label_3;    QPushButton *pbtn_ok;    QLineEdit *lineEdit_4;    QLabel *label_4;    QLabel *label_2;    QComboBox *comboBox;    QComboBox *comboBox_2;    void setupUi(QWidget *frm_Update)    {    if (frm_Update->objectName().isEmpty())        frm_Update->setObjectName(QString::fromUtf8("frm_Update"));    frm_Update->resize(400, 300);    frm_Update->setStyleSheet(QString::fromUtf8("font: 12pt \"\346\226\207\346\263\211\351\251\277\346\255\243\351\273\221\";\n""background-color: rgb(112, 200, 11);"));    pbtn_close = new QPushButton(frm_Update);    pbtn_close->setObjectName(QString::fromUtf8("pbtn_close"));    pbtn_close->setGeometry(QRect(212, 243, 100, 36));    label_3 = new QLabel(frm_Update);    label_3->setObjectName(QString::fromUtf8("label_3"));    label_3->setGeometry(QRect(30, 92, 140, 52));    pbtn_ok = new QPushButton(frm_Update);    pbtn_ok->setObjectName(QString::fromUtf8("pbtn_ok"));    pbtn_ok->setGeometry(QRect(106, 243, 100, 36));    lineEdit_4 = new QLineEdit(frm_Update);    lineEdit_4->setObjectName(QString::fromUtf8("lineEdit_4"));    lineEdit_4->setGeometry(QRect(172, 163, 191, 34));    lineEdit_4->setMaxLength(30);    lineEdit_4->setEchoMode(QLineEdit::Normal);    label_4 = new QLabel(frm_Update);    label_4->setObjectName(QString::fromUtf8("label_4"));    label_4->setGeometry(QRect(30, 154, 140, 53));    label_2 = new QLabel(frm_Update);    label_2->setObjectName(QString::fromUtf8("label_2"));    label_2->setGeometry(QRect(30, 40, 140, 53));    comboBox = new QComboBox(frm_Update);    comboBox->setObjectName(QString::fromUtf8("comboBox"));    comboBox->setGeometry(QRect(170, 40, 190, 37));    comboBox_2 = new QComboBox(frm_Update);    comboBox_2->setObjectName(QString::fromUtf8("comboBox_2"));    comboBox_2->setGeometry(QRect(170, 100, 190, 37));    retranslateUi(frm_Update);    QMetaObject::connectSlotsByName(frm_Update);    } // setupUi    void retranslateUi(QWidget *frm_Update)    {    frm_Update->setWindowTitle(QApplication::translate("frm_Update", "\347\263\273\347\273\237\345\215\207\347\272\247", 0, QApplication::UnicodeUTF8));    pbtn_close->setText(QApplication::translate("frm_Update", "\345\217\226\346\266\210", 0, QApplication::UnicodeUTF8));    label_3->setText(QApplication::translate("frm_Update", "\345\215\207\347\272\247\345\215\207\347\272\247\346\226\271\345\274\217", 0, QApplication::UnicodeUTF8));    pbtn_ok->setText(QApplication::translate("frm_Update", "\347\241\256\345\256\232", 0, QApplication::UnicodeUTF8));    lineEdit_4->setText(QApplication::translate("frm_Update", "192.168.1.1", 0, QApplication::UnicodeUTF8));    label_4->setText(QApplication::translate("frm_Update", "\346\234\215\345\212\241\345\231\250IP\345\234\260\345\235\200", 0, QApplication::UnicodeUTF8));    label_2->setText(QApplication::translate("frm_Update", "\345\215\207\347\272\247", 0, QApplication::UnicodeUTF8));    comboBox->clear();    comboBox->insertItems(0, QStringList()     << QApplication::translate("frm_Update", "\346\211\200\346\234\211", 0, QApplication::UnicodeUTF8)     << QApplication::translate("frm_Update", "\345\206\205\346\240\270", 0, QApplication::UnicodeUTF8)    );    comboBox_2->clear();    comboBox_2->insertItems(0, QStringList()     << QApplication::translate("frm_Update", "FTP", 0, QApplication::UnicodeUTF8)     << QApplication::translate("frm_Update", "http", 0, QApplication::UnicodeUTF8)    );    Q_UNUSED(frm_Update);    } // retranslateUi};namespace Ui {    class frm_Update: public Ui_frm_Update {};} // namespace UiQT_END_NAMESPACE#endif // UI_FRM_UPDATE_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?