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/.
10 #include <com/sun/star/lang/XComponent.hpp>
11 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
12 #include <comphelper/processfactory.hxx>
13 #include <cppuhelper/bootstrap.hxx>
14 #include <i18nlangtag/languagetag.hxx>
16 #include <svtools/langtab.hxx>
17 #include <tools/extendapplicationenvironment.hxx>
18 #include <vcl/svapp.hxx>
21 using namespace com::sun::star
;
27 tools::extendApplicationEnvironment();
29 uno::Reference
<uno::XComponentContext
> xContext
=
30 cppu::defaultBootstrap_InitialComponentContext();
32 uno::Reference
<lang::XMultiComponentFactory
> xFactory
=
33 xContext
->getServiceManager();
35 uno::Reference
<lang::XMultiServiceFactory
> xSFactory(xFactory
,
36 uno::UNO_QUERY_THROW
);
38 comphelper::setProcessServiceFactory(xSFactory
);
43 sal_uInt32 nCount
= SvtLanguageTable::GetLanguageEntryCount();
44 for (sal_uInt32 i
= 0; i
< nCount
; ++i
)
46 LanguageType eLang
= SvtLanguageTable::GetLanguageTypeAtIndex(i
);
48 if (eLang
== LANGUAGE_DONTKNOW
||
49 eLang
== LANGUAGE_NONE
||
50 eLang
== LANGUAGE_HID_HUMAN_INTERFACE_DEVICE
||
51 eLang
== LANGUAGE_SYSTEM
)
56 OUString
sTag( LanguageTag::convertToBcp47( eLang
));
58 std::cout
<< OUStringToOString(sTag
, osl_getThreadTextEncoding()).getStr()
65 uno::Reference
< lang::XComponent
>(xContext
, uno::UNO_QUERY_THROW
)->dispose();
67 catch (const uno::Exception
& e
)
69 SAL_WARN("vcl.app", "Fatal exception: " << e
.Message
);
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */