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
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
class wxDropSource;
|
|
|
|
|
1999-04-06 17:24:14 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxDropTarget
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
1999-10-21 10:23:30 +00:00
|
|
|
class wxDropTarget: public wxDropTargetBase
|
1999-04-06 17:24:14 +00:00
|
|
|
{
|
|
|
|
public:
|
1999-10-21 10:23:30 +00:00
|
|
|
wxDropTarget(wxDataObject *dataObject = (wxDataObject*) NULL );
|
1999-10-23 23:40:55 +00:00
|
|
|
|
1999-10-21 17:47:45 +00:00
|
|
|
virtual wxDragResult OnDragOver(wxCoord x, wxCoord y, wxDragResult def);
|
1999-10-21 10:23:30 +00:00
|
|
|
virtual bool OnDrop(wxCoord x, wxCoord y);
|
1999-10-23 23:40:55 +00:00
|
|
|
virtual wxDragResult OnData(wxCoord x, wxCoord y, wxDragResult def);
|
1999-10-21 10:23:30 +00:00
|
|
|
virtual bool GetData();
|
|
|
|
|
|
|
|
// implementation
|
|
|
|
|
|
|
|
GdkAtom GetMatchingPair();
|
1999-10-21 20:16:53 +00:00
|
|
|
|
1999-10-21 10:23:30 +00:00
|
|
|
void RegisterWidget( GtkWidget *widget );
|
|
|
|
void UnregisterWidget( GtkWidget *widget );
|
|
|
|
|
|
|
|
GdkDragContext *m_dragContext;
|
|
|
|
GtkWidget *m_dragWidget;
|
|
|
|
GtkSelectionData *m_dragData;
|
|
|
|
guint m_dragTime;
|
|
|
|
bool m_firstMotion; /* gdk has no "gdk_drag_enter" event */
|
|
|
|
|
|
|
|
void SetDragContext( GdkDragContext *dc ) { m_dragContext = dc; }
|
|
|
|
void SetDragWidget( GtkWidget *w ) { m_dragWidget = w; }
|
|
|
|
void SetDragData( GtkSelectionData *sd ) { m_dragData = sd; }
|
|
|
|
void SetDragTime( guint time ) { m_dragTime = time; }
|
1999-10-21 01:58:57 +00:00
|
|
|
};
|
1999-10-17 01:18:49 +00:00
|
|
|
|
1999-10-21 01:58:57 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxDropSource
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
1999-10-21 10:23:30 +00:00
|
|
|
class wxDropSource: public wxDropSourceBase
|
1999-10-21 01:58:57 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/* constructor. set data later with SetData() */
|
|
|
|
wxDropSource( wxWindow *win,
|
1999-10-22 22:43:21 +00:00
|
|
|
const wxIcon &go = wxNullIcon );
|
1999-10-17 01:18:49 +00:00
|
|
|
|
1999-10-21 01:58:57 +00:00
|
|
|
/* constructor for setting one data object */
|
|
|
|
wxDropSource( wxDataObject& data,
|
|
|
|
wxWindow *win,
|
1999-10-22 22:43:21 +00:00
|
|
|
const wxIcon &go = wxNullIcon );
|
1999-10-17 01:18:49 +00:00
|
|
|
|
1999-10-21 01:58:57 +00:00
|
|
|
~wxDropSource();
|
1999-10-17 01:18:49 +00:00
|
|
|
|
1999-10-21 01:58:57 +00:00
|
|
|
/* start drag action */
|
|
|
|
virtual wxDragResult DoDragDrop( bool bAllowMove = FALSE );
|
1999-10-17 01:18:49 +00:00
|
|
|
|
1999-10-21 01:58:57 +00:00
|
|
|
/* GTK implementation */
|
|
|
|
void RegisterWindow();
|
|
|
|
void UnregisterWindow();
|
1999-10-17 01:18:49 +00:00
|
|
|
|
1999-10-22 22:43:21 +00:00
|
|
|
void PrepareIcon( int hot_x, int hot_y, GdkDragContext *context );
|
1999-10-23 23:40:55 +00:00
|
|
|
|
1999-10-22 22:43:21 +00:00
|
|
|
GtkWidget *m_widget;
|
|
|
|
GtkWidget *m_iconWindow;
|
|
|
|
GdkDragContext *m_dragContext;
|
|
|
|
wxWindow *m_window;
|
1999-10-23 23:40:55 +00:00
|
|
|
|
1999-10-22 22:43:21 +00:00
|
|
|
wxDragResult m_retValue;
|
|
|
|
wxIcon m_icon;
|
1999-10-23 23:40:55 +00:00
|
|
|
|
1999-10-22 22:43:21 +00:00
|
|
|
bool m_waiting;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
1999-01-04 13:52:06 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// wxUSE_DRAG_AND_DROP
|
|
|
|
|
1999-10-17 01:18:49 +00:00
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
//__GTKDNDH__
|
|
|
|
|