mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 10:42:21 +00:00
28 lines
538 B
C++
28 lines
538 B
C++
#ifndef DRAWERTH_ME2SCANNER_H
|
|
#define DRAWERTH_ME2SCANNER_H
|
|
|
|
#define ME2YPOS 97
|
|
#define ME2GRADPOS 10
|
|
#include "STh.h"
|
|
|
|
class DrawerTh_ME2Scanner : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static int vecSize;
|
|
static QList<QGraphicsPathItem*> itmList;
|
|
static QVector<QPointF> polyVect;
|
|
|
|
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
|