wxDataFormat format( selection_data->target );
wxLogDebug( wxT("Drop source: format requested: %s"), format.GetId().c_str() );
-
+
drop_source->m_retValue = wxDragCancel;
wxDataObject *data = drop_source->GetDataObject();
-
+
if (!data)
{
wxLogDebug( wxT("Drop source: no data object") );
GdkDragContext *WXUNUSED(context),
wxDropSource *WXUNUSED(drop_source) )
{
- if (g_isIdle)
+ if (g_isIdle)
wxapp_install_idle_handler();
// printf( "Drag source: drag_data_delete\n" );
GdkDragContext *WXUNUSED(context),
wxDropSource *WXUNUSED(drop_source) )
{
- if (g_isIdle)
+ if (g_isIdle)
wxapp_install_idle_handler();
// printf( "Drag source: drag_begin.\n" );
// wxDropSource
//---------------------------------------------------------------------------
-wxDropSource::wxDropSource( wxWindow *win, const wxIcon &icon )
+wxDropSource::wxDropSource(wxWindow *win,
+ const wxIcon &iconCopy,
+ const wxIcon &iconMove,
+ const wxIcon &iconNone)
{
m_waiting = TRUE;
m_retValue = wxDragCancel;
- m_icon = icon;
- if (wxNullIcon == icon) m_icon = wxIcon( page_xpm );
+ SetIcons(iconCopy, iconMove, iconNone);
}
-wxDropSource::wxDropSource( wxDataObject& data, wxWindow *win, const wxIcon &icon )
+wxDropSource::wxDropSource(wxDataObject& data,
+ wxWindow *win,
+ const wxIcon &iconCopy,
+ const wxIcon &iconMove,
+ const wxIcon &iconNone)
{
m_waiting = TRUE;
m_retValue = wxDragCancel;
- m_icon = icon;
- if (wxNullIcon == icon) m_icon = wxIcon( page_xpm );
+ SetIcons(iconCopy, iconMove, iconNone);
+}
+
+void wxDropSource::SetIcons(const wxIcon &iconCopy,
+ const wxIcon &iconMove,
+ const wxIcon &iconNone)
+{
+ m_iconCopy = iconCopy;
+ m_iconMove = iconMove;
+ m_iconNone = iconNone;
+
+ if ( !m_iconCopy.Ok() )
+ m_iconCopy = wxIcon(page_xpm);
+ if ( !m_iconMove.Ok() )
+ m_iconMove = m_iconCopy;
+ if ( !m_iconNone.Ok() )
+ m_iconNone = m_iconCopy;
}
wxDropSource::~wxDropSource()
{
}
-void wxDropSource::PrepareIcon( int hot_x, int hot_y, GdkDragContext *context )
+void wxDropSource::PrepareIcon( int action, GdkDragContext *context )
{
- GdkBitmap *mask = (GdkBitmap *) NULL;
- if (m_icon.GetMask()) mask = m_icon.GetMask()->GetBitmap();
- GdkPixmap *pixmap = m_icon.GetPixmap();
+ // get the right icon to display
+ wxIcon *icon = NULL;
+ if ( action & GDK_ACTION_MOVE )
+ icon = &m_iconMove;
+ else if ( action & GDK_ACTION_COPY )
+ icon = &m_iconCopy;
+ else
+ icon = &m_iconNone;
+
+ GdkBitmap *mask;
+ if ( icon->GetMask() )
+ mask = icon->GetMask()->GetBitmap();
+ else
+ mask = (GdkBitmap *)NULL;
+
+ GdkPixmap *pixmap = icon->GetPixmap();
gint width,height;
gdk_window_get_size (pixmap, &width, &height);
GdkColormap *colormap = gtk_widget_get_colormap( m_widget );
+#ifndef __WXGTK20__
gtk_widget_push_visual (gdk_colormap_get_visual (colormap));
+#endif
gtk_widget_push_colormap (colormap);
m_iconWindow = gtk_window_new (GTK_WINDOW_POPUP);
gtk_widget_set_events (m_iconWindow, GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK);
gtk_widget_set_app_paintable (GTK_WIDGET (m_iconWindow), TRUE);
+#ifndef __WXGTK20__
gtk_widget_pop_visual ();
+#endif
gtk_widget_pop_colormap ();
gtk_widget_set_usize (m_iconWindow, width, height);
if (mask)
gtk_widget_shape_combine_mask (m_iconWindow, mask, 0, 0);
- gtk_drag_set_icon_widget( context, m_iconWindow, hot_x, hot_y );
+ gtk_drag_set_icon_widget( context, m_iconWindow, 0, 0 );
}
wxDragResult wxDropSource::DoDragDrop( bool allowMove )
if (m_data->GetFormatCount() == 0)
return (wxDragResult) wxDragNone;
- g_blockEventsOnDrag = TRUE;
+ // disabled for now
+ g_blockEventsOnDrag = FALSE;
RegisterWindow();
if (button_number)
{
GdkDragAction action = GDK_ACTION_COPY;
- if (allowMove) action = (GdkDragAction)(GDK_ACTION_MOVE|GDK_ACTION_COPY);
+ if (allowMove) action = (GdkDragAction)(GDK_ACTION_MOVE|GDK_ACTION_COPY);
GdkDragContext *context = gtk_drag_begin( m_widget,
- target_list,
- action,
- button_number, /* number of mouse button which started drag */
- (GdkEvent*) &event );
+ target_list,
+ action,
+ button_number, /* number of mouse button which started drag */
+ (GdkEvent*) &event );
m_dragContext = context;
- PrepareIcon( 0, 0, context );
+ PrepareIcon( action, context );
while (m_waiting) gtk_main_iteration();
-
- if (context->action == GDK_ACTION_COPY)
+
+ if (context->action == GDK_ACTION_COPY)
m_retValue = wxDragCopy;
- if (context->action == GDK_ACTION_MOVE)
+ if (context->action == GDK_ACTION_MOVE)
m_retValue = wxDragMove;
}
void wxDropSource::RegisterWindow()
{
if (!m_widget) return;
-
+
gtk_signal_connect( GTK_OBJECT(m_widget), "drag_data_get",
GTK_SIGNAL_FUNC (source_drag_data_get), (gpointer) this);
gtk_signal_connect (GTK_OBJECT(m_widget), "drag_data_delete",