diff options
author | Andreas Brachold <vdr07@deltab.de> | 2006-01-18 19:06:58 +0000 |
---|---|---|
committer | Andreas Brachold <vdr07@deltab.de> | 2006-01-18 19:06:58 +0000 |
commit | eba89a47264b7c81d6248cdad8d03a57718979a5 (patch) | |
tree | aaf550a59dd39484a2fb4d1a369175e25097840d /control-image.h | |
parent | 09842bddc7ce23b92648b95004407679be99cb03 (diff) | |
download | vdr-plugin-image-eba89a47264b7c81d6248cdad8d03a57718979a5.tar.gz vdr-plugin-image-eba89a47264b7c81d6248cdad8d03a57718979a5.tar.bz2 |
- fix first image was'nt rotation depends founded exif data
- fix show vdr info screen via official vdr way
Diffstat (limited to 'control-image.h')
-rw-r--r-- | control-image.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/control-image.h b/control-image.h index 4e7d5bb..dd964b9 100644 --- a/control-image.h +++ b/control-image.h @@ -33,10 +33,6 @@ class cImagePlayer; class cImageMenuCommands; -#ifdef HAVE_LIBEXIF -class cImageMenuExif; -#endif - class cImageControl : public cControl { @@ -53,10 +49,7 @@ class cImageControl cImagePlayer *player; /** Interface to Menu with Usercommands*/ cImageMenuCommands *m_pCmdMenu; -#ifdef HAVE_LIBEXIF - /** Interface to Menu to show exif infomations*/ - cImageMenuExif *m_pExifMenu; -#endif + /** Current playing mode (Jump <-> Normal <-> Zoom) */ ePlayMode m_ePlayMode; /** Remember the active Slideshow mode before Jump or Zoom used */ @@ -144,7 +137,7 @@ private: eOSState ProcessKeyZoomMode(eKeys nKey); eOSState ProcessKeyCommands(eKeys nKey); #ifdef HAVE_LIBEXIF - eOSState ProcessKeyExif(eKeys nKey); + virtual cOsdObject *GetInfo(void); #endif void NextImage(int Step); |