Subversion Repositories seema-scanner

Rev

Rev 139 | Rev 199 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 139 Rev 167
Line 19... Line 19...
19
 
19
 
20
class SMCaptureWorker : public QObject{
20
class SMCaptureWorker : public QObject{
21
    Q_OBJECT
21
    Q_OBJECT
22
 
22
 
23
    public:
23
    public:
24
        SMCaptureWorker(){}
24
        SMCaptureWorker(): setupSuccessful(0), working(0){}
25
        ~SMCaptureWorker();
25
        ~SMCaptureWorker();
26
    public slots:
26
    public slots:
27
        void setup();
27
        void setup();
28
        void doWork();
28
        void doWork();
29
        void rotateTo(float angle);
29
        void rotateTo(float angle);
Line 40... Line 40...
40
        void rotatedTo(float angle);
40
        void rotatedTo(float angle);
41
        void busy();
41
        void busy();
42
        void done();
42
        void done();
43
        void finished();
43
        void finished();
44
    private:
44
    private:
-
 
45
        bool setupSuccessful;
45
        bool working;
46
        bool working;
46
        int delay;
47
        int delay;
47
        int stackingCalibration;
48
        int stackingCalibration;
48
        int stackingAcquisition;
49
        int stackingAcquisition;
49
        QString codec;
50
        QString codec;