X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/004fd0c8834ca526d335a9294322d9def17ef8a9..c19b738e74e01e7301aec7815b5bac9782b3c9db:/src/os2/dnd.cpp?ds=sidebyside diff --git a/src/os2/dnd.cpp b/src/os2/dnd.cpp index c37a27db55..463d738fa9 100644 --- a/src/os2/dnd.cpp +++ b/src/os2/dnd.cpp @@ -14,12 +14,15 @@ #endif #define INCL_PM +#define INCL_DOS #include #include "wx/window.h" #include "wx/app.h" #include "wx/gdicmn.h" #include "wx/dnd.h" +#if wxUSE_DRAG_AND_DROP + // ---------------------------------------------------------------------------- // global // ---------------------------------------------------------------------------- @@ -72,15 +75,6 @@ bool wxDropTarget::OnDrop( return FALSE; }; -bool wxDropTarget::OnData( - wxCoord x -, wxCoord y -) -{ - //TODO: - return FALSE; -}; - wxDragResult wxDropTarget::OnData( wxCoord x , wxCoord y @@ -105,42 +99,6 @@ bool wxDropTarget::IsAcceptable( return FALSE; }; -// ---------------------------------------------------------------------------- -// wxTextDropTarget -// ---------------------------------------------------------------------------- - -wxTextDropTarget::~wxTextDropTarget() -{ - // TODO: -} - -bool wxTextDropTarget::OnData( - wxCoord x -, wxCoord y -) -{ - // TODO: - return FALSE; -}; - -// ---------------------------------------------------------------------------- -// wxFileDropTarget -// ---------------------------------------------------------------------------- - -wxFileDropTarget::~wxFileDropTarget() -{ - // TODO: -} - -bool wxFileDropTarget::OnData( - wxCoord x -, wxCoord y -) -{ - // TODO: - return FALSE; -}; - //------------------------------------------------------------------------- // wxDropSource //------------------------------------------------------------------------- @@ -166,7 +124,7 @@ wxDropSource::~wxDropSource() }; wxDragResult wxDropSource::DoDragDrop( - bool WXUNUSED(bAllowMove) + int WXUNUSED(flags) ) { // TODO @@ -178,3 +136,4 @@ void wxDropSource::Init() // TODO }; +#endif //wxUSE_DRAG_AND_DROP