]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/nonownedwnd.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/nonownedwnd.cpp
3 // Purpose: wxNonOwnedWindow implementation for MSW.
4 // Author: Vadim Zeitlin
5 // Created: 2011-10-09 (extracted from src/msw/toplevel.cpp)
7 // Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
26 // This class can't be implemented and hence is not used under Win CE.
30 #include "wx/frame.h" // Only for wxFRAME_SHAPED.
31 #include "wx/region.h"
32 #include "wx/msw/private.h"
35 #include "wx/nonownedwnd.h"
37 // ============================================================================
38 // wxNonOwnedWindow implementation
39 // ============================================================================
41 bool wxNonOwnedWindow::SetShape(const wxRegion
& region
)
43 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED
), false,
44 wxT("Shaped windows must be created with the wxFRAME_SHAPED style."));
46 // The empty region signifies that the shape should be removed from the
48 if ( region
.IsEmpty() )
50 if (::SetWindowRgn(GetHwnd(), NULL
, TRUE
) == 0)
52 wxLogLastError(wxT("SetWindowRgn"));
58 // Windows takes ownership of the region, so
59 // we'll have to make a copy of the region to give to it.
60 DWORD noBytes
= ::GetRegionData(GetHrgnOf(region
), 0, NULL
);
61 RGNDATA
*rgnData
= (RGNDATA
*) new char[noBytes
];
62 ::GetRegionData(GetHrgnOf(region
), noBytes
, rgnData
);
63 HRGN hrgn
= ::ExtCreateRegion(NULL
, noBytes
, rgnData
);
64 delete[] (char*) rgnData
;
66 // SetWindowRgn expects the region to be in coordinates
67 // relative to the window, not the client area.
68 const wxPoint clientOrigin
= GetClientAreaOrigin();
69 ::OffsetRgn(hrgn
, -clientOrigin
.x
, -clientOrigin
.y
);
71 // Now call the shape API with the new region.
72 if (::SetWindowRgn(GetHwnd(), hrgn
, TRUE
) == 0)
74 wxLogLastError(wxT("SetWindowRgn"));
80 #endif // !__WXWINCE__