Bump version to 5.0-14
[LibreOffice.git] / xmlsecurity / source / dialogs / resourcemanager.hxx
blob992e33909e746aba973594f26a079cab21a68d9d
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 <tools/resmgr.hxx>
24 #include <tools/datetime.hxx>
25 #include <com/sun/star/util/DateTime.hpp>
26 #include <com/sun/star/uno/Sequence.hxx>
28 #include <vector>
30 class FixedImage;
31 class FixedInfo;
32 class Control;
33 class LocaleDataWrapper;
35 namespace XmlSec
37 ResMgr* GetResMgr();
39 const LocaleDataWrapper& GetLocaleData();
40 DateTime GetDateTime( const ::com::sun::star::util::DateTime& _rDT );
41 OUString GetDateTimeString( const ::com::sun::star::util::DateTime& _rDT );
42 OUString GetDateString( const ::com::sun::star::util::DateTime& _rDT );
44 std::vector< std::pair< OUString, OUString> >
45 parseDN(const OUString& rRawString);
46 std::pair< OUString, OUString> GetDNForCertDetailsView(
47 const OUString & rRawString);
48 OUString GetContentPart( const OUString& _rRawString );
50 OUString GetHexString( const ::com::sun::star::uno::Sequence< sal_Int8 >& _rSeq, const char* _pSep = ":", sal_uInt16 _nLineBreak = 0xFFFF );
53 #define XMLSEC_RES(id) ResId(id,*XmlSec::GetResMgr())
55 #endif
57 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */