3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
112 lines
3.0 KiB
C++
112 lines
3.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/common/clipcmn.cpp
|
|
// Purpose: common (to all ports) wxClipboard functions
|
|
// Author: Robert Roebling
|
|
// Modified by:
|
|
// Created: 28.06.99
|
|
// Copyright: (c) Robert Roebling
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_CLIPBOARD
|
|
|
|
#include "wx/clipbrd.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/dataobj.h"
|
|
#include "wx/module.h"
|
|
#endif
|
|
|
|
// ---------------------------------------------------------
|
|
// wxClipboardEvent
|
|
// ---------------------------------------------------------
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxClipboardEvent,wxEvent)
|
|
|
|
wxDEFINE_EVENT( wxEVT_CLIPBOARD_CHANGED, wxClipboardEvent );
|
|
|
|
bool wxClipboardEvent::SupportsFormat( const wxDataFormat &format ) const
|
|
{
|
|
#ifdef __WXGTK20__
|
|
for (wxVector<wxDataFormat>::size_type n = 0; n < m_formats.size(); n++)
|
|
{
|
|
if (m_formats[n] == format)
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
#else
|
|
// All other ports just query the clipboard directly
|
|
// from here
|
|
wxClipboard* clipboard = (wxClipboard*) GetEventObject();
|
|
return clipboard->IsSupported( format );
|
|
#endif
|
|
}
|
|
|
|
void wxClipboardEvent::AddFormat(const wxDataFormat& format)
|
|
{
|
|
m_formats.push_back( format );
|
|
}
|
|
|
|
// ---------------------------------------------------------
|
|
// wxClipboardBase
|
|
// ---------------------------------------------------------
|
|
|
|
static wxClipboard *gs_clipboard = NULL;
|
|
|
|
/*static*/ wxClipboard *wxClipboardBase::Get()
|
|
{
|
|
if ( !gs_clipboard )
|
|
{
|
|
gs_clipboard = new wxClipboard;
|
|
}
|
|
return gs_clipboard;
|
|
}
|
|
|
|
bool wxClipboardBase::IsSupportedAsync( wxEvtHandler *sink )
|
|
{
|
|
// We just imitate an asynchronous API on most platforms.
|
|
// This method is overridden uner GTK.
|
|
wxClipboardEvent *event = new wxClipboardEvent(wxEVT_CLIPBOARD_CHANGED);
|
|
event->SetEventObject( this );
|
|
|
|
sink->QueueEvent( event );
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxClipboardModule: module responsible for destroying the global clipboard
|
|
// object
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class wxClipboardModule : public wxModule
|
|
{
|
|
public:
|
|
bool OnInit() { return true; }
|
|
void OnExit() { wxDELETE(gs_clipboard); }
|
|
|
|
private:
|
|
DECLARE_DYNAMIC_CLASS(wxClipboardModule)
|
|
};
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxClipboardModule, wxModule)
|
|
|
|
#endif // wxUSE_CLIPBOARD
|