ui_cinfodlg.h

来自「可以实现对学生信息任意添加」· C头文件 代码 · 共 88 行

H
88
字号
/********************************************************************************
** Form generated from reading ui file 'cinfodlg.ui'
**
** Created: Thu Apr 2 09:49:24 2009
**      by: Qt User Interface Compiler version 4.5.0
**
** WARNING! All changes made in this file will be lost when recompiling ui file!
********************************************************************************/

#ifndef UI_CINFODLG_H
#define UI_CINFODLG_H

#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QDialog>
#include <QtGui/QDialogButtonBox>
#include <QtGui/QHBoxLayout>
#include <QtGui/QHeaderView>
#include <QtGui/QLabel>
#include <QtGui/QLineEdit>
#include <QtGui/QVBoxLayout>

QT_BEGIN_NAMESPACE

class Ui_CInfoDlg
{
public:
    QVBoxLayout *verticalLayout;
    QHBoxLayout *horizontalLayout;
    QLabel *label;
    QLineEdit *edtName;
    QDialogButtonBox *buttonBox;

    void setupUi(QDialog *CInfoDlg)
    {
        if (CInfoDlg->objectName().isEmpty())
            CInfoDlg->setObjectName(QString::fromUtf8("CInfoDlg"));
        CInfoDlg->resize(270, 135);
        verticalLayout = new QVBoxLayout(CInfoDlg);
        verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
        horizontalLayout = new QHBoxLayout();
        horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
        label = new QLabel(CInfoDlg);
        label->setObjectName(QString::fromUtf8("label"));

        horizontalLayout->addWidget(label);

        edtName = new QLineEdit(CInfoDlg);
        edtName->setObjectName(QString::fromUtf8("edtName"));

        horizontalLayout->addWidget(edtName);


        verticalLayout->addLayout(horizontalLayout);

        buttonBox = new QDialogButtonBox(CInfoDlg);
        buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
        buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

        verticalLayout->addWidget(buttonBox);


        retranslateUi(CInfoDlg);
        QObject::connect(buttonBox, SIGNAL(accepted()), CInfoDlg, SLOT(accept()));
        QObject::connect(buttonBox, SIGNAL(rejected()), CInfoDlg, SLOT(reject()));

        QMetaObject::connectSlotsByName(CInfoDlg);
    } // setupUi

    void retranslateUi(QDialog *CInfoDlg)
    {
        CInfoDlg->setWindowTitle(QApplication::translate("CInfoDlg", "Student Information", 0, QApplication::UnicodeUTF8));
        label->setText(QApplication::translate("CInfoDlg", "Name:", 0, QApplication::UnicodeUTF8));
        Q_UNUSED(CInfoDlg);
    } // retranslateUi

};

namespace Ui {
    class CInfoDlg: public Ui_CInfoDlg {};
} // namespace Ui

QT_END_NAMESPACE

#endif // UI_CINFODLG_H

⌨️ 快捷键说明

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