ui_stadialog.h

来自「大学时用c++做的计算器」· C头文件 代码 · 共 83 行

H
83
字号
#ifndef UI_STAWINDOW_H#define UI_STAWINDOW_H#include <QtCore/QVariant>#include <QtGui/QAction>#include <QtGui/QApplication>#include <QtGui/QButtonGroup>#include <QtGui/QDialog>#include <QtGui/QGroupBox>#include <QtGui/QHBoxLayout>#include <QtGui/QListWidget>#include <QtGui/QPushButton>class Ui_StatisticDialog{public:    QGroupBox *groupBox;    QHBoxLayout *hboxLayout;    QPushButton *staReturnButton;    QPushButton *staLoadButton;    QPushButton *staDeleteButton;    QPushButton *staClearButton;    QListWidget *staListWidget;    void setupUi(QDialog *statisticDialog)    {    statisticDialog->setObjectName(QString::fromUtf8("statisticDialog"));    statisticDialog->resize(QSize(272, 199).expandedTo(statisticDialog->minimumSizeHint()));    groupBox = new QGroupBox(statisticDialog);    groupBox->setObjectName(QString::fromUtf8("groupBox"));    groupBox->setGeometry(QRect(10, 150, 251, 41));    hboxLayout = new QHBoxLayout(groupBox);    hboxLayout->setSpacing(6);    hboxLayout->setMargin(8);    hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));    staReturnButton = new QPushButton(groupBox);    staReturnButton->setObjectName(QString::fromUtf8("staReturnButton"));    hboxLayout->addWidget(staReturnButton);    staLoadButton = new QPushButton(groupBox);    staLoadButton->setObjectName(QString::fromUtf8("staLoadButton"));    hboxLayout->addWidget(staLoadButton);    staDeleteButton = new QPushButton(groupBox);    staDeleteButton->setObjectName(QString::fromUtf8("staDeleteButton"));    hboxLayout->addWidget(staDeleteButton);    staClearButton = new QPushButton(groupBox);    staClearButton->setObjectName(QString::fromUtf8("staClearButton"));    hboxLayout->addWidget(staClearButton);    staListWidget = new QListWidget(statisticDialog);    staListWidget->setObjectName(QString::fromUtf8("staListWidget"));    staListWidget->setGeometry(QRect(10, 10, 251, 131));    staListWidget->setCurrentRow(-1);    retranslateUi(statisticDialog);    QMetaObject::connectSlotsByName(statisticDialog);    } // setupUi    void retranslateUi(QDialog *statisticDialog)    {    statisticDialog->setWindowTitle(QApplication::translate("statisticDialog", "Dialog"));    groupBox->setTitle(QApplication::translate("statisticDialog", ""));    staReturnButton->setText(QApplication::translate("statisticDialog", "&Return"));    staLoadButton->setText(QApplication::translate("statisticDialog", "&Load"));    staDeleteButton->setText(QApplication::translate("statisticDialog", "&Delete"));    staClearButton->setText(QApplication::translate("statisticDialog", "&ClearAll"));    Q_UNUSED(statisticDialog);    } // retranslateUi};namespace Ui {    class StatisticDialog: public Ui_StatisticDialog {};} // namespace Ui#endif // UI_STAWINDOW_H

⌨️ 快捷键说明

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