1 Star 0 Fork 6

Guyuewangqi / JTickets

forked from ALONE_WORK / JTickets 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jlineedit.cpp 329 Bytes
一键复制 编辑 原始数据 按行查看 历史
selena 提交于 2018-10-24 22:34 . Add ctrls on interface.
#include "jlineedit.h"
JLineEdit::JLineEdit(QLineEdit *parent) :
QLineEdit(parent)
{
}
void JLineEdit::mousePressEvent(QMouseEvent *event)
{
if (event->button() == Qt::LeftButton) {
//触发clicked信号
emit click();
}
//将该事件传给父类处理
QLineEdit::mousePressEvent(event);
}
C/C++
1
https://gitee.com/evita/JTickets.git
git@gitee.com:evita/JTickets.git
evita
JTickets
JTickets
master

搜索帮助