| 51 | void GoFirstFrame() { m_nframe = 0; } |
| 52 | void GoNextFrame() { (m_nframe < GetFrameCount() - 1) ? m_nframe++ : m_nframe = 0; } |
| 53 | void GoLastFrame() { m_nframe = GetFrameCount() - 1; } |
| 54 | |
| 55 | void ConvertToImage(wxImage* image) { wxGIFDecoder::ConvertToImage(m_nframe, image); } |
| 56 |