pasting text from xterm works, finally
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -76,51 +76,56 @@ targets_selection_received( GtkWidget *WXUNUSED(widget),
|
|||||||
#endif
|
#endif
|
||||||
wxClipboard *clipboard )
|
wxClipboard *clipboard )
|
||||||
{
|
{
|
||||||
if (!wxTheClipboard)
|
if ( wxTheClipboard && selection_data->length > 0 )
|
||||||
{
|
{
|
||||||
clipboard->m_waiting = FALSE;
|
/* make sure we got the data in the correct form */
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (selection_data->length <= 0)
|
// VZ: I don't know what does this mean (and GTK+ authors apparently
|
||||||
{
|
// don't know either, Owen Taylor writes that "Motif seems to ask
|
||||||
clipboard->m_waiting = FALSE;
|
// for TARGETS atom sometimes" (??)), but it seems that xterm
|
||||||
return;
|
// (which is not a Motif app AFAIK) does this too, so it's
|
||||||
}
|
// absolutely essential to support this, otherwise we can't paste
|
||||||
|
// text from xterm!
|
||||||
/* make sure we got the data in the correct form */
|
GdkAtom type = selection_data->type;
|
||||||
if (selection_data->type != GDK_SELECTION_TYPE_ATOM)
|
if ( type != GDK_SELECTION_TYPE_ATOM )
|
||||||
{
|
|
||||||
clipboard->m_waiting = FALSE;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
wxDataFormat clip( selection_data->selection );
|
|
||||||
wxLogDebug( wxT("selection received for targets, clipboard %s"), clip.GetId().c_str() );
|
|
||||||
*/
|
|
||||||
|
|
||||||
// the atoms we received, holding a list of targets (= formats)
|
|
||||||
GdkAtom *atoms = (GdkAtom *)selection_data->data;
|
|
||||||
|
|
||||||
for (unsigned int i=0; i<selection_data->length/sizeof(GdkAtom); i++)
|
|
||||||
{
|
|
||||||
wxDataFormat format( atoms[i] );
|
|
||||||
|
|
||||||
/*
|
|
||||||
wxLogDebug( wxT("selection received for targets, format %s"), format.GetId().c_str() );
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (format == clipboard->m_targetRequested)
|
|
||||||
{
|
{
|
||||||
clipboard->m_waiting = FALSE;
|
if ( strcmp(gdk_atom_name(type), "TARGETS") != 0 )
|
||||||
clipboard->m_formatSupported = TRUE;
|
{
|
||||||
return;
|
// don't know what this is
|
||||||
|
clipboard->m_waiting = FALSE;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//else: don't know what this is, but it seems to work in the same
|
||||||
|
// way as GDK_SELECTION_TYPE_ATOM does
|
||||||
|
}
|
||||||
|
//else: the data is the list of formats supported by the selection
|
||||||
|
|
||||||
|
/*
|
||||||
|
wxDataFormat clip( selection_data->selection );
|
||||||
|
wxLogDebug( wxT("selection received for targets, clipboard %s"), clip.GetId().c_str() );
|
||||||
|
*/
|
||||||
|
|
||||||
|
// the atoms we received, holding a list of targets (= formats)
|
||||||
|
GdkAtom *atoms = (GdkAtom *)selection_data->data;
|
||||||
|
|
||||||
|
for (unsigned int i=0; i<selection_data->length/sizeof(GdkAtom); i++)
|
||||||
|
{
|
||||||
|
wxDataFormat format( atoms[i] );
|
||||||
|
|
||||||
|
/*
|
||||||
|
wxLogDebug( wxT("selection received for targets, format %s"), format.GetId().c_str() );
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (format == clipboard->m_targetRequested)
|
||||||
|
{
|
||||||
|
clipboard->m_waiting = FALSE;
|
||||||
|
clipboard->m_formatSupported = TRUE;
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
clipboard->m_waiting = FALSE;
|
clipboard->m_waiting = FALSE;
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
@@ -208,7 +213,7 @@ selection_clear_clip( GtkWidget *WXUNUSED(widget), GdkEventSelection *event )
|
|||||||
/* the clipboard is no longer in our hands. we can the delete clipboard data. */
|
/* the clipboard is no longer in our hands. we can the delete clipboard data. */
|
||||||
if (wxTheClipboard->m_data)
|
if (wxTheClipboard->m_data)
|
||||||
{
|
{
|
||||||
wxLogDebug( wxT("wxClipboard will get cleared" ) );
|
wxLogDebug( wxT("wxClipboard will get cleared" ) );
|
||||||
|
|
||||||
delete wxTheClipboard->m_data;
|
delete wxTheClipboard->m_data;
|
||||||
wxTheClipboard->m_data = (wxDataObject*) NULL;
|
wxTheClipboard->m_data = (wxDataObject*) NULL;
|
||||||
@@ -425,7 +430,7 @@ bool wxClipboard::AddData( wxDataObject *data )
|
|||||||
wxLogDebug( wxT("wxClipboard now supports atom %s"), array[i].GetId().c_str() );
|
wxLogDebug( wxT("wxClipboard now supports atom %s"), array[i].GetId().c_str() );
|
||||||
|
|
||||||
gtk_selection_add_target( GTK_WIDGET(m_clipboardWidget),
|
gtk_selection_add_target( GTK_WIDGET(m_clipboardWidget),
|
||||||
clipboard,
|
clipboard,
|
||||||
array[i],
|
array[i],
|
||||||
0 ); /* what is info ? */
|
0 ); /* what is info ? */
|
||||||
}
|
}
|
||||||
@@ -486,7 +491,7 @@ bool wxClipboard::IsSupported( const wxDataFormat& format )
|
|||||||
|
|
||||||
/* perform query. this will set m_formatSupported to
|
/* perform query. this will set m_formatSupported to
|
||||||
TRUE if m_targetRequested is supported.
|
TRUE if m_targetRequested is supported.
|
||||||
alsom we have to wait for the "answer" from the
|
also, we have to wait for the "answer" from the
|
||||||
clipboard owner which is an asynchronous process.
|
clipboard owner which is an asynchronous process.
|
||||||
therefore we set m_waiting = TRUE here and wait
|
therefore we set m_waiting = TRUE here and wait
|
||||||
until the callback "targets_selection_received"
|
until the callback "targets_selection_received"
|
||||||
|
@@ -76,51 +76,56 @@ targets_selection_received( GtkWidget *WXUNUSED(widget),
|
|||||||
#endif
|
#endif
|
||||||
wxClipboard *clipboard )
|
wxClipboard *clipboard )
|
||||||
{
|
{
|
||||||
if (!wxTheClipboard)
|
if ( wxTheClipboard && selection_data->length > 0 )
|
||||||
{
|
{
|
||||||
clipboard->m_waiting = FALSE;
|
/* make sure we got the data in the correct form */
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (selection_data->length <= 0)
|
// VZ: I don't know what does this mean (and GTK+ authors apparently
|
||||||
{
|
// don't know either, Owen Taylor writes that "Motif seems to ask
|
||||||
clipboard->m_waiting = FALSE;
|
// for TARGETS atom sometimes" (??)), but it seems that xterm
|
||||||
return;
|
// (which is not a Motif app AFAIK) does this too, so it's
|
||||||
}
|
// absolutely essential to support this, otherwise we can't paste
|
||||||
|
// text from xterm!
|
||||||
/* make sure we got the data in the correct form */
|
GdkAtom type = selection_data->type;
|
||||||
if (selection_data->type != GDK_SELECTION_TYPE_ATOM)
|
if ( type != GDK_SELECTION_TYPE_ATOM )
|
||||||
{
|
|
||||||
clipboard->m_waiting = FALSE;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
wxDataFormat clip( selection_data->selection );
|
|
||||||
wxLogDebug( wxT("selection received for targets, clipboard %s"), clip.GetId().c_str() );
|
|
||||||
*/
|
|
||||||
|
|
||||||
// the atoms we received, holding a list of targets (= formats)
|
|
||||||
GdkAtom *atoms = (GdkAtom *)selection_data->data;
|
|
||||||
|
|
||||||
for (unsigned int i=0; i<selection_data->length/sizeof(GdkAtom); i++)
|
|
||||||
{
|
|
||||||
wxDataFormat format( atoms[i] );
|
|
||||||
|
|
||||||
/*
|
|
||||||
wxLogDebug( wxT("selection received for targets, format %s"), format.GetId().c_str() );
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (format == clipboard->m_targetRequested)
|
|
||||||
{
|
{
|
||||||
clipboard->m_waiting = FALSE;
|
if ( strcmp(gdk_atom_name(type), "TARGETS") != 0 )
|
||||||
clipboard->m_formatSupported = TRUE;
|
{
|
||||||
return;
|
// don't know what this is
|
||||||
|
clipboard->m_waiting = FALSE;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//else: don't know what this is, but it seems to work in the same
|
||||||
|
// way as GDK_SELECTION_TYPE_ATOM does
|
||||||
|
}
|
||||||
|
//else: the data is the list of formats supported by the selection
|
||||||
|
|
||||||
|
/*
|
||||||
|
wxDataFormat clip( selection_data->selection );
|
||||||
|
wxLogDebug( wxT("selection received for targets, clipboard %s"), clip.GetId().c_str() );
|
||||||
|
*/
|
||||||
|
|
||||||
|
// the atoms we received, holding a list of targets (= formats)
|
||||||
|
GdkAtom *atoms = (GdkAtom *)selection_data->data;
|
||||||
|
|
||||||
|
for (unsigned int i=0; i<selection_data->length/sizeof(GdkAtom); i++)
|
||||||
|
{
|
||||||
|
wxDataFormat format( atoms[i] );
|
||||||
|
|
||||||
|
/*
|
||||||
|
wxLogDebug( wxT("selection received for targets, format %s"), format.GetId().c_str() );
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (format == clipboard->m_targetRequested)
|
||||||
|
{
|
||||||
|
clipboard->m_waiting = FALSE;
|
||||||
|
clipboard->m_formatSupported = TRUE;
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
clipboard->m_waiting = FALSE;
|
clipboard->m_waiting = FALSE;
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
@@ -208,7 +213,7 @@ selection_clear_clip( GtkWidget *WXUNUSED(widget), GdkEventSelection *event )
|
|||||||
/* the clipboard is no longer in our hands. we can the delete clipboard data. */
|
/* the clipboard is no longer in our hands. we can the delete clipboard data. */
|
||||||
if (wxTheClipboard->m_data)
|
if (wxTheClipboard->m_data)
|
||||||
{
|
{
|
||||||
wxLogDebug( wxT("wxClipboard will get cleared" ) );
|
wxLogDebug( wxT("wxClipboard will get cleared" ) );
|
||||||
|
|
||||||
delete wxTheClipboard->m_data;
|
delete wxTheClipboard->m_data;
|
||||||
wxTheClipboard->m_data = (wxDataObject*) NULL;
|
wxTheClipboard->m_data = (wxDataObject*) NULL;
|
||||||
@@ -425,7 +430,7 @@ bool wxClipboard::AddData( wxDataObject *data )
|
|||||||
wxLogDebug( wxT("wxClipboard now supports atom %s"), array[i].GetId().c_str() );
|
wxLogDebug( wxT("wxClipboard now supports atom %s"), array[i].GetId().c_str() );
|
||||||
|
|
||||||
gtk_selection_add_target( GTK_WIDGET(m_clipboardWidget),
|
gtk_selection_add_target( GTK_WIDGET(m_clipboardWidget),
|
||||||
clipboard,
|
clipboard,
|
||||||
array[i],
|
array[i],
|
||||||
0 ); /* what is info ? */
|
0 ); /* what is info ? */
|
||||||
}
|
}
|
||||||
@@ -486,7 +491,7 @@ bool wxClipboard::IsSupported( const wxDataFormat& format )
|
|||||||
|
|
||||||
/* perform query. this will set m_formatSupported to
|
/* perform query. this will set m_formatSupported to
|
||||||
TRUE if m_targetRequested is supported.
|
TRUE if m_targetRequested is supported.
|
||||||
alsom we have to wait for the "answer" from the
|
also, we have to wait for the "answer" from the
|
||||||
clipboard owner which is an asynchronous process.
|
clipboard owner which is an asynchronous process.
|
||||||
therefore we set m_waiting = TRUE here and wait
|
therefore we set m_waiting = TRUE here and wait
|
||||||
until the callback "targets_selection_received"
|
until the callback "targets_selection_received"
|
||||||
|
Reference in New Issue
Block a user