📄 ui_stawindow.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -