2014-08-08 23:14:49 +00:00
|
|
|
#ifndef DRAWERTH_VOICESCANNER_H
|
|
|
|
#define DRAWERTH_VOICESCANNER_H
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "nesca_3.h"
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
class DrawerTh_VoiceScanner : public QThread
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
public: signals: void sAddLine();
|
2014-09-07 02:46:28 +00:00
|
|
|
public: signals: void sDrawGrid(int factor);
|
2014-08-08 23:14:49 +00:00
|
|
|
public: signals: void sDrawTextPlacers();
|
|
|
|
public:
|
|
|
|
void doEmitAddLine();
|
2014-09-07 02:46:28 +00:00
|
|
|
void doEmitDrawGrid(int factor);
|
2014-08-08 23:14:49 +00:00
|
|
|
void doEmitDrawTextPlacers();
|
|
|
|
protected:
|
|
|
|
void run();
|
|
|
|
};
|
|
|
|
extern DrawerTh_VoiceScanner *vsTh;
|
|
|
|
#endif // DRAWERTH_VOICESCANNER_H
|