office-gobmx/cui/source/dialogs/pastedlg.cxx
Samuel Mehrbrodt b9a8ac48d7 Rename GetSelectEntryData -> GetSelectedEntryData
Change-Id: Ia6402f6d2c978cbd5557052a43e9728ca9e11173
Reviewed-on: https://gerrit.libreoffice.org/42285
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2017-09-25 10:54:53 +02:00

213 lines
6.7 KiB
C++

/* -*- 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 .
*/
#include <memory>
#include <com/sun/star/embed/Aspects.hpp>
#include <pastedlg.hxx>
#include <svtools/svmedit.hxx>
#include <svtools/insdlg.hxx>
#include <vcl/dialog.hxx>
#include <vcl/button.hxx>
#include <vcl/fixed.hxx>
#include <vcl/group.hxx>
#include <vcl/lstbox.hxx>
#include <vcl/msgbox.hxx>
#include <sot/exchange.hxx>
#include <sot/formats.hxx>
#include <svtools/strings.hrc>
#include <svtools/svtresid.hxx>
#include <vcl/svapp.hxx>
#include <vcl/settings.hxx>
#include <dialmgr.hxx>
SvPasteObjectDialog::SvPasteObjectDialog( vcl::Window* pParent )
: ModalDialog(pParent, "PasteSpecialDialog", "cui/ui/pastespecial.ui")
{
get(m_pFtObjectSource, "source");
get(m_pLbInsertList, "list");
get(m_pOKButton, "ok");
m_pLbInsertList->SetDropDownLineCount(8);
m_pLbInsertList->set_width_request(m_pLbInsertList->approximate_char_width() * 32);
m_pOKButton->Disable();
ObjectLB().SetSelectHdl( LINK( this, SvPasteObjectDialog, SelectHdl ) );
ObjectLB().SetDoubleClickHdl( LINK( this, SvPasteObjectDialog, DoubleClickHdl ) );
}
SvPasteObjectDialog::~SvPasteObjectDialog()
{
disposeOnce();
}
void SvPasteObjectDialog::dispose()
{
m_pFtObjectSource.clear();
m_pLbInsertList.clear();
m_pOKButton.clear();
ModalDialog::dispose();
}
void SvPasteObjectDialog::SelectObject()
{
if (m_pLbInsertList->GetEntryCount())
{
m_pLbInsertList->SelectEntryPos(0);
SelectHdl(*m_pLbInsertList);
}
}
IMPL_LINK_NOARG( SvPasteObjectDialog, SelectHdl, ListBox&, void )
{
if ( !m_pOKButton->IsEnabled() )
m_pOKButton->Enable();
}
IMPL_LINK_NOARG( SvPasteObjectDialog, DoubleClickHdl, ListBox&, void )
{
EndDialog( RET_OK );
}
/*************************************************************************
|* SvPasteObjectDialog::Insert()
*************************************************************************/
void SvPasteObjectDialog::Insert( SotClipboardFormatId nFormat, const OUString& rFormatName )
{
aSupplementMap.insert( std::make_pair( nFormat, rFormatName ) );
}
SotClipboardFormatId SvPasteObjectDialog::GetFormat( const TransferableDataHelper& rHelper)
{
//TODO/LATER: why is the Descriptor never used?!
TransferableObjectDescriptor aDesc;
if (rHelper.HasFormat(SotClipboardFormatId::OBJECTDESCRIPTOR))
{
(void)const_cast<TransferableDataHelper&>(rHelper).GetTransferableObjectDescriptor(
SotClipboardFormatId::OBJECTDESCRIPTOR, aDesc);
}
const DataFlavorExVector* pFormats = &rHelper.GetDataFlavorExVector();
// create and fill dialog box
OUString aSourceName, aTypeName;
SotClipboardFormatId nSelFormat = SotClipboardFormatId::NONE;
SvGlobalName aEmptyNm;
ObjectLB().SetUpdateMode( false );
DataFlavorExVector::iterator aIter( const_cast<DataFlavorExVector&>(*pFormats).begin() ),
aEnd( const_cast<DataFlavorExVector&>(*pFormats).end() );
while( aIter != aEnd )
{
SotClipboardFormatId nFormat = (*aIter++).mnSotId;
std::map< SotClipboardFormatId, OUString >::iterator itName =
aSupplementMap.find( nFormat );
// if there is an "Embed Source" or and "Embedded Object" on the
// Clipboard we read the Description and the Source of this object
// from an accompanied "Object Descriptor" format on the clipboard
// Remember: these formats mostly appear together on the clipboard
OUString aName;
const OUString* pName = nullptr;
if ( itName == aSupplementMap.end() )
{
SvPasteObjectHelper::GetEmbeddedName(rHelper,aName,aSourceName,nFormat);
if ( !aName.isEmpty() )
pName = &aName;
}
else
{
pName = &(itName->second);
}
if( pName )
{
aName = *pName;
if( SotClipboardFormatId::EMBED_SOURCE == nFormat )
{
if( aDesc.maClassName != aEmptyNm )
{
aSourceName = aDesc.maDisplayName;
if( aDesc.maClassName == aObjClassName )
aName = aObjName;
else
aName = aTypeName = aDesc.maTypeName;
}
}
else if( SotClipboardFormatId::LINK_SOURCE == nFormat )
{
continue;
}
else if( aName.isEmpty() )
aName = SvPasteObjectHelper::GetSotFormatUIName( nFormat );
if( LISTBOX_ENTRY_NOTFOUND == ObjectLB().GetEntryPos( aName ) )
ObjectLB().SetEntryData(
ObjectLB().InsertEntry( aName ), reinterpret_cast<void*>(nFormat) );
}
}
if( aTypeName.isEmpty() && aSourceName.isEmpty() )
{
if( aDesc.maClassName != aEmptyNm )
{
aSourceName = aDesc.maDisplayName;
aTypeName = aDesc.maTypeName;
}
if( aTypeName.isEmpty() && aSourceName.isEmpty() )
{
// global resource from svtools (former so3 resource)
aSourceName = SvtResId(STR_UNKNOWN_SOURCE);
}
}
ObjectLB().SetUpdateMode( true );
SelectObject();
if( !aSourceName.isEmpty() )
{
if( !aTypeName.isEmpty() )
aTypeName += "\n";
aTypeName += aSourceName;
aTypeName = convertLineEnd(aTypeName, GetSystemLineEnd());
}
m_pFtObjectSource->SetText( aTypeName );
if( Dialog::Execute() == RET_OK )
{
nSelFormat = static_cast<SotClipboardFormatId>(reinterpret_cast<sal_uLong>(ObjectLB().GetSelectedEntryData()));
}
return nSelFormat;
}
void SvPasteObjectDialog::SetObjName( const SvGlobalName & rClass, const OUString & rObjName )
{
aObjClassName = rClass;
aObjName = rObjName;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */