[pt_PT] Added 21 autocorrect words
[LibreOffice.git] / xmlsecurity / inc / resourcemanager.hxx
blob3516bcfa0db44729e5ca1bb8074f40470279a260
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/.
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 #ifndef INCLUDED_XMLSECURITY_SOURCE_DIALOGS_RESOURCEMANAGER_HXX
21 #define INCLUDED_XMLSECURITY_SOURCE_DIALOGS_RESOURCEMANAGER_HXX
23 #include <unotools/resmgr.hxx>
24 #include <tools/datetime.hxx>
25 #include <com/sun/star/security/CertificateKind.hpp>
26 #include <com/sun/star/util/DateTime.hpp>
27 #include <com/sun/star/uno/Sequence.hxx>
29 #include <vector>
31 class FixedImage;
32 class Control;
33 class LocaleDataWrapper;
35 namespace XmlSec
37 const std::locale& GetResLocale();
39 const LocaleDataWrapper& GetLocaleData();
40 DateTime GetDateTime( const css::util::DateTime& _rDT );
41 OUString GetDateTimeString( const css::util::DateTime& _rDT );
42 OUString GetDateString( const css::util::DateTime& _rDT );
43 OUString GetCertificateKind( const css::security::CertificateKind& rKind );
45 std::vector< std::pair< OUString, OUString> >
46 parseDN(const OUString& rRawString);
47 std::pair< OUString, OUString> GetDNForCertDetailsView(
48 const OUString & rRawString);
49 OUString GetContentPart( const OUString& _rRawString );
51 OUString GetHexString( const css::uno::Sequence< sal_Int8 >& _rSeq, const char* _pSep, sal_uInt16 _nLineBreak = 0xFFFF );
54 inline OUString XsResId(const char* pId)
56 return Translate::get(pId, XmlSec::GetResLocale());
59 #endif
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */