1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/clipbrd.cpp
3 // Purpose: Clipboard functionality
4 // Author: Stefan Csomor;
5 // Generalized clipboard implementation by Matthew Flatt
9 // Copyright: (c) Stefan Csomor
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #include "wx/wxprec.h"
17 #include "wx/clipbrd.h"
25 #include "wx/bitmap.h"
28 #include "wx/metafile.h"
30 #include "wx/osx/private.h"
32 #define wxUSE_DATAOBJ 1
36 // the trace mask we use with wxLogTrace() - call
37 // wxLog::AddTraceMask(TRACE_CLIPBOARD) to enable the trace messages from here
38 // (there will be a *lot* of them!)
39 #define TRACE_CLIPBOARD wxT("clipboard")
41 IMPLEMENT_DYNAMIC_CLASS(wxClipboard
, wxObject
)
43 wxClipboard::wxClipboard()
47 PasteboardRef clipboard
= 0;
48 OSStatus err
= PasteboardCreate( kPasteboardClipboard
, &clipboard
);
51 wxLogSysError( wxT("Failed to create the clipboard.") );
53 m_pasteboard
.reset(clipboard
);
56 wxClipboard::~wxClipboard()
58 m_pasteboard
.reset((PasteboardRef
)0);
62 void wxClipboard::Clear()
66 wxCHECK_RET( m_pasteboard
, "Clipboard creation failed." );
68 OSStatus err
= PasteboardClear( m_pasteboard
);
71 wxLogSysError( wxT("Failed to empty the clipboard.") );
75 bool wxClipboard::Flush()
80 bool wxClipboard::Open()
82 wxCHECK_MSG( !m_open
, false, wxT("clipboard already open") );
89 bool wxClipboard::IsOpened() const
94 bool wxClipboard::SetData( wxDataObject
*data
)
96 if ( IsUsingPrimarySelection() )
99 wxCHECK_MSG( m_open
, false, wxT("clipboard not open") );
100 wxCHECK_MSG( data
, false, wxT("data is invalid") );
104 // as we can only store one wxDataObject,
105 // this is the same in this implementation
106 return AddData( data
);
109 bool wxClipboard::AddData( wxDataObject
*data
)
111 if ( IsUsingPrimarySelection() )
114 wxCHECK_MSG( m_open
, false, wxT("clipboard not open") );
115 wxCHECK_MSG( data
, false, wxT("data is invalid") );
117 // we can only store one wxDataObject
120 PasteboardSyncFlags syncFlags
= PasteboardSynchronize( m_pasteboard
);
121 wxCHECK_MSG( !(syncFlags
&kPasteboardModified
), false, wxT("clipboard modified after clear") );
122 wxCHECK_MSG( (syncFlags
&kPasteboardClientIsOwner
), false, wxT("client couldn't own clipboard") );
126 data
->AddToPasteboard( m_pasteboard
, 1 );
131 void wxClipboard::Close()
133 wxCHECK_RET( m_open
, wxT("clipboard not open") );
137 // Get rid of cached object.
138 // If this is not done, copying data from
139 // another application will only work once
143 bool wxClipboard::IsSupported( const wxDataFormat
&dataFormat
)
145 wxLogTrace(TRACE_CLIPBOARD
, wxT("Checking if format %s is available"),
146 dataFormat
.GetId().c_str());
149 return m_data
->IsSupported( dataFormat
);
150 return wxDataObject::IsFormatInPasteboard( m_pasteboard
, dataFormat
);
153 bool wxClipboard::GetData( wxDataObject
& data
)
155 if ( IsUsingPrimarySelection() )
158 wxCHECK_MSG( m_open
, false, wxT("clipboard not open") );
160 size_t formatcount
= data
.GetFormatCount(wxDataObject::Set
) + 1;
161 wxDataFormat
*array
= new wxDataFormat
[ formatcount
];
162 array
[0] = data
.GetPreferredFormat(wxDataObject::Set
);
163 data
.GetAllFormats( &array
[1], wxDataObject::Set
);
165 bool transferred
= false;
169 for (size_t i
= 0; !transferred
&& i
< formatcount
; i
++)
171 wxDataFormat format
= array
[ i
];
172 if ( m_data
->IsSupported( format
) )
174 int dataSize
= m_data
->GetDataSize( format
);
179 data
.SetData( format
, 0, 0 );
183 char *d
= new char[ dataSize
];
184 m_data
->GetDataHere( format
, (void*)d
);
185 data
.SetData( format
, dataSize
, d
);
192 // get formats from wxDataObjects
195 transferred
= data
.GetFromPasteboard( m_pasteboard
) ;