资源简介
改例子是工作中从同事那里得到的参考例子,感觉经典,就留下来了,虽然内容不多,几乎涵盖了所有相关的操作,很好的参考例子,所以要留下来,方便以后使用
代码片段和文件信息
#include “AddInfoForm.h“
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include “DataStruct.h“
CAddInfoForm::CAddInfoForm(QWidget *pWid)
:QDialog(pWid) m_pInfo(nullptr) bChange(false)
{
setupUI();
m_pInfo = new SPersonInfo;
}
CAddInfoForm::~CAddInfoForm()
{
}
SPersonInfo* CAddInfoForm::getInfo()
{
return m_pInfo;
}
void CAddInfoForm::changeMode()
{
if (m_pLEName->text().length() > 0)
{
if (m_pLEPhone->text().length() == 0 || m_pLEPhone->text().length() == 11)
{
if (m_pDEDate->date() < QDate::currentDate())
{
m_pInfo->strName = m_pLEName->text();
m_pInfo->strAddr = m_pLEAddr->text();
//m_pInfo->eSex = Sex(m_pCBSex->currentIndex());
m_pInfo->bSex = m_pCBSex->currentIndex() == 0 ? false : true;
m_pInfo->strBirth = m_pDEDate->date().toString(“yyyy-MM-dd“);
m_pInfo->strPhone = m_pLEPhone->text();
bChange = true;
this->close();
return;
}
}
}
QMessageBox::warning(this “Error“ QStringLiteral(“信息录入错误“));
}
void CAddInfoForm::setupUI()
{
QLabel *pLblName = new QLabel(QStringLiteral(“姓名“));
QLabel *pLblSex = new QLabel(QStringLiteral(“性别“));
QLabel *pLblAddr = new QLabel(QStringLiteral(“住址“));
QLabel *pLblBirth = new QLabel(QStringLiteral(“生日“));
QLabel *pLblPhone = new QLabel(QStringLiteral(“电话“));
pBtnAdd = new QPushButton;
pBtnCancel = new QPushButton;
pBtnAdd->setText(QStringLiteral(“确定“));
pBtnCancel->setText(QStringLiteral(“取消“));
connect(pBtnAdd SIGNAL(clicked()) this SLOT(changeMode()));
connect(pBtnCancel SIGNAL(clicked()) this SLOT(close()));
m_pLEName = new QLineEdit;
m_pCBSex = new QComboBox;
m_pLEAddr = new QLineEdit;
m_pDEDate = new QDateEdit;
m_pLEPhone = new QLineEdit;
m_pCBSex->addItem(QIcon(“..\\image\\group_manager.png“) QStringLiteral(“男“));
m_pCBSex->addItem(QIcon(“..\\image\\group_creator.png“) QStringLiteral(“女“));
QRegExp regx(“^1(3[0-9]|4[57]|5[0-35-9]|7[0135678]|8[0-9])\\d{8}$“);
QValidator *validator = new QRegExpValidator(regx m_pLEPhone );
m_pLEPhone->setValidator(validator);
m_pDEDate->setCalendarPopup(true);
QHBoxLayout *playoutName = new QHBoxLayout;
QHBoxLayout *playoutSex = new QHBoxLayout;
QHBoxLayout *playoutAddr = new QHBoxLayout;
QHBoxLayout *playoutBirth = new QHBoxLayout;
QHBoxLayout *playoutPhone = new QHBoxLayout;
QHBoxLayout *playoutBtn = new QHBoxLayout;
QVBoxLayout *pmainLayout = new QVBoxLayout;
playoutName->addWidget(pLblName);
playoutName->addWidget(m_pLEName);
playoutSex->addWidget(pLblSex
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3884 2017-04-26 15:51 ModelViewText\AddInfoForm.cpp
文件 613 2017-04-26 15:51 ModelViewText\AddInfoForm.h
文件 6545 2017-04-26 15:51 ModelViewText\DataStruct.cpp
文件 1741 2017-04-26 15:51 ModelViewText\DataStruct.h
文件 193 2017-07-21 20:23 ModelViewText\main.cpp
文件 138 2017-07-21 20:20 ModelViewText\mainwindow.cpp
文件 227 2017-07-21 20:20 ModelViewText\mainwindow.h
文件 487 2017-07-21 20:22 ModelViewText\ModelViewText.pro
文件 18669 2017-07-21 20:22 ModelViewText\ModelViewText.pro.user
文件 1973 2017-07-21 20:24 ModelViewText\tongxunbook.cpp
文件 700 2017-04-26 15:51 ModelViewText\tongxunbook.h
目录 0 2017-07-21 20:24 ModelViewText
----------- --------- ---------- ----- ----
35170 12
相关资源
- QT TableView
- Qt控件的拖放
- qt实现复杂的计算,复杂算法
- QT T9Input
- qtwinmigrate for qt5
- LabVIEW信号发生器
- labview控制步进电机的程序
- labview温度采集VI
- 带界面简单计算器程序Qt源代码
- Qt5.6.1安装qwt-6.1.2
- LabView编的打地鼠小游戏源码
- 基于LabVIEW的温度测控系统设计
- Qt版flappy bird
- qml 编写的RSS浏览器
- 基于Labview的步进电机控制与实时数据
- labview数据采集 触发采集
- Qt实现TCP文件传输
- UIScrollView在故事板中使用自动布局实
- QT 在QLabel上加载图片 并在其上绘制矩
- QT数据库操作实例229050
- Qt5实现拼图+自动寻路
- Qt通讯录可以显示照片完整工程
- Qt5写的猜数字小游戏,注释详细,入
- 用Qt自己画的一个表格类
- YUV viewer
- 基于labview 实现流动字体效果
- 基于LABView上位机 自动保存数据
- labview实现菜单界面设计
- 以文件方式保存和恢复treeview(7KB)
- Qt鼠标键盘响应事件
评论
共有 条评论