]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/dragimag.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDragImage
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "dragimag.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #if defined(__WIN95__)
38 #include "wx/window.h"
39 #include "wx/dcclient.h"
40 #include "wx/dcscreen.h"
41 #include "wx/dcmemory.h"
42 #include "wx/settings.h"
45 #include "wx/msw/private.h"
51 #include "wx/msw/dragimag.h"
52 #include "wx/msw/private.h"
54 #if defined(__WIN95__) && !((defined(__GNUWIN32_OLD__) || defined(__TWIN32__)) && !defined(__CYGWIN10__))
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 IMPLEMENT_DYNAMIC_CLASS(wxDragImage
, wxObject
)
64 #define GetHimageList() ((HIMAGELIST) m_hImageList)
66 // ============================================================================
68 // ============================================================================
70 // ----------------------------------------------------------------------------
71 // wxDragImage ctors/dtor
72 // ----------------------------------------------------------------------------
74 wxDragImage::wxDragImage()
79 wxDragImage::~wxDragImage()
82 ImageList_Destroy(GetHimageList());
83 #if !wxUSE_SIMPLER_DRAGIMAGE
84 if ( m_hCursorImageList
)
85 ImageList_Destroy((HIMAGELIST
) m_hCursorImageList
);
89 void wxDragImage::Init()
92 #if !wxUSE_SIMPLER_DRAGIMAGE
93 m_hCursorImageList
= 0;
95 m_window
= (wxWindow
*) NULL
;
100 ////////////////////////////////////////////////////////////////////////////
104 ////////////////////////////////////////////////////////////////////////////
106 // Create a drag image from a bitmap and optional cursor
107 bool wxDragImage::Create(const wxBitmap
& image
, const wxCursor
& cursor
)
110 ImageList_Destroy(GetHimageList());
114 if (image
.GetDepth() <= 4)
116 else if (image
.GetDepth() <= 8)
118 else if (image
.GetDepth() <= 16)
120 else if (image
.GetDepth() <= 24)
125 bool mask
= (image
.GetMask() != 0);
129 m_hImageList
= (WXHIMAGELIST
) ImageList_Create(image
.GetWidth(), image
.GetHeight(), flags
, 1, 1);
134 HBITMAP hBitmap1
= (HBITMAP
) image
.GetHBITMAP();
135 index
= ImageList_Add(GetHimageList(), hBitmap1
, 0);
139 HBITMAP hBitmap1
= (HBITMAP
) image
.GetHBITMAP();
140 HBITMAP hBitmap2
= (HBITMAP
) image
.GetMask()->GetMaskBitmap();
141 HBITMAP hbmpMask
= wxInvertMask(hBitmap2
);
143 index
= ImageList_Add(GetHimageList(), hBitmap1
, hbmpMask
);
144 ::DeleteObject(hbmpMask
);
148 wxLogError(_("Couldn't add an image to the image list."));
150 m_cursor
= cursor
; // Can only combine with drag image after calling BeginDrag.
152 return (index
!= -1) ;
155 // Create a drag image from an icon and optional cursor
156 bool wxDragImage::Create(const wxIcon
& image
, const wxCursor
& cursor
)
159 ImageList_Destroy(GetHimageList());
163 if (image
.GetDepth() <= 4)
165 else if (image
.GetDepth() <= 8)
167 else if (image
.GetDepth() <= 16)
169 else if (image
.GetDepth() <= 24)
177 m_hImageList
= (WXHIMAGELIST
) ImageList_Create(image
.GetWidth(), image
.GetHeight(), flags
, 1, 1);
179 HICON hIcon
= (HICON
) image
.GetHICON();
181 int index
= ImageList_AddIcon(GetHimageList(), hIcon
);
184 wxLogError(_("Couldn't add an image to the image list."));
187 m_cursor
= cursor
; // Can only combine with drag image after calling BeginDrag.
189 return (index
!= -1) ;
192 // Create a drag image from a string and optional cursor
193 bool wxDragImage::Create(const wxString
& str
, const wxCursor
& cursor
)
195 wxFont
font(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
200 dc
.GetTextExtent(str
, & w
, & h
);
201 dc
.SetFont(wxNullFont
);
205 wxBitmap
bitmap((int) w
+2, (int) h
+2);
206 dc2
.SelectObject(bitmap
);
208 dc2
.SetBackground(* wxWHITE_BRUSH
);
210 dc2
.SetBackgroundMode(wxTRANSPARENT
);
211 dc2
.SetTextForeground(* wxLIGHT_GREY
);
212 dc2
.DrawText(str
, 0, 0);
213 dc2
.DrawText(str
, 1, 0);
214 dc2
.DrawText(str
, 2, 0);
215 dc2
.DrawText(str
, 1, 1);
216 dc2
.DrawText(str
, 2, 1);
217 dc2
.DrawText(str
, 1, 2);
218 dc2
.DrawText(str
, 2, 2);
219 dc2
.SetTextForeground(* wxBLACK
);
220 dc2
.DrawText(str
, 1, 1);
222 dc2
.SelectObject(wxNullBitmap
);
224 // Make the bitmap masked
225 wxImage image
= bitmap
.ConvertToImage();
226 image
.SetMaskColour(255, 255, 255);
227 return Create(wxBitmap(image
), cursor
);
230 // Create a drag image for the given tree control item
231 bool wxDragImage::Create(const wxTreeCtrl
& treeCtrl
, wxTreeItemId
& id
)
234 ImageList_Destroy(GetHimageList());
235 m_hImageList
= (WXHIMAGELIST
) TreeView_CreateDragImage((HWND
) treeCtrl
.GetHWND(), (HTREEITEM
) (WXHTREEITEM
) id
);
239 // Create a drag image for the given list control item
240 bool wxDragImage::Create(const wxListCtrl
& listCtrl
, long id
)
243 ImageList_Destroy(GetHimageList());
246 m_hImageList
= (WXHIMAGELIST
) ListView_CreateDragImage((HWND
) listCtrl
.GetHWND(), id
, & pt
);
251 bool wxDragImage::BeginDrag(const wxPoint
& hotspot
, wxWindow
* window
, bool fullScreen
, wxRect
* rect
)
253 wxASSERT_MSG( (m_hImageList
!= 0), wxT("Image list must not be null in BeginDrag."));
254 wxASSERT_MSG( (window
!= 0), wxT("Window must not be null in BeginDrag."));
256 m_fullScreen
= fullScreen
;
258 m_boundingRect
= * rect
;
260 bool ret
= (ImageList_BeginDrag(GetHimageList(), 0, hotspot
.x
, hotspot
.y
) != 0);
264 wxFAIL_MSG( _T("BeginDrag failed.") );
271 #if wxUSE_SIMPLER_DRAGIMAGE
272 m_oldCursor
= window
->GetCursor();
273 window
->SetCursor(m_cursor
);
275 if (!m_hCursorImageList
)
277 int cxCursor
= GetSystemMetrics(SM_CXCURSOR
);
278 int cyCursor
= GetSystemMetrics(SM_CYCURSOR
);
280 m_hCursorImageList
= (WXHIMAGELIST
) ImageList_Create(cxCursor
, cyCursor
, ILC_MASK
, 1, 1);
283 // See if we can find the cursor hotspot
284 wxPoint
curHotSpot(hotspot
);
286 // Although it seems to produce the right position, when the hotspot goeos
287 // negative it has strange effects on the image.
288 // How do we stop the cursor jumping right and below of where it should be?
291 if (::GetIconInfo((HICON
) (HCURSOR
) m_cursor
.GetHCURSOR(), & iconInfo
) != 0)
293 curHotSpot
.x
-= iconInfo
.xHotspot
;
294 curHotSpot
.y
-= iconInfo
.yHotspot
;
298 //msg.Printf("Hotspot = %d, %d", curHotSpot.x, curHotSpot.y);
301 // First add the cursor to the image list
302 HCURSOR hCursor
= (HCURSOR
) m_cursor
.GetHCURSOR();
303 int cursorIndex
= ImageList_AddIcon((HIMAGELIST
) m_hCursorImageList
, (HICON
) hCursor
);
305 wxASSERT_MSG( (cursorIndex
!= -1), wxT("ImageList_AddIcon failed in BeginDrag."));
307 if (cursorIndex
!= -1)
309 ImageList_SetDragCursorImage((HIMAGELIST
) m_hCursorImageList
, cursorIndex
, curHotSpot
.x
, curHotSpot
.y
);
314 #if !wxUSE_SIMPLER_DRAGIMAGE
321 ::SetCapture(GetHwndOf(window
));
326 // Begin drag. hotspot is the location of the drag position relative to the upper-left
327 // corner of the image. This is full screen only. fullScreenRect gives the
328 // position of the window on the screen, to restrict the drag to.
329 bool wxDragImage::BeginDrag(const wxPoint
& hotspot
, wxWindow
* window
, wxWindow
* fullScreenRect
)
333 int x
= fullScreenRect
->GetPosition().x
;
334 int y
= fullScreenRect
->GetPosition().y
;
336 wxSize sz
= fullScreenRect
->GetSize();
338 if (fullScreenRect
->GetParent() && !fullScreenRect
->IsKindOf(CLASSINFO(wxFrame
)))
339 fullScreenRect
->GetParent()->ClientToScreen(& x
, & y
);
341 rect
.x
= x
; rect
.y
= y
;
342 rect
.width
= sz
.x
; rect
.height
= sz
.y
;
344 return BeginDrag(hotspot
, window
, TRUE
, & rect
);
348 bool wxDragImage::EndDrag()
350 wxASSERT_MSG( (m_hImageList
!= 0), wxT("Image list must not be null in EndDrag."));
354 if ( !::ReleaseCapture() )
356 wxLogLastError(wxT("ReleaseCapture"));
359 #if wxUSE_SIMPLER_DRAGIMAGE
360 if (m_cursor
.Ok() && m_oldCursor
.Ok())
361 m_window
->SetCursor(m_oldCursor
);
366 m_window
= (wxWindow
*) NULL
;
371 // Move the image: call from OnMouseMove. Pt is in window client coordinates if window
372 // is non-NULL, or in screen coordinates if NULL.
373 bool wxDragImage::Move(const wxPoint
& pt
)
375 wxASSERT_MSG( (m_hImageList
!= 0), wxT("Image list must not be null in Move."));
377 // These are in window, not client coordinates.
378 // So need to convert to client coordinates.
380 if (m_window
&& !m_fullScreen
)
383 rect
.left
= 0; rect
.top
= 0;
384 rect
.right
= 0; rect
.bottom
= 0;
385 DWORD style
= ::GetWindowLong((HWND
) m_window
->GetHWND(), GWL_STYLE
);
387 DWORD exStyle
= ::GetWindowLong((HWND
) m_window
->GetHWND(), GWL_EXSTYLE
);
388 ::AdjustWindowRectEx(& rect
, style
, FALSE
, exStyle
);
390 ::AdjustWindowRect(& rect
, style
, FALSE
);
392 // Subtract the (negative) values, i.e. add a small increment
393 pt2
.x
-= rect
.left
; pt2
.y
-= rect
.top
;
395 else if (m_window
&& m_fullScreen
)
397 pt2
= m_window
->ClientToScreen(pt2
);
400 bool ret
= (ImageList_DragMove( pt2
.x
, pt2
.y
) != 0);
407 bool wxDragImage::Show()
409 wxASSERT_MSG( (m_hImageList
!= 0), wxT("Image list must not be null in Show."));
412 if (m_window
&& !m_fullScreen
)
413 hWnd
= (HWND
) m_window
->GetHWND();
415 bool ret
= (ImageList_DragEnter( hWnd
, m_position
.x
, m_position
.y
) != 0);
420 bool wxDragImage::Hide()
422 wxASSERT_MSG( (m_hImageList
!= 0), wxT("Image list must not be null in Hide."));
425 if (m_window
&& !m_fullScreen
)
426 hWnd
= (HWND
) m_window
->GetHWND();
428 bool ret
= (ImageList_DragLeave( hWnd
) != 0);
436 #endif // wxUSE_DRAGIMAGE