bump product version to 4.1.6.2
[LibreOffice.git] / dtrans / source / win32 / dnd / dndentry.cxx
blob940b9bc213c207cd3ca43d1ae838d4d3e75f1dda
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <cppuhelper/factory.hxx>
21 #include <comphelper/processfactory.hxx>
22 #include <com/sun/star/container/XSet.hpp>
23 #include <osl/diagnose.h>
25 #include "source.hxx"
26 #include "target.hxx"
28 using namespace ::rtl ;
29 using namespace ::com::sun::star::uno ;
30 using namespace ::com::sun::star::registry ;
31 using namespace ::cppu ;
32 using namespace ::com::sun::star::lang;
34 Reference< XInterface > SAL_CALL createDragSource( const Reference< XMultiServiceFactory >& rServiceManager )
36 DragSource* pSource= new DragSource( comphelper::getComponentContext(rServiceManager) );
37 return Reference<XInterface>( static_cast<XInitialization*>(pSource), UNO_QUERY);
40 Reference< XInterface > SAL_CALL createDropTarget( const Reference< XMultiServiceFactory >& rServiceManager )
42 DropTarget* pTarget= new DropTarget( comphelper::getComponentContext(rServiceManager) );
43 return Reference<XInterface>( static_cast<XInitialization*>(pTarget), UNO_QUERY);
47 extern "C"
50 SAL_DLLPUBLIC_EXPORT void* SAL_CALL dnd_component_getFactory( const sal_Char* pImplName, uno_Interface* pSrvManager, uno_Interface* /*pRegistryKey*/ )
52 void* pRet = 0;
53 Reference< XSingleServiceFactory > xFactory;
55 if ( pSrvManager && ( 0 == rtl_str_compare( pImplName, DNDSOURCE_IMPL_NAME ) ) )
57 Sequence< OUString > aSNS( 1 );
58 aSNS.getArray( )[0] = OUString( RTL_CONSTASCII_USTRINGPARAM( DNDSOURCE_SERVICE_NAME ) );
60 xFactory= createSingleFactory(
61 reinterpret_cast< XMultiServiceFactory* > ( pSrvManager ),
62 OUString::createFromAscii( pImplName ),
63 createDragSource,
64 aSNS);
67 else if( pSrvManager && ( 0 == rtl_str_compare( pImplName, DNDTARGET_IMPL_NAME ) ) )
69 Sequence< OUString > aSNS( 1 );
70 aSNS.getArray( )[0] = OUString( RTL_CONSTASCII_USTRINGPARAM( DNDTARGET_SERVICE_NAME ) );
72 xFactory= createSingleFactory(
73 reinterpret_cast< XMultiServiceFactory* > ( pSrvManager ),
74 OUString::createFromAscii( pImplName ),
75 createDropTarget,
76 aSNS);
80 if ( xFactory.is() )
82 xFactory->acquire();
83 pRet = xFactory.get();
86 return pRet;
89 } // extern "C"
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */