标签:cpp 核心 gcc dpi 级别 default 干货 res 带来
上次在写可视化数据大屏电子看板项目的时候,为了逐步移除对QChart的依赖(主要是因为QChart真的太垃圾了,是所有Qt的模块中源码最烂的一个,看过源码的人没有一个不吐槽,不仅不支持10W级别的数据量曲线展示,居然一个饼图控件,文字部分的展示还用QLabel来显示的,这么低效率的方式都有),起初曲线图和柱状图等都用QCustomPlot替代了,就剩一个饼图需要自己用无敌的QPainter来绘制了,绘制对应的背景区域难度不大,稍微会用QPainter的人都可以实现,用的就是drawPie绘制即可,关键是如何在自己所在的区域绘制对应的文字和百分比,这个需要找到对应区域,然后找到合理的位置摆放文字,这个可能就需要用到一点数学知识了,从圆中心开始,给定对应的角度,对应的偏离值,计算偏离值对应的中心点坐标,此坐标作为绘制文字区域的中心,然后四周扩散一定的距离即可。
#ifndef CUSTOMPIE_H
#define CUSTOMPIE_H
/**
* 自定义饼图控件 整理:feiyangqingyun(QQ:517216493) 2019-5-21
* 1:可设置文字颜色
* 2:可设置边框颜色
* 3:可设置颜色集合
* 4:可设置某个区域是否弹出
* 5:可设置是否显示百分比
*/
#include <QWidget>
#ifdef quc
#if (QT_VERSION < QT_VERSION_CHECK(5,7,0))
#include <QtDesigner/QDesignerExportWidget>
#else
#include <QtUiPlugin/QDesignerExportWidget>
#endif
class QDESIGNER_WIDGET_EXPORT CustomPie : public QWidget
#else
class CustomPie : public QWidget
#endif
{
Q_OBJECT
Q_PROPERTY(QColor textColor READ getTextColor WRITE setTextColor)
Q_PROPERTY(QColor borderColor READ getBorderColor WRITE setBorderColor)
public:
CustomPie(QWidget *parent = 0);
~CustomPie();
protected:
void paintEvent(QPaintEvent *);
void drawPie(QPainter *painter);
private:
bool explodedAll; //是否全部展开
int explodedIndex; //展开的索引
bool showPercent; //是否显示百分比
double holeSize; //空心占比
QColor textColor; //文字颜色
QColor borderColor; //边框颜色
QList<QColor> colors; //颜色集合
QList<QString> labels; //标签集合
QList<double> values; //值集合
private:
//获取总值
double getSumValue();
//根据偏移值获取偏移点坐标
QPoint getOffsetPoint(double angel, int offset = 6);
public:
QColor getTextColor() const;
QColor getBorderColor() const;
public Q_SLOTS:
//设置是否全部展开+展开的索引
void setExplodedAll(bool explodedAll);
void setExplodedIndex(int index);
//设置是否启用默认颜色
void setDefaultColor(bool defaultColor);
//设置文字颜色+边框颜色
void setTextColor(const QColor &textColor);
void setBorderColor(const QColor &borderColor);
//设置颜色集合
void setColors(const QList<QColor> &colors);
//初始化饼图
void initPie();
//添加饼图数据
void appendPie(const QString &label, double value, const QString &tip = "");
//设置数据
void setDataPie();
//重新设置百分比
void loadPercent();
//清除饼图
void clearPie();
//设置空心占比
void setHoleSize(double holeSize);
};
#endif // CUSTOMPIE_H
void CustomPie::paintEvent(QPaintEvent *)
{
int width = this->width();
int height = this->height();
int side = qMin(width, height);
//绘制准备工作,启用反锯齿,平移坐标轴中心,等比例缩放
QPainter painter(this);
painter.setRenderHints(QPainter::Antialiasing | QPainter::TextAntialiasing);
painter.translate(width / 2, height / 2);
painter.scale(side / 200.0, side / 200.0);
//绘制饼图
drawPie(&painter);
}
void CustomPie::drawPie(QPainter *painter)
{
painter->save();
int radius = 93;
QRect rect(-radius, -radius, radius * 2, radius * 2);
double startAngle = 0;
double sum = getSumValue();
//逐个取出值并绘制饼图区域和对应的文字
int count = labels.count();
for (int i = 0; i < count; ++i) {
//取出值并计算当前值占比面积
double value = values.at(i);
double arcLength = value / sum * 360;
double percent = value / sum * 100;
QRect pieRect = rect;
//如果当前区域展开则需要设置边框
painter->setPen(Qt::NoPen);
if (explodedIndex == i || explodedAll) {
painter->setPen(borderColor);
QPoint center = pieRect.center();
int mid = startAngle + arcLength / 2;
center += getOffsetPoint(mid);
pieRect.moveCenter(center);
}
//从颜色集合中取出颜色
painter->setBrush(colors.at(i));
painter->drawPie(pieRect, startAngle * 16, arcLength * 16);
QString strValue = labels.at(i);
if (showPercent && percent > 7) {
strValue = QString("%1%2%3%").arg(strValue).arg(strValue.isEmpty() ? "" : "\n").arg(QString::number(percent, 'f', 0));
}
int mid = startAngle + arcLength / 2;
int offset = 60;
if (percent >= 50) {
offset = 45;
} else if (percent >= 30) {
offset = 55;
} else if (percent >= 15) {
offset = 60;
}
QPoint p = getOffsetPoint(mid, offset);
QRect textRect;
textRect.setX(p.x() - 40);
textRect.setY(p.y() - 30);
textRect.setWidth(80);
textRect.setHeight(60);
painter->setPen(Qt::black);
//painter->drawRect(textRect);
QFont font;
font.setPixelSize(strValue.isEmpty() ? 20 : 17);
painter->setFont(font);
painter->setPen(textColor);
painter->drawText(textRect, Qt::AlignCenter, strValue);
startAngle += arcLength;
}
painter->restore();
}
标签:cpp 核心 gcc dpi 级别 default 干货 res 带来
原文地址:https://www.cnblogs.com/feiyangqingyun/p/10970777.html