You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
406 B
21 lines
406 B
14 years ago
|
#ifndef UB_ABSTRACTDRAWRULER_H_
|
||
|
#define UB_ABSTRACTDRAWRULER_H_
|
||
|
|
||
|
#include <QtGui>
|
||
|
class UBGraphicsScene;
|
||
|
|
||
|
class UBAbstractDrawRuler : public QObject
|
||
|
{
|
||
|
Q_OBJECT;
|
||
|
|
||
|
public:
|
||
|
UBAbstractDrawRuler();
|
||
|
~UBAbstractDrawRuler();
|
||
|
|
||
|
virtual void StartLine(const QPointF& position, qreal width) = 0;
|
||
|
virtual void DrawLine(const QPointF& position, qreal width) = 0;
|
||
|
virtual void EndLine() = 0;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|