123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- #include "StdAfx.h"
- #include "UIGifAnim.h"
- ///////////////////////////////////////////////////////////////////////////////////////
- namespace DuiLib
- {
- IMPLEMENT_DUICONTROL(CGifAnimUI)
- CGifAnimUI::CGifAnimUI(void)
- {
- m_pGifImage = NULL;
- m_pPropertyItem = NULL;
- m_nFrameCount = 0;
- m_nFramePosition = 0;
- m_bIsAutoPlay = true;
- m_bIsAutoSize = false;
- m_bIsPlaying = false;
- }
- CGifAnimUI::~CGifAnimUI(void)
- {
- DeleteGif();
- m_pManager->KillTimer( this, EVENT_TIEM_ID );
- }
- LPCTSTR CGifAnimUI::GetClass() const
- {
- return _T("GifAnimUI");
- }
- LPVOID CGifAnimUI::GetInterface( LPCTSTR pstrName )
- {
- if( _tcsicmp(pstrName, DUI_CTR_GIFANIM) == 0 ) return static_cast<CGifAnimUI*>(this);
- return CControlUI::GetInterface(pstrName);
- }
- void CGifAnimUI::DoInit()
- {
- InitGifImage();
- }
- bool CGifAnimUI::DoPaint(HDC hDC, const RECT& rcPaint, CControlUI* pStopControl)
- {
- if( !::IntersectRect( &m_rcPaint, &rcPaint, &m_rcItem ) ) return true;
- if ( NULL == m_pGifImage )
- {
- InitGifImage();
- }
- DrawFrame( hDC );
- return true;
- }
- void CGifAnimUI::DoEvent( TEventUI& event )
- {
- if( event.Type == UIEVENT_TIMER )
- OnTimer( (UINT_PTR)event.wParam );
- }
- void CGifAnimUI::SetVisible(bool bVisible /* = true */)
- {
- CControlUI::SetVisible(bVisible);
- if (bVisible)
- PlayGif();
- else
- StopGif();
- }
- void CGifAnimUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue)
- {
- if( _tcsicmp(pstrName, _T("bkimage")) == 0 ) SetBkImage(pstrValue);
- else if( _tcsicmp(pstrName, _T("autoplay")) == 0 ) {
- SetAutoPlay(_tcsicmp(pstrValue, _T("true")) == 0);
- }
- else if( _tcsicmp(pstrName, _T("autosize")) == 0 ) {
- SetAutoSize(_tcsicmp(pstrValue, _T("true")) == 0);
- }
- else
- CControlUI::SetAttribute(pstrName, pstrValue);
- }
- void CGifAnimUI::SetBkImage(LPCTSTR pStrImage)
- {
- if( m_sBkImage == pStrImage || NULL == pStrImage) return;
- m_sBkImage = pStrImage;
- StopGif();
- DeleteGif();
- Invalidate();
- }
- LPCTSTR CGifAnimUI::GetBkImage()
- {
- return m_sBkImage.GetData();
- }
- void CGifAnimUI::SetAutoPlay(bool bIsAuto)
- {
- m_bIsAutoPlay = bIsAuto;
- }
- bool CGifAnimUI::IsAutoPlay() const
- {
- return m_bIsAutoPlay;
- }
- void CGifAnimUI::SetAutoSize(bool bIsAuto)
- {
- m_bIsAutoSize = bIsAuto;
- }
- bool CGifAnimUI::IsAutoSize() const
- {
- return m_bIsAutoSize;
- }
- void CGifAnimUI::PlayGif()
- {
- if (m_bIsPlaying || m_pGifImage == NULL || m_nFrameCount <= 1)
- {
- return;
- }
- long lPause = ((long*) m_pPropertyItem->value)[m_nFramePosition] * 10;
- if ( lPause == 0 ) lPause = 100;
- m_pManager->SetTimer( this, EVENT_TIEM_ID, lPause );
- m_bIsPlaying = true;
- }
- void CGifAnimUI::PauseGif()
- {
- if (!m_bIsPlaying || m_pGifImage == NULL)
- {
- return;
- }
- m_pManager->KillTimer(this, EVENT_TIEM_ID);
- this->Invalidate();
- m_bIsPlaying = false;
- }
- void CGifAnimUI::StopGif()
- {
- if (!m_bIsPlaying)
- {
- return;
- }
- m_pManager->KillTimer(this, EVENT_TIEM_ID);
- m_nFramePosition = 0;
- this->Invalidate();
- m_bIsPlaying = false;
- }
- void CGifAnimUI::InitGifImage()
- {
- TImageInfo* pImageInfo = CRenderEngine::GdiplusLoadImage(GetBkImage());
- if(pImageInfo == NULL) return;
- m_pGifImage = pImageInfo->pImage;
- if ( NULL == m_pGifImage ) return;
- UINT nCount = 0;
- nCount = m_pGifImage->GetFrameDimensionsCount();
- GUID* pDimensionIDs = new GUID[ nCount ];
- m_pGifImage->GetFrameDimensionsList( pDimensionIDs, nCount );
- m_nFrameCount = m_pGifImage->GetFrameCount( &pDimensionIDs[0] );
- if (m_nFrameCount > 1)
- {
- int nSize = m_pGifImage->GetPropertyItemSize(PropertyTagFrameDelay);
- m_pPropertyItem = (Gdiplus::PropertyItem*) malloc(nSize);
- m_pGifImage->GetPropertyItem(PropertyTagFrameDelay, nSize, m_pPropertyItem);
- }
- delete[] pDimensionIDs;
- pDimensionIDs = NULL;
- if (m_bIsAutoSize)
- {
- SetFixedWidth(m_pGifImage->GetWidth());
- SetFixedHeight(m_pGifImage->GetHeight());
- }
- if (m_bIsAutoPlay)
- {
- PlayGif();
- }
- }
- void CGifAnimUI::DeleteGif()
- {
- if ( m_pGifImage != NULL )
- {
- delete m_pGifImage;
- m_pGifImage = NULL;
- }
- if ( m_pPropertyItem != NULL )
- {
- free( m_pPropertyItem );
- m_pPropertyItem = NULL;
- }
- m_nFrameCount = 0;
- m_nFramePosition = 0;
- }
- void CGifAnimUI::OnTimer( UINT_PTR idEvent )
- {
- if ( idEvent != EVENT_TIEM_ID )
- return;
- m_pManager->KillTimer( this, EVENT_TIEM_ID );
- this->Invalidate();
- m_nFramePosition = (++m_nFramePosition) % m_nFrameCount;
- long lPause = ((long*) m_pPropertyItem->value)[m_nFramePosition] * 10;
- if ( lPause == 0 ) lPause = 100;
- m_pManager->SetTimer( this, EVENT_TIEM_ID, lPause );
- }
- void CGifAnimUI::DrawFrame( HDC hDC )
- {
- if ( NULL == hDC || NULL == m_pGifImage ) return;
- GUID pageGuid = Gdiplus::FrameDimensionTime;
- Gdiplus::Graphics graphics( hDC );
- graphics.DrawImage( m_pGifImage, m_rcItem.left, m_rcItem.top, m_rcItem.right-m_rcItem.left, m_rcItem.bottom-m_rcItem.top );
- m_pGifImage->SelectActiveFrame( &pageGuid, m_nFramePosition );
- }
- }
|