#include "TQtRConfig.h"
#include "TQtMarker.h"
#if QT_VERSION >= 0x40000
#include <Q3PointArray>
#endif /* QT_VERSION */
ClassImp(TQtMarker)
TQtMarker::TQtMarker(int n, TPoint *xy, int type) : fNumNode(n),
fChain(0), fCindex(0), fMarkerType(type)
{
if (type >= 2) {
#ifdef R__QTWIN32
fChain.setPoints(n,(QCOORD *)xy);
#else
fChain.resize(n);
TPoint *rootPoint = xy;
for (int i=0;i<n;i++,rootPoint++)
fChain.setPoint(i,rootPoint->fX,rootPoint->fY);
#endif
}
}
TQtMarker::~TQtMarker(){}
int TQtMarker::GetNumber() const {return fNumNode;}
#if QT_VERSION < 0x40000
QPointArray &TQtMarker::GetNodes() {return fChain;}
#else /* QT_VERSION */
Q3PointArray &TQtMarker::GetNodes() {return fChain;}
#endif /* QT_VERSION */
int TQtMarker::GetType() const {return fMarkerType;}
void TQtMarker::SetMarker(int n, TPoint *xy, int type)
{
fNumNode = n;
fMarkerType = type;
if (fMarkerType >= 2) {
#ifdef R__QTWIN32
fChain.setPoints(n,(QCOORD *)xy);
#else
fChain.resize(n);
TPoint *rootPoint = xy;
for (int i=0;i<n;i++,rootPoint++)
fChain.setPoint(i,rootPoint->fX,rootPoint->fY);
#endif
}
}
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.