1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/x11/clipbrd.cpp
3 // Purpose: Clipboard functionality
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // for compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
15 #include "wx/clipbrd.h"
20 #include "wx/dataobj.h"
23 #include "wx/x11/private.h"
25 //-----------------------------------------------------------------------------
27 //-----------------------------------------------------------------------------
30 Atom g_clipboardAtom
= 0;
31 Atom g_targetsAtom
= 0;
34 // avoid warnings about unused static variable (notice that we still use it
35 // even in release build if the compiler doesn't support variadic macros)
36 #if defined(__WXDEBUG__) || !defined(HAVE_VARIADIC_MACROS)
38 // the trace mask we use with wxLogTrace() - call
39 // wxLog::AddTraceMask(TRACE_CLIPBOARD) to enable the trace messages from here
40 // (there will be a *lot* of them!)
41 static const wxChar
*TRACE_CLIPBOARD
= wxT("clipboard");
45 //-----------------------------------------------------------------------------
47 //-----------------------------------------------------------------------------
49 /* The contents of a selection are returned in a GtkSelectionData
50 structure. selection/target identify the request.
51 type specifies the type of the return; if length < 0, and
52 the data should be ignored. This structure has object semantics -
53 no fields should be modified directly, they should not be created
54 directly, and pointers to them should not be stored beyond the duration of
55 a callback. (If the last is changed, we'll need to add reference
58 struct _GtkSelectionData
70 //-----------------------------------------------------------------------------
71 // "selection_received" for targets
72 //-----------------------------------------------------------------------------
77 targets_selection_received( GtkWidget
*WXUNUSED(widget
),
78 GtkSelectionData
*selection_data
,
79 #if (GTK_MINOR_VERSION > 0)
80 guint32
WXUNUSED(time
),
82 wxClipboard
*clipboard
)
84 if ( wxTheClipboard
&& selection_data
->length
> 0 )
86 /* make sure we got the data in the correct form */
87 GdkAtom type
= selection_data
->type
;
88 if ( type
!= GDK_SELECTION_TYPE_ATOM
)
90 if ( strcmp(gdk_atom_name(type
), "TARGETS") )
92 wxLogTrace( TRACE_CLIPBOARD
,
93 wxT("got unsupported clipboard target") );
95 clipboard
->m_waiting
= false;
101 wxDataFormat
clip( selection_data
->selection
);
102 wxLogTrace( TRACE_CLIPBOARD
,
103 wxT("selection received for targets, clipboard %s"),
104 clip
.GetId().c_str() );
105 #endif // __WXDEBUG__
107 // the atoms we received, holding a list of targets (= formats)
108 GdkAtom
*atoms
= (GdkAtom
*)selection_data
->data
;
110 for (unsigned int i
=0; i
<selection_data
->length
/sizeof(GdkAtom
); i
++)
112 wxDataFormat
format( atoms
[i
] );
114 wxLogTrace( TRACE_CLIPBOARD
,
115 wxT("selection received for targets, format %s"),
116 format
.GetId().c_str() );
118 if (format
== clipboard
->m_targetRequested
)
120 clipboard
->m_waiting
= false;
121 clipboard
->m_formatSupported
= true;
127 clipboard
->m_waiting
= false;
130 //-----------------------------------------------------------------------------
131 // "selection_received" for the actual data
132 //-----------------------------------------------------------------------------
135 selection_received( GtkWidget
*WXUNUSED(widget
),
136 GtkSelectionData
*selection_data
,
137 #if (GTK_MINOR_VERSION > 0)
138 guint32
WXUNUSED(time
),
140 wxClipboard
*clipboard
)
144 clipboard
->m_waiting
= false;
148 wxDataObject
*data_object
= clipboard
->m_receivedData
;
152 clipboard
->m_waiting
= false;
156 if (selection_data
->length
<= 0)
158 clipboard
->m_waiting
= false;
162 wxDataFormat
format( selection_data
->target
);
164 /* make sure we got the data in the correct format */
165 if (!data_object
->IsSupportedFormat( format
) )
167 clipboard
->m_waiting
= false;
171 /* make sure we got the data in the correct form (selection type).
172 if so, copy data to target object */
173 if (selection_data
->type
!= GDK_SELECTION_TYPE_STRING
)
175 clipboard
->m_waiting
= false;
179 data_object
->SetData( format
, (size_t) selection_data
->length
, (const char*) selection_data
->data
);
181 wxTheClipboard
->m_formatSupported
= true;
182 clipboard
->m_waiting
= false;
185 //-----------------------------------------------------------------------------
187 //-----------------------------------------------------------------------------
190 selection_clear_clip( GtkWidget
*WXUNUSED(widget
), GdkEventSelection
*event
)
192 if (!wxTheClipboard
) return TRUE
;
194 if (event
->selection
== GDK_SELECTION_PRIMARY
)
196 wxTheClipboard
->m_ownsPrimarySelection
= false;
199 if (event
->selection
== g_clipboardAtom
)
201 wxTheClipboard
->m_ownsClipboard
= false;
205 wxTheClipboard
->m_waiting
= false;
209 if ((!wxTheClipboard
->m_ownsPrimarySelection
) &&
210 (!wxTheClipboard
->m_ownsClipboard
))
212 /* the clipboard is no longer in our hands. we can the delete clipboard data. */
213 if (wxTheClipboard
->m_data
)
215 wxLogTrace(TRACE_CLIPBOARD
, wxT("wxClipboard will get cleared" ));
217 wxDELETE(wxTheClipboard
->m_data
);
221 wxTheClipboard
->m_waiting
= false;
225 //-----------------------------------------------------------------------------
226 // selection handler for supplying data
227 //-----------------------------------------------------------------------------
230 selection_handler( GtkWidget
*WXUNUSED(widget
),
231 GtkSelectionData
*selection_data
,
232 guint
WXUNUSED(info
),
233 guint
WXUNUSED(time
),
234 gpointer
WXUNUSED(data
) )
236 if (!wxTheClipboard
) return;
238 if (!wxTheClipboard
->m_data
) return;
240 wxDataObject
*data
= wxTheClipboard
->m_data
;
242 wxDataFormat
format( selection_data
->target
);
244 if (!data
->IsSupportedFormat( format
)) return;
246 int size
= data
->GetDataSize( format
);
248 if (size
== 0) return;
250 void *d
= malloc(size
);
252 data
->GetDataHere( selection_data
->target
, d
);
254 // transform Unicode text into multibyte before putting it on clipboard
256 if ( format
.GetType() == wxDF_TEXT
|| format
.GetType() == wxDF_UNICODETEXT
)
258 const wchar_t *wstr
= (const wchar_t *)d
;
259 size_t len
= wxConvCurrent
->WC2MB(NULL
, wstr
, 0);
260 char *str
= malloc(len
+ 1);
261 wxConvCurrent
->WC2MB(str
, wstr
, len
);
267 #endif // wxUSE_UNICODE
269 gtk_selection_data_set(
271 GDK_SELECTION_TYPE_STRING
,
281 //-----------------------------------------------------------------------------
283 //-----------------------------------------------------------------------------
285 IMPLEMENT_DYNAMIC_CLASS(wxClipboard
,wxObject
)
287 wxClipboard::wxClipboard()
291 m_ownsClipboard
= false;
292 m_ownsPrimarySelection
= false;
295 m_receivedData
= NULL
;
297 /* we use m_targetsWidget to query what formats are available */
299 /* we use m_clipboardWidget to get and to offer data */
301 if (!g_clipboardAtom
) g_clipboardAtom
= XInternAtom( (Display
*) wxGetDisplay(), "CLIPBOARD", False
);
302 if (!g_targetsAtom
) g_targetsAtom
= XInternAtom( (Display
*) wxGetDisplay(), "TARGETS", False
);
305 m_formatSupported
= false;
306 m_targetRequested
= 0;
309 wxClipboard::~wxClipboard()
313 // if (m_clipboardWidget) gtk_widget_destroy( m_clipboardWidget );
314 // if (m_targetsWidget) gtk_widget_destroy( m_targetsWidget );
317 void wxClipboard::Clear()
322 /* disable GUI threads */
325 /* As we have data we also own the clipboard. Once we no longer own
326 it, clear_selection is called which will set m_data to zero */
328 if (gdk_selection_owner_get( g_clipboardAtom
) == m_clipboardWidget
->window
)
332 gtk_selection_owner_set( NULL
, g_clipboardAtom
,
333 (guint32
) GDK_CURRENT_TIME
);
335 while (m_waiting
) gtk_main_iteration();
338 if (gdk_selection_owner_get( GDK_SELECTION_PRIMARY
) == m_clipboardWidget
->window
)
342 gtk_selection_owner_set( NULL
, GDK_SELECTION_PRIMARY
,
343 (guint32
) GDK_CURRENT_TIME
);
345 while (m_waiting
) gtk_main_iteration();
352 /* re-enable GUI threads */
356 m_targetRequested
= 0;
357 m_formatSupported
= false;
360 bool wxClipboard::Open()
362 wxCHECK_MSG( !m_open
, false, wxT("clipboard already open") );
369 bool wxClipboard::SetData( wxDataObject
*data
)
371 wxCHECK_MSG( m_open
, false, wxT("clipboard not open") );
373 wxCHECK_MSG( data
, false, wxT("data is invalid") );
377 return AddData( data
);
380 bool wxClipboard::AddData( wxDataObject
*data
)
385 wxCHECK_MSG( m_open
, false, wxT("clipboard not open") );
387 wxCHECK_MSG( data
, false, wxT("data is invalid") );
389 /* we can only store one wxDataObject */
394 /* get formats from wxDataObjects */
395 wxDataFormat
*array
= new wxDataFormat
[ m_data
->GetFormatCount() ];
396 m_data
->GetAllFormats( array
);
399 /* primary selection or clipboard */
400 Atom clipboard
= m_usePrimary
? (Atom
) 1 // 1 = primary selection
405 for (size_t i
= 0; i
< m_data
->GetFormatCount(); i
++)
407 wxLogTrace( TRACE_CLIPBOARD
,
408 wxT("wxClipboard now supports atom %s"),
409 array
[i
].GetId().c_str() );
412 gtk_selection_add_target( GTK_WIDGET(m_clipboardWidget
),
415 0 ); /* what is info ? */
422 gtk_signal_connect( GTK_OBJECT(m_clipboardWidget
),
424 GTK_SIGNAL_FUNC(selection_handler
),
429 /* disable GUI threads */
434 /* Tell the world we offer clipboard data */
435 res
= (gtk_selection_owner_set( m_clipboardWidget
,
437 (guint32
) GDK_CURRENT_TIME
));
441 m_ownsPrimarySelection
= res
;
443 m_ownsClipboard
= res
;
446 /* re-enable GUI threads */
453 void wxClipboard::Close()
455 wxCHECK_RET( m_open
, wxT("clipboard not open") );
460 bool wxClipboard::IsOpened() const
465 bool wxClipboard::IsSupported( const wxDataFormat
& format
)
467 /* reentrance problems */
468 if (m_waiting
) return false;
470 /* store requested format to be asked for by callbacks */
471 m_targetRequested
= format
;
474 wxLogTrace( TRACE_CLIPBOARD
,
475 wxT("wxClipboard:IsSupported: requested format: %s"),
476 format
.GetId().c_str() );
479 wxCHECK_MSG( m_targetRequested
, false, wxT("invalid clipboard format") );
481 m_formatSupported
= false;
483 /* perform query. this will set m_formatSupported to
484 true if m_targetRequested is supported.
485 also, we have to wait for the "answer" from the
486 clipboard owner which is an asynchronous process.
487 therefore we set m_waiting = true here and wait
488 until the callback "targets_selection_received"
494 gtk_selection_convert( m_targetsWidget
,
495 m_usePrimary
? (GdkAtom
)GDK_SELECTION_PRIMARY
498 (guint32
) GDK_CURRENT_TIME
);
500 while (m_waiting
) gtk_main_iteration();
503 if (!m_formatSupported
) return false;
508 bool wxClipboard::GetData( wxDataObject
& data
)
510 wxCHECK_MSG( m_open
, false, wxT("clipboard not open") );
512 /* get formats from wxDataObjects */
513 wxDataFormat
*array
= new wxDataFormat
[ data
.GetFormatCount() ];
514 data
.GetAllFormats( array
);
516 for (size_t i
= 0; i
< data
.GetFormatCount(); i
++)
518 wxDataFormat
format( array
[i
] );
520 wxLogTrace( TRACE_CLIPBOARD
,
521 wxT("wxClipboard::GetData: requested format: %s"),
522 format
.GetId().c_str() );
524 /* is data supported by clipboard ? */
526 /* store requested format to be asked for by callbacks */
527 m_targetRequested
= format
;
529 wxCHECK_MSG( m_targetRequested
, false, wxT("invalid clipboard format") );
531 m_formatSupported
= false;
533 /* perform query. this will set m_formatSupported to
534 true if m_targetRequested is supported.
535 also, we have to wait for the "answer" from the
536 clipboard owner which is an asynchronous process.
537 therefore we set m_waiting = true here and wait
538 until the callback "targets_selection_received"
544 gtk_selection_convert( m_targetsWidget
,
545 m_usePrimary
? (GdkAtom
)GDK_SELECTION_PRIMARY
548 (guint32
) GDK_CURRENT_TIME
);
550 while (m_waiting
) gtk_main_iteration();
553 if (!m_formatSupported
) continue;
555 /* store pointer to data object to be filled up by callbacks */
556 m_receivedData
= &data
;
558 /* store requested format to be asked for by callbacks */
559 m_targetRequested
= format
;
561 wxCHECK_MSG( m_targetRequested
, false, wxT("invalid clipboard format") );
564 m_formatSupported
= false;
566 /* ask for clipboard contents. this will set
567 m_formatSupported to true if m_targetRequested
569 also, we have to wait for the "answer" from the
570 clipboard owner which is an asynchronous process.
571 therefore we set m_waiting = true here and wait
572 until the callback "targets_selection_received"
577 wxLogTrace( TRACE_CLIPBOARD
,
578 wxT("wxClipboard::GetData: format found, start convert") );
581 gtk_selection_convert( m_clipboardWidget
,
582 m_usePrimary
? (GdkAtom
)GDK_SELECTION_PRIMARY
585 (guint32
) GDK_CURRENT_TIME
);
587 while (m_waiting
) gtk_main_iteration();
590 /* this is a true error as we checked for the presence of such data before */
591 wxCHECK_MSG( m_formatSupported
, false, wxT("error retrieving data from clipboard") );
598 wxLogTrace( TRACE_CLIPBOARD
,
599 wxT("wxClipboard::GetData: format not found") );