fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / dtrans / source / win32 / dnd / dndentry.cxx
blob5e4c63ecf71373286d2091fd142154b8fa6867d5
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 ::com::sun::star::uno ;
29 using namespace ::com::sun::star::registry ;
30 using namespace ::cppu ;
31 using namespace ::com::sun::star::lang;
33 Reference< XInterface > SAL_CALL createDragSource( const Reference< XMultiServiceFactory >& rServiceManager )
35 DragSource* pSource= new DragSource( comphelper::getComponentContext(rServiceManager) );
36 return Reference<XInterface>( static_cast<XInitialization*>(pSource), UNO_QUERY);
39 Reference< XInterface > SAL_CALL createDropTarget( const Reference< XMultiServiceFactory >& rServiceManager )
41 DropTarget* pTarget= new DropTarget( comphelper::getComponentContext(rServiceManager) );
42 return Reference<XInterface>( static_cast<XInitialization*>(pTarget), UNO_QUERY);
45 extern "C"
48 SAL_DLLPUBLIC_EXPORT void* SAL_CALL
49 dnd_component_getFactory( const sal_Char* pImplName, void* pSrvManager, void* /*pRegistryKey*/ )
51 void* pRet = 0;
52 Reference< XSingleServiceFactory > xFactory;
54 if ( pSrvManager && ( 0 == rtl_str_compare( pImplName, DNDSOURCE_IMPL_NAME ) ) )
56 Sequence< OUString > aSNS( 1 );
57 aSNS.getArray( )[0] = OUString( DNDSOURCE_SERVICE_NAME );
59 xFactory= createSingleFactory(
60 reinterpret_cast< XMultiServiceFactory* > ( pSrvManager ),
61 OUString::createFromAscii( pImplName ),
62 createDragSource,
63 aSNS);
66 else if( pSrvManager && ( 0 == rtl_str_compare( pImplName, DNDTARGET_IMPL_NAME ) ) )
68 Sequence< OUString > aSNS( 1 );
69 aSNS.getArray( )[0] = OUString( DNDTARGET_SERVICE_NAME );
71 xFactory= createSingleFactory(
72 reinterpret_cast< XMultiServiceFactory* > ( pSrvManager ),
73 OUString::createFromAscii( pImplName ),
74 createDropTarget,
75 aSNS);
79 if ( xFactory.is() )
81 xFactory->acquire();
82 pRet = xFactory.get();
85 return pRet;
88 } // extern "C"
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */