1 Star 0 Fork 0

HarkerHand/OOPM

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CreateClassDialog.h 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
HarkerHand 提交于 2024-08-26 16:24 . 加入了更多校验
#ifndef CREATECLASSDIALOG_H
#define CREATECLASSDIALOG_H
#include <QDialog>
#include <QLineEdit>
#include <QDateEdit>
#include <QTextEdit>
#include <QPushButton>
#include <QVBoxLayout>
#include <QFormLayout>
#include <QListWidget>
#include <QHBoxLayout>
#include <QInputDialog>
#include <QLabel>
#include "ClassInfo.h"
#include "Enums.h"
class CreateClassDialog : public QDialog {
Q_OBJECT
public:
CreateClassDialog(QWidget *parent = nullptr, const QList<ClassInfo> &classes = {}, const ClassInfo &classInfo = ClassInfo(), const bool isModifyMode = false);
ClassInfo getClassInfo() const;
private slots:
void onAddMemberClicked();
void onMemberClicked(QListWidgetItem *item);
void onIdChanged(const QString &text);
void onNameChanged(const QString &text);
private:
QLineEdit *_idEdit;
QLineEdit *_nameEdit;
QLineEdit *_baseClassNameEdit;
QTextEdit *_functionEdit;
QDateTimeEdit *_creationDateEdit;
QLineEdit *_authorEdit;
QListWidget *_membersListWidget;
QLabel *_idWarningLabel;
QLabel *_nameWarningLabel;
QList<ClassMember> _members;
QPushButton *_createButton;
bool _isModifyMode;
const QList<ClassInfo> &_classes;
};
#endif // CREATECLASSDIALOG_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/harkerhand/OOPM.git
git@gitee.com:harkerhand/OOPM.git
harkerhand
OOPM
OOPM
master

搜索帮助