1 Star 2 Fork 0

doner/Screenshot-with-picture-edit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myrect.cpp 866 Bytes
一键复制 编辑 原始数据 按行查看 历史
lidian1993 提交于 2018-01-16 20:57 . Add files via upload
#include "myrect.h"
#include <QPainter>
#include <QDebug>
#include <QPen>
MyRect::MyRect()
{
}
MyRect::MyRect(QRectF rect) : rect(rect.x(), rect.y(), rect.width(), rect.height())
{
}
void MyRect::setText(QString str)
{
this->str = str;
}
void MyRect::setLocation(qreal x, qreal y)
{
//设置左边界的坐标,右边界保持不变
rect.setX(x);
rect.setY(y - 21);
//设置长度为正,相当于设置右边界
rect.setWidth(71);
rect.setHeight(21);
}
void MyRect::drawMe(QPainter &painter)
{
painter.save();
painter.setPen(QPen());
painter.setBrush(QColor(0, 0, 0, 150));
painter.drawRect(rect);
//设置白色文字
painter.setPen(QColor(255, 255, 255));
//居中画出文字
painter.drawText(rect, Qt::AlignCenter, str);
painter.restore();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/doner/Screenshot-with-picture-edit.git
git@gitee.com:doner/Screenshot-with-picture-edit.git
doner
Screenshot-with-picture-edit
Screenshot-with-picture-edit
master

搜索帮助