1 Star 0 Fork 4

fendouxiaozi/thingsChecker

forked from zekdot/thingsChecker 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dialog.h 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
#ifndef DIALOG_H
#define DIALOG_H
#include <QPoint>
#include <QDialog>
#include "item.h"
#include <QVBoxLayout>
#include <QPalette>
#include <QEvent>
#include <QList>
#include <QMap>
#include <QTimer>
#include "item.h"
#include "itemdao.h"
#include "createnewitem.h"
class Dialog : public QDialog
{
Q_OBJECT
public:
/**
* @brief Dialog 构造函数
* @param parent 父窗口
*/
Dialog(QWidget *parent = 0);
/**
* @brief mouseMoveEvent 鼠标移动事件
* @param event 事件
*/
void mouseMoveEvent(QMouseEvent *event);
/**
* @brief mousePressEvent 鼠标按压事件
* @param event 事件
*/
void mousePressEvent(QMouseEvent *event);
public slots:
bool eventFilter(QObject *, QEvent *);
/**
* @brief refreshDialog 刷新界面
*/
void refreshDialog();
private:
/**
* @brief renderColor 根据情况染色
* @param item 项目指针
*/
void renderColor(Item * item);
QPoint dragPosition;//保存鼠标点相对窗体左上角的偏移值
QVBoxLayout * layout;//整体布局
QVBoxLayout *list;//列表项布局
QLabel * add;//添加新的内容
QTimer * timer;//计时器
};
#endif // DIALOG_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/luoxiaona/thingsChecker.git
[email protected]:luoxiaona/thingsChecker.git
luoxiaona
thingsChecker
thingsChecker
master

搜索帮助