class WXDLLEXPORT wxWindow;
-#ifndef __WXMAC_X__
+#ifndef __DARWIN__
class WXDLLEXPORT wxDataObject;
class WXDLLEXPORT wxTextDataObject;
class WXDLLEXPORT wxFileDataObject;
class WXDLLEXPORT wxDropSource;
-#ifndef __WXMAC_X__
+#ifndef __DARWIN__
//-------------------------------------------------------------------------
// wxDataObject
//-------------------------------------------------------------------------
virtual void OnEnter() { }
virtual void OnLeave() { }
- virtual bool OnDrop( long x, long y, const void *pData ) = 0;
+ virtual bool OnDrop( wxCoord x, wxCoord y, const void *pData ) = 0;
// protected:
virtual wxDataFormat GetFormat(size_t n) const = 0;
};
-#ifndef __WXMAC_X__
+#ifndef __DARWIN__
//-------------------------------------------------------------------------
// wxTextDropTarget
//-------------------------------------------------------------------------
public:
wxTextDropTarget() {};
- virtual bool OnDrop( long x, long y, const void *pData );
- virtual bool OnDropText( long x, long y, const char *psz );
+ virtual bool OnDrop( wxCoord x, wxCoord y, const void *pData );
+ virtual bool OnDropText( wxCoord x, wxCoord y, const char *psz );
protected:
wxFileDropTarget() {};
- virtual bool OnDrop(long x, long y, const void *pData);
- virtual bool OnDropFiles( long x, long y,
+ virtual bool OnDrop(wxCoord x, wxCoord y, const void *pData);
+ virtual bool OnDropFiles( wxCoord x, wxCoord y,
size_t nFiles, const char * const aszFiles[]);
protected: