1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 <com/sun/star/container/XSet.hpp>
22 #include "FPServiceInfo.hxx"
24 #include "VistaFilePicker.hxx"
25 #include "../misc/WinImplHelper.hxx"
28 #include "../folderpicker/FolderPicker.hxx"
29 #include "../folderpicker/FOPServiceInfo.hxx"
30 #include "../folderpicker/WinFOPImpl.hxx"
32 using namespace ::com::sun::star::uno
;
33 using namespace ::com::sun::star::container
;
34 using namespace ::com::sun::star::lang
;
35 using namespace ::com::sun::star::registry
;
36 using namespace ::cppu
;
37 using ::com::sun::star::ui::dialogs::XFilePicker2
;
39 static Reference
< XInterface
> createInstance(
40 const Reference
< XMultiServiceFactory
>& rServiceManager
)
42 Reference
< XInterface
> xDlg
;
44 xDlg
.set(static_cast<XFilePicker2
*>(
45 new ::fpicker::win32::vista::VistaFilePicker(rServiceManager
)));
50 static Reference
< XInterface
>
51 createInstance_fop( const Reference
< XMultiServiceFactory
>& rServiceManager
)
53 return Reference
< XInterface
>( static_cast< cppu::OWeakObject
* >( new CFolderPicker( rServiceManager
) ) );
59 SAL_DLLPUBLIC_EXPORT
void* fps_win32_component_getFactory(
60 const sal_Char
* pImplName
, void* pSrvManager
, void* )
64 if ( pSrvManager
&& ( 0 == rtl_str_compare( pImplName
, FILE_PICKER_IMPL_NAME
) ) )
66 Sequence
<OUString
> aSNS
{ FILE_PICKER_SERVICE_NAME
};
68 Reference
< XSingleServiceFactory
> xFactory ( createSingleFactory(
69 static_cast< XMultiServiceFactory
* > ( pSrvManager
),
70 OUString::createFromAscii( pImplName
),
76 pRet
= xFactory
.get();
80 if ( pSrvManager
&& ( 0 == rtl_str_compare( pImplName
, FOLDER_PICKER_IMPL_NAME
) ) )
82 Sequence
<OUString
> aSNS
{ FOLDER_PICKER_SERVICE_NAME
};
84 Reference
< XSingleServiceFactory
> xFactory ( createSingleFactory(
85 static_cast< XMultiServiceFactory
* > ( pSrvManager
),
86 OUString::createFromAscii( pImplName
),
92 pRet
= xFactory
.get();
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */