1 Star 0 Fork 1

Ccing/QtiASL

forked from softxing/Xiasl 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
MyTabPopup.h 476 Bytes
一键复制 编辑 原始数据 按行查看 历史
ic005k 提交于 2021-01-11 20:33 . Add files via upload
#ifndef MYTABPOPUP_H
#define MYTABPOPUP_H
#include <QDialog>
/**
* @brief 一个容纳tab弹出页的窗口
*/
class MyTabPopup : public QDialog
{
Q_OBJECT
public:
explicit MyTabPopup(QWidget *parent = nullptr);
void setContentWidget(QWidget *page);
QWidget* getContentWidget();
protected:
bool event(QEvent *event) override;
signals:
void dragRelease(const QPoint &globalPos);
private:
QWidget *content=nullptr;
};
#endif // MYTABPOPUP_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Ccing/QtiASL.git
git@gitee.com:Ccing/QtiASL.git
Ccing
QtiASL
QtiASL
master

搜索帮助