Lines Matching refs:m_gifDecoder
309 wxGIFDecoder *m_gifDecoder; member in wxHtmlImageCell
359 m_gifDecoder = NULL; in wxHtmlImageCell()
379 m_gifDecoder = new wxGIFDecoder(); in wxHtmlImageCell()
380 if ( m_gifDecoder->LoadGIF(*s) == wxGIF_OK ) in wxHtmlImageCell()
383 if ( m_gifDecoder->ConvertToImage(0, &img) ) in wxHtmlImageCell()
388 if ( m_gifDecoder->IsAnimation() ) in wxHtmlImageCell()
391 long delay = m_gifDecoder->GetDelay(0); in wxHtmlImageCell()
398 wxDELETE(m_gifDecoder); in wxHtmlImageCell()
403 wxDELETE(m_gifDecoder); in wxHtmlImageCell()
491 if (m_nCurrFrame == m_gifDecoder->GetFrameCount()) in AdvanceAnimation()
510 m_gifDecoder->ConvertToImage(m_nCurrFrame, &img) ) in AdvanceAnimation()
513 if ( m_gifDecoder->GetFrameSize(m_nCurrFrame) != wxSize(m_Width, m_Height) || in AdvanceAnimation()
514 m_gifDecoder->GetFramePosition(m_nCurrFrame) != wxPoint(0, 0) ) in AdvanceAnimation()
519 dc.DrawBitmap(bmp, m_gifDecoder->GetFramePosition(m_nCurrFrame), in AdvanceAnimation()
528 long delay = m_gifDecoder->GetDelay(m_nCurrFrame); in AdvanceAnimation()
547 delete m_gifDecoder; in ~wxHtmlImageCell()