加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ehome_img_btn.h 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
编号001 提交于 2024-11-03 21:21 . init
#ifndef EHOME_IMG_BTN_H
#define EHOME_IMG_BTN_H
#include <QPushButton>
#include "ehome_resimg.h"
#include "ui_ehome_img_btn.h"
enum ehome_icontype //头像的类型
{
eit_circle,//圆形
eit_rect //矩形
};
enum ehome_mtasktype //头像的类型
{
emt_inner,//圆形
emt_wideedge, //粗边
emt_thinedge //细边
};
class ehome_img_btn : public QPushButton, private Ui::ehome_img_btn
{
Q_OBJECT
public:
explicit ehome_img_btn(QWidget *parent = 0);
ehome_resimg *m_resimg;
QString m_path;
QString m_uid;
ehome_icontype m_type;
ehome_mtasktype m_mtasktype;
QPixmap m_fitpixmap;
bool m_needreq;//是否需要重新请求;
bool m_needtimer;//是否启动定时器;
void setUid(const QString &uid);
void setlocalPath(const QString &path);
void setPath(const QString &path);
void setPath(const QString &path,const QString uid);
QImage getRoundQImage(const QImage &img, QSize size);
void setType(const ehome_icontype &type);
void setMtasktype(const ehome_mtasktype &mtasktype);
~ehome_img_btn();
void setResimg(ehome_resimg *resimg);
void setnobuffer();
QAction *m_actiondelete;
QAction *m_actionreedit;
private:
void paintEvent(QPaintEvent *ev);
virtual bool event(QEvent *event);
void enterEvent(QEvent *enter);
// ehome_basemenu *m_menubtn;
public slots:
void slot_fleshicon();
};
#endif // EHOME_IMG_BTN_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化