X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8faef7ccbc4b4e192da06de7e1a2a7f1dff7ec91..057945a5cdea8eae70d6f8877fbe787a261e3614:/include/wx/anidecod.h?ds=sidebyside diff --git a/include/wx/anidecod.h b/include/wx/anidecod.h index df5be1a60b..2923887b49 100644 --- a/include/wx/anidecod.h +++ b/include/wx/anidecod.h @@ -2,7 +2,6 @@ // Name: wx/anidecod.h // Purpose: wxANIDecoder, ANI reader for wxImage and wxAnimation // Author: Francesco Montorsi -// CVS-ID: $Id$ // Copyright: (c) 2006 Francesco Montorsi // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -12,7 +11,7 @@ #include "wx/defs.h" -#if wxUSE_STREAMS && wxUSE_ICO_CUR +#if wxUSE_STREAMS && (wxUSE_ICO_CUR || wxUSE_GIF) #include "wx/stream.h" #include "wx/image.h" @@ -44,7 +43,7 @@ public: virtual wxColour GetTransparentColour(unsigned int frame) const; // implementation of wxAnimationDecoder's pure virtuals - + virtual bool Load( wxInputStream& stream ); bool ConvertToImage(unsigned int frame, wxImage *image) const; @@ -58,7 +57,7 @@ private: // wxAnimationDecoder pure virtual: virtual bool DoCanRead( wxInputStream& stream ) const; // modifies current stream position (see wxAnimationDecoder::CanRead) - + // frames stored as wxImage(s): ANI files are meant to be used mostly for animated // cursors and thus they do not use any optimization to encode differences between // two frames: they are just a list of images to display sequentially. @@ -76,6 +75,6 @@ private: }; -#endif // wxUSE_STREAMS && wxUSE_ICO_CUR +#endif // wxUSE_STREAMS && (wxUSE_ICO_CUR || wxUSE_GIF) #endif // _WX_ANIDECOD_H