+// convert degrees to radians
+static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; }
+
+// call AlphaBlend() to blit contents of hdcSrc to hdcDst using alpha
+//
+// NB: bmpSrc is the bitmap selected in hdcSrc, it is not really needed
+// to pass it to this function but as we already have it at the point
+// of call anyhow we do
+//
+// return true if we could draw the bitmap in one way or the other, false
+// otherwise
+static bool AlphaBlt(HDC hdcDst,
+ int x, int y, int dstWidth, int dstHeight,
+ int srcX, int srcY,
+ int srcWidth, int srcHeight,
+ HDC hdcSrc,
+ const wxBitmap& bmp);
+
+#ifdef wxHAS_RAW_BITMAP
+
+// our (limited) AlphaBlend() replacement for Windows versions not providing it
+static void
+wxAlphaBlend(HDC hdcDst, int xDst, int yDst,
+ int dstWidth, int dstHeight,
+ int srcX, int srcY,
+ int srcWidth, int srcHeight,
+ const wxBitmap& bmpSrc);
+
+#endif // wxHAS_RAW_BITMAP
+
+// ----------------------------------------------------------------------------
+// private classes
+// ----------------------------------------------------------------------------
+
+// various classes to change some DC property temporarily
+
+// text background and foreground colours
+class wxTextColoursChanger
+{
+public:
+ wxTextColoursChanger(HDC hdc, const wxMSWDCImpl& dc)
+ : m_hdc(hdc)
+ {
+ Change(dc.GetTextForeground(), dc.GetTextBackground());
+ }
+
+ wxTextColoursChanger(HDC hdc, const wxColour& colFg, const wxColour& colBg)
+ : m_hdc(hdc)
+ {
+ Change(colFg, colBg);
+ }
+
+ ~wxTextColoursChanger()
+ {
+ if ( m_oldColFg != CLR_INVALID )
+ ::SetTextColor(m_hdc, m_oldColFg);
+ if ( m_oldColBg != CLR_INVALID )
+ ::SetBkColor(m_hdc, m_oldColBg);
+ }
+
+protected:
+ // this ctor doesn't change mode immediately, call Change() later to do it
+ // only if needed
+ wxTextColoursChanger(HDC hdc)
+ : m_hdc(hdc)
+ {
+ m_oldColFg =
+ m_oldColBg = CLR_INVALID;
+ }
+
+ void Change(const wxColour& colFg, const wxColour& colBg)
+ {
+ if ( colFg.IsOk() )
+ {
+ m_oldColFg = ::SetTextColor(m_hdc, colFg.GetPixel());
+ if ( m_oldColFg == CLR_INVALID )
+ {
+ wxLogLastError(_T("SetTextColor"));
+ }
+ }
+ else
+ {
+ m_oldColFg = CLR_INVALID;
+ }
+
+ if ( colBg.IsOk() )
+ {
+ m_oldColBg = ::SetBkColor(m_hdc, colBg.GetPixel());
+ if ( m_oldColBg == CLR_INVALID )
+ {
+ wxLogLastError(_T("SetBkColor"));
+ }
+ }
+ else
+ {
+ m_oldColBg = CLR_INVALID;
+ }
+ }
+
+private:
+ const HDC m_hdc;
+ COLORREF m_oldColFg,
+ m_oldColBg;