bump product version to 4.2.0.1
[LibreOffice.git] / sfx2 / source / appl / openuriexternally.cxx
blobe153bda1362373d8ae4bc3d56431a2ac0cf067d2
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/.
8 */
10 #include <sal/config.h>
12 #include <com/sun/star/lang/IllegalArgumentException.hpp>
13 #include <com/sun/star/system/SystemShellExecute.hpp>
14 #include <com/sun/star/system/SystemShellExecuteException.hpp>
15 #include <com/sun/star/system/SystemShellExecuteFlags.hpp>
16 #include <com/sun/star/uno/Reference.hxx>
17 #include <com/sun/star/uno/RuntimeException.hpp>
18 #include <com/sun/star/uno/XInterface.hpp>
19 #include <comphelper/processfactory.hxx>
20 #include <rtl/ustring.h>
21 #include <rtl/ustring.hxx>
22 #include <sfx2/app.hxx>
23 #include <sfx2/sfxresid.hxx>
24 #include <vcl/msgbox.hxx>
25 #include <vcl/svapp.hxx>
27 #include "openuriexternally.hxx"
29 #include "app.hrc"
31 bool sfx2::openUriExternally(
32 OUString const & uri, bool handleSystemShellExecuteException)
34 css::uno::Reference< css::system::XSystemShellExecute > exec(
35 css::system::SystemShellExecute::create(comphelper::getProcessComponentContext()));
36 try {
37 exec->execute(
38 uri, OUString(),
39 css::system::SystemShellExecuteFlags::URIS_ONLY);
40 return true;
41 } catch (css::lang::IllegalArgumentException & e) {
42 if (e.ArgumentPosition != 0) {
43 throw css::uno::RuntimeException(
44 (OUString(
45 "unexpected IllegalArgumentException: ")
46 + e.Message),
47 css::uno::Reference< css::uno::XInterface >());
49 SolarMutexGuard g;
50 ErrorBox eb(
51 SfxGetpApp()->GetTopWindow(), SfxResId(MSG_ERR_NO_ABS_URI_REF));
52 OUString msg(eb.GetMessText());
53 msg = msg.replaceFirst("$(ARG1)", uri);
54 eb.SetMessText(msg);
55 eb.Execute();
56 } catch (css::system::SystemShellExecuteException &) {
57 if (!handleSystemShellExecuteException) {
58 throw;
60 SolarMutexGuard g;
61 ErrorBox(
62 SfxGetpApp()->GetTopWindow(),
63 SfxResId(MSG_ERR_NO_WEBBROWSER_FOUND)).
64 Execute();
66 return false;
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */