18 lines
347 B
C
18 lines
347 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QtGui/QPainter>
|
||
|
|
#include <QtGui/QPainterPath>
|
||
|
|
|
||
|
|
#include "global.h"
|
||
|
|
|
||
|
|
class ConnectionGeometry;
|
||
|
|
class ConnectionGraphicsObject;
|
||
|
|
|
||
|
|
class ConnectionPainter
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void paint(QPainter *painter, ConnectionGraphicsObject const &cgo);
|
||
|
|
|
||
|
|
static QPainterPath getPainterStroke(ConnectionGraphicsObject const &cgo);
|
||
|
|
};
|