1 Star 1 Fork 1

幻煜/SKYserialtool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
clickablecombobox.h 473 Bytes
一键复制 编辑 原始数据 按行查看 历史
huanyuai 提交于 2024-09-01 21:55 . 第一次提交
#ifndef CLICKABLECOMBOBOX_H
#define CLICKABLECOMBOBOX_H
#include <QComboBox>
#include <QMouseEvent>
class ClickableComboBox : public QComboBox
{
Q_OBJECT
public:
using QComboBox::QComboBox;
signals:
void clicked();
protected:
void mousePressEvent(QMouseEvent *event) override
{
if (event->button() == Qt::LeftButton) {
emit clicked();
}
QComboBox::mousePressEvent(event);
}
};
#endif // CLICKABLECOMBOBOX_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/huanyuai/SKYserialtool.git
git@gitee.com:huanyuai/SKYserialtool.git
huanyuai
SKYserialtool
SKYserialtool
main

搜索帮助