2 Star 2 Fork 1

softxing/Xiasl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MyTabPopup.cpp 810 Bytes
一键复制 编辑 原始数据 按行查看 历史
ic005k 提交于 2021-04-19 11:35 . Add files via upload
#include "MyTabPopup.h"
#include <QDebug>
#include <QMouseEvent>
#include <QVBoxLayout>
MyTabPopup::MyTabPopup(QWidget* parent)
: QDialog(parent)
{
}
void MyTabPopup::setContentWidget(QWidget* page)
{
if (!page)
return;
content = page;
QVBoxLayout* layout = new QVBoxLayout(this);
layout->setMargin(0);
layout->addWidget(page);
}
QWidget* MyTabPopup::getContentWidget()
{
return content;
}
bool MyTabPopup::event(QEvent* event)
{
if (event->type() == QEvent::MouseButtonRelease) {
}
if (event->type() == QEvent::NonClientAreaMouseButtonRelease) {
QMouseEvent* e = static_cast<QMouseEvent*>(event);
if (e && e->button() == Qt::LeftButton) {
emit dragRelease(e->globalPos());
}
}
return QDialog::event(event);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/softxing/Xiasl.git
[email protected]:softxing/Xiasl.git
softxing
Xiasl
Xiasl
master

搜索帮助