00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef CHANNELSCANREGION_H
00024 #define CHANNELSCANREGION_H
00025
00026 #include <qdom.h>
00027
00033 class ChannelScannerRegion
00034 {
00035 public:
00036 enum PictureFormat {
00037 AUTO, NTSC, PAL, SECAM, UNKNOWN
00038 };
00039
00040 ChannelScannerRegion();
00041 ~ChannelScannerRegion();
00042
00043 bool load( const QString &filename );
00044
00048 bool first();
00049
00053 bool next();
00054
00055
00056
00057
00058 QString name() const { return regName; }
00059 PictureFormat format() const { return fmt; }
00060
00061
00062
00063
00064 QString id() const { return label; }
00065 unsigned long frequency() const { return freq/16; }
00066
00067 protected:
00068 bool setup();
00069
00070 bool readTuning();
00071 bool readInfo();
00072
00073 unsigned long readTextULong( const QDomElement &elem, const QString &tag );
00074 QString readText( const QDomElement &elem, const QString &tag );
00075 QDomElement readElement( const QDomNode &n, const QString &tag );
00076
00077 private:
00078 QDomDocument doc;
00079 QDomElement info;
00080 QDomElement tunings;
00081
00082
00083 QString regName;
00084 PictureFormat fmt;
00085
00086
00087 QDomElement elem;
00088 QString label;
00089 unsigned long freq;
00090 };
00091
00092 #endif // CHANNELSCANREGION_H
00093
00094
00095
00096
00097
00098
00099
00100
00101