mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
27 lines
515 B
C++
27 lines
515 B
C++
#ifndef DRAWERTH_ME2SCANNER_H
|
|
#define DRAWERTH_ME2SCANNER_H
|
|
|
|
#define ME2YPOS 100
|
|
#define ME2GRADPOS 10
|
|
#include "STh.h"
|
|
|
|
class DrawerTh_ME2Scanner : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
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
|