]> git.saurik.com Git - wxWidgets.git/blame - samples/dragimag/dragimag.cpp
moved GTK headers needed by wxUniv to GTK_LOWLEVEL_HDR from GTK_HDR (should fix 1016249)
[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);
94
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
141 wxClientDC dc(this);
142 if (m_currentlyHighlighted)
143 {
144 m_currentlyHighlighted->Draw(dc);
145 }
07850a49 146 m_draggedShape->SetShow(true);
68be9f09
JS
147 m_draggedShape->Draw(dc);
148
149 m_currentlyHighlighted = (DragShape*) NULL;
150
151 m_draggedShape = (DragShape*) NULL;
152 }
153 else if (event.Dragging() && m_dragMode != TEST_DRAG_NONE)
154 {
155 if (m_dragMode == TEST_DRAG_START)
156 {
157 // We will start dragging if we've moved beyond a couple of pixels
158
159 int tolerance = 2;
160 int dx = abs(event.GetPosition().x - m_dragStartPos.x);
161 int dy = abs(event.GetPosition().y - m_dragStartPos.y);
162 if (dx <= tolerance && dy <= tolerance)
163 return;
164
68be9f09
JS
165 // Start the drag.
166 m_dragMode = TEST_DRAG_DRAGGING;
167
168 if (m_dragImage)
169 delete m_dragImage;
170
171 // Erase the dragged shape from the canvas
07850a49 172 m_draggedShape->SetShow(false);
68be9f09
JS
173 wxClientDC dc(this);
174 EraseShape(m_draggedShape, dc);
175 DrawShapes(dc);
176
177 switch (m_draggedShape->GetDragMethod())
178 {
179 case SHAPE_DRAG_BITMAP:
180 {
aa2d25a5 181 m_dragImage = new wxDragImage(m_draggedShape->GetBitmap(), wxCursor(wxCURSOR_HAND));
68be9f09
JS
182 break;
183 }
184 case SHAPE_DRAG_TEXT:
185 {
ab1ca7b3 186 m_dragImage = new wxDragImage(wxString(_T("Dragging some test text")), wxCursor(wxCURSOR_HAND));
68be9f09
JS
187 break;
188 }
189 case SHAPE_DRAG_ICON:
190 {
68be9f09
JS
191 // Can anyone explain why this test is necessary,
192 // to prevent a gcc error?
e334d0ea 193#if defined(__WXMOTIF__) || defined(__WXX11__)
6ea5c52d 194 wxIcon icon(dragicon_xpm);
68be9f09 195#else
6ea5c52d 196 wxIcon icon(wxICON(dragicon));
68be9f09 197#endif
6ea5c52d 198
aa2d25a5 199 m_dragImage = new wxDragImage(icon, wxCursor(wxCURSOR_HAND));
68be9f09
JS
200 break;
201 }
202 }
203
aa2d25a5 204 bool fullScreen = wxGetApp().GetUseScreen();
68be9f09 205
aa2d25a5
JS
206 // The offset between the top-left of the shape image and the current shape position
207 wxPoint beginDragHotSpot = m_dragStartPos - m_draggedShape->GetPosition();
208
209 // Now we do this inside the implementation: always assume
210 // coordinates relative to the capture window (client coordinates)
68be9f09 211
aa2d25a5
JS
212 //if (fullScreen)
213 // beginDragHotSpot -= ClientToScreen(wxPoint(0, 0));
214
215 if (!m_dragImage->BeginDrag(beginDragHotSpot, this, fullScreen))
68be9f09
JS
216 {
217 delete m_dragImage;
218 m_dragImage = (wxDragImage*) NULL;
219 m_dragMode = TEST_DRAG_NONE;
aa2d25a5
JS
220
221 } else
222 {
223 m_dragImage->Move(event.GetPosition());
224 m_dragImage->Show();
68be9f09 225 }
68be9f09
JS
226 }
227 else if (m_dragMode == TEST_DRAG_DRAGGING)
228 {
229 // We're currently dragging. See if we're over another shape.
230 DragShape* onShape = FindShape(event.GetPosition());
231
07850a49
WS
232 bool mustUnhighlightOld = false;
233 bool mustHighlightNew = false;
68be9f09
JS
234
235 if (m_currentlyHighlighted)
236 {
237 if ((onShape == (DragShape*) NULL) || (m_currentlyHighlighted != onShape))
07850a49 238 mustUnhighlightOld = true;
68be9f09
JS
239 }
240
241 if (onShape && (onShape != m_currentlyHighlighted) && onShape->IsShown())
07850a49 242 mustHighlightNew = true;
68be9f09
JS
243
244 if (mustUnhighlightOld || mustHighlightNew)
245 m_dragImage->Hide();
246
247 // Now with the drag image switched off, we can change the window contents.
248
249 if (mustUnhighlightOld)
250 {
251 wxClientDC clientDC(this);
252 m_currentlyHighlighted->Draw(clientDC);
253 m_currentlyHighlighted = (DragShape*) NULL;
254 }
255 if (mustHighlightNew)
256 {
257 wxClientDC clientDC(this);
258 m_currentlyHighlighted = onShape;
259 m_currentlyHighlighted->Draw(clientDC, wxINVERT);
260 }
261
68be9f09 262 // Move and show the image again
aa2d25a5 263 m_dragImage->Move(event.GetPosition());
68be9f09
JS
264
265 if (mustUnhighlightOld || mustHighlightNew)
266 m_dragImage->Show();
267 }
268 }
269}
270
271void MyCanvas::DrawShapes(wxDC& dc)
272{
ccd7d9e5 273 wxList::compatibility_iterator node = m_displayList.GetFirst();
68be9f09
JS
274 while (node)
275 {
b1d4dd7a 276 DragShape* shape = (DragShape*) node->GetData();
68be9f09
JS
277 if (shape->IsShown())
278 shape->Draw(dc);
b1d4dd7a 279 node = node->GetNext();
68be9f09
JS
280 }
281}
282
283void MyCanvas::EraseShape(DragShape* shape, wxDC& dc)
284{
285 wxSize sz = GetClientSize();
286 wxRect rect(0, 0, sz.x, sz.y);
287
288 wxRect rect2(shape->GetRect());
289 dc.SetClippingRegion(rect2.x, rect2.y, rect2.width, rect2.height);
290
291 wxGetApp().TileBitmap(rect, dc, wxGetApp().GetBackgroundBitmap());
292
293 dc.DestroyClippingRegion();
294}
295
296void MyCanvas::ClearShapes()
297{
ccd7d9e5 298 wxList::compatibility_iterator node = m_displayList.GetFirst();
68be9f09
JS
299 while (node)
300 {
b1d4dd7a 301 DragShape* shape = (DragShape*) node->GetData();
68be9f09 302 delete shape;
b1d4dd7a 303 node = node->GetNext();
68be9f09
JS
304 }
305 m_displayList.Clear();
306}
307
308DragShape* MyCanvas::FindShape(const wxPoint& pt) const
309{
ccd7d9e5 310 wxList::compatibility_iterator node = m_displayList.GetFirst();
68be9f09
JS
311 while (node)
312 {
b1d4dd7a 313 DragShape* shape = (DragShape*) node->GetData();
68be9f09
JS
314 if (shape->HitTest(pt))
315 return shape;
b1d4dd7a 316 node = node->GetNext();
68be9f09
JS
317 }
318 return (DragShape*) NULL;
319}
320
321// MyFrame
68be9f09
JS
322IMPLEMENT_DYNAMIC_CLASS( MyFrame, wxFrame )
323
324BEGIN_EVENT_TABLE(MyFrame,wxFrame)
325 EVT_MENU (wxID_ABOUT, MyFrame::OnAbout)
326 EVT_MENU (wxID_EXIT, MyFrame::OnQuit)
327END_EVENT_TABLE()
328
329MyFrame::MyFrame()
07850a49 330: wxFrame( (wxFrame *)NULL, wxID_ANY, _T("wxDragImage sample"),
1cfa5d8e 331 wxPoint(20,20), wxSize(470,360) )
68be9f09 332{
1cfa5d8e
JS
333 wxMenu *file_menu = new wxMenu();
334 file_menu->Append( wxID_ABOUT, _T("&About..."));
2153bf89 335 file_menu->AppendCheckItem( TEST_USE_SCREEN, _T("&Use whole screen for dragging"), _T("Use whole screen"));
1cfa5d8e
JS
336 file_menu->Append( wxID_EXIT, _T("E&xit"));
337
338 wxMenuBar *menu_bar = new wxMenuBar();
339 menu_bar->Append(file_menu, _T("&File"));
d8d18184
MB
340
341 SetIcon(wxICON(mondrian));
1cfa5d8e
JS
342 SetMenuBar( menu_bar );
343
8520f137 344#if wxUSE_STATUSBAR
1cfa5d8e
JS
345 CreateStatusBar(2);
346 int widths[] = { -1, 100 };
347 SetStatusWidths( 2, widths );
8520f137 348#endif // wxUSE_STATUSBAR
1cfa5d8e 349
07850a49 350 m_canvas = new MyCanvas( this, wxID_ANY, wxPoint(0,0), wxSize(10,10) );
68be9f09
JS
351}
352
353void MyFrame::OnQuit( wxCommandEvent &WXUNUSED(event) )
354{
07850a49 355 Close( true );
68be9f09
JS
356}
357
358void MyFrame::OnAbout( wxCommandEvent &WXUNUSED(event) )
359{
ab1ca7b3 360 (void)wxMessageBox( _T("wxDragImage demo\n")
1cfa5d8e
JS
361 _T("Julian Smart (c) 2000"),
362 _T("About wxDragImage Demo"),
363 wxICON_INFORMATION | wxOK );
68be9f09
JS
364}
365
366//-----------------------------------------------------------------------------
367// MyApp
368//-----------------------------------------------------------------------------
369
370BEGIN_EVENT_TABLE(MyApp, wxApp)
371 EVT_MENU(TEST_USE_SCREEN, MyApp::OnUseScreen)
372END_EVENT_TABLE()
373
374MyApp::MyApp()
375{
376 // Drag across whole screen
07850a49 377 m_useScreen = false;
68be9f09
JS
378}
379
380bool MyApp::OnInit()
381{
382#if wxUSE_LIBPNG
383 wxImage::AddHandler( new wxPNGHandler );
384#endif
385
386 wxImage image;
ab1ca7b3 387 if (image.LoadFile(_T("backgrnd.png"), wxBITMAP_TYPE_PNG))
68be9f09 388 {
368d59f0 389 m_background = wxBitmap(image);
68be9f09
JS
390 }
391
68be9f09
JS
392 MyFrame *frame = new MyFrame();
393
ab1ca7b3 394 wxString rootName(_T("shape0"));
68be9f09
JS
395
396 int i;
397 for (i = 1; i < 4; i++)
398 {
399 wxString filename;
4693b20c 400 filename.Printf(wxT("%s%d.png"), (const wxChar*)rootName, i);
2f6c54eb
VZ
401 /* For some reason under wxX11, the 2nd LoadFile in this loop fails, with
402 a BadMatch inside CreateFromImage (inside ConvertToBitmap). This happens even if you copy
403 the first file over the second file. */
68be9f09
JS
404 if (image.LoadFile(filename, wxBITMAP_TYPE_PNG))
405 {
368d59f0 406 DragShape* newShape = new DragShape(wxBitmap(image));
68be9f09
JS
407 newShape->SetPosition(wxPoint(i*50, i*50));
408
409 if (i == 2)
410 newShape->SetDragMethod(SHAPE_DRAG_TEXT);
411 else if (i == 3)
412 newShape->SetDragMethod(SHAPE_DRAG_ICON);
413 else
414 newShape->SetDragMethod(SHAPE_DRAG_BITMAP);
415 frame->GetCanvas()->GetDisplayList().Append(newShape);
416 }
417 }
418
419#if 0
420 // Under Motif or GTK, this demonstrates that
421 // wxScreenDC only gets the root window content.
422 // We need to be able to copy the overall content
423 // for full-screen dragging to work.
424 int w, h;
425 wxDisplaySize(& w, & h);
426 wxBitmap bitmap(w, h);
427
428 wxScreenDC dc;
429 wxMemoryDC memDC;
430 memDC.SelectObject(bitmap);
431 memDC.Blit(0, 0, w, h, & dc, 0, 0);
432 memDC.SelectObject(wxNullBitmap);
433 m_background = bitmap;
434#endif
435
07850a49 436 frame->Show( true );
68be9f09 437
07850a49 438 return true;
68be9f09
JS
439}
440
0cbff120
JS
441int MyApp::OnExit()
442{
0cbff120
JS
443 return 0;
444}
445
68be9f09
JS
446bool MyApp::TileBitmap(const wxRect& rect, wxDC& dc, wxBitmap& bitmap)
447{
448 int w = bitmap.GetWidth();
449 int h = bitmap.GetHeight();
450
451 int i, j;
452 for (i = rect.x; i < rect.x + rect.width; i += w)
453 {
454 for (j = rect.y; j < rect.y + rect.height; j+= h)
455 dc.DrawBitmap(bitmap, i, j);
456 }
07850a49 457 return true;
68be9f09
JS
458}
459
87728739 460void MyApp::OnUseScreen(wxCommandEvent& WXUNUSED(event))
68be9f09
JS
461{
462 m_useScreen = !m_useScreen;
463}
464
465// DragShape
466
467DragShape::DragShape(const wxBitmap& bitmap)
468{
469 m_bitmap = bitmap;
470 m_pos.x = 0;
471 m_pos.y = 0;
472 m_dragMethod = SHAPE_DRAG_BITMAP;
07850a49 473 m_show = true;
68be9f09
JS
474}
475
476DragShape::~DragShape()
477{
478}
479
480bool DragShape::HitTest(const wxPoint& pt) const
481{
482 wxRect rect(GetRect());
483 return rect.Inside(pt.x, pt.y);
484}
485
486bool DragShape::Draw(wxDC& dc, int op)
487{
488 if (m_bitmap.Ok())
489 {
490 wxMemoryDC memDC;
491 memDC.SelectObject(m_bitmap);
492
493 dc.Blit(m_pos.x, m_pos.y, m_bitmap.GetWidth(), m_bitmap.GetHeight(),
07850a49 494 & memDC, 0, 0, op, true);
68be9f09 495
07850a49 496 return true;
68be9f09
JS
497 }
498 else
07850a49 499 return false;
68be9f09
JS
500}
501