/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
// in case of a default action, call ::AcceptDrop first and use the returned // accepted action as the execute action in the call to ::ExecuteDrop
aAcceptEvent.mnAction = aExecuteEvt.mnAction;
aAcceptEvent.maPosPixel = aExecuteEvt.maPosPixel; static_cast<DropTargetEvent&>(const_cast<DropTargetDragEvent&>( aAcceptEvent.maDragEvent )) = rDTDE; const_cast<DropTargetDragEvent&>( aAcceptEvent.maDragEvent ).DropAction = rDTDE.DropAction; const_cast<DropTargetDragEvent&>( aAcceptEvent.maDragEvent ).LocationX = rDTDE.LocationX; const_cast<DropTargetDragEvent&>( aAcceptEvent.maDragEvent ).LocationY = rDTDE.LocationY; const_cast<DropTargetDragEvent&>( aAcceptEvent.maDragEvent ).SourceActions = rDTDE.SourceActions;
aAcceptEvent.mbLeaving = false;
aAcceptEvent.mbDefault = aExecuteEvt.mbDefault;
// test first the list for (autoconst& format : pImpl->aFmtList)
{ if( nFmtId == format.nId )
{
bFnd = SetAny( format.aAny ); break;
}
}
// test second the bookmark pointer if( !bFnd ) switch( nFmtId )
{ case SotClipboardFormatId::STRING: case SotClipboardFormatId::SOLK: case SotClipboardFormatId::NETSCAPE_BOOKMARK: case SotClipboardFormatId::FILECONTENT: case SotClipboardFormatId::FILEGRPDESCRIPTOR: case SotClipboardFormatId::UNIFORMRESOURCELOCATOR: if( pImpl->moBookmk )
bFnd = SetINetBookmark( *pImpl->moBookmk, rFlavor ); break;
Reference<XClipboard> GetSystemClipboard()
{ // On Windows, the css.datatransfer.clipboard.SystemClipboard UNO service is implemented as a // single-instance service (dtrans_CWinClipboard_get_implementation in // vcl/win/dtrans/WinClipboard.cxx) that needs timely disposing to join a spawned thread // (done in DeInitVCL, vcl/source/app/svmain.cxx), while on other platforms it is implemented as // a multi-instance service (ClipboardFactory, vcl/source/components/dtranscomp.cxx) so we // should not hold on to a single instance here: #ifdefined _WIN32
DBG_TESTSOLARMUTEX(); autoconst data = ImplGetSVData(); if (!data->m_xSystemClipboard.is())
{ try
{
data->m_xSystemClipboard = css::datatransfer::clipboard::SystemClipboard::create(
comphelper::getProcessComponentContext());
} catch (DeploymentException const &) {}
} return data->m_xSystemClipboard; #else
Reference<XClipboard> xClipboard; try
{ #ifdef IOS if (false)
; #else if (comphelper::LibreOfficeKit::isActive())
{
xClipboard = css::datatransfer::clipboard::LokClipboard::create(
comphelper::getProcessComponentContext());
} #endif else
{
xClipboard = css::datatransfer::clipboard::SystemClipboard::create(
comphelper::getProcessComponentContext());
}
} catch (DeploymentException const &) {} return xClipboard; #endif
}
Reference<XClipboard> GetSystemPrimarySelection()
{
Reference<XClipboard> xSelection; try
{ const Reference<XComponentContext>& xContext(comphelper::getProcessComponentContext()); #if USING_X11 // A hack, making the primary selection available as an instance // of the SystemClipboard service on X11:
Sequence< Any > args{ Any(u"PRIMARY"_ustr) };
xSelection.set(xContext->getServiceManager()->createInstanceWithArgumentsAndContext(
u"com.sun.star.datatransfer.clipboard.SystemClipboard"_ustr, args, xContext), UNO_QUERY_THROW); #else static Reference< XClipboard > s_xSelection(
xContext->getServiceManager()->createInstanceWithContext( "com.sun.star.datatransfer.clipboard.GenericClipboard", xContext), UNO_QUERY);
xSelection = s_xSelection; #endif
} catch (RuntimeException const &) {} return xSelection;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.