1998-05-20 14:01:55 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dnd.h
|
|
|
|
// Purpose: declaration of the wxDropTarget class
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 18:03:18 +00:00
|
|
|
// RCS-ID: $Id$
|
1998-05-20 14:01:55 +00:00
|
|
|
// Copyright: (c) 1998 Vadim Zeitlin, Robert Roebling
|
|
|
|
// Licence: wxWindows license
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKDNDH__
|
|
|
|
#define __GTKDNDH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
1999-01-04 13:52:06 +00:00
|
|
|
|
1999-01-06 21:09:17 +00:00
|
|
|
#if wxUSE_DRAG_AND_DROP
|
1999-01-04 13:52:06 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
1998-12-14 16:13:49 +00:00
|
|
|
#include "wx/dataobj.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/cursor.h"
|
1999-02-09 08:18:14 +00:00
|
|
|
#include "wx/icon.h"
|
|
|
|
#include "wx/gdicmn.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxWindow;
|
|
|
|
|
|
|
|
class wxDropTarget;
|
|
|
|
class wxTextDropTarget;
|
1998-07-27 20:50:48 +00:00
|
|
|
class wxFileDropTarget;
|
1999-01-14 00:24:03 +00:00
|
|
|
class wxPrivateDropTarget;
|
1998-07-27 20:50:48 +00:00
|
|
|
|
|
|
|
class wxDropSource;
|
|
|
|
|
1999-04-06 17:24:14 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxDropSource
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
enum wxDragResult
|
|
|
|
{
|
|
|
|
wxDragError, // error prevented the d&d operation from completing
|
|
|
|
wxDragNone, // drag target didn't accept the data
|
|
|
|
wxDragCopy, // the data was successfully copied
|
|
|
|
wxDragMove, // the data was successfully moved (MSW only)
|
|
|
|
wxDragCancel // the operation was cancelled by user (not an error)
|
|
|
|
};
|
|
|
|
|
|
|
|
class wxDropSource: public wxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/* constructor. set data later with SetData() */
|
|
|
|
wxDropSource( wxWindow *win, const wxIcon &go = wxNullIcon, const wxIcon &stop = wxNullIcon );
|
|
|
|
|
|
|
|
/* constructor for setting one data object */
|
|
|
|
wxDropSource( wxDataObject *data, wxWindow *win, const wxIcon &go = wxNullIcon, const wxIcon &stop = wxNullIcon );
|
|
|
|
|
|
|
|
/* constructor for setting several data objects via wxDataBroker */
|
|
|
|
wxDropSource( wxDataBroker *data, wxWindow *win );
|
|
|
|
|
|
|
|
~wxDropSource();
|
|
|
|
|
|
|
|
/* set several dataobjects via wxDataBroker */
|
|
|
|
void SetData( wxDataBroker *data );
|
|
|
|
|
|
|
|
/* set one dataobject */
|
|
|
|
void SetData( wxDataObject *data );
|
|
|
|
|
|
|
|
/* start drag action */
|
|
|
|
wxDragResult DoDragDrop( bool bAllowMove = FALSE );
|
|
|
|
|
|
|
|
/* override to give feedback */
|
|
|
|
virtual bool GiveFeedback( wxDragResult WXUNUSED(effect), bool WXUNUSED(bScrolling) ) { return TRUE; }
|
|
|
|
|
|
|
|
/* GTK implementation */
|
|
|
|
|
|
|
|
void RegisterWindow();
|
|
|
|
void UnregisterWindow();
|
|
|
|
|
|
|
|
GtkWidget *m_widget;
|
|
|
|
wxWindow *m_window;
|
|
|
|
wxDragResult m_retValue;
|
|
|
|
wxDataBroker *m_data;
|
|
|
|
|
|
|
|
wxCursor m_defaultCursor;
|
|
|
|
wxCursor m_goaheadCursor;
|
|
|
|
|
|
|
|
wxIcon m_goIcon;
|
|
|
|
wxIcon m_stopIcon;
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "gtk/gtk.h"
|
|
|
|
#if (GTK_MINOR_VERSION > 0)
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxDropTarget
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxDropTarget: public wxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
wxDropTarget();
|
|
|
|
~wxDropTarget();
|
|
|
|
|
|
|
|
/* may be overridden to react to events */
|
|
|
|
virtual void OnEnter();
|
|
|
|
virtual void OnLeave();
|
|
|
|
virtual bool OnMove( int x, int y );
|
|
|
|
|
|
|
|
/* has te be overridden to get data */
|
|
|
|
virtual bool OnDrop( int x, int y );
|
|
|
|
|
|
|
|
/* called to query formats available */
|
|
|
|
bool IsSupported( wxDataFormat format );
|
|
|
|
|
|
|
|
/* fill data with data on the clipboard (if available) */
|
|
|
|
bool GetData( wxDataObject *data );
|
|
|
|
|
|
|
|
// implementation
|
|
|
|
|
|
|
|
void RegisterWidget( GtkWidget *widget );
|
|
|
|
void UnregisterWidget( GtkWidget *widget );
|
|
|
|
|
|
|
|
GdkDragContext *m_dragContext;
|
|
|
|
|
|
|
|
void SetDragContext( GdkDragContext *dc ) { m_dragContext = dc; }
|
|
|
|
GdkDragContext *GetDragContext() { return m_dragContext; }
|
|
|
|
};
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxTextDropTarget
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxTextDropTarget: public wxDropTarget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
wxTextDropTarget() {}
|
|
|
|
|
|
|
|
virtual bool OnMove( int x, int y );
|
|
|
|
virtual bool OnDrop( int x, int y );
|
|
|
|
|
|
|
|
/* you have to override OnDropData to get at the text */
|
|
|
|
virtual bool OnDropText( int x, int y, const char *text ) = 0;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxPrivateDropTarget
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxPrivateDropTarget: public wxDropTarget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/* sets id to "application/myprogram" where "myprogram" is the
|
|
|
|
same as wxApp->GetAppName() */
|
|
|
|
wxPrivateDropTarget();
|
|
|
|
/* see SetId() below for explanation */
|
|
|
|
wxPrivateDropTarget( const wxString &id );
|
|
|
|
|
|
|
|
virtual bool OnMove( int x, int y );
|
|
|
|
virtual bool OnDrop( int x, int y );
|
|
|
|
|
|
|
|
/* you have to override OnDropData to get at the data */
|
|
|
|
virtual bool OnDropData( int x, int y, void *data, size_t size ) = 0;
|
|
|
|
|
|
|
|
/* the string ID identifies the format of clipboard or DnD data. a word
|
|
|
|
processor would e.g. add a wxTextDataObject and a wxPrivateDataObject
|
|
|
|
to the clipboard - the latter with the Id "application/wxword" or
|
|
|
|
"image/png". */
|
|
|
|
void SetId( const wxString& id ) { m_id = id; }
|
|
|
|
wxString GetId() { return m_id; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
wxString m_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// A drop target which accepts files (dragged from File Manager or Explorer)
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxFileDropTarget: public wxDropTarget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
wxFileDropTarget() {}
|
|
|
|
|
|
|
|
virtual bool OnMove( int x, int y );
|
|
|
|
virtual bool OnDrop( int x, int y );
|
|
|
|
|
|
|
|
/* you have to override OnDropFiles to get at the file names */
|
|
|
|
virtual bool OnDropFiles( int x, int y, size_t nFiles, const char * const aszFiles[] ) = 0;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxDropTarget
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
1998-07-24 19:05:25 +00:00
|
|
|
class wxDropTarget: public wxObject
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
wxDropTarget();
|
|
|
|
~wxDropTarget();
|
1998-07-27 20:50:48 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
virtual void OnEnter() { }
|
|
|
|
virtual void OnLeave() { }
|
1999-01-21 19:02:18 +00:00
|
|
|
virtual void OnMouseMove( long WXUNUSED(x), long WXUNUSED(y) ) { }
|
1998-11-02 14:12:29 +00:00
|
|
|
virtual bool OnDrop( long x, long y, const void *data, size_t size ) = 0;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-07-27 20:50:48 +00:00
|
|
|
// Override these to indicate what kind of data you support:
|
|
|
|
|
|
|
|
virtual size_t GetFormatCount() const = 0;
|
1999-01-19 16:33:16 +00:00
|
|
|
virtual wxDataFormat &GetFormat(size_t n) const;
|
1998-07-27 20:50:48 +00:00
|
|
|
|
1998-11-02 14:12:29 +00:00
|
|
|
// implementation
|
|
|
|
|
1998-07-27 20:50:48 +00:00
|
|
|
void RegisterWidget( GtkWidget *widget );
|
1998-05-20 14:01:55 +00:00
|
|
|
void UnregisterWidget( GtkWidget *widget );
|
1999-01-19 16:33:16 +00:00
|
|
|
|
|
|
|
wxDataFormat *m_format;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxTextDropTarget
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxTextDropTarget: public wxDropTarget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
1999-01-19 16:33:16 +00:00
|
|
|
wxTextDropTarget();
|
1998-11-02 14:12:29 +00:00
|
|
|
virtual bool OnDrop( long x, long y, const void *data, size_t size );
|
1998-05-20 14:01:55 +00:00
|
|
|
virtual bool OnDropText( long x, long y, const char *psz );
|
1998-07-27 20:50:48 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual size_t GetFormatCount() const;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
1999-01-14 00:24:03 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxPrivateDropTarget
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxPrivateDropTarget: public wxDropTarget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
wxPrivateDropTarget();
|
|
|
|
|
|
|
|
// you have to override OnDrop to get at the data
|
|
|
|
|
|
|
|
// the string ID identifies the format of clipboard or DnD data. a word
|
|
|
|
// processor would e.g. add a wxTextDataObject and a wxPrivateDataObject
|
1999-01-19 16:33:16 +00:00
|
|
|
// to the clipboard - the latter with the Id "application/wxword" or
|
|
|
|
// "image/png".
|
1999-01-14 00:24:03 +00:00
|
|
|
|
1999-01-19 16:33:16 +00:00
|
|
|
void SetId( const wxString& id );
|
1999-01-14 00:24:03 +00:00
|
|
|
|
|
|
|
wxString GetId()
|
|
|
|
{ return m_id; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
virtual size_t GetFormatCount() const;
|
|
|
|
|
|
|
|
wxString m_id;
|
|
|
|
};
|
|
|
|
|
1999-01-19 16:33:16 +00:00
|
|
|
//----------------------------------------------------------------------------
|
1998-07-27 20:50:48 +00:00
|
|
|
// A drop target which accepts files (dragged from File Manager or Explorer)
|
1999-01-19 16:33:16 +00:00
|
|
|
//----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-07-27 20:50:48 +00:00
|
|
|
class wxFileDropTarget: public wxDropTarget
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
public:
|
1998-07-27 20:50:48 +00:00
|
|
|
|
1999-01-19 16:33:16 +00:00
|
|
|
wxFileDropTarget();
|
1998-07-27 20:50:48 +00:00
|
|
|
|
1998-11-02 14:12:29 +00:00
|
|
|
virtual bool OnDrop( long x, long y, const void *data, size_t size );
|
1998-07-27 20:50:48 +00:00
|
|
|
virtual bool OnDropFiles( long x, long y,
|
1998-11-02 14:12:29 +00:00
|
|
|
size_t nFiles, const char * const aszFiles[] );
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-07-27 20:50:48 +00:00
|
|
|
protected:
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-07-27 20:50:48 +00:00
|
|
|
virtual size_t GetFormatCount() const;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
1999-04-06 17:24:14 +00:00
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
|
1999-01-04 13:52:06 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// wxUSE_DRAG_AND_DROP
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
//__GTKDNDH__
|
|
|
|
|