#include "wx/region.h"
#include "wx/bitmap.h"
+#if wxUSE_IMAGE
#include "wx/image.h"
+#endif
#include "wx/dcmemory.h"
const wxColour& transColour,
int tolerance)
{
+#if wxUSE_IMAGE
unsigned char loR, loG, loB;
unsigned char hiR, hiG, hiB;
}
return TRUE;
+#else
+ // No wxImage support
+ return FALSE;
+#endif
}
//---------------------------------------------------------------------------
offset = 3;
}
+ // We need to erase any droppings left behind on
+ // the splitter background
+ if ( win->HasFlag(wxSP_3DBORDER) )
+ {
+ wxPen pen(win->GetBackgroundColour());
+ dc.SetPen(pen);
+
+ dc.DrawLine(2, 2, size.x - 2, 2);
+ dc.DrawLine(2, h - 2, size.x - 2, h - 2);
+
+ dc.SetPen(wxNullPen);
+ }
+
// from left to right
if ( win->HasFlag(wxSP_3D) )
{
#include "wx/scrolwin.h"
#include "wx/panel.h"
+#if wxUSE_TIMER
#include "wx/timer.h"
+#endif
#include "wx/sizer.h"
#ifdef __WXMSW__
DECLARE_NO_COPY_CLASS(wxScrollHelperEvtHandler)
};
+#if wxUSE_TIMER
// ----------------------------------------------------------------------------
// wxAutoScrollTimer: the timer used to generate a stream of scroll events when
// a captured mouse is held outside the window
}
}
}
+#endif
// ----------------------------------------------------------------------------
// wxScrollHelperEvtHandler
void wxScrollHelper::StopAutoScrolling()
{
+#if wxUSE_TIMER
if ( m_timerAutoScroll )
{
delete m_timerAutoScroll;
m_timerAutoScroll = (wxTimer *)NULL;
}
+#endif
}
void wxScrollHelper::HandleOnMouseEnter(wxMouseEvent& event)
if ( !m_targetWindow->HasScrollbar(orient) )
return;
+#if wxUSE_TIMER
delete m_timerAutoScroll;
m_timerAutoScroll = new wxAutoScrollTimer
(
orient
);
m_timerAutoScroll->Start(50); // FIXME: make configurable
+#endif
}
}