我有一个关于在场景上绘制特定弧线的问题。我有关于弧的这些信息:
起始坐标,起始角度,结束角度,半径。
但我不能有效地使用它们QPainter
。实际上我尝试QPainterPath
使用形状来显示QGraphicsScene
,addPath("")
但我无法正确使用功能。我的问题是关于如何使用这些信息来绘制弧线以及如何在我的图形场景中显示它。
我有一个关于在场景上绘制特定弧线的问题。我有关于弧的这些信息:
起始坐标,起始角度,结束角度,半径。
但我不能有效地使用它们QPainter
。实际上我尝试QPainterPath
使用形状来显示QGraphicsScene
,addPath("")
但我无法正确使用功能。我的问题是关于如何使用这些信息来绘制弧线以及如何在我的图形场景中显示它。
您可以使用 aQGraphicsEllipseItem
将椭圆、圆和线段/弧添加到 aQGraphicsScene
中。
尝试
QGraphicsEllipseItem* item = new QGraphicsEllipseItem(x, y, width, height);
item->setStartAngle(startAngle);
item->setSpanAngle(endAngle - startAngle);
scene->addItem(item);
不幸的是,QGraphicsEllipseItem 只支持QPainter::drawEllipse()
和QPainter::drawPie()
- 后者可用于绘制弧线,但有副作用,即从弧线的起点和终点到中心始终绘制一条线。
如果您需要一个真正的弧,您可以例如子类QGraphicsEllipseItem
化并覆盖该paint()
方法:
class QGraphicsArcItem : public QGraphicsEllipseItem {
public:
QGraphicsArcItem ( qreal x, qreal y, qreal width, qreal height, QGraphicsItem * parent = 0 ) :
QGraphicsEllipseItem(x, y, width, height, parent) {
}
protected:
void paint ( QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * widget) {
painter->setPen(pen());
painter->setBrush(brush());
painter->drawArc(rect(), startAngle(), spanAngle());
// if (option->state & QStyle::State_Selected)
// qt_graphicsItem_highlightSelected(this, painter, option);
}
};
然后您仍然需要处理项目突出显示,不幸qt_graphicsItem_highlightSelected
的是 Qt 库中定义了一个静态函数。