2015-02-24 14:00:19 +00:00
|
|
|
#ifndef DRAWERTH_ME2SCANNER_H
|
|
|
|
#define DRAWERTH_ME2SCANNER_H
|
|
|
|
|
2015-03-17 14:30:53 +00:00
|
|
|
#define ME2YPOS 97
|
2015-03-07 17:31:48 +00:00
|
|
|
#define ME2GRADPOS 10
|
2015-02-24 14:00:19 +00:00
|
|
|
#include "STh.h"
|
|
|
|
|
|
|
|
class DrawerTh_ME2Scanner : public QThread
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-03-22 00:43:15 +00:00
|
|
|
static int vecSize;
|
2015-03-10 14:35:50 +00:00
|
|
|
static QList<QGraphicsPathItem*> itmList;
|
2015-03-07 17:31:48 +00:00
|
|
|
static QVector<QPointF> polyVect;
|
|
|
|
|
2015-02-24 14:00:19 +00:00
|
|
|
static void doEmitionAddPolyLine();
|
|
|
|
static void doEmitDrawTextPlacers();
|
|
|
|
|
|
|
|
public: signals: void sAddPolyLine();
|
|
|
|
public: signals: void sDrawTextPlacers();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void run();
|
|
|
|
};
|
|
|
|
extern DrawerTh_ME2Scanner *dtME2;
|
|
|
|
#endif // DRAWERTH_ME2SCANNER_H
|