diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-05-08 20:08:22 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-05-08 20:08:22 +0000 |
| commit | ca7d92c97764d916bb8dd6731efa1ccff693b944 (patch) | |
| tree | d5883fbc6b73cd2ce8bf4e85f64e26d26a605ac7 /lib/dvb/db.h | |
| parent | 4bbe1d7e132ead361bf179b8ee618bdaba2335dc (diff) | |
| download | enigma2-ca7d92c97764d916bb8dd6731efa1ccff693b944.tar.gz enigma2-ca7d92c97764d916bb8dd6731efa1ccff693b944.zip | |
fix "Clearall before scan" handling
add ability to reset the newfound flag from single service via channellist context menu
add ability to the newfound flags for all services from a "orbital position" via channellist context menu
Diffstat (limited to 'lib/dvb/db.h')
| -rw-r--r-- | lib/dvb/db.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/dvb/db.h b/lib/dvb/db.h index 49624f35..430a5af0 100644 --- a/lib/dvb/db.h +++ b/lib/dvb/db.h @@ -17,7 +17,6 @@ DECLARE_REF(eDVBDB); friend class eDVBDBSatellitesQuery; friend class eDVBDBProvidersQuery; - struct channel { ePtr<iDVBFrontendParameters> m_frontendParameters; @@ -33,13 +32,16 @@ DECLARE_REF(eDVBDB); ~eDVBDB(); #endif public: - RESULT removeService(eServiceReferenceDVB service); - RESULT removeServices(eDVBChannelID chid, unsigned int orb_pos); - RESULT addFlag(eServiceReferenceDVB service, unsigned int flagmask); - RESULT removeFlag(eServiceReferenceDVB service, unsigned int flagmask); - RESULT removeFlags(unsigned int flagmask, eDVBChannelID chid, unsigned int orb_pos); -#ifndef SWIG // iDVBChannelList + RESULT removeFlags(unsigned int flagmask, int dvb_namespace=-1, int tsid=-1, int onid=-1, unsigned int orb_pos=0xFFFFFFFF); + RESULT removeServices(int dvb_namespace=-1, int tsid=-1, int onid=-1, unsigned int orb_pos=0xFFFFFFFF); + RESULT removeService(const eServiceReference &service); + RESULT addFlag(const eServiceReference &service, unsigned int flagmask); + RESULT removeFlag(const eServiceReference &service, unsigned int flagmask); +#ifndef SWIG + RESULT removeFlags(unsigned int flagmask, eDVBChannelID chid, unsigned int orb_pos); + RESULT removeServices(eDVBChannelID chid, unsigned int orb_pos); + RESULT addChannelToList(const eDVBChannelID &id, iDVBFrontendParameters *feparm); RESULT removeChannel(const eDVBChannelID &id); |
