]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/dragimgg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/dragimgg.cpp
3 // Purpose: Generic wxDragImage implementation
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
31 #include "wx/window.h"
33 #include "wx/dcclient.h"
34 #include "wx/dcscreen.h"
35 #include "wx/dcmemory.h"
36 #include "wx/settings.h"
42 #define wxUSE_IMAGE_IN_DRAGIMAGE 1
44 #if wxUSE_IMAGE_IN_DRAGIMAGE
48 #include "wx/generic/dragimgg.h"
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 IMPLEMENT_DYNAMIC_CLASS(wxGenericDragImage
, wxObject
)
56 // ============================================================================
58 // ============================================================================
60 // ----------------------------------------------------------------------------
61 // wxGenericDragImage ctors/dtor
62 // ----------------------------------------------------------------------------
64 wxGenericDragImage::~wxGenericDragImage()
72 void wxGenericDragImage::Init()
76 m_windowDC
= (wxDC
*) NULL
;
77 m_window
= (wxWindow
*) NULL
;
79 m_pBackingBitmap
= (wxBitmap
*) NULL
;
82 #if WXWIN_COMPATIBILITY_2_6
83 wxGenericDragImage::wxGenericDragImage(const wxCursor
& cursor
, const wxPoint
& WXUNUSED(cursorHotspot
))
89 wxGenericDragImage::wxGenericDragImage(const wxBitmap
& image
, const wxCursor
& cursor
, const wxPoint
& WXUNUSED(cursorHotspot
))
93 Create(image
, cursor
);
96 wxGenericDragImage::wxGenericDragImage(const wxIcon
& image
, const wxCursor
& cursor
, const wxPoint
& WXUNUSED(cursorHotspot
))
100 Create(image
, cursor
);
103 wxGenericDragImage::wxGenericDragImage(const wxString
& str
, const wxCursor
& cursor
, const wxPoint
& WXUNUSED(cursorHotspot
))
110 bool wxGenericDragImage::Create(const wxCursor
& cursor
, const wxPoint
& WXUNUSED(cursorHotspot
))
112 return Create(cursor
);
115 bool wxGenericDragImage::Create(const wxBitmap
& image
, const wxCursor
& cursor
, const wxPoint
& WXUNUSED(cursorHotspot
))
117 return Create(image
, cursor
);
120 bool wxGenericDragImage::Create(const wxIcon
& image
, const wxCursor
& cursor
, const wxPoint
& WXUNUSED(cursorHotspot
))
122 return Create(image
, cursor
);
125 bool wxGenericDragImage::Create(const wxString
& str
, const wxCursor
& cursor
, const wxPoint
& WXUNUSED(cursorHotspot
))
127 return Create(str
, cursor
);
129 #endif // WXWIN_COMPATIBILITY_2_6
132 ////////////////////////////////////////////////////////////////////////////
136 ////////////////////////////////////////////////////////////////////////////
138 // Create a drag image with a virtual image (need to override DoDrawImage, GetImageRect)
139 bool wxGenericDragImage::Create(const wxCursor
& cursor
)
146 // Create a drag image from a bitmap and optional cursor
147 bool wxGenericDragImage::Create(const wxBitmap
& image
, const wxCursor
& cursor
)
149 // We don't have to combine the cursor explicitly since we simply show the cursor
150 // as we drag. This currently will only work within one window.
158 // Create a drag image from an icon and optional cursor
159 bool wxGenericDragImage::Create(const wxIcon
& image
, const wxCursor
& cursor
)
161 // We don't have to combine the cursor explicitly since we simply show the cursor
162 // as we drag. This currently will only work within one window.
170 // Create a drag image from a string and optional cursor
171 bool wxGenericDragImage::Create(const wxString
& str
, const wxCursor
& cursor
)
173 wxFont
font(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
178 dc
.GetTextExtent(str
, & w
, & h
);
179 dc
.SetFont(wxNullFont
);
183 // Sometimes GetTextExtent isn't accurate enough, so make it longer
184 wxBitmap
bitmap((int) ((w
+2) * 1.5), (int) h
+2);
185 dc2
.SelectObject(bitmap
);
188 dc2
.SetBackground(* wxWHITE_BRUSH
);
190 dc2
.SetBackgroundMode(wxTRANSPARENT
);
191 dc2
.SetTextForeground(* wxLIGHT_GREY
);
192 dc2
.DrawText(str
, 0, 0);
193 dc2
.DrawText(str
, 1, 0);
194 dc2
.DrawText(str
, 2, 0);
195 dc2
.DrawText(str
, 1, 1);
196 dc2
.DrawText(str
, 2, 1);
197 dc2
.DrawText(str
, 1, 2);
198 dc2
.DrawText(str
, 2, 2);
200 dc2
.SetTextForeground(* wxBLACK
);
201 dc2
.DrawText(str
, 1, 1);
203 dc2
.SelectObject(wxNullBitmap
);
205 #if wxUSE_IMAGE_IN_DRAGIMAGE && (!defined(__WXMSW__) || wxUSE_WXDIB)
206 // Make the bitmap masked
207 wxImage image
= bitmap
.ConvertToImage();
208 image
.SetMaskColour(255, 255, 255);
209 bitmap
= wxBitmap(image
);
212 return Create(bitmap
, cursor
);
216 // Create a drag image for the given tree control item
217 bool wxGenericDragImage::Create(const wxTreeCtrl
& treeCtrl
, wxTreeItemId
& id
)
219 wxString str
= treeCtrl
.GetItemText(id
);
225 // Create a drag image for the given list control item
226 bool wxGenericDragImage::Create(const wxListCtrl
& listCtrl
, long id
)
228 wxString str
= listCtrl
.GetItemText(id
);
234 bool wxGenericDragImage::BeginDrag(const wxPoint
& hotspot
,
239 wxASSERT_MSG( (window
!= 0), wxT("Window must not be null in BeginDrag."));
241 // The image should be offset by this amount
244 m_fullScreen
= fullScreen
;
247 m_boundingRect
= * rect
;
254 window
->CaptureMouse();
258 m_oldCursor
= window
->GetCursor();
259 window
->SetCursor(m_cursor
);
263 // Make a copy of the window so we can repair damage done as the image is
270 clientSize
= window
->GetClientSize();
271 m_boundingRect
.x
= 0; m_boundingRect
.y
= 0;
272 m_boundingRect
.width
= clientSize
.x
; m_boundingRect
.height
= clientSize
.y
;
277 wxDisplaySize(& w
, & h
);
278 clientSize
.x
= w
; clientSize
.y
= h
;
281 pt
.x
= m_boundingRect
.x
; pt
.y
= m_boundingRect
.y
;
282 clientSize
.x
= m_boundingRect
.width
; clientSize
.y
= m_boundingRect
.height
;
286 m_boundingRect
.x
= 0; m_boundingRect
.y
= 0;
287 m_boundingRect
.width
= w
; m_boundingRect
.height
= h
;
291 wxBitmap
* backing
= (m_pBackingBitmap
? m_pBackingBitmap
: (wxBitmap
*) & m_backingBitmap
);
293 if (!backing
->Ok() || (backing
->GetWidth() < clientSize
.x
|| backing
->GetHeight() < clientSize
.y
))
294 (*backing
) = wxBitmap(clientSize
.x
, clientSize
.y
);
298 m_windowDC
= new wxClientDC(window
);
302 m_windowDC
= new wxScreenDC
;
305 // Use m_boundingRect to limit the area considered.
306 ((wxScreenDC
*) m_windowDC
)->StartDrawingOnTop(rect
);
309 m_windowDC
->SetClippingRegion(m_boundingRect
.x
, m_boundingRect
.y
,
310 m_boundingRect
.width
, m_boundingRect
.height
);
316 // Begin drag. hotspot is the location of the drag position relative to the upper-left
317 // corner of the image. This is full screen only. fullScreenRect gives the
318 // position of the window on the screen, to restrict the drag to.
319 bool wxGenericDragImage::BeginDrag(const wxPoint
& hotspot
, wxWindow
* window
, wxWindow
* fullScreenRect
)
323 int x
= fullScreenRect
->GetPosition().x
;
324 int y
= fullScreenRect
->GetPosition().y
;
326 wxSize sz
= fullScreenRect
->GetSize();
328 if (fullScreenRect
->GetParent() && !fullScreenRect
->IsKindOf(CLASSINFO(wxFrame
)))
329 fullScreenRect
->GetParent()->ClientToScreen(& x
, & y
);
331 rect
.x
= x
; rect
.y
= y
;
332 rect
.width
= sz
.x
; rect
.height
= sz
.y
;
334 return BeginDrag(hotspot
, window
, true, & rect
);
338 bool wxGenericDragImage::EndDrag()
343 // Under Windows we can be pretty sure this test will give
344 // the correct results
345 if (wxWindow::GetCapture() == m_window
)
347 m_window
->ReleaseMouse();
349 if (m_cursor
.Ok() && m_oldCursor
.Ok())
351 m_window
->SetCursor(m_oldCursor
);
357 m_windowDC
->DestroyClippingRegion();
359 m_windowDC
= (wxDC
*) NULL
;
362 m_repairBitmap
= wxNullBitmap
;
367 // Move the image: call from OnMouseMove. Pt is in window client coordinates if window
368 // is non-NULL, or in screen coordinates if NULL.
369 bool wxGenericDragImage::Move(const wxPoint
& pt
)
371 wxASSERT_MSG( (m_windowDC
!= (wxDC
*) NULL
), wxT("No window DC in wxGenericDragImage::Move()") );
375 pt2
= m_window
->ClientToScreen(pt
);
377 // Erase at old position, then show at the current position
378 wxPoint oldPos
= m_position
;
380 bool eraseOldImage
= (m_isDirty
&& m_isShown
);
383 RedrawImage(oldPos
- m_offset
, pt2
- m_offset
, eraseOldImage
, true);
393 bool wxGenericDragImage::Show()
395 wxASSERT_MSG( (m_windowDC
!= (wxDC
*) NULL
), wxT("No window DC in wxGenericDragImage::Show()") );
397 // Show at the current position
401 // This is where we restore the backing bitmap, in case
402 // something has changed on the window.
404 wxBitmap
* backing
= (m_pBackingBitmap
? m_pBackingBitmap
: (wxBitmap
*) & m_backingBitmap
);
406 memDC
.SelectObject(* backing
);
408 UpdateBackingFromWindow(* m_windowDC
, memDC
, m_boundingRect
, wxRect(0, 0, m_boundingRect
.width
, m_boundingRect
.height
));
410 //memDC.Blit(0, 0, m_boundingRect.width, m_boundingRect.height, m_windowDC, m_boundingRect.x, m_boundingRect.y);
411 memDC
.SelectObject(wxNullBitmap
);
413 RedrawImage(m_position
- m_offset
, m_position
- m_offset
, false, true);
422 bool wxGenericDragImage::UpdateBackingFromWindow(wxDC
& windowDC
, wxMemoryDC
& destDC
,
423 const wxRect
& sourceRect
, const wxRect
& destRect
) const
425 return destDC
.Blit(destRect
.x
, destRect
.y
, destRect
.width
, destRect
.height
, & windowDC
,
426 sourceRect
.x
, sourceRect
.y
);
429 bool wxGenericDragImage::Hide()
431 wxASSERT_MSG( (m_windowDC
!= (wxDC
*) NULL
), wxT("No window DC in wxGenericDragImage::Hide()") );
433 // Repair the old position
435 if (m_isShown
&& m_isDirty
)
437 RedrawImage(m_position
- m_offset
, m_position
- m_offset
, true, false);
446 // More efficient: erase and redraw simultaneously if possible
447 bool wxGenericDragImage::RedrawImage(const wxPoint
& oldPos
, const wxPoint
& newPos
,
448 bool eraseOld
, bool drawNew
)
453 wxBitmap
* backing
= (m_pBackingBitmap
? m_pBackingBitmap
: (wxBitmap
*) & m_backingBitmap
);
457 wxRect
oldRect(GetImageRect(oldPos
));
458 wxRect
newRect(GetImageRect(newPos
));
462 // Full rect: the combination of both rects
463 if (eraseOld
&& drawNew
)
465 int oldRight
= oldRect
.GetRight();
466 int oldBottom
= oldRect
.GetBottom();
467 int newRight
= newRect
.GetRight();
468 int newBottom
= newRect
.GetBottom();
470 wxPoint topLeft
= wxPoint(wxMin(oldPos
.x
, newPos
.x
), wxMin(oldPos
.y
, newPos
.y
));
471 wxPoint bottomRight
= wxPoint(wxMax(oldRight
, newRight
), wxMax(oldBottom
, newBottom
));
473 fullRect
.x
= topLeft
.x
; fullRect
.y
= topLeft
.y
;
474 fullRect
.SetRight(bottomRight
.x
);
475 fullRect
.SetBottom(bottomRight
.y
);
482 // Make the bitmap bigger than it need be, so we don't
483 // keep reallocating all the time.
486 if (!m_repairBitmap
.Ok() || (m_repairBitmap
.GetWidth() < fullRect
.GetWidth() || m_repairBitmap
.GetHeight() < fullRect
.GetHeight()))
488 m_repairBitmap
= wxBitmap(fullRect
.GetWidth() + excess
, fullRect
.GetHeight() + excess
);
492 memDC
.SelectObject(* backing
);
494 wxMemoryDC memDCTemp
;
495 memDCTemp
.SelectObject(m_repairBitmap
);
497 // Draw the backing bitmap onto the repair bitmap.
498 // If full-screen, we may have specified the rect on the
499 // screen that we're using for our backing bitmap.
500 // So subtract this when we're blitting from the backing bitmap
501 // (translate from screen to backing-bitmap coords).
503 memDCTemp
.Blit(0, 0, fullRect
.GetWidth(), fullRect
.GetHeight(), & memDC
, fullRect
.x
- m_boundingRect
.x
, fullRect
.y
- m_boundingRect
.y
);
505 // If drawing, draw the image onto the mem DC
508 wxPoint
pos(newPos
.x
- fullRect
.x
, newPos
.y
- fullRect
.y
) ;
509 DoDrawImage(memDCTemp
, pos
);
512 // Now blit to the window
513 // Finally, blit the temp mem DC to the window.
514 m_windowDC
->Blit(fullRect
.x
, fullRect
.y
, fullRect
.width
, fullRect
.height
, & memDCTemp
, 0, 0);
516 memDCTemp
.SelectObject(wxNullBitmap
);
517 memDC
.SelectObject(wxNullBitmap
);
522 // Override this if you are using a virtual image (drawing your own image)
523 bool wxGenericDragImage::DoDrawImage(wxDC
& dc
, const wxPoint
& pos
) const
527 dc
.DrawBitmap(m_bitmap
, pos
.x
, pos
.y
, (m_bitmap
.GetMask() != 0));
530 else if (m_icon
.Ok())
532 dc
.DrawIcon(m_icon
, pos
.x
, pos
.y
);
539 // Override this if you are using a virtual image (drawing your own image)
540 wxRect
wxGenericDragImage::GetImageRect(const wxPoint
& pos
) const
544 return wxRect(pos
.x
, pos
.y
, m_bitmap
.GetWidth(), m_bitmap
.GetHeight());
546 else if (m_icon
.Ok())
548 return wxRect(pos
.x
, pos
.y
, m_icon
.GetWidth(), m_icon
.GetHeight());
552 return wxRect(pos
.x
, pos
.y
, 0, 0);
556 #endif // wxUSE_DRAGIMAGE