加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
DepartNodeItem.h 815 Bytes
一键复制 编辑 原始数据 按行查看 历史
老杜095 提交于 2018-10-10 18:25 . Bug修正
#ifndef DEPARTNODEITEM_H
#define DEPARTNODEITEM_H
#include <QLabel>
#include <QPaintEvent>
#include <QPropertyAnimation>
#define INDENTATION 20
class DepartNodeItem : public QLabel
{
Q_OBJECT
Q_PROPERTY(int rotation READ rotation WRITE setRotation)
public:
DepartNodeItem(QWidget *parent = 0);
~DepartNodeItem();
void setText(const QString& title);
void setExpanded(bool expand);
int getIndentation();
void setLevel(int level);
int getLevel();
QString getName();
private:
int rotation();
void setRotation(int rotation);
private:
void paintEvent(QPaintEvent *event);
private:
QPropertyAnimation *m_animation;
QString m_name;
QString m_id;
int m_rotation;
int m_indentation;
int m_level;
};
#endif // DEPARTNODEITEM_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化