1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: systemshell.cxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_shell.hxx"
33 #include "systemshell.hxx"
35 #include <comphelper/processfactory.hxx>
37 #ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_Hpp_
38 #include <com/sun/star/beans/XPropertySet.hpp>
40 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
41 #include <com/sun/star/uri/XExternalUriReferenceTranslator.hpp>
42 #include <com/sun/star/uri/ExternalUriReferenceTranslator.hpp>
43 #include <com/sun/star/uno/XComponentContext.hpp>
46 #include <Cocoa/Cocoa.h>
49 using namespace ::com::sun::star
;
51 // We need to re-encode file urls because osl_getFileURLFromSystemPath converts
52 // to UTF-8 before encoding non ascii characters, which is not what other apps expect.
53 static rtl::OUString
translateToExternalUrl(const rtl::OUString
& internalUrl
)
57 uno::Reference
< lang::XMultiServiceFactory
> sm
= comphelper::getProcessServiceFactory();
60 uno::Reference
< beans::XPropertySet
> pset
;
61 sm
->queryInterface( getCppuType( &pset
)) >>= pset
;
64 uno::Reference
< uno::XComponentContext
> context
;
65 static const rtl::OUString
DEFAULT_CONTEXT( RTL_CONSTASCII_USTRINGPARAM( "DefaultContext" ) );
66 pset
->getPropertyValue(DEFAULT_CONTEXT
) >>= context
;
68 extUrl
= uri::ExternalUriReferenceTranslator::create(context
)->translateToExternal(internalUrl
);
74 namespace SystemShell
{
76 //##############################
77 void AddToRecentDocumentList(const rtl::OUString
& aFileUrl
, const rtl::OUString
& aMimeType
)
79 // Convert file URL for external use (see above)
80 rtl::OUString externalUrl
= translateToExternalUrl(aFileUrl
);
81 if( 0 == externalUrl
.getLength() )
82 externalUrl
= aFileUrl
;
84 if( externalUrl
.getLength() )
86 NSString
* pString
= [[NSString alloc
] initWithCharacters
: externalUrl
.getStr() length
: externalUrl
.getLength()];
87 NSURL
* pURL
= [NSURL URLWithString
: pString
];
91 NSDocumentController
* pCtrl
= [NSDocumentController sharedDocumentController
];
92 [pCtrl noteNewRecentDocumentURL
: pURL
];
100 } // namespace SystemShell