-
Notifications
You must be signed in to change notification settings - Fork 15
/
querier.h
90 lines (78 loc) · 2.44 KB
/
querier.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
* header for querier
* $Id$
* (part of FmStick).
*
* (C) 2011 Serge <piratfm@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef QUERIER_H
#define QUERIER_H
#include <QtGui>
#include <QObject>
//#include <QThread>
//due: http://developer.qt.nokia.com/wiki/Threads_Events_QObjects
//When shouldnt I use threads?
//class QuerierThread : public QThread
class Querier : public QObject
{
Q_OBJECT
public:
explicit Querier(QObject *parent = 0);
//void run(); // this is virtual method, we must implement it in our subclass of QThread
QString rdsRTFile;
QRegExp rdsRTPlusContent1RegExp;
QRegExp rdsRTPlusContent2RegExp;
QRegExp rdsRTPlusContent3RegExp;
QRegExp rdsRTPlusContent4RegExp;
int rdsRTPlusContent1Type;
int rdsRTPlusContent2Type;
int rdsRTPlusContent3Type;
int rdsRTPlusContent4Type;
bool rdsRTPlusDisItem;
QTimer timer;
QMutex HidAccessMutex;
int sleepIntrval;
int rdsInterval;
int rdsToWait;
bool is_ready;
bool device_lost;
bool still_not_exists;
bool parse_rtplus_items(QString &rtPlusLine, QRegExp &rtPlusRegExp, int item_id, QList<int> &itemsList);
signals:
void setASQOvermod(bool);
void setASQHighLevel(bool);
void setASQLowLevel(bool);
void setASQLevel(int);
/* 0 - no tune, 1 - tuned, 2 - error */
void setTransmitterTuned(int);
void setFrontendFound(bool);
void setTransmitterAntCap(double);
void setRDSRTMessage(QString);
void setRDSRTPlusMarks(QList<int> &itemsList, int retry_id);
public slots:
void CheckFrontendFlags();
private:
double last_freq;
int last_power;
double last_rfcap;
QString last_rdsLine;
int numRuns;
int UpdateAsqState();
int UpdateTuneState();
//int HandleRDSInt();
};
#endif // QUERIER_H