]>
Commit | Line | Data |
---|---|---|
68be9f09 | 1 | ///////////////////////////////////////////////////////////////////////////// |
11e2dfd3 | 2 | // Name: dragimag.cpp |
68be9f09 JS |
3 | // Purpose: wxDragImage sample |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 28/2/2000 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // For compilers that support precompilation, includes "wx/wx.h". | |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
16 | #pragma hdrstop | |
17 | #endif | |
18 | ||
19 | #ifndef WX_PRECOMP | |
11e2dfd3 | 20 | #include "wx/wx.h" |
68be9f09 JS |
21 | #endif |
22 | ||
11e2dfd3 | 23 | #include "wx/image.h" |
68be9f09 JS |
24 | |
25 | // Under Windows, change this to 1 | |
26 | // to use wxGenericDragImage | |
27 | ||
aa2d25a5 | 28 | #define wxUSE_GENERIC_DRAGIMAGE 1 |
68be9f09 JS |
29 | |
30 | #if wxUSE_GENERIC_DRAGIMAGE | |
11e2dfd3 | 31 | #include "wx/generic/dragimgg.h" |
68be9f09 JS |
32 | #define wxDragImage wxGenericDragImage |
33 | #else | |
11e2dfd3 | 34 | #include "wx/dragimag.h" |
68be9f09 JS |
35 | #endif |
36 | ||
11e2dfd3 | 37 | #include "dragimag.h" |
68be9f09 | 38 | |
e334d0ea | 39 | #if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__) |
68be9f09 JS |
40 | #include "mondrian.xpm" |
41 | #include "dragicon.xpm" | |
42 | #endif | |
43 | ||
44 | // main program | |
45 | ||
46 | IMPLEMENT_APP(MyApp) | |
47 | ||
48 | // MyCanvas | |
49 | ||
50 | IMPLEMENT_CLASS(MyCanvas, wxScrolledWindow) | |
51 | ||
52 | BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow) | |
53 | EVT_PAINT(MyCanvas::OnPaint) | |
54 | EVT_ERASE_BACKGROUND(MyCanvas::OnEraseBackground) | |
55 | EVT_MOUSE_EVENTS(MyCanvas::OnMouseEvent) | |
56 | END_EVENT_TABLE() | |
57 | ||
58 | MyCanvas::MyCanvas( wxWindow *parent, wxWindowID id, | |
59 | const wxPoint &pos, const wxSize &size ) | |
60 | : wxScrolledWindow( parent, id, pos, size, wxSUNKEN_BORDER ) | |
61 | { | |
62 | SetBackgroundColour(* wxWHITE); | |
63 | ||
64 | SetCursor(wxCursor(wxCURSOR_ARROW)); | |
65 | ||
66 | m_dragMode = TEST_DRAG_NONE; | |
67 | m_draggedShape = (DragShape*) NULL; | |
68 | m_dragImage = (wxDragImage*) NULL; | |
69 | m_currentlyHighlighted = (DragShape*) NULL; | |
70 | } | |
71 | ||
72 | MyCanvas::~MyCanvas() | |
73 | { | |
74 | ClearShapes(); | |
75 | ||
76 | if (m_dragImage) | |
77 | delete m_dragImage; | |
78 | } | |
79 | ||
80 | void MyCanvas::OnPaint( wxPaintEvent &WXUNUSED(event) ) | |
81 | { | |
82 | wxPaintDC dc( this ); | |
83 | PrepareDC( dc ); | |
84 | ||
85 | DrawShapes(dc); | |
68be9f09 JS |
86 | } |
87 | ||
88 | void MyCanvas::OnEraseBackground(wxEraseEvent& event) | |
89 | { | |
90 | if (wxGetApp().GetBackgroundBitmap().Ok()) | |
91 | { | |
92 | wxSize sz = GetClientSize(); | |
93 | wxRect rect(0, 0, sz.x, sz.y); | |
925e9792 | 94 | |
68be9f09 JS |
95 | if (event.GetDC()) |
96 | { | |
97 | wxGetApp().TileBitmap(rect, *(event.GetDC()), wxGetApp().GetBackgroundBitmap()); | |
98 | } | |
99 | else | |
100 | { | |
101 | wxClientDC dc(this); | |
102 | wxGetApp().TileBitmap(rect, dc, wxGetApp().GetBackgroundBitmap()); | |
103 | } | |
104 | } | |
105 | else | |
106 | event.Skip(); // The official way of doing it | |
107 | } | |
108 | ||
109 | void MyCanvas::OnMouseEvent(wxMouseEvent& event) | |
110 | { | |
111 | if (event.LeftDown()) | |
112 | { | |
113 | DragShape* shape = FindShape(event.GetPosition()); | |
114 | if (shape) | |
115 | { | |
116 | // We tentatively start dragging, but wait for | |
117 | // mouse movement before dragging properly. | |
118 | ||
119 | m_dragMode = TEST_DRAG_START; | |
120 | m_dragStartPos = event.GetPosition(); | |
121 | m_draggedShape = shape; | |
122 | } | |
123 | } | |
124 | else if (event.LeftUp() && m_dragMode != TEST_DRAG_NONE) | |
125 | { | |
126 | // Finish dragging | |
127 | ||
128 | m_dragMode = TEST_DRAG_NONE; | |
129 | ||
130 | if (!m_draggedShape || !m_dragImage) | |
131 | return; | |
132 | ||
aa2d25a5 JS |
133 | m_draggedShape->SetPosition(m_draggedShape->GetPosition() |
134 | + event.GetPosition() - m_dragStartPos); | |
68be9f09 JS |
135 | |
136 | m_dragImage->Hide(); | |
137 | m_dragImage->EndDrag(); | |
138 | delete m_dragImage; | |
139 | m_dragImage = NULL; | |
140 | ||
07850a49 | 141 | m_draggedShape->SetShow(true); |
68be9f09 JS |
142 | |
143 | m_currentlyHighlighted = (DragShape*) NULL; | |
144 | ||
145 | m_draggedShape = (DragShape*) NULL; | |
aa7a6a0e JS |
146 | |
147 | Refresh(true); | |
68be9f09 JS |
148 | } |
149 | else if (event.Dragging() && m_dragMode != TEST_DRAG_NONE) | |
150 | { | |
151 | if (m_dragMode == TEST_DRAG_START) | |
152 | { | |
153 | // We will start dragging if we've moved beyond a couple of pixels | |
154 | ||
155 | int tolerance = 2; | |
156 | int dx = abs(event.GetPosition().x - m_dragStartPos.x); | |
157 | int dy = abs(event.GetPosition().y - m_dragStartPos.y); | |
158 | if (dx <= tolerance && dy <= tolerance) | |
159 | return; | |
160 | ||
68be9f09 JS |
161 | // Start the drag. |
162 | m_dragMode = TEST_DRAG_DRAGGING; | |
163 | ||
164 | if (m_dragImage) | |
165 | delete m_dragImage; | |
166 | ||
167 | // Erase the dragged shape from the canvas | |
07850a49 | 168 | m_draggedShape->SetShow(false); |
aa7a6a0e JS |
169 | |
170 | // redraw immediately | |
171 | Refresh(true); | |
172 | Update(); | |
68be9f09 JS |
173 | |
174 | switch (m_draggedShape->GetDragMethod()) | |
175 | { | |
176 | case SHAPE_DRAG_BITMAP: | |
177 | { | |
aa7a6a0e | 178 | m_dragImage = new MyDragImage(this, m_draggedShape->GetBitmap(), wxCursor(wxCURSOR_HAND)); |
68be9f09 JS |
179 | break; |
180 | } | |
181 | case SHAPE_DRAG_TEXT: | |
182 | { | |
aa7a6a0e | 183 | m_dragImage = new MyDragImage(this, wxString(_T("Dragging some test text")), wxCursor(wxCURSOR_HAND)); |
68be9f09 JS |
184 | break; |
185 | } | |
186 | case SHAPE_DRAG_ICON: | |
187 | { | |
aa7a6a0e | 188 | m_dragImage = new MyDragImage(this, wxICON(dragicon), wxCursor(wxCURSOR_HAND)); |
68be9f09 JS |
189 | break; |
190 | } | |
191 | } | |
192 | ||
aa2d25a5 | 193 | bool fullScreen = wxGetApp().GetUseScreen(); |
68be9f09 | 194 | |
aa2d25a5 JS |
195 | // The offset between the top-left of the shape image and the current shape position |
196 | wxPoint beginDragHotSpot = m_dragStartPos - m_draggedShape->GetPosition(); | |
925e9792 | 197 | |
aa2d25a5 JS |
198 | // Now we do this inside the implementation: always assume |
199 | // coordinates relative to the capture window (client coordinates) | |
68be9f09 | 200 | |
aa2d25a5 JS |
201 | //if (fullScreen) |
202 | // beginDragHotSpot -= ClientToScreen(wxPoint(0, 0)); | |
925e9792 | 203 | |
aa2d25a5 | 204 | if (!m_dragImage->BeginDrag(beginDragHotSpot, this, fullScreen)) |
68be9f09 JS |
205 | { |
206 | delete m_dragImage; | |
207 | m_dragImage = (wxDragImage*) NULL; | |
208 | m_dragMode = TEST_DRAG_NONE; | |
925e9792 | 209 | |
aa2d25a5 JS |
210 | } else |
211 | { | |
212 | m_dragImage->Move(event.GetPosition()); | |
213 | m_dragImage->Show(); | |
68be9f09 | 214 | } |
68be9f09 JS |
215 | } |
216 | else if (m_dragMode == TEST_DRAG_DRAGGING) | |
217 | { | |
218 | // We're currently dragging. See if we're over another shape. | |
219 | DragShape* onShape = FindShape(event.GetPosition()); | |
220 | ||
07850a49 WS |
221 | bool mustUnhighlightOld = false; |
222 | bool mustHighlightNew = false; | |
68be9f09 JS |
223 | |
224 | if (m_currentlyHighlighted) | |
225 | { | |
226 | if ((onShape == (DragShape*) NULL) || (m_currentlyHighlighted != onShape)) | |
07850a49 | 227 | mustUnhighlightOld = true; |
68be9f09 JS |
228 | } |
229 | ||
230 | if (onShape && (onShape != m_currentlyHighlighted) && onShape->IsShown()) | |
07850a49 | 231 | mustHighlightNew = true; |
68be9f09 JS |
232 | |
233 | if (mustUnhighlightOld || mustHighlightNew) | |
234 | m_dragImage->Hide(); | |
aa7a6a0e | 235 | |
68be9f09 | 236 | // Now with the drag image switched off, we can change the window contents. |
68be9f09 | 237 | if (mustUnhighlightOld) |
68be9f09 | 238 | m_currentlyHighlighted = (DragShape*) NULL; |
aa7a6a0e | 239 | |
68be9f09 | 240 | if (mustHighlightNew) |
68be9f09 | 241 | m_currentlyHighlighted = onShape; |
aa7a6a0e JS |
242 | |
243 | if (mustUnhighlightOld || mustHighlightNew) | |
244 | { | |
245 | Refresh(mustUnhighlightOld); | |
246 | Update(); | |
68be9f09 JS |
247 | } |
248 | ||
68be9f09 | 249 | // Move and show the image again |
aa2d25a5 | 250 | m_dragImage->Move(event.GetPosition()); |
68be9f09 JS |
251 | |
252 | if (mustUnhighlightOld || mustHighlightNew) | |
253 | m_dragImage->Show(); | |
254 | } | |
255 | } | |
256 | } | |
257 | ||
258 | void MyCanvas::DrawShapes(wxDC& dc) | |
259 | { | |
ccd7d9e5 | 260 | wxList::compatibility_iterator node = m_displayList.GetFirst(); |
68be9f09 JS |
261 | while (node) |
262 | { | |
b1d4dd7a | 263 | DragShape* shape = (DragShape*) node->GetData(); |
aa7a6a0e JS |
264 | if (shape->IsShown() && m_draggedShape != shape) |
265 | { | |
266 | shape->Draw(dc, (m_currentlyHighlighted == shape)); | |
267 | } | |
b1d4dd7a | 268 | node = node->GetNext(); |
68be9f09 JS |
269 | } |
270 | } | |
271 | ||
272 | void MyCanvas::EraseShape(DragShape* shape, wxDC& dc) | |
273 | { | |
274 | wxSize sz = GetClientSize(); | |
275 | wxRect rect(0, 0, sz.x, sz.y); | |
276 | ||
277 | wxRect rect2(shape->GetRect()); | |
278 | dc.SetClippingRegion(rect2.x, rect2.y, rect2.width, rect2.height); | |
925e9792 | 279 | |
68be9f09 JS |
280 | wxGetApp().TileBitmap(rect, dc, wxGetApp().GetBackgroundBitmap()); |
281 | ||
282 | dc.DestroyClippingRegion(); | |
283 | } | |
284 | ||
285 | void MyCanvas::ClearShapes() | |
286 | { | |
ccd7d9e5 | 287 | wxList::compatibility_iterator node = m_displayList.GetFirst(); |
68be9f09 JS |
288 | while (node) |
289 | { | |
b1d4dd7a | 290 | DragShape* shape = (DragShape*) node->GetData(); |
68be9f09 | 291 | delete shape; |
b1d4dd7a | 292 | node = node->GetNext(); |
68be9f09 JS |
293 | } |
294 | m_displayList.Clear(); | |
295 | } | |
296 | ||
297 | DragShape* MyCanvas::FindShape(const wxPoint& pt) const | |
298 | { | |
ccd7d9e5 | 299 | wxList::compatibility_iterator node = m_displayList.GetFirst(); |
68be9f09 JS |
300 | while (node) |
301 | { | |
b1d4dd7a | 302 | DragShape* shape = (DragShape*) node->GetData(); |
68be9f09 JS |
303 | if (shape->HitTest(pt)) |
304 | return shape; | |
b1d4dd7a | 305 | node = node->GetNext(); |
68be9f09 JS |
306 | } |
307 | return (DragShape*) NULL; | |
308 | } | |
309 | ||
310 | // MyFrame | |
68be9f09 JS |
311 | IMPLEMENT_DYNAMIC_CLASS( MyFrame, wxFrame ) |
312 | ||
313 | BEGIN_EVENT_TABLE(MyFrame,wxFrame) | |
314 | EVT_MENU (wxID_ABOUT, MyFrame::OnAbout) | |
315 | EVT_MENU (wxID_EXIT, MyFrame::OnQuit) | |
316 | END_EVENT_TABLE() | |
317 | ||
318 | MyFrame::MyFrame() | |
07850a49 | 319 | : wxFrame( (wxFrame *)NULL, wxID_ANY, _T("wxDragImage sample"), |
1cfa5d8e | 320 | wxPoint(20,20), wxSize(470,360) ) |
68be9f09 | 321 | { |
1cfa5d8e JS |
322 | wxMenu *file_menu = new wxMenu(); |
323 | file_menu->Append( wxID_ABOUT, _T("&About...")); | |
2153bf89 | 324 | file_menu->AppendCheckItem( TEST_USE_SCREEN, _T("&Use whole screen for dragging"), _T("Use whole screen")); |
1cfa5d8e | 325 | file_menu->Append( wxID_EXIT, _T("E&xit")); |
925e9792 | 326 | |
1cfa5d8e JS |
327 | wxMenuBar *menu_bar = new wxMenuBar(); |
328 | menu_bar->Append(file_menu, _T("&File")); | |
d8d18184 MB |
329 | |
330 | SetIcon(wxICON(mondrian)); | |
1cfa5d8e | 331 | SetMenuBar( menu_bar ); |
925e9792 | 332 | |
8520f137 | 333 | #if wxUSE_STATUSBAR |
1cfa5d8e JS |
334 | CreateStatusBar(2); |
335 | int widths[] = { -1, 100 }; | |
336 | SetStatusWidths( 2, widths ); | |
8520f137 | 337 | #endif // wxUSE_STATUSBAR |
925e9792 | 338 | |
07850a49 | 339 | m_canvas = new MyCanvas( this, wxID_ANY, wxPoint(0,0), wxSize(10,10) ); |
68be9f09 JS |
340 | } |
341 | ||
342 | void MyFrame::OnQuit( wxCommandEvent &WXUNUSED(event) ) | |
343 | { | |
07850a49 | 344 | Close( true ); |
68be9f09 JS |
345 | } |
346 | ||
347 | void MyFrame::OnAbout( wxCommandEvent &WXUNUSED(event) ) | |
348 | { | |
ab1ca7b3 | 349 | (void)wxMessageBox( _T("wxDragImage demo\n") |
1cfa5d8e | 350 | _T("Julian Smart (c) 2000"), |
925e9792 | 351 | _T("About wxDragImage Demo"), |
1cfa5d8e | 352 | wxICON_INFORMATION | wxOK ); |
68be9f09 JS |
353 | } |
354 | ||
355 | //----------------------------------------------------------------------------- | |
356 | // MyApp | |
357 | //----------------------------------------------------------------------------- | |
358 | ||
359 | BEGIN_EVENT_TABLE(MyApp, wxApp) | |
360 | EVT_MENU(TEST_USE_SCREEN, MyApp::OnUseScreen) | |
361 | END_EVENT_TABLE() | |
362 | ||
363 | MyApp::MyApp() | |
364 | { | |
365 | // Drag across whole screen | |
07850a49 | 366 | m_useScreen = false; |
68be9f09 JS |
367 | } |
368 | ||
369 | bool MyApp::OnInit() | |
370 | { | |
45e6e6f8 VZ |
371 | if ( !wxApp::OnInit() ) |
372 | return false; | |
373 | ||
68be9f09 JS |
374 | #if wxUSE_LIBPNG |
375 | wxImage::AddHandler( new wxPNGHandler ); | |
376 | #endif | |
377 | ||
378 | wxImage image; | |
ab1ca7b3 | 379 | if (image.LoadFile(_T("backgrnd.png"), wxBITMAP_TYPE_PNG)) |
68be9f09 | 380 | { |
368d59f0 | 381 | m_background = wxBitmap(image); |
68be9f09 JS |
382 | } |
383 | ||
68be9f09 JS |
384 | MyFrame *frame = new MyFrame(); |
385 | ||
ab1ca7b3 | 386 | wxString rootName(_T("shape0")); |
68be9f09 JS |
387 | |
388 | int i; | |
389 | for (i = 1; i < 4; i++) | |
390 | { | |
391 | wxString filename; | |
4693b20c | 392 | filename.Printf(wxT("%s%d.png"), (const wxChar*)rootName, i); |
2f6c54eb VZ |
393 | /* For some reason under wxX11, the 2nd LoadFile in this loop fails, with |
394 | a BadMatch inside CreateFromImage (inside ConvertToBitmap). This happens even if you copy | |
395 | the first file over the second file. */ | |
68be9f09 JS |
396 | if (image.LoadFile(filename, wxBITMAP_TYPE_PNG)) |
397 | { | |
368d59f0 | 398 | DragShape* newShape = new DragShape(wxBitmap(image)); |
68be9f09 JS |
399 | newShape->SetPosition(wxPoint(i*50, i*50)); |
400 | ||
401 | if (i == 2) | |
402 | newShape->SetDragMethod(SHAPE_DRAG_TEXT); | |
403 | else if (i == 3) | |
404 | newShape->SetDragMethod(SHAPE_DRAG_ICON); | |
405 | else | |
406 | newShape->SetDragMethod(SHAPE_DRAG_BITMAP); | |
407 | frame->GetCanvas()->GetDisplayList().Append(newShape); | |
408 | } | |
409 | } | |
410 | ||
411 | #if 0 | |
412 | // Under Motif or GTK, this demonstrates that | |
413 | // wxScreenDC only gets the root window content. | |
414 | // We need to be able to copy the overall content | |
415 | // for full-screen dragging to work. | |
416 | int w, h; | |
417 | wxDisplaySize(& w, & h); | |
418 | wxBitmap bitmap(w, h); | |
419 | ||
420 | wxScreenDC dc; | |
421 | wxMemoryDC memDC; | |
422 | memDC.SelectObject(bitmap); | |
423 | memDC.Blit(0, 0, w, h, & dc, 0, 0); | |
424 | memDC.SelectObject(wxNullBitmap); | |
425 | m_background = bitmap; | |
426 | #endif | |
427 | ||
07850a49 | 428 | frame->Show( true ); |
68be9f09 | 429 | |
07850a49 | 430 | return true; |
68be9f09 JS |
431 | } |
432 | ||
0cbff120 JS |
433 | int MyApp::OnExit() |
434 | { | |
0cbff120 JS |
435 | return 0; |
436 | } | |
437 | ||
68be9f09 JS |
438 | bool MyApp::TileBitmap(const wxRect& rect, wxDC& dc, wxBitmap& bitmap) |
439 | { | |
440 | int w = bitmap.GetWidth(); | |
441 | int h = bitmap.GetHeight(); | |
925e9792 | 442 | |
68be9f09 JS |
443 | int i, j; |
444 | for (i = rect.x; i < rect.x + rect.width; i += w) | |
445 | { | |
446 | for (j = rect.y; j < rect.y + rect.height; j+= h) | |
447 | dc.DrawBitmap(bitmap, i, j); | |
448 | } | |
07850a49 | 449 | return true; |
68be9f09 JS |
450 | } |
451 | ||
87728739 | 452 | void MyApp::OnUseScreen(wxCommandEvent& WXUNUSED(event)) |
68be9f09 JS |
453 | { |
454 | m_useScreen = !m_useScreen; | |
455 | } | |
456 | ||
457 | // DragShape | |
458 | ||
459 | DragShape::DragShape(const wxBitmap& bitmap) | |
460 | { | |
461 | m_bitmap = bitmap; | |
462 | m_pos.x = 0; | |
463 | m_pos.y = 0; | |
464 | m_dragMethod = SHAPE_DRAG_BITMAP; | |
07850a49 | 465 | m_show = true; |
68be9f09 JS |
466 | } |
467 | ||
68be9f09 JS |
468 | bool DragShape::HitTest(const wxPoint& pt) const |
469 | { | |
470 | wxRect rect(GetRect()); | |
50dd4ca9 | 471 | return rect.Contains(pt.x, pt.y); |
68be9f09 JS |
472 | } |
473 | ||
aa7a6a0e | 474 | bool DragShape::Draw(wxDC& dc, bool highlight) |
68be9f09 JS |
475 | { |
476 | if (m_bitmap.Ok()) | |
477 | { | |
478 | wxMemoryDC memDC; | |
479 | memDC.SelectObject(m_bitmap); | |
925e9792 | 480 | |
68be9f09 | 481 | dc.Blit(m_pos.x, m_pos.y, m_bitmap.GetWidth(), m_bitmap.GetHeight(), |
aa7a6a0e JS |
482 | & memDC, 0, 0, wxCOPY, true); |
483 | ||
484 | if (highlight) | |
485 | { | |
486 | dc.SetPen(*wxWHITE_PEN); | |
487 | dc.SetBrush(*wxTRANSPARENT_BRUSH); | |
488 | dc.DrawRectangle(m_pos.x, m_pos.y, m_bitmap.GetWidth(), m_bitmap.GetHeight()); | |
489 | } | |
68be9f09 | 490 | |
07850a49 | 491 | return true; |
68be9f09 JS |
492 | } |
493 | else | |
07850a49 | 494 | return false; |
68be9f09 JS |
495 | } |
496 | ||
aa7a6a0e JS |
497 | // MyDragImage |
498 | ||
499 | // On some platforms, notably Mac OS X with Core Graphics, we can't blit from | |
500 | // a window, so we need to draw the background explicitly. | |
501 | bool MyDragImage::UpdateBackingFromWindow(wxDC& WXUNUSED(windowDC), wxMemoryDC& destDC, const wxRect& WXUNUSED(sourceRect), | |
502 | const wxRect& destRect) const | |
503 | { | |
504 | destDC.SetClippingRegion(destRect); | |
505 | ||
506 | if (wxGetApp().GetBackgroundBitmap().Ok()) | |
507 | wxGetApp().TileBitmap(destRect, destDC, wxGetApp().GetBackgroundBitmap()); | |
508 | ||
509 | m_canvas->DrawShapes(destDC); | |
510 | return true; | |
511 | } | |
512 |