diff options
| author | louis <louis.braun@gmx.de> | 2013-12-23 09:12:19 +0100 |
|---|---|---|
| committer | louis <louis.braun@gmx.de> | 2013-12-23 09:12:19 +0100 |
| commit | b8754b03ee58576511ea35ac627420c36a88d43b (patch) | |
| tree | b45b30f47306f17362e9a7c461e7228509b3f84f /imagecache.c | |
| parent | 0a1e7935130518c41a9720e776a93e8520160ede (diff) | |
| download | vdr-plugin-tvguide-b8754b03ee58576511ea35ac627420c36a88d43b.tar.gz vdr-plugin-tvguide-b8754b03ee58576511ea35ac627420c36a88d43b.tar.bz2 | |
Added feature to jump to a specific channel with number keys
Diffstat (limited to 'imagecache.c')
| -rw-r--r-- | imagecache.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/imagecache.c b/imagecache.c index 9196955..9ddbd04 100644 --- a/imagecache.c +++ b/imagecache.c @@ -9,6 +9,18 @@ cImageCache::cImageCache() : cImageMagickWrapper() {
tempStaticLogo = NULL;
+ groupsHead = NULL;
+ groupsBottom = NULL;
+ groupsLeft = NULL;
+ groupsRight = NULL;
+ imgLeft = NULL;
+ imgLeftActive = NULL;
+ imgRight = NULL;
+ imgRightActive = NULL;
+ imgHead = NULL;
+ imgHeadActive = NULL;
+ imgBottom = NULL;
+ imgBottomActive = NULL;
}
cImageCache::~cImageCache() {
@@ -110,6 +122,11 @@ void cImageCache::CreateOsdIconCache(void) { success = LoadIcon("osdElements/epgview_header");
if (success)
InsertIntoOsdElementCache(oeEpgHeader, geoManager.osdWidth, geoManager.epgViewHeaderHeight);
+
+ //Channel Jump
+ success = LoadIcon("osdElements/channel_jump");
+ if (success)
+ InsertIntoOsdElementCache(oeChannelJump, geoManager.channelJumpWidth, geoManager.channelJumpHeight);
}
void cImageCache::PrepareGridIconCache(void) {
|
