LibreOffice Module xmlsecurity (master) 1
certificatechooser.hxx
Go to the documentation of this file.
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 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include <com/sun/star/uno/Sequence.hxx>
23#include <vcl/weld.hxx>
24#include <unotools/resmgr.hxx>
26#include <unordered_map>
27
28namespace com::sun::star {
29 namespace security { class XCertificate; }
30 namespace xml::crypto {
31 class XSecurityEnvironment;
32 }
33}
34
35namespace com::sun::star::xml::crypto { class XXMLSecurityContext; }
36
37struct UserData
38{
39 css::uno::Reference<css::security::XCertificate> xCertificate;
40 css::uno::Reference<css::xml::crypto::XXMLSecurityContext> xSecurityContext;
41 css::uno::Reference<css::xml::crypto::XSecurityEnvironment> xSecurityEnvironment;
42};
43
44enum class UserAction
45{
46 Sign,
47 SelectSign, // Select signing certificate
49};
50
52{
53private:
54 std::vector< css::uno::Reference< css::xml::crypto::XXMLSecurityContext > > mxSecurityContexts;
55 std::vector<std::shared_ptr<UserData>> mvUserData;
56
60 css::uno::Reference<css::security::XCertificate> mxEncryptToSelf;
61
62 std::unique_ptr<weld::Label> m_xFTSign;
63 std::unique_ptr<weld::Label> m_xFTEncrypt;
64 std::unique_ptr<weld::TreeView> m_xCertLB;
65 std::unique_ptr<weld::Button> m_xViewBtn;
66 std::unique_ptr<weld::Button> m_xOKBtn;
67 std::unique_ptr<weld::Label> m_xFTDescription;
68 std::unique_ptr<weld::Entry> m_xDescriptionED;
69 std::unique_ptr<weld::Entry> m_xSearchBox;
70
71 std::unordered_map<css::uno::Reference< css::xml::crypto::XXMLSecurityContext>,
72 css::uno::Sequence< css::uno::Reference< css::security::XCertificate > > > xMemCerts;
73
74
75 DECL_LINK(ViewButtonHdl, weld::Button&, void);
76 DECL_LINK(CertificateHighlightHdl, weld::TreeView&, void);
77 DECL_LINK(CertificateSelectHdl, weld::TreeView&, bool);
78 DECL_LINK(SearchModifyHdl, weld::Entry&, void);
79
81 void ImplInitialize(bool mbSearch = false);
82
83 static void HandleOneUsageBit(OUString& string, int& bits, int bit, TranslateId name);
84
85public:
87 std::vector< css::uno::Reference< css::xml::crypto::XXMLSecurityContext > > && rxSecurityContexts,
88 UserAction eAction);
89 virtual ~CertificateChooser() override;
90
91 short run() override;
92
93 css::uno::Sequence<css::uno::Reference< css::security::XCertificate > > GetSelectedCertificates();
94 css::uno::Reference< css::xml::crypto::XXMLSecurityContext > GetSelectedSecurityContext() const;
96 OUString GetDescription() const;
97
99 OUString GetUsageText();
100
101 static OUString UsageInClearText(int bits);
102};
103
104/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static OUString UsageInClearText(int bits)
CertificateChooser(weld::Window *pParent, std::vector< css::uno::Reference< css::xml::crypto::XXMLSecurityContext > > &&rxSecurityContexts, UserAction eAction)
std::unique_ptr< weld::Button > m_xViewBtn
DECL_LINK(CertificateHighlightHdl, weld::TreeView &, void)
void ImplInitialize(bool mbSearch=false)
std::unique_ptr< weld::Entry > m_xSearchBox
static void HandleOneUsageBit(OUString &string, int &bits, int bit, TranslateId name)
virtual ~CertificateChooser() override
DECL_LINK(SearchModifyHdl, weld::Entry &, void)
std::unique_ptr< weld::Label > m_xFTDescription
UserAction const meAction
std::vector< std::shared_ptr< UserData > > mvUserData
css::uno::Reference< css::security::XCertificate > mxEncryptToSelf
std::vector< css::uno::Reference< css::xml::crypto::XXMLSecurityContext > > mxSecurityContexts
std::unique_ptr< weld::Button > m_xOKBtn
css::uno::Reference< css::xml::crypto::XXMLSecurityContext > GetSelectedSecurityContext() const
DECL_LINK(CertificateSelectHdl, weld::TreeView &, bool)
std::unique_ptr< weld::Label > m_xFTEncrypt
std::unique_ptr< weld::Label > m_xFTSign
std::unordered_map< css::uno::Reference< css::xml::crypto::XXMLSecurityContext >, css::uno::Sequence< css::uno::Reference< css::security::XCertificate > > > xMemCerts
OUString GetDescription() const
Gets the description string provided when selecting the certificate.
css::uno::Sequence< css::uno::Reference< css::security::XCertificate > > GetSelectedCertificates()
std::unique_ptr< weld::Entry > m_xDescriptionED
short run() override
std::unique_ptr< weld::TreeView > m_xCertLB
OUString GetUsageText()
Returns the usage string of the selected certificate, if any.
DECL_LINK(ViewButtonHdl, weld::Button &, void)