]> git.saurik.com Git - wxWidgets.git/blame - samples/dragimag/dragimag.cpp
add accessors using wxFileName to wxFile/DirPickerCtrl (patch 1622534)
[wxWidgets.git] / samples / dragimag / dragimag.cpp
CommitLineData
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
46IMPLEMENT_APP(MyApp)
47
48// MyCanvas
49
50IMPLEMENT_CLASS(MyCanvas, wxScrolledWindow)
51
52BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow)
53 EVT_PAINT(MyCanvas::OnPaint)
54 EVT_ERASE_BACKGROUND(MyCanvas::OnEraseBackground)
55 EVT_MOUSE_EVENTS(MyCanvas::OnMouseEvent)
56END_EVENT_TABLE()
57
58MyCanvas::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
72MyCanvas::~MyCanvas()
73{
74 ClearShapes();
75
76 if (m_dragImage)
77 delete m_dragImage;
78}
79
80void MyCanvas::OnPaint( wxPaintEvent &WXUNUSED(event) )
81{
82 wxPaintDC dc( this );
83 PrepareDC( dc );
84
85 DrawShapes(dc);
68be9f09
JS
86}
87
88void 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
109void 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
258void 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
272void 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
285void 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
297DragShape* 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
311IMPLEMENT_DYNAMIC_CLASS( MyFrame, wxFrame )
312
313BEGIN_EVENT_TABLE(MyFrame,wxFrame)
314 EVT_MENU (wxID_ABOUT, MyFrame::OnAbout)
315 EVT_MENU (wxID_EXIT, MyFrame::OnQuit)
316END_EVENT_TABLE()
317
318MyFrame::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
342void MyFrame::OnQuit( wxCommandEvent &WXUNUSED(event) )
343{
07850a49 344 Close( true );
68be9f09
JS
345}
346
347void 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
359BEGIN_EVENT_TABLE(MyApp, wxApp)
360 EVT_MENU(TEST_USE_SCREEN, MyApp::OnUseScreen)
361END_EVENT_TABLE()
362
363MyApp::MyApp()
364{
365 // Drag across whole screen
07850a49 366 m_useScreen = false;
68be9f09
JS
367}
368
369bool MyApp::OnInit()
370{
371#if wxUSE_LIBPNG
372 wxImage::AddHandler( new wxPNGHandler );
373#endif
374
375 wxImage image;
ab1ca7b3 376 if (image.LoadFile(_T("backgrnd.png"), wxBITMAP_TYPE_PNG))
68be9f09 377 {
368d59f0 378 m_background = wxBitmap(image);
68be9f09
JS
379 }
380
68be9f09
JS
381 MyFrame *frame = new MyFrame();
382
ab1ca7b3 383 wxString rootName(_T("shape0"));
68be9f09
JS
384
385 int i;
386 for (i = 1; i < 4; i++)
387 {
388 wxString filename;
4693b20c 389 filename.Printf(wxT("%s%d.png"), (const wxChar*)rootName, i);
2f6c54eb
VZ
390 /* For some reason under wxX11, the 2nd LoadFile in this loop fails, with
391 a BadMatch inside CreateFromImage (inside ConvertToBitmap). This happens even if you copy
392 the first file over the second file. */
68be9f09
JS
393 if (image.LoadFile(filename, wxBITMAP_TYPE_PNG))
394 {
368d59f0 395 DragShape* newShape = new DragShape(wxBitmap(image));
68be9f09
JS
396 newShape->SetPosition(wxPoint(i*50, i*50));
397
398 if (i == 2)
399 newShape->SetDragMethod(SHAPE_DRAG_TEXT);
400 else if (i == 3)
401 newShape->SetDragMethod(SHAPE_DRAG_ICON);
402 else
403 newShape->SetDragMethod(SHAPE_DRAG_BITMAP);
404 frame->GetCanvas()->GetDisplayList().Append(newShape);
405 }
406 }
407
408#if 0
409 // Under Motif or GTK, this demonstrates that
410 // wxScreenDC only gets the root window content.
411 // We need to be able to copy the overall content
412 // for full-screen dragging to work.
413 int w, h;
414 wxDisplaySize(& w, & h);
415 wxBitmap bitmap(w, h);
416
417 wxScreenDC dc;
418 wxMemoryDC memDC;
419 memDC.SelectObject(bitmap);
420 memDC.Blit(0, 0, w, h, & dc, 0, 0);
421 memDC.SelectObject(wxNullBitmap);
422 m_background = bitmap;
423#endif
424
07850a49 425 frame->Show( true );
68be9f09 426
07850a49 427 return true;
68be9f09
JS
428}
429
0cbff120
JS
430int MyApp::OnExit()
431{
0cbff120
JS
432 return 0;
433}
434
68be9f09
JS
435bool MyApp::TileBitmap(const wxRect& rect, wxDC& dc, wxBitmap& bitmap)
436{
437 int w = bitmap.GetWidth();
438 int h = bitmap.GetHeight();
925e9792 439
68be9f09
JS
440 int i, j;
441 for (i = rect.x; i < rect.x + rect.width; i += w)
442 {
443 for (j = rect.y; j < rect.y + rect.height; j+= h)
444 dc.DrawBitmap(bitmap, i, j);
445 }
07850a49 446 return true;
68be9f09
JS
447}
448
87728739 449void MyApp::OnUseScreen(wxCommandEvent& WXUNUSED(event))
68be9f09
JS
450{
451 m_useScreen = !m_useScreen;
452}
453
454// DragShape
455
456DragShape::DragShape(const wxBitmap& bitmap)
457{
458 m_bitmap = bitmap;
459 m_pos.x = 0;
460 m_pos.y = 0;
461 m_dragMethod = SHAPE_DRAG_BITMAP;
07850a49 462 m_show = true;
68be9f09
JS
463}
464
68be9f09
JS
465bool DragShape::HitTest(const wxPoint& pt) const
466{
467 wxRect rect(GetRect());
50dd4ca9 468 return rect.Contains(pt.x, pt.y);
68be9f09
JS
469}
470
aa7a6a0e 471bool DragShape::Draw(wxDC& dc, bool highlight)
68be9f09
JS
472{
473 if (m_bitmap.Ok())
474 {
475 wxMemoryDC memDC;
476 memDC.SelectObject(m_bitmap);
925e9792 477
68be9f09 478 dc.Blit(m_pos.x, m_pos.y, m_bitmap.GetWidth(), m_bitmap.GetHeight(),
aa7a6a0e
JS
479 & memDC, 0, 0, wxCOPY, true);
480
481 if (highlight)
482 {
483 dc.SetPen(*wxWHITE_PEN);
484 dc.SetBrush(*wxTRANSPARENT_BRUSH);
485 dc.DrawRectangle(m_pos.x, m_pos.y, m_bitmap.GetWidth(), m_bitmap.GetHeight());
486 }
68be9f09 487
07850a49 488 return true;
68be9f09
JS
489 }
490 else
07850a49 491 return false;
68be9f09
JS
492}
493
aa7a6a0e
JS
494// MyDragImage
495
496// On some platforms, notably Mac OS X with Core Graphics, we can't blit from
497// a window, so we need to draw the background explicitly.
498bool MyDragImage::UpdateBackingFromWindow(wxDC& WXUNUSED(windowDC), wxMemoryDC& destDC, const wxRect& WXUNUSED(sourceRect),
499 const wxRect& destRect) const
500{
501 destDC.SetClippingRegion(destRect);
502
503 if (wxGetApp().GetBackgroundBitmap().Ok())
504 wxGetApp().TileBitmap(destRect, destDC, wxGetApp().GetBackgroundBitmap());
505
506 m_canvas->DrawShapes(destDC);
507 return true;
508}
509