LCOV - code coverage report
Current view: top level - svtools/langsupport - langsupport.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 24 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 4 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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             :  */
       9             : 
      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>
      15             : #include <sal/main.h>
      16             : #include <svtools/langtab.hxx>
      17             : #include <tools/extendapplicationenvironment.hxx>
      18             : #include <vcl/svapp.hxx>
      19             : #include <iostream>
      20             : 
      21             : using namespace com::sun::star;
      22             : 
      23           0 : SAL_IMPLEMENT_MAIN()
      24             : {
      25             :     try
      26             :     {
      27           0 :         tools::extendApplicationEnvironment();
      28             : 
      29             :         uno::Reference<uno::XComponentContext> xContext =
      30           0 :             cppu::defaultBootstrap_InitialComponentContext();
      31             : 
      32             :         uno::Reference<lang::XMultiComponentFactory> xFactory =
      33           0 :             xContext->getServiceManager();
      34             : 
      35             :         uno::Reference<lang::XMultiServiceFactory> xSFactory(xFactory,
      36           0 :             uno::UNO_QUERY_THROW);
      37             : 
      38           0 :         comphelper::setProcessServiceFactory(xSFactory);
      39             : 
      40           0 :         InitVCL();
      41             : 
      42             :         {
      43           0 :             sal_uInt32 nCount = SvtLanguageTable::GetLanguageEntryCount();
      44           0 :             for (sal_uInt32 i = 0; i < nCount; ++i)
      45             :             {
      46           0 :                 LanguageType eLang = SvtLanguageTable::GetLanguageTypeAtIndex(i);
      47             : 
      48           0 :                 if (eLang == LANGUAGE_DONTKNOW ||
      49           0 :                     eLang == LANGUAGE_NONE ||
      50           0 :                     eLang == LANGUAGE_HID_HUMAN_INTERFACE_DEVICE ||
      51             :                     eLang == LANGUAGE_SYSTEM)
      52             :                 {
      53           0 :                     continue;
      54             :                 }
      55             : 
      56           0 :                 OUString sTag( LanguageTag::convertToBcp47( eLang));
      57             : 
      58           0 :                 std::cout << OUStringToOString(sTag, osl_getThreadTextEncoding()).getStr()
      59           0 :                     << std::endl;
      60           0 :             }
      61             :         }
      62             : 
      63           0 :         DeInitVCL();
      64             : 
      65           0 :         uno::Reference< lang::XComponent >(xContext, uno::UNO_QUERY_THROW)->dispose();
      66             :     }
      67           0 :     catch (const uno::Exception& e)
      68             :     {
      69             :         SAL_WARN("vcl.app", "Fatal exception: " << e.Message);
      70           0 :         return 1;
      71             :     }
      72             : 
      73           0 :     return 0;
      74           0 : }
      75             : 
      76             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11