]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/dragimag.cpp
10cedac42b117190d941e8e715fc0ab1c2b1676c
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"
26 #include "wx/msw/private.h"
32 #if defined(__WIN95__)
37 #include "wx/window.h"
38 #include "wx/dcclient.h"
39 #include "wx/dcscreen.h"
40 #include "wx/dcmemory.h"
41 #include "wx/settings.h"
49 #include "wx/msw/dragimag.h"
50 #include "wx/msw/private.h"
52 #if defined(__WIN95__) && !(defined(__GNUWIN32_OLD__) || defined(__TWIN32__))
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
60 IMPLEMENT_DYNAMIC_CLASS(wxDragImage
, wxObject
)
62 #define GetHimageList() ((HIMAGELIST) m_hImageList)
64 // ============================================================================
66 // ============================================================================
68 // ----------------------------------------------------------------------------
69 // wxDragImage ctors/dtor
70 // ----------------------------------------------------------------------------
72 wxDragImage::wxDragImage()
77 wxDragImage::~wxDragImage()
80 ImageList_Destroy(GetHimageList());
81 #if !wxUSE_SIMPLER_DRAGIMAGE
82 if ( m_hCursorImageList
)
83 ImageList_Destroy((HIMAGELIST
) m_hCursorImageList
);
87 void wxDragImage::Init()
90 #if !wxUSE_SIMPLER_DRAGIMAGE
91 m_hCursorImageList
= 0;
93 m_window
= (wxWindow
*) NULL
;
98 ////////////////////////////////////////////////////////////////////////////
102 ////////////////////////////////////////////////////////////////////////////
104 // Create a drag image from a bitmap and optional cursor
105 bool wxDragImage::Create(const wxBitmap
& image
, const wxCursor
& cursor
, const wxPoint
& cursorHotspot
)
108 ImageList_Destroy(GetHimageList());
112 if (image
.GetDepth() <= 4)
114 else if (image
.GetDepth() <= 8)
116 else if (image
.GetDepth() <= 16)
118 else if (image
.GetDepth() <= 24)
123 bool mask
= (image
.GetMask() != 0);
127 m_hImageList
= (WXHIMAGELIST
) ImageList_Create(image
.GetWidth(), image
.GetHeight(), flags
, 1, 1);
132 HBITMAP hBitmap1
= (HBITMAP
) image
.GetHBITMAP();
133 index
= ImageList_Add(GetHimageList(), hBitmap1
, 0);
137 HBITMAP hBitmap1
= (HBITMAP
) image
.GetHBITMAP();
138 HBITMAP hBitmap2
= (HBITMAP
) image
.GetMask()->GetMaskBitmap();
139 HBITMAP hbmpMask
= wxInvertMask(hBitmap2
);
141 index
= ImageList_Add(GetHimageList(), hBitmap1
, hbmpMask
);
142 ::DeleteObject(hbmpMask
);
146 wxLogError(_("Couldn't add an image to the image list."));
148 m_cursor
= cursor
; // Can only combine with drag image after calling BeginDrag.
149 m_cursorHotspot
= cursorHotspot
;
151 return (index
!= -1) ;
154 // Create a drag image from an icon and optional cursor
155 bool wxDragImage::Create(const wxIcon
& image
, const wxCursor
& cursor
, const wxPoint
& cursorHotspot
)
158 ImageList_Destroy(GetHimageList());
162 if (image
.GetDepth() <= 4)
164 else if (image
.GetDepth() <= 8)
166 else if (image
.GetDepth() <= 16)
168 else if (image
.GetDepth() <= 24)
176 m_hImageList
= (WXHIMAGELIST
) ImageList_Create(image
.GetWidth(), image
.GetHeight(), flags
, 1, 1);
178 HICON hIcon
= (HICON
) image
.GetHICON();
180 int index
= ImageList_AddIcon(GetHimageList(), hIcon
);
183 wxLogError(_("Couldn't add an image to the image list."));
186 m_cursor
= cursor
; // Can only combine with drag image after calling BeginDrag.
187 m_cursorHotspot
= cursorHotspot
;
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
, const wxPoint
& cursorHotspot
)
195 wxFont
font(wxSystemSettings::GetSystemFont(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
);
226 image
.SetMaskColour(255, 255, 255);
227 bitmap
= image
.ConvertToBitmap();
229 return Create(bitmap
, cursor
, cursorHotspot
);
232 // Create a drag image for the given tree control item
233 bool wxDragImage::Create(const wxTreeCtrl
& treeCtrl
, wxTreeItemId
& id
)
236 ImageList_Destroy(GetHimageList());
237 m_hImageList
= (WXHIMAGELIST
) TreeView_CreateDragImage((HWND
) treeCtrl
.GetHWND(), (HTREEITEM
) (WXHTREEITEM
) id
);
241 // Create a drag image for the given list control item
242 bool wxDragImage::Create(const wxListCtrl
& listCtrl
, long id
)
245 ImageList_Destroy(GetHimageList());
248 m_hImageList
= (WXHIMAGELIST
) ListView_CreateDragImage((HWND
) listCtrl
.GetHWND(), id
, & pt
);
253 bool wxDragImage::BeginDrag(const wxPoint
& hotspot
, wxWindow
* window
, bool fullScreen
, wxRect
* rect
)
255 wxASSERT_MSG( (m_hImageList
!= 0), wxT("Image list must not be null in BeginDrag."));
256 wxASSERT_MSG( (window
!= 0), wxT("Window must not be null in BeginDrag."));
258 m_fullScreen
= fullScreen
;
260 m_boundingRect
= * rect
;
262 bool ret
= (ImageList_BeginDrag(GetHimageList(), 0, hotspot
.x
, hotspot
.y
) != 0);
266 wxFAIL_MSG( _T("BeginDrag failed.") );
273 #if wxUSE_SIMPLER_DRAGIMAGE
274 m_oldCursor
= window
->GetCursor();
275 window
->SetCursor(m_cursor
);
277 if (!m_hCursorImageList
)
279 int cxCursor
= GetSystemMetrics(SM_CXCURSOR
);
280 int cyCursor
= GetSystemMetrics(SM_CYCURSOR
);
282 m_hCursorImageList
= (WXHIMAGELIST
) ImageList_Create(cxCursor
, cyCursor
, ILC_MASK
, 1, 1);
285 // First add the cursor to the image list
286 HCURSOR hCursor
= (HCURSOR
) m_cursor
.GetHCURSOR();
287 int cursorIndex
= ImageList_AddIcon((HIMAGELIST
) m_hCursorImageList
, (HICON
) hCursor
);
289 wxASSERT_MSG( (cursorIndex
!= -1), wxT("ImageList_AddIcon failed in BeginDrag."));
291 if (cursorIndex
!= -1)
293 ImageList_SetDragCursorImage((HIMAGELIST
) m_hCursorImageList
, cursorIndex
, m_cursorHotspot
.x
, m_cursorHotspot
.y
);
300 #if !wxUSE_SIMPLER_DRAGIMAGE
305 ::SetCapture(GetHwndOf(window
));
310 // Begin drag. hotspot is the location of the drag position relative to the upper-left
311 // corner of the image. This is full screen only. fullScreenRect gives the
312 // position of the window on the screen, to restrict the drag to.
313 bool wxDragImage::BeginDrag(const wxPoint
& hotspot
, wxWindow
* window
, wxWindow
* fullScreenRect
)
317 int x
= fullScreenRect
->GetPosition().x
;
318 int y
= fullScreenRect
->GetPosition().y
;
320 wxSize sz
= fullScreenRect
->GetSize();
322 if (fullScreenRect
->GetParent() && !fullScreenRect
->IsKindOf(CLASSINFO(wxFrame
)))
323 fullScreenRect
->GetParent()->ClientToScreen(& x
, & y
);
325 rect
.x
= x
; rect
.y
= y
;
326 rect
.width
= sz
.x
; rect
.height
= sz
.y
;
328 return BeginDrag(hotspot
, window
, TRUE
, & rect
);
332 bool wxDragImage::EndDrag()
334 wxASSERT_MSG( (m_hImageList
!= 0), wxT("Image list must not be null in EndDrag."));
338 if ( !::ReleaseCapture() )
340 wxLogLastError(wxT("ReleaseCapture"));
343 #if wxUSE_SIMPLER_DRAGIMAGE
344 if (m_cursor
.Ok() && m_oldCursor
.Ok())
345 m_window
->SetCursor(m_oldCursor
);
350 m_window
= (wxWindow
*) NULL
;
355 // Move the image: call from OnMouseMove. Pt is in window client coordinates if window
356 // is non-NULL, or in screen coordinates if NULL.
357 bool wxDragImage::Move(const wxPoint
& pt
)
359 wxASSERT_MSG( (m_hImageList
!= 0), wxT("Image list must not be null in Move."));
361 // These are in window, not client coordinates.
362 // So need to convert to client coordinates.
364 if (m_window
&& !m_fullScreen
)
367 rect
.left
= 0; rect
.top
= 0;
368 rect
.right
= 0; rect
.bottom
= 0;
369 DWORD style
= ::GetWindowLong((HWND
) m_window
->GetHWND(), GWL_STYLE
);
371 DWORD exStyle
= ::GetWindowLong((HWND
) m_window
->GetHWND(), GWL_EXSTYLE
);
372 ::AdjustWindowRectEx(& rect
, style
, FALSE
, exStyle
);
374 ::AdjustWindowRect(& rect
, style
, FALSE
);
376 // Subtract the (negative) values, i.e. add a small increment
377 pt2
.x
-= rect
.left
; pt2
.y
-= rect
.top
;
380 bool ret
= (ImageList_DragMove( pt2
.x
, pt2
.y
) != 0);
387 bool wxDragImage::Show()
389 wxASSERT_MSG( (m_hImageList
!= 0), wxT("Image list must not be null in Show."));
392 if (m_window
&& !m_fullScreen
)
393 hWnd
= (HWND
) m_window
->GetHWND();
395 bool ret
= (ImageList_DragEnter( hWnd
, m_position
.x
, m_position
.y
) != 0);
400 bool wxDragImage::Hide()
402 wxASSERT_MSG( (m_hImageList
!= 0), wxT("Image list must not be null in Hide."));
405 if (m_window
&& !m_fullScreen
)
406 hWnd
= (HWND
) m_window
->GetHWND();
408 bool ret
= (ImageList_DragLeave( hWnd
) != 0);