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.
32 lines
521 B
32 lines
521 B
14 years ago
|
|
||
|
/*
|
||
|
* UBGraphicsRuler.h
|
||
|
*
|
||
|
* Created on: April 16, 2009
|
||
|
* Author: Jerome Marchaud
|
||
|
*/
|
||
|
|
||
|
#ifndef UBGRAPHICSTRIANGLE_H_
|
||
|
#define UBGRAPHICSTRIANGLE_H_
|
||
|
|
||
|
#include <QtGui>
|
||
|
#include <QtSvg>
|
||
|
#include <QGraphicsPolygonItem>
|
||
|
|
||
|
#include "core/UB.h"
|
||
|
#include "domain/UBItem.h"
|
||
|
|
||
|
|
||
|
class UBGraphicsScene;
|
||
|
|
||
|
class UBGraphicsTriangle : public QObject, public QGraphicsPolygonItem, public UBItem
|
||
|
{
|
||
|
Q_OBJECT;
|
||
|
|
||
|
public:
|
||
|
UBGraphicsTriangle();
|
||
|
virtual ~UBGraphicsTriangle();
|
||
|
};
|
||
|
|
||
|
#endif /* UBGRAPHICSTRIANGLE_H_ */
|