00001
00003
00004
00005
00006
00007
00008
00009
00010
00012
00013 #ifndef VP1LETTERS_H
00014 #define VP1LETTERS_H
00015
00016 #include "VP1Base/VP1HelperClassBase.h"
00017 #include <QtCore/QObject>
00018
00019 class SoMaterial;
00020 class SoSeparator;
00021
00022 class VP1Letters : public QObject, public VP1HelperClassBase {
00023
00024 Q_OBJECT
00025
00026 public:
00027
00028 VP1Letters( SoMaterial * mat,
00029 SoSeparator * attachsep,
00030 IVP1System * sys,QObject * parent = 0);
00031 virtual ~VP1Letters();
00032
00033 public slots:
00034 void setShown(bool);
00035 void setZPos(const double&);
00036 void setVerticalPosition(const double&);
00037
00038 private:
00039 class Imp;
00040 Imp * d;
00041
00042 };
00043
00044 #endif