1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Drag and drop sample
4 // Author: Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
23 #include "wx/dataobj.h"
25 #include "wx/clipbrd.h"
26 #include "wx/colordlg.h"
27 #include "wx/metafile.h"
29 #if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
30 #include "../sample.xpm"
31 #if wxUSE_DRAG_AND_DROP
32 #include "dnd_copy.xpm"
33 #include "dnd_move.xpm"
34 #include "dnd_none.xpm"
38 #if wxUSE_DRAG_AND_DROP
40 // ----------------------------------------------------------------------------
41 // Derive two simple classes which just put in the listbox the strings (text or
42 // file names) we drop on them
43 // ----------------------------------------------------------------------------
45 class DnDText
: public wxTextDropTarget
48 DnDText(wxListBox
*pOwner
) { m_pOwner
= pOwner
; }
50 virtual bool OnDropText(wxCoord x
, wxCoord y
, const wxString
& text
);
56 class DnDFile
: public wxFileDropTarget
59 DnDFile(wxListBox
*pOwner
) { m_pOwner
= pOwner
; }
61 virtual bool OnDropFiles(wxCoord x
, wxCoord y
,
62 const wxArrayString
& filenames
);
68 // ----------------------------------------------------------------------------
69 // Define a custom dtop target accepting URLs
70 // ----------------------------------------------------------------------------
72 class URLDropTarget
: public wxDropTarget
75 URLDropTarget() { SetDataObject(new wxURLDataObject
); }
77 void OnDropURL(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
), const wxString
& text
)
79 // of course, a real program would do something more useful here...
80 wxMessageBox(text
, _T("wxDnD sample: got URL"),
81 wxICON_INFORMATION
| wxOK
);
84 // URLs can't be moved, only copied
85 virtual wxDragResult
OnDragOver(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
),
86 wxDragResult
WXUNUSED(def
))
88 return wxDragLink
; // At least IE 5.x needs wxDragLink, the
89 // other browsers on MSW seem okay with it too.
92 // translate this to calls to OnDropURL() just for convenience
93 virtual wxDragResult
OnData(wxCoord x
, wxCoord y
, wxDragResult def
)
98 OnDropURL(x
, y
, ((wxURLDataObject
*)m_dataObject
)->GetURL());
104 #endif // wxUSE_DRAG_AND_DROP
106 // ----------------------------------------------------------------------------
107 // Define a new application type
108 // ----------------------------------------------------------------------------
110 class DnDApp
: public wxApp
113 virtual bool OnInit();
116 IMPLEMENT_APP(DnDApp
)
118 #if wxUSE_DRAG_AND_DROP || wxUSE_CLIPBOARD
120 // ----------------------------------------------------------------------------
121 // Define canvas class to show a bitmap
122 // ----------------------------------------------------------------------------
124 class DnDCanvasBitmap
: public wxScrolledWindow
127 DnDCanvasBitmap(wxWindow
*parent
) : wxScrolledWindow(parent
) { }
129 void SetBitmap(const wxBitmap
& bitmap
)
133 SetScrollbars(10, 10,
134 m_bitmap
.GetWidth() / 10, m_bitmap
.GetHeight() / 10);
139 void OnPaint(wxPaintEvent
& WXUNUSED(event
))
147 dc
.DrawBitmap(m_bitmap
, 0, 0);
154 DECLARE_EVENT_TABLE()
159 // and the same thing fo metafiles
160 class DnDCanvasMetafile
: public wxScrolledWindow
163 DnDCanvasMetafile(wxWindow
*parent
) : wxScrolledWindow(parent
) { }
165 void SetMetafile(const wxMetafile
& metafile
)
167 m_metafile
= metafile
;
169 SetScrollbars(10, 10,
170 m_metafile
.GetWidth() / 10, m_metafile
.GetHeight() / 10);
175 void OnPaint(wxPaintEvent
&)
179 if ( m_metafile
.Ok() )
183 m_metafile
.Play(&dc
);
188 wxMetafile m_metafile
;
190 DECLARE_EVENT_TABLE()
193 #endif // wxUSE_METAFILE
195 // ----------------------------------------------------------------------------
196 // Define a new frame type for the main frame
197 // ----------------------------------------------------------------------------
199 class DnDFrame
: public wxFrame
202 DnDFrame(wxFrame
*frame
, const wxChar
*title
, int x
, int y
, int w
, int h
);
205 void OnPaint(wxPaintEvent
& event
);
206 void OnSize(wxSizeEvent
& event
);
207 void OnQuit(wxCommandEvent
& event
);
208 void OnAbout(wxCommandEvent
& event
);
209 void OnDrag(wxCommandEvent
& event
);
210 void OnDragMoveByDefault(wxCommandEvent
& event
);
211 void OnDragMoveAllow(wxCommandEvent
& event
);
212 void OnNewFrame(wxCommandEvent
& event
);
213 void OnHelp (wxCommandEvent
& event
);
215 void OnLogClear(wxCommandEvent
& event
);
218 void OnCopy(wxCommandEvent
& event
);
219 void OnPaste(wxCommandEvent
& event
);
221 void OnCopyBitmap(wxCommandEvent
& event
);
222 void OnPasteBitmap(wxCommandEvent
& event
);
225 void OnPasteMetafile(wxCommandEvent
& event
);
226 #endif // wxUSE_METAFILE
228 void OnCopyFiles(wxCommandEvent
& event
);
230 void OnUsePrimary(wxCommandEvent
& event
);
232 void OnLeftDown(wxMouseEvent
& event
);
233 void OnRightDown(wxMouseEvent
& event
);
235 void OnUpdateUIMoveByDefault(wxUpdateUIEvent
& event
);
237 void OnUpdateUIPasteText(wxUpdateUIEvent
& event
);
238 void OnUpdateUIPasteBitmap(wxUpdateUIEvent
& event
);
240 DECLARE_EVENT_TABLE()
244 wxListBox
*m_ctrlFile
,
248 wxTextCtrl
*m_ctrlLog
;
254 // move the text by default (or copy)?
255 bool m_moveByDefault
;
257 // allow moving the text at all?
264 // ----------------------------------------------------------------------------
265 // A shape is an example of application-specific data which may be transported
266 // via drag-and-drop or clipboard: in our case, we have different geometric
267 // shapes, each one with its own colour and position
268 // ----------------------------------------------------------------------------
270 #if wxUSE_DRAG_AND_DROP
283 DnDShape(const wxPoint
& pos
,
286 : m_pos(pos
), m_size(size
), m_col(col
)
290 // this is for debugging - lets us see when exactly an object is freed
291 // (this may be later than you think if it's on the clipboard, for example)
292 virtual ~DnDShape() { }
294 // the functions used for drag-and-drop: they dump and restore a shape into
295 // some bitwise-copiable data (might use streams too...)
296 // ------------------------------------------------------------------------
298 // restore from buffer
299 static DnDShape
*New(const void *buf
);
301 virtual size_t GetDataSize() const
303 return sizeof(ShapeDump
);
306 virtual void GetDataHere(void *buf
) const
308 ShapeDump
& dump
= *(ShapeDump
*)buf
;
313 dump
.r
= m_col
.Red();
314 dump
.g
= m_col
.Green();
315 dump
.b
= m_col
.Blue();
320 const wxPoint
& GetPosition() const { return m_pos
; }
321 const wxColour
& GetColour() const { return m_col
; }
322 const wxSize
& GetSize() const { return m_size
; }
324 void Move(const wxPoint
& pos
) { m_pos
= pos
; }
326 // to implement in derived classes
327 virtual Kind
GetKind() const = 0;
329 virtual void Draw(wxDC
& dc
)
331 dc
.SetPen(wxPen(m_col
, 1, wxSOLID
));
335 //get a point 1 up and 1 left, otherwise the mid-point of a triangle is on the line
336 wxPoint
GetCentre() const
337 { return wxPoint(m_pos
.x
+ m_size
.x
/ 2 - 1, m_pos
.y
+ m_size
.y
/ 2 - 1); }
341 wxCoord x
, y
, // position
344 unsigned char r
, g
, b
; // colour
352 class DnDTriangularShape
: public DnDShape
355 DnDTriangularShape(const wxPoint
& pos
,
358 : DnDShape(pos
, size
, col
)
360 wxLogMessage(wxT("DnDTriangularShape is being created"));
363 virtual ~DnDTriangularShape()
365 wxLogMessage(wxT("DnDTriangularShape is being deleted"));
368 virtual Kind
GetKind() const { return Triangle
; }
369 virtual void Draw(wxDC
& dc
)
373 // well, it's a bit difficult to describe a triangle by position and
374 // size, but we're not doing geometry here, do we? ;-)
376 wxPoint
p2(m_pos
.x
+ m_size
.x
, m_pos
.y
);
377 wxPoint
p3(m_pos
.x
, m_pos
.y
+ m_size
.y
);
383 //works in multicolor modes; on GTK (at least) will fail in 16-bit color
384 dc
.SetBrush(wxBrush(m_col
, wxSOLID
));
385 dc
.FloodFill(GetCentre(), m_col
, wxFLOOD_BORDER
);
389 class DnDRectangularShape
: public DnDShape
392 DnDRectangularShape(const wxPoint
& pos
,
395 : DnDShape(pos
, size
, col
)
397 wxLogMessage(wxT("DnDRectangularShape is being created"));
400 virtual ~DnDRectangularShape()
402 wxLogMessage(wxT("DnDRectangularShape is being deleted"));
405 virtual Kind
GetKind() const { return Rectangle
; }
406 virtual void Draw(wxDC
& dc
)
411 wxPoint
p2(p1
.x
+ m_size
.x
, p1
.y
);
412 wxPoint
p3(p2
.x
, p2
.y
+ m_size
.y
);
413 wxPoint
p4(p1
.x
, p3
.y
);
420 dc
.SetBrush(wxBrush(m_col
, wxSOLID
));
421 dc
.FloodFill(GetCentre(), m_col
, wxFLOOD_BORDER
);
425 class DnDEllipticShape
: public DnDShape
428 DnDEllipticShape(const wxPoint
& pos
,
431 : DnDShape(pos
, size
, col
)
433 wxLogMessage(wxT("DnDEllipticShape is being created"));
436 virtual ~DnDEllipticShape()
438 wxLogMessage(wxT("DnDEllipticShape is being deleted"));
441 virtual Kind
GetKind() const { return Ellipse
; }
442 virtual void Draw(wxDC
& dc
)
446 dc
.DrawEllipse(m_pos
, m_size
);
448 dc
.SetBrush(wxBrush(m_col
, wxSOLID
));
449 dc
.FloodFill(GetCentre(), m_col
, wxFLOOD_BORDER
);
453 // ----------------------------------------------------------------------------
454 // A wxDataObject specialisation for the application-specific data
455 // ----------------------------------------------------------------------------
457 static const wxChar
*shapeFormatId
= wxT("wxShape");
459 class DnDShapeDataObject
: public wxDataObject
462 // ctor doesn't copy the pointer, so it shouldn't go away while this object
464 DnDShapeDataObject(DnDShape
*shape
= (DnDShape
*)NULL
)
468 // we need to copy the shape because the one we're handled may be
469 // deleted while it's still on the clipboard (for example) - and we
470 // reuse the serialisation methods here to copy it
471 void *buf
= malloc(shape
->DnDShape::GetDataSize());
472 shape
->GetDataHere(buf
);
473 m_shape
= DnDShape::New(buf
);
483 // this string should uniquely identify our format, but is otherwise
485 m_formatShape
.SetId(shapeFormatId
);
487 // we don't draw the shape to a bitmap until it's really needed (i.e.
488 // we're asked to do so)
491 m_hasMetaFile
= false;
492 #endif // wxUSE_METAFILE
495 virtual ~DnDShapeDataObject() { delete m_shape
; }
497 // after a call to this function, the shape is owned by the caller and it
498 // is responsible for deleting it!
500 // NB: a better solution would be to make DnDShapes ref counted and this
501 // is what should probably be done in a real life program, otherwise
502 // the ownership problems become too complicated really fast
505 DnDShape
*shape
= m_shape
;
507 m_shape
= (DnDShape
*)NULL
;
510 m_hasMetaFile
= false;
511 #endif // wxUSE_METAFILE
516 // implement base class pure virtuals
517 // ----------------------------------
519 virtual wxDataFormat
GetPreferredFormat(Direction
WXUNUSED(dir
)) const
521 return m_formatShape
;
524 virtual size_t GetFormatCount(Direction dir
) const
526 // our custom format is supported by both GetData() and SetData()
530 // but the bitmap format(s) are only supported for output
531 nFormats
+= m_dobjBitmap
.GetFormatCount(dir
);
534 nFormats
+= m_dobjMetaFile
.GetFormatCount(dir
);
535 #endif // wxUSE_METAFILE
541 virtual void GetAllFormats(wxDataFormat
*formats
, Direction dir
) const
543 formats
[0] = m_formatShape
;
546 // in Get direction we additionally support bitmaps and metafiles
548 m_dobjBitmap
.GetAllFormats(&formats
[1], dir
);
551 // don't assume that m_dobjBitmap has only 1 format
552 m_dobjMetaFile
.GetAllFormats(&formats
[1 +
553 m_dobjBitmap
.GetFormatCount(dir
)], dir
);
554 #endif // wxUSE_METAFILE
558 virtual size_t GetDataSize(const wxDataFormat
& format
) const
560 if ( format
== m_formatShape
)
562 return m_shape
->GetDataSize();
565 else if ( m_dobjMetaFile
.IsSupported(format
) )
567 if ( !m_hasMetaFile
)
570 return m_dobjMetaFile
.GetDataSize(format
);
572 #endif // wxUSE_METAFILE
575 wxASSERT_MSG( m_dobjBitmap
.IsSupported(format
),
576 wxT("unexpected format") );
581 return m_dobjBitmap
.GetDataSize();
585 virtual bool GetDataHere(const wxDataFormat
& format
, void *pBuf
) const
587 if ( format
== m_formatShape
)
589 m_shape
->GetDataHere(pBuf
);
594 else if ( m_dobjMetaFile
.IsSupported(format
) )
596 if ( !m_hasMetaFile
)
599 return m_dobjMetaFile
.GetDataHere(format
, pBuf
);
601 #endif // wxUSE_METAFILE
604 wxASSERT_MSG( m_dobjBitmap
.IsSupported(format
),
605 wxT("unexpected format") );
610 return m_dobjBitmap
.GetDataHere(pBuf
);
614 virtual bool SetData(const wxDataFormat
& format
,
615 size_t WXUNUSED(len
), const void *buf
)
617 wxCHECK_MSG( format
== m_formatShape
, false,
618 wxT( "unsupported format") );
621 m_shape
= DnDShape::New(buf
);
623 // the shape has changed
627 m_hasMetaFile
= false;
628 #endif // wxUSE_METAFILE
634 // creates a bitmap and assigns it to m_dobjBitmap (also sets m_hasBitmap)
635 void CreateBitmap() const;
637 void CreateMetaFile() const;
638 #endif // wxUSE_METAFILE
640 wxDataFormat m_formatShape
; // our custom format
642 wxBitmapDataObject m_dobjBitmap
; // it handles bitmaps
643 bool m_hasBitmap
; // true if m_dobjBitmap has valid bitmap
646 wxMetaFileDataObject m_dobjMetaFile
;// handles metafiles
647 bool m_hasMetaFile
; // true if we have valid metafile
648 #endif // wxUSE_METAFILE
650 DnDShape
*m_shape
; // our data
653 // ----------------------------------------------------------------------------
654 // A dialog to edit shape properties
655 // ----------------------------------------------------------------------------
657 class DnDShapeDialog
: public wxDialog
660 DnDShapeDialog(wxFrame
*parent
, DnDShape
*shape
);
662 DnDShape
*GetShape() const;
664 virtual bool TransferDataToWindow();
665 virtual bool TransferDataFromWindow();
667 void OnColour(wxCommandEvent
& event
);
674 DnDShape::Kind m_shapeKind
;
686 DECLARE_EVENT_TABLE()
689 // ----------------------------------------------------------------------------
690 // A frame for the shapes which can be drag-and-dropped between frames
691 // ----------------------------------------------------------------------------
693 class DnDShapeFrame
: public wxFrame
696 DnDShapeFrame(wxFrame
*parent
);
699 void SetShape(DnDShape
*shape
);
700 virtual bool SetShape(const wxRegion
®ion
)
702 return wxFrame::SetShape( region
);
706 void OnNewShape(wxCommandEvent
& event
);
707 void OnEditShape(wxCommandEvent
& event
);
708 void OnClearShape(wxCommandEvent
& event
);
710 void OnCopyShape(wxCommandEvent
& event
);
711 void OnPasteShape(wxCommandEvent
& event
);
713 void OnUpdateUICopy(wxUpdateUIEvent
& event
);
714 void OnUpdateUIPaste(wxUpdateUIEvent
& event
);
716 void OnDrag(wxMouseEvent
& event
);
717 void OnPaint(wxPaintEvent
& event
);
718 void OnDrop(wxCoord x
, wxCoord y
, DnDShape
*shape
);
723 static DnDShapeFrame
*ms_lastDropTarget
;
725 DECLARE_EVENT_TABLE()
728 // ----------------------------------------------------------------------------
729 // wxDropTarget derivation for DnDShapes
730 // ----------------------------------------------------------------------------
732 class DnDShapeDropTarget
: public wxDropTarget
735 DnDShapeDropTarget(DnDShapeFrame
*frame
)
736 : wxDropTarget(new DnDShapeDataObject
)
741 // override base class (pure) virtuals
742 virtual wxDragResult
OnEnter(wxCoord x
, wxCoord y
, wxDragResult def
)
745 m_frame
->SetStatusText(_T("Mouse entered the frame"));
746 #endif // wxUSE_STATUSBAR
747 return OnDragOver(x
, y
, def
);
749 virtual void OnLeave()
752 m_frame
->SetStatusText(_T("Mouse left the frame"));
753 #endif // wxUSE_STATUSBAR
755 virtual wxDragResult
OnData(wxCoord x
, wxCoord y
, wxDragResult def
)
759 wxLogError(wxT("Failed to get drag and drop data"));
764 m_frame
->OnDrop(x
, y
,
765 ((DnDShapeDataObject
*)GetDataObject())->GetShape());
771 DnDShapeFrame
*m_frame
;
774 #endif // wxUSE_DRAG_AND_DROP
776 // ----------------------------------------------------------------------------
777 // functions prototypes
778 // ----------------------------------------------------------------------------
780 static void ShowBitmap(const wxBitmap
& bitmap
);
783 static void ShowMetaFile(const wxMetaFile
& metafile
);
784 #endif // wxUSE_METAFILE
786 // ----------------------------------------------------------------------------
787 // IDs for the menu commands
788 // ----------------------------------------------------------------------------
807 Menu_Shape_New
= 500,
810 Menu_ShapeClipboard_Copy
,
811 Menu_ShapeClipboard_Paste
,
815 BEGIN_EVENT_TABLE(DnDFrame
, wxFrame
)
816 EVT_MENU(Menu_Quit
, DnDFrame::OnQuit
)
817 EVT_MENU(Menu_About
, DnDFrame::OnAbout
)
818 EVT_MENU(Menu_Drag
, DnDFrame::OnDrag
)
819 EVT_MENU(Menu_DragMoveDef
, DnDFrame::OnDragMoveByDefault
)
820 EVT_MENU(Menu_DragMoveAllow
,DnDFrame::OnDragMoveAllow
)
821 EVT_MENU(Menu_NewFrame
, DnDFrame::OnNewFrame
)
822 EVT_MENU(Menu_Help
, DnDFrame::OnHelp
)
824 EVT_MENU(Menu_Clear
, DnDFrame::OnLogClear
)
826 EVT_MENU(Menu_Copy
, DnDFrame::OnCopy
)
827 EVT_MENU(Menu_Paste
, DnDFrame::OnPaste
)
828 EVT_MENU(Menu_CopyBitmap
, DnDFrame::OnCopyBitmap
)
829 EVT_MENU(Menu_PasteBitmap
,DnDFrame::OnPasteBitmap
)
831 EVT_MENU(Menu_PasteMFile
, DnDFrame::OnPasteMetafile
)
832 #endif // wxUSE_METAFILE
833 EVT_MENU(Menu_CopyFiles
, DnDFrame::OnCopyFiles
)
834 EVT_MENU(Menu_UsePrimary
, DnDFrame::OnUsePrimary
)
836 EVT_UPDATE_UI(Menu_DragMoveDef
, DnDFrame::OnUpdateUIMoveByDefault
)
838 EVT_UPDATE_UI(Menu_Paste
, DnDFrame::OnUpdateUIPasteText
)
839 EVT_UPDATE_UI(Menu_PasteBitmap
, DnDFrame::OnUpdateUIPasteBitmap
)
841 EVT_LEFT_DOWN( DnDFrame::OnLeftDown
)
842 EVT_RIGHT_DOWN( DnDFrame::OnRightDown
)
843 EVT_PAINT( DnDFrame::OnPaint
)
844 EVT_SIZE( DnDFrame::OnSize
)
847 #if wxUSE_DRAG_AND_DROP
849 BEGIN_EVENT_TABLE(DnDShapeFrame
, wxFrame
)
850 EVT_MENU(Menu_Shape_New
, DnDShapeFrame::OnNewShape
)
851 EVT_MENU(Menu_Shape_Edit
, DnDShapeFrame::OnEditShape
)
852 EVT_MENU(Menu_Shape_Clear
, DnDShapeFrame::OnClearShape
)
854 EVT_MENU(Menu_ShapeClipboard_Copy
, DnDShapeFrame::OnCopyShape
)
855 EVT_MENU(Menu_ShapeClipboard_Paste
, DnDShapeFrame::OnPasteShape
)
857 EVT_UPDATE_UI(Menu_ShapeClipboard_Copy
, DnDShapeFrame::OnUpdateUICopy
)
858 EVT_UPDATE_UI(Menu_ShapeClipboard_Paste
, DnDShapeFrame::OnUpdateUIPaste
)
860 EVT_LEFT_DOWN(DnDShapeFrame::OnDrag
)
862 EVT_PAINT(DnDShapeFrame::OnPaint
)
865 BEGIN_EVENT_TABLE(DnDShapeDialog
, wxDialog
)
866 EVT_BUTTON(Button_Colour
, DnDShapeDialog::OnColour
)
869 #endif // wxUSE_DRAG_AND_DROP
871 BEGIN_EVENT_TABLE(DnDCanvasBitmap
, wxScrolledWindow
)
872 EVT_PAINT(DnDCanvasBitmap::OnPaint
)
876 BEGIN_EVENT_TABLE(DnDCanvasMetafile
, wxScrolledWindow
)
877 EVT_PAINT(DnDCanvasMetafile::OnPaint
)
879 #endif // wxUSE_METAFILE
881 #endif // wxUSE_DRAG_AND_DROP
883 // ============================================================================
885 // ============================================================================
887 // `Main program' equivalent, creating windows and returning main app frame
888 bool DnDApp::OnInit()
890 if ( !wxApp::OnInit() )
893 #if wxUSE_DRAG_AND_DROP || wxUSE_CLIPBOARD
894 // switch on trace messages
896 #if defined(__WXGTK__)
897 wxLog::AddTraceMask(_T("clipboard"));
898 #elif defined(__WXMSW__)
899 wxLog::AddTraceMask(wxTRACE_OleCalls
);
904 wxImage::AddHandler( new wxPNGHandler
);
907 // create the main frame window
908 DnDFrame
*frame
= new DnDFrame((wxFrame
*) NULL
,
909 _T("Drag-and-Drop/Clipboard wxWidgets Sample"),
919 wxMessageBox( _T("This sample has to be compiled with wxUSE_DRAG_AND_DROP"), _T("Building error"), wxOK
);
921 #endif // wxUSE_DRAG_AND_DROP
924 #if wxUSE_DRAG_AND_DROP || wxUSE_CLIPBOARD
926 DnDFrame::DnDFrame(wxFrame
*frame
, const wxChar
*title
, int x
, int y
, int w
, int h
)
927 : wxFrame(frame
, wxID_ANY
, title
, wxPoint(x
, y
), wxSize(w
, h
)),
928 m_strText(_T("wxWidgets drag & drop works :-)"))
931 // frame icon and status bar
932 SetIcon(wxICON(sample
));
936 #endif // wxUSE_STATUSBAR
939 wxMenu
*file_menu
= new wxMenu
;
940 file_menu
->Append(Menu_Drag
, _T("&Test drag..."));
941 file_menu
->AppendCheckItem(Menu_DragMoveDef
, _T("&Move by default"));
942 file_menu
->AppendCheckItem(Menu_DragMoveAllow
, _T("&Allow moving"));
943 file_menu
->AppendSeparator();
944 file_menu
->Append(Menu_NewFrame
, _T("&New frame\tCtrl-N"));
945 file_menu
->AppendSeparator();
946 file_menu
->Append(Menu_Quit
, _T("E&xit\tCtrl-Q"));
949 wxMenu
*log_menu
= new wxMenu
;
950 log_menu
->Append(Menu_Clear
, _T("Clear\tCtrl-L"));
953 wxMenu
*help_menu
= new wxMenu
;
954 help_menu
->Append(Menu_Help
, _T("&Help..."));
955 help_menu
->AppendSeparator();
956 help_menu
->Append(Menu_About
, _T("&About"));
958 wxMenu
*clip_menu
= new wxMenu
;
959 clip_menu
->Append(Menu_Copy
, _T("&Copy text\tCtrl-C"));
960 clip_menu
->Append(Menu_Paste
, _T("&Paste text\tCtrl-V"));
961 clip_menu
->AppendSeparator();
962 clip_menu
->Append(Menu_CopyBitmap
, _T("Copy &bitmap\tCtrl-Shift-C"));
963 clip_menu
->Append(Menu_PasteBitmap
, _T("Paste b&itmap\tCtrl-Shift-V"));
965 clip_menu
->AppendSeparator();
966 clip_menu
->Append(Menu_PasteMFile
, _T("Paste &metafile\tCtrl-M"));
967 #endif // wxUSE_METAFILE
968 clip_menu
->AppendSeparator();
969 clip_menu
->Append(Menu_CopyFiles
, _T("Copy &files\tCtrl-F"));
970 clip_menu
->AppendSeparator();
971 clip_menu
->AppendCheckItem(Menu_UsePrimary
, _T("Use &primary selection\tCtrl-P"));
973 wxMenuBar
*menu_bar
= new wxMenuBar
;
974 menu_bar
->Append(file_menu
, _T("&File"));
976 menu_bar
->Append(log_menu
, _T("&Log"));
978 menu_bar
->Append(clip_menu
, _T("&Clipboard"));
979 menu_bar
->Append(help_menu
, _T("&Help"));
981 SetMenuBar(menu_bar
);
983 // make a panel with 3 subwindows
984 wxString
strFile(_T("Drop files here!")), strText(_T("Drop text on me"));
986 m_ctrlFile
= new wxListBox(this, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
, 1, &strFile
,
987 wxLB_HSCROLL
| wxLB_ALWAYS_SB
);
988 m_ctrlText
= new wxListBox(this, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
, 1, &strText
,
989 wxLB_HSCROLL
| wxLB_ALWAYS_SB
);
992 m_ctrlLog
= new wxTextCtrl(this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
, wxDefaultSize
,
993 wxTE_MULTILINE
| wxTE_READONLY
|
996 // redirect log messages to the text window
997 m_pLog
= new wxLogTextCtrl(m_ctrlLog
);
998 m_pLogPrev
= wxLog::SetActiveTarget(m_pLog
);
1001 #if wxUSE_DRAG_AND_DROP
1002 // associate drop targets with the controls
1003 m_ctrlFile
->SetDropTarget(new DnDFile(m_ctrlFile
));
1004 m_ctrlText
->SetDropTarget(new DnDText(m_ctrlText
));
1006 m_ctrlLog
->SetDropTarget(new URLDropTarget
);
1008 #endif // wxUSE_DRAG_AND_DROP
1010 wxBoxSizer
*sizer_top
= new wxBoxSizer( wxHORIZONTAL
);
1011 sizer_top
->Add(m_ctrlFile
, 1, wxEXPAND
);
1012 sizer_top
->Add(m_ctrlText
, 1, wxEXPAND
);
1014 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
1015 sizer
->Add(sizer_top
, 1, wxEXPAND
);
1017 sizer
->Add(m_ctrlLog
, 2, wxEXPAND
);
1018 sizer
->SetItemMinSize(m_ctrlLog
, 450, 0);
1020 sizer
->AddSpacer(50);
1023 sizer
->SetSizeHints( this );
1025 // copy data by default but allow moving it as well
1026 m_moveByDefault
= false;
1028 menu_bar
->Check(Menu_DragMoveAllow
, true);
1031 void DnDFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
1036 void DnDFrame::OnSize(wxSizeEvent
& event
)
1043 void DnDFrame::OnPaint(wxPaintEvent
& WXUNUSED(event
))
1047 GetClientSize( &w
, &h
);
1050 // dc.Clear(); -- this kills wxGTK
1051 dc
.SetFont( wxFont( 24, wxDECORATIVE
, wxNORMAL
, wxNORMAL
, false, _T("charter") ) );
1052 dc
.DrawText( _T("Drag text from here!"), 100, h
-50 );
1055 void DnDFrame::OnUpdateUIMoveByDefault(wxUpdateUIEvent
& event
)
1057 // only can move by default if moving is allowed at all
1058 event
.Enable(m_moveAllow
);
1061 void DnDFrame::OnUpdateUIPasteText(wxUpdateUIEvent
& event
)
1064 // too many trace messages if we don't do it - this function is called
1069 event
.Enable( wxTheClipboard
->IsSupported(wxDF_TEXT
) );
1072 void DnDFrame::OnUpdateUIPasteBitmap(wxUpdateUIEvent
& event
)
1075 // too many trace messages if we don't do it - this function is called
1080 event
.Enable( wxTheClipboard
->IsSupported(wxDF_BITMAP
) );
1083 void DnDFrame::OnNewFrame(wxCommandEvent
& WXUNUSED(event
))
1085 #if wxUSE_DRAG_AND_DROP
1086 (new DnDShapeFrame(this))->Show(true);
1088 wxLogStatus(this, wxT("Double click the new frame to select a shape for it"));
1089 #endif // wxUSE_DRAG_AND_DROP
1092 void DnDFrame::OnDrag(wxCommandEvent
& WXUNUSED(event
))
1094 #if wxUSE_DRAG_AND_DROP
1095 wxString strText
= wxGetTextFromUser
1097 _T("After you enter text in this dialog, press any mouse\n")
1098 _T("button in the bottom (empty) part of the frame and \n")
1099 _T("drag it anywhere - you will be in fact dragging the\n")
1100 _T("text object containing this text"),
1101 _T("Please enter some text"), m_strText
, this
1104 m_strText
= strText
;
1105 #endif // wxUSE_DRAG_AND_DROP
1108 void DnDFrame::OnDragMoveByDefault(wxCommandEvent
& event
)
1110 m_moveByDefault
= event
.IsChecked();
1113 void DnDFrame::OnDragMoveAllow(wxCommandEvent
& event
)
1115 m_moveAllow
= event
.IsChecked();
1118 void DnDFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
1120 wxMessageBox(_T("Drag-&-Drop Demo\n")
1121 _T("Please see \"Help|Help...\" for details\n")
1122 _T("Copyright (c) 1998 Vadim Zeitlin"),
1124 wxICON_INFORMATION
| wxOK
,
1128 void DnDFrame::OnHelp(wxCommandEvent
& /* event */)
1130 wxMessageDialog
dialog(this,
1131 _T("This small program demonstrates drag & drop support in wxWidgets. The program window\n")
1132 _T("consists of 3 parts: the bottom pane is for debug messages, so that you can see what's\n")
1133 _T("going on inside. The top part is split into 2 listboxes, the left one accepts files\n")
1134 _T("and the right one accepts text.\n")
1136 _T("To test wxDropTarget: open wordpad (write.exe), select some text in it and drag it to\n")
1137 _T("the right listbox (you'll notice the usual visual feedback, i.e. the cursor will change).\n")
1138 _T("Also, try dragging some files (you can select several at once) from Windows Explorer (or \n")
1139 _T("File Manager) to the left pane. Hold down Ctrl/Shift keys when you drop text (doesn't \n")
1140 _T("work with files) and see what changes.\n")
1142 _T("To test wxDropSource: just press any mouse button on the empty zone of the window and drag\n")
1143 _T("it to wordpad or any other droptarget accepting text (and of course you can just drag it\n")
1144 _T("to the right pane). Due to a lot of trace messages, the cursor might take some time to \n")
1145 _T("change, don't release the mouse button until it does. You can change the string being\n")
1146 _T("dragged in in \"File|Test drag...\" dialog.\n")
1149 _T("Please send all questions/bug reports/suggestions &c to \n")
1150 _T("Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>"),
1157 void DnDFrame::OnLogClear(wxCommandEvent
& /* event */ )
1160 m_ctrlText
->Clear();
1161 m_ctrlFile
->Clear();
1165 void DnDFrame::OnLeftDown(wxMouseEvent
&WXUNUSED(event
) )
1167 #if wxUSE_DRAG_AND_DROP
1168 if ( !m_strText
.empty() )
1170 // start drag operation
1171 wxTextDataObject
textData(m_strText
);
1172 wxDropSource
source(textData
, this,
1173 wxDROP_ICON(dnd_copy
),
1174 wxDROP_ICON(dnd_move
),
1175 wxDROP_ICON(dnd_none
));
1178 if ( m_moveByDefault
)
1179 flags
|= wxDrag_DefaultMove
;
1180 else if ( m_moveAllow
)
1181 flags
|= wxDrag_AllowMove
;
1183 wxDragResult result
= source
.DoDragDrop(flags
);
1189 case wxDragError
: pc
= _T("Error!"); break;
1190 case wxDragNone
: pc
= _T("Nothing"); break;
1191 case wxDragCopy
: pc
= _T("Copied"); break;
1192 case wxDragMove
: pc
= _T("Moved"); break;
1193 case wxDragCancel
: pc
= _T("Cancelled"); break;
1194 default: pc
= _T("Huh?"); break;
1197 SetStatusText(wxString(_T("Drag result: ")) + pc
);
1199 wxUnusedVar(result
);
1200 #endif // wxUSE_STATUSBAR
1202 #endif // wxUSE_DRAG_AND_DROP
1205 void DnDFrame::OnRightDown(wxMouseEvent
&event
)
1207 wxMenu
menu(_T("Dnd sample menu"));
1209 menu
.Append(Menu_Drag
, _T("&Test drag..."));
1210 menu
.AppendSeparator();
1211 menu
.Append(Menu_About
, _T("&About"));
1213 PopupMenu( &menu
, event
.GetX(), event
.GetY() );
1216 DnDFrame::~DnDFrame()
1219 if ( m_pLog
!= NULL
) {
1220 if ( wxLog::SetActiveTarget(m_pLogPrev
) == m_pLog
)
1226 void DnDFrame::OnUsePrimary(wxCommandEvent
& event
)
1228 const bool usePrimary
= event
.IsChecked();
1229 wxTheClipboard
->UsePrimarySelection(usePrimary
);
1231 wxLogStatus(_T("Now using %s selection"), usePrimary
? _T("primary")
1235 // ---------------------------------------------------------------------------
1237 // ---------------------------------------------------------------------------
1239 void DnDFrame::OnCopyBitmap(wxCommandEvent
& WXUNUSED(event
))
1241 // PNG support is not always compiled in under Windows, so use BMP there
1243 wxFileDialog
dialog(this, _T("Open a PNG file"), wxEmptyString
, wxEmptyString
, _T("PNG files (*.png)|*.png"), 0);
1245 wxFileDialog
dialog(this, _T("Open a BMP file"), wxEmptyString
, wxEmptyString
, _T("BMP files (*.bmp)|*.bmp"), 0);
1248 if (dialog
.ShowModal() != wxID_OK
)
1250 wxLogMessage( _T("Aborted file open") );
1254 if (dialog
.GetPath().empty())
1256 wxLogMessage( _T("Returned empty string.") );
1260 if (!wxFileExists(dialog
.GetPath()))
1262 wxLogMessage( _T("File doesn't exist.") );
1267 image
.LoadFile( dialog
.GetPath(),
1276 wxLogError( _T("Invalid image file...") );
1280 wxLogStatus( _T("Decoding image file...") );
1283 wxBitmap
bitmap( image
);
1285 if ( !wxTheClipboard
->Open() )
1287 wxLogError(_T("Can't open clipboard."));
1292 wxLogMessage( _T("Creating wxBitmapDataObject...") );
1295 if ( !wxTheClipboard
->AddData(new wxBitmapDataObject(bitmap
)) )
1297 wxLogError(_T("Can't copy image to the clipboard."));
1301 wxLogMessage(_T("Image has been put on the clipboard.") );
1302 wxLogMessage(_T("You can paste it now and look at it.") );
1305 wxTheClipboard
->Close();
1308 void DnDFrame::OnPasteBitmap(wxCommandEvent
& WXUNUSED(event
))
1310 if ( !wxTheClipboard
->Open() )
1312 wxLogError(_T("Can't open clipboard."));
1317 if ( !wxTheClipboard
->IsSupported(wxDF_BITMAP
) )
1319 wxLogWarning(_T("No bitmap on clipboard"));
1321 wxTheClipboard
->Close();
1325 wxBitmapDataObject data
;
1326 if ( !wxTheClipboard
->GetData(data
) )
1328 wxLogError(_T("Can't paste bitmap from the clipboard"));
1332 const wxBitmap
& bmp
= data
.GetBitmap();
1334 wxLogMessage(_T("Bitmap %dx%d pasted from the clipboard"),
1335 bmp
.GetWidth(), bmp
.GetHeight());
1339 wxTheClipboard
->Close();
1344 void DnDFrame::OnPasteMetafile(wxCommandEvent
& WXUNUSED(event
))
1346 if ( !wxTheClipboard
->Open() )
1348 wxLogError(_T("Can't open clipboard."));
1353 if ( !wxTheClipboard
->IsSupported(wxDF_METAFILE
) )
1355 wxLogWarning(_T("No metafile on clipboard"));
1359 wxMetaFileDataObject data
;
1360 if ( !wxTheClipboard
->GetData(data
) )
1362 wxLogError(_T("Can't paste metafile from the clipboard"));
1366 const wxMetaFile
& mf
= data
.GetMetafile();
1368 wxLogMessage(_T("Metafile %dx%d pasted from the clipboard"),
1369 mf
.GetWidth(), mf
.GetHeight());
1375 wxTheClipboard
->Close();
1378 #endif // wxUSE_METAFILE
1380 // ----------------------------------------------------------------------------
1382 // ----------------------------------------------------------------------------
1384 void DnDFrame::OnCopyFiles(wxCommandEvent
& WXUNUSED(event
))
1387 wxFileDialog
dialog(this, _T("Select a file to copy"), wxEmptyString
, wxEmptyString
,
1388 _T("All files (*.*)|*.*"), 0);
1390 wxArrayString filenames
;
1391 while ( dialog
.ShowModal() == wxID_OK
)
1393 filenames
.Add(dialog
.GetPath());
1396 if ( !filenames
.IsEmpty() )
1398 wxFileDataObject
*dobj
= new wxFileDataObject
;
1399 size_t count
= filenames
.GetCount();
1400 for ( size_t n
= 0; n
< count
; n
++ )
1402 dobj
->AddFile(filenames
[n
]);
1405 wxClipboardLocker locker
;
1408 wxLogError(wxT("Can't open clipboard"));
1412 if ( !wxTheClipboard
->AddData(dobj
) )
1414 wxLogError(wxT("Can't copy file(s) to the clipboard"));
1418 wxLogStatus(this, wxT("%d file%s copied to the clipboard"),
1419 count
, count
== 1 ? wxEmptyString
: wxEmptyString
);
1425 wxLogStatus(this, wxT("Aborted"));
1428 wxLogError(wxT("Sorry, not implemented"));
1432 // ---------------------------------------------------------------------------
1434 // ---------------------------------------------------------------------------
1436 void DnDFrame::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1438 if ( !wxTheClipboard
->Open() )
1440 wxLogError(_T("Can't open clipboard."));
1445 if ( !wxTheClipboard
->AddData(new wxTextDataObject(m_strText
)) )
1447 wxLogError(_T("Can't copy data to the clipboard"));
1451 wxLogMessage(_T("Text '%s' put on the clipboard"), m_strText
.c_str());
1454 wxTheClipboard
->Close();
1457 void DnDFrame::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1459 if ( !wxTheClipboard
->Open() )
1461 wxLogError(_T("Can't open clipboard."));
1466 if ( !wxTheClipboard
->IsSupported(wxDF_TEXT
) )
1468 wxLogWarning(_T("No text data on clipboard"));
1470 wxTheClipboard
->Close();
1474 wxTextDataObject text
;
1475 if ( !wxTheClipboard
->GetData(text
) )
1477 wxLogError(_T("Can't paste data from the clipboard"));
1481 wxLogMessage(_T("Text '%s' pasted from the clipboard"),
1482 text
.GetText().c_str());
1485 wxTheClipboard
->Close();
1488 #if wxUSE_DRAG_AND_DROP
1490 // ----------------------------------------------------------------------------
1491 // Notifications called by the base class
1492 // ----------------------------------------------------------------------------
1494 bool DnDText::OnDropText(wxCoord
, wxCoord
, const wxString
& text
)
1496 m_pOwner
->Append(text
);
1501 bool DnDFile::OnDropFiles(wxCoord
, wxCoord
, const wxArrayString
& filenames
)
1503 size_t nFiles
= filenames
.GetCount();
1505 str
.Printf( _T("%d files dropped"), (int)nFiles
);
1506 m_pOwner
->Append(str
);
1507 for ( size_t n
= 0; n
< nFiles
; n
++ ) {
1508 m_pOwner
->Append(filenames
[n
]);
1514 // ----------------------------------------------------------------------------
1516 // ----------------------------------------------------------------------------
1518 DnDShapeDialog::DnDShapeDialog(wxFrame
*parent
, DnDShape
*shape
)
1519 :wxDialog( parent
, 6001, wxT("Choose Shape"), wxPoint( 10, 10 ),
1521 wxDEFAULT_DIALOG_STYLE
| wxRAISED_BORDER
| wxRESIZE_BORDER
)
1524 wxBoxSizer
* topSizer
= new wxBoxSizer( wxVERTICAL
);
1527 wxBoxSizer
* shapesSizer
= new wxBoxSizer( wxHORIZONTAL
);
1528 const wxString choices
[] = { wxT("None"), wxT("Triangle"),
1529 wxT("Rectangle"), wxT("Ellipse") };
1531 m_radio
= new wxRadioBox( this, wxID_ANY
, wxT("&Shape"),
1532 wxDefaultPosition
, wxDefaultSize
, 4, choices
, 4,
1533 wxRA_SPECIFY_COLS
);
1534 shapesSizer
->Add( m_radio
, 0, wxGROW
|wxALL
, 5 );
1535 topSizer
->Add( shapesSizer
, 0, wxALL
, 2 );
1538 wxStaticBox
* box
= new wxStaticBox( this, wxID_ANY
, wxT("&Attributes") );
1539 wxStaticBoxSizer
* attrSizer
= new wxStaticBoxSizer( box
, wxHORIZONTAL
);
1540 wxFlexGridSizer
* xywhSizer
= new wxFlexGridSizer( 4, 2 );
1544 st
= new wxStaticText( this, wxID_ANY
, wxT("Position &X:") );
1545 m_textX
= new wxTextCtrl( this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
,
1547 xywhSizer
->Add( st
, 1, wxGROW
|wxALL
, 2 );
1548 xywhSizer
->Add( m_textX
, 1, wxGROW
|wxALL
, 2 );
1550 st
= new wxStaticText( this, wxID_ANY
, wxT("Size &width:") );
1551 m_textW
= new wxTextCtrl( this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
,
1553 xywhSizer
->Add( st
, 1, wxGROW
|wxALL
, 2 );
1554 xywhSizer
->Add( m_textW
, 1, wxGROW
|wxALL
, 2 );
1556 st
= new wxStaticText( this, wxID_ANY
, wxT("&Y:") );
1557 m_textY
= new wxTextCtrl( this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
,
1559 xywhSizer
->Add( st
, 1, wxALL
|wxALIGN_RIGHT
, 2 );
1560 xywhSizer
->Add( m_textY
, 1, wxGROW
|wxALL
, 2 );
1562 st
= new wxStaticText( this, wxID_ANY
, wxT("&height:") );
1563 m_textH
= new wxTextCtrl( this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
,
1565 xywhSizer
->Add( st
, 1, wxALL
|wxALIGN_RIGHT
, 2 );
1566 xywhSizer
->Add( m_textH
, 1, wxGROW
|wxALL
, 2 );
1568 wxButton
* col
= new wxButton( this, Button_Colour
, wxT("&Colour...") );
1569 attrSizer
->Add( xywhSizer
, 1, wxGROW
);
1570 attrSizer
->Add( col
, 0, wxALL
|wxALIGN_CENTRE_VERTICAL
, 2 );
1571 topSizer
->Add( attrSizer
, 0, wxGROW
|wxALL
, 5 );
1574 wxBoxSizer
* buttonSizer
= new wxBoxSizer( wxHORIZONTAL
);
1576 bt
= new wxButton( this, wxID_OK
, wxT("Ok") );
1577 buttonSizer
->Add( bt
, 0, wxALL
, 2 );
1578 bt
= new wxButton( this, wxID_CANCEL
, wxT("Cancel") );
1579 buttonSizer
->Add( bt
, 0, wxALL
, 2 );
1580 topSizer
->Add( buttonSizer
, 0, wxALL
|wxALIGN_RIGHT
, 2 );
1582 SetSizer( topSizer
);
1583 topSizer
->Fit( this );
1586 DnDShape
*DnDShapeDialog::GetShape() const
1588 switch ( m_shapeKind
)
1591 case DnDShape::None
: return NULL
;
1592 case DnDShape::Triangle
: return new DnDTriangularShape(m_pos
, m_size
, m_col
);
1593 case DnDShape::Rectangle
: return new DnDRectangularShape(m_pos
, m_size
, m_col
);
1594 case DnDShape::Ellipse
: return new DnDEllipticShape(m_pos
, m_size
, m_col
);
1598 bool DnDShapeDialog::TransferDataToWindow()
1603 m_radio
->SetSelection(m_shape
->GetKind());
1604 m_pos
= m_shape
->GetPosition();
1605 m_size
= m_shape
->GetSize();
1606 m_col
= m_shape
->GetColour();
1610 m_radio
->SetSelection(DnDShape::None
);
1611 m_pos
= wxPoint(1, 1);
1612 m_size
= wxSize(100, 100);
1615 m_textX
->SetValue(wxString() << m_pos
.x
);
1616 m_textY
->SetValue(wxString() << m_pos
.y
);
1617 m_textW
->SetValue(wxString() << m_size
.x
);
1618 m_textH
->SetValue(wxString() << m_size
.y
);
1623 bool DnDShapeDialog::TransferDataFromWindow()
1625 m_shapeKind
= (DnDShape::Kind
)m_radio
->GetSelection();
1627 m_pos
.x
= wxAtoi(m_textX
->GetValue());
1628 m_pos
.y
= wxAtoi(m_textY
->GetValue());
1629 m_size
.x
= wxAtoi(m_textW
->GetValue());
1630 m_size
.y
= wxAtoi(m_textH
->GetValue());
1632 if ( !m_pos
.x
|| !m_pos
.y
|| !m_size
.x
|| !m_size
.y
)
1634 wxMessageBox(_T("All sizes and positions should be non null!"),
1635 _T("Invalid shape"), wxICON_HAND
| wxOK
, this);
1643 void DnDShapeDialog::OnColour(wxCommandEvent
& WXUNUSED(event
))
1646 data
.SetChooseFull(true);
1647 for (int i
= 0; i
< 16; i
++)
1649 wxColour
colour((unsigned char)(i
*16), (unsigned char)(i
*16), (unsigned char)(i
*16));
1650 data
.SetCustomColour(i
, colour
);
1653 wxColourDialog
dialog(this, &data
);
1654 if ( dialog
.ShowModal() == wxID_OK
)
1656 m_col
= dialog
.GetColourData().GetColour();
1660 // ----------------------------------------------------------------------------
1662 // ----------------------------------------------------------------------------
1664 DnDShapeFrame
*DnDShapeFrame::ms_lastDropTarget
= NULL
;
1666 DnDShapeFrame::DnDShapeFrame(wxFrame
*parent
)
1667 : wxFrame(parent
, wxID_ANY
, _T("Shape Frame"))
1671 #endif // wxUSE_STATUSBAR
1673 wxMenu
*menuShape
= new wxMenu
;
1674 menuShape
->Append(Menu_Shape_New
, _T("&New default shape\tCtrl-S"));
1675 menuShape
->Append(Menu_Shape_Edit
, _T("&Edit shape\tCtrl-E"));
1676 menuShape
->AppendSeparator();
1677 menuShape
->Append(Menu_Shape_Clear
, _T("&Clear shape\tCtrl-L"));
1679 wxMenu
*menuClipboard
= new wxMenu
;
1680 menuClipboard
->Append(Menu_ShapeClipboard_Copy
, _T("&Copy\tCtrl-C"));
1681 menuClipboard
->Append(Menu_ShapeClipboard_Paste
, _T("&Paste\tCtrl-V"));
1683 wxMenuBar
*menubar
= new wxMenuBar
;
1684 menubar
->Append(menuShape
, _T("&Shape"));
1685 menubar
->Append(menuClipboard
, _T("&Clipboard"));
1687 SetMenuBar(menubar
);
1690 SetStatusText(_T("Press Ctrl-S to create a new shape"));
1691 #endif // wxUSE_STATUSBAR
1693 SetDropTarget(new DnDShapeDropTarget(this));
1697 SetBackgroundColour(*wxWHITE
);
1700 DnDShapeFrame::~DnDShapeFrame()
1706 void DnDShapeFrame::SetShape(DnDShape
*shape
)
1715 void DnDShapeFrame::OnDrag(wxMouseEvent
& event
)
1724 // start drag operation
1725 DnDShapeDataObject
shapeData(m_shape
);
1726 wxDropSource
source(shapeData
, this);
1728 const wxChar
*pc
= NULL
;
1729 switch ( source
.DoDragDrop(true) )
1733 wxLogError(wxT("An error occurred during drag and drop operation"));
1738 SetStatusText(_T("Nothing happened"));
1739 #endif // wxUSE_STATUSBAR
1748 if ( ms_lastDropTarget
!= this )
1750 // don't delete the shape if we dropped it on ourselves!
1757 SetStatusText(_T("Drag and drop operation cancelled"));
1758 #endif // wxUSE_STATUSBAR
1765 SetStatusText(wxString(_T("Shape successfully ")) + pc
);
1766 #endif // wxUSE_STATUSBAR
1768 //else: status text already set
1771 void DnDShapeFrame::OnDrop(wxCoord x
, wxCoord y
, DnDShape
*shape
)
1773 ms_lastDropTarget
= this;
1779 s
.Printf(wxT("Shape dropped at (%d, %d)"), pt
.x
, pt
.y
);
1781 #endif // wxUSE_STATUSBAR
1787 void DnDShapeFrame::OnEditShape(wxCommandEvent
& WXUNUSED(event
))
1789 DnDShapeDialog
dlg(this, m_shape
);
1790 if ( dlg
.ShowModal() == wxID_OK
)
1792 SetShape(dlg
.GetShape());
1797 SetStatusText(_T("You can now drag the shape to another frame"));
1799 #endif // wxUSE_STATUSBAR
1803 void DnDShapeFrame::OnNewShape(wxCommandEvent
& WXUNUSED(event
))
1805 SetShape(new DnDEllipticShape(wxPoint(10, 10), wxSize(80, 60), *wxRED
));
1808 SetStatusText(_T("You can now drag the shape to another frame"));
1809 #endif // wxUSE_STATUSBAR
1812 void DnDShapeFrame::OnClearShape(wxCommandEvent
& WXUNUSED(event
))
1817 void DnDShapeFrame::OnCopyShape(wxCommandEvent
& WXUNUSED(event
))
1821 wxClipboardLocker clipLocker
;
1824 wxLogError(wxT("Can't open the clipboard"));
1829 wxTheClipboard
->AddData(new DnDShapeDataObject(m_shape
));
1833 void DnDShapeFrame::OnPasteShape(wxCommandEvent
& WXUNUSED(event
))
1835 wxClipboardLocker clipLocker
;
1838 wxLogError(wxT("Can't open the clipboard"));
1843 DnDShapeDataObject
shapeDataObject(NULL
);
1844 if ( wxTheClipboard
->GetData(shapeDataObject
) )
1846 SetShape(shapeDataObject
.GetShape());
1850 wxLogStatus(wxT("No shape on the clipboard"));
1854 void DnDShapeFrame::OnUpdateUICopy(wxUpdateUIEvent
& event
)
1856 event
.Enable( m_shape
!= NULL
);
1859 void DnDShapeFrame::OnUpdateUIPaste(wxUpdateUIEvent
& event
)
1861 event
.Enable( wxTheClipboard
->IsSupported(wxDataFormat(shapeFormatId
)) );
1864 void DnDShapeFrame::OnPaint(wxPaintEvent
& event
)
1878 // ----------------------------------------------------------------------------
1880 // ----------------------------------------------------------------------------
1882 DnDShape
*DnDShape::New(const void *buf
)
1884 const ShapeDump
& dump
= *(const ShapeDump
*)buf
;
1888 return new DnDTriangularShape(wxPoint(dump
.x
, dump
.y
),
1889 wxSize(dump
.w
, dump
.h
),
1890 wxColour(dump
.r
, dump
.g
, dump
.b
));
1893 return new DnDRectangularShape(wxPoint(dump
.x
, dump
.y
),
1894 wxSize(dump
.w
, dump
.h
),
1895 wxColour(dump
.r
, dump
.g
, dump
.b
));
1898 return new DnDEllipticShape(wxPoint(dump
.x
, dump
.y
),
1899 wxSize(dump
.w
, dump
.h
),
1900 wxColour(dump
.r
, dump
.g
, dump
.b
));
1903 wxFAIL_MSG(wxT("invalid shape!"));
1908 // ----------------------------------------------------------------------------
1909 // DnDShapeDataObject
1910 // ----------------------------------------------------------------------------
1914 void DnDShapeDataObject::CreateMetaFile() const
1916 wxPoint pos
= m_shape
->GetPosition();
1917 wxSize size
= m_shape
->GetSize();
1919 wxMetaFileDC
dcMF(wxEmptyString
, pos
.x
+ size
.x
, pos
.y
+ size
.y
);
1921 m_shape
->Draw(dcMF
);
1923 wxMetafile
*mf
= dcMF
.Close();
1925 DnDShapeDataObject
*self
= (DnDShapeDataObject
*)this; // const_cast
1926 self
->m_dobjMetaFile
.SetMetafile(*mf
);
1927 self
->m_hasMetaFile
= true;
1932 #endif // wxUSE_METAFILE
1934 void DnDShapeDataObject::CreateBitmap() const
1936 wxPoint pos
= m_shape
->GetPosition();
1937 wxSize size
= m_shape
->GetSize();
1938 int x
= pos
.x
+ size
.x
,
1940 wxBitmap
bitmap(x
, y
);
1942 dc
.SelectObject(bitmap
);
1943 dc
.SetBrush(wxBrush(wxT("white"), wxSOLID
));
1946 dc
.SelectObject(wxNullBitmap
);
1948 DnDShapeDataObject
*self
= (DnDShapeDataObject
*)this; // const_cast
1949 self
->m_dobjBitmap
.SetBitmap(bitmap
);
1950 self
->m_hasBitmap
= true;
1953 #endif // wxUSE_DRAG_AND_DROP
1955 // ----------------------------------------------------------------------------
1957 // ----------------------------------------------------------------------------
1959 static void ShowBitmap(const wxBitmap
& bitmap
)
1961 wxFrame
*frame
= new wxFrame(NULL
, wxID_ANY
, _T("Bitmap view"));
1963 frame
->CreateStatusBar();
1964 #endif // wxUSE_STATUSBAR
1965 DnDCanvasBitmap
*canvas
= new DnDCanvasBitmap(frame
);
1966 canvas
->SetBitmap(bitmap
);
1968 int w
= bitmap
.GetWidth(),
1969 h
= bitmap
.GetHeight();
1971 frame
->SetStatusText(wxString::Format(_T("%dx%d"), w
, h
));
1972 #endif // wxUSE_STATUSBAR
1974 frame
->SetClientSize(w
> 100 ? 100 : w
, h
> 100 ? 100 : h
);
1980 static void ShowMetaFile(const wxMetaFile
& metafile
)
1982 wxFrame
*frame
= new wxFrame(NULL
, wxID_ANY
, _T("Metafile view"));
1983 frame
->CreateStatusBar();
1984 DnDCanvasMetafile
*canvas
= new DnDCanvasMetafile(frame
);
1985 canvas
->SetMetafile(metafile
);
1987 wxSize size
= metafile
.GetSize();
1988 frame
->SetStatusText(wxString::Format(_T("%dx%d"), size
.x
, size
.y
));
1990 frame
->SetClientSize(size
.x
> 100 ? 100 : size
.x
,
1991 size
.y
> 100 ? 100 : size
.y
);
1995 #endif // wxUSE_METAFILE
1997 #endif // wxUSE_DRAG_AND_DROP || wxUSE_CLIPBOARD