summaryrefslogtreecommitdiff
path: root/state.h
diff options
context:
space:
mode:
authormrwastl <mrwastl@users.sourceforge.net>2010-06-18 22:52:36 +0200
committermrwastl <mrwastl@users.sourceforge.net>2010-06-18 22:52:36 +0200
commitd8f8154bb9967da609354b27e25ae6f47ba6dd27 (patch)
tree2d34e0601ca87a024d6e13a295c8883ee73ec9fb /state.h
parent4f8e89fbe330a263130ca066a1671297f939e42d (diff)
downloadvdr-plugin-graphlcd-d8f8154bb9967da609354b27e25ae6f47ba6dd27.tar.gz
vdr-plugin-graphlcd-d8f8154bb9967da609354b27e25ae6f47ba6dd27.tar.bz2
new class for external services (service informations from other plugins: defined for now: radiotext, lcr, femon); radiotext/lcr-hack no longer necessary because of ext. services; new tokens for ext. services; bug fixes (casting, uint64_t, update detection); patches for femon <= 1.7.7
Diffstat (limited to 'state.h')
-rw-r--r--state.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/state.h b/state.h
index 5182586..a584bd0 100644
--- a/state.h
+++ b/state.h
@@ -93,23 +93,6 @@ struct tVolumeState
uint64_t lastChange;
};
-// Radiotext
-struct RadioTextService_v1_0 {
- int rds_info;
- int rds_pty;
- char *rds_text;
- char *rds_title;
- char *rds_artist;
- struct tm *title_start;
-};
-
-// LcrData
-struct LcrService_v1_0 {
- cString destination;
- cString price;
- cString pulse;
-};
-
class cGraphLCDDisplay;
class cGraphLCDState : public cStatus
@@ -129,11 +112,6 @@ private:
tOsdState mOsd;
tVolumeState mVolume;
- RadioTextService_v1_0 checkRTSData, currRTSData;
- LcrService_v1_0 checkLcrData, currLcrData;
- bool rtsChanged, rtsActive;
- bool lcrChanged, lcrActive;
-
void SetChannel(int ChannelNumber);
void UpdateChannelInfo(void);
void UpdateEventInfo(void);
@@ -168,8 +146,6 @@ public:
tOsdState GetOsdState();
tVolumeState GetVolumeState();
bool ShowMessage();
-
- bool CheckServiceEventUpdate();
};
#endif