-void wxHtmlImageCell::Draw(wxDC& dc, int x, int y, int view_y1, int view_y2)
+ if ( m_physX == -1 )
+ {
+ m_physX = m_physY = 0;
+ for (wxHtmlCell *cell = this; cell; cell = cell->GetParent())
+ {
+ m_physX += cell->GetPosX();
+ m_physY += cell->GetPosY();
+ }
+ }
+
+ int x, y;
+ m_window->CalcScrolledPosition(m_physX, m_physY, &x, &y);
+ wxRect rect(x, y, m_Width, m_Height);
+
+ if ( m_window->GetClientRect().Intersects(rect) &&
+ m_gifDecoder->ConvertToImage(&img) )
+ {
+ if ( (int)m_gifDecoder->GetWidth() != m_Width ||
+ (int)m_gifDecoder->GetHeight() != m_Height ||
+ m_gifDecoder->GetLeft() != 0 || m_gifDecoder->GetTop() != 0 )
+ {
+ wxBitmap bmp(img);
+ wxMemoryDC dc;
+ dc.SelectObject(*m_bitmap);
+ dc.DrawBitmap(bmp, m_gifDecoder->GetLeft(), m_gifDecoder->GetTop());
+ }
+ else
+ SetImage(img);
+ m_window->Refresh(img.HasMask(), &rect);
+ }
+
+ timer->Start(m_gifDecoder->GetDelay(), TRUE);
+}
+
+void wxHtmlImageCell::Layout(int w)
+{
+ wxHtmlCell::Layout(w);
+ m_physX = m_physY = -1;
+}
+
+#endif
+
+wxHtmlImageCell::~wxHtmlImageCell()