2010-10-27 12:45:03 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-16 17:32:30 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2004-07-12 12:15:31 +00:00
|
|
|
|
2014-04-18 18:50:28 +02:00
|
|
|
#ifndef INCLUDED_XMLSECURITY_INC_XMLSECURITY_CERTIFICATEVIEWER_HXX
|
|
|
|
#define INCLUDED_XMLSECURITY_INC_XMLSECURITY_CERTIFICATEVIEWER_HXX
|
2004-07-12 12:15:31 +00:00
|
|
|
|
|
|
|
#include <vcl/fixed.hxx>
|
|
|
|
#include <vcl/button.hxx>
|
|
|
|
#include <vcl/lstbox.hxx>
|
|
|
|
#include <vcl/tabdlg.hxx>
|
|
|
|
#include <vcl/tabctrl.hxx>
|
|
|
|
#include <vcl/tabpage.hxx>
|
2013-07-16 09:12:42 +01:00
|
|
|
#include <svtools/simptabl.hxx>
|
2004-07-12 12:15:31 +00:00
|
|
|
#include <svtools/stdctrl.hxx>
|
|
|
|
#include <svtools/svmedit.hxx>
|
|
|
|
|
|
|
|
namespace com {
|
|
|
|
namespace sun {
|
|
|
|
namespace star {
|
|
|
|
namespace security {
|
|
|
|
class XCertificate; }
|
|
|
|
namespace xml { namespace crypto {
|
|
|
|
class XSecurityEnvironment; }}
|
|
|
|
}}}
|
|
|
|
|
|
|
|
class CertificateViewer : public TabDialog
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
friend class CertificateViewerGeneralTP;
|
|
|
|
friend class CertificateViewerDetailsTP;
|
|
|
|
friend class CertificateViewerCertPathTP;
|
|
|
|
|
2014-01-30 09:55:38 +00:00
|
|
|
TabControl* mpTabCtrl;
|
|
|
|
sal_uInt16 mnGeneralId;
|
|
|
|
sal_uInt16 mnDetailsId;
|
|
|
|
sal_uInt16 mnPathId;
|
2004-07-12 12:15:31 +00:00
|
|
|
|
2012-09-25 17:28:22 +02:00
|
|
|
bool mbCheckForPrivateKey;
|
2005-03-10 17:01:59 +00:00
|
|
|
|
2013-03-30 00:32:52 +01:00
|
|
|
css::uno::Reference< css::xml::crypto::XSecurityEnvironment > mxSecurityEnvironment;
|
|
|
|
css::uno::Reference< css::security::XCertificate > mxCert;
|
2004-07-12 12:15:31 +00:00
|
|
|
public:
|
2013-03-30 00:32:52 +01:00
|
|
|
CertificateViewer( Window* pParent, const css::uno::Reference< css::xml::crypto::XSecurityEnvironment >& rxSecurityEnvironment, const css::uno::Reference< css::security::XCertificate >& rXCert, bool bCheckForPrivateKey );
|
2004-07-12 12:15:31 +00:00
|
|
|
virtual ~CertificateViewer();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CertificateViewerTP : public TabPage
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
CertificateViewer* mpDlg;
|
|
|
|
public:
|
2014-01-30 10:21:50 +00:00
|
|
|
CertificateViewerTP( Window* _pParent, const OString& rID,
|
|
|
|
const OUString& rUIXMLDescription, CertificateViewer* _pDlg );
|
|
|
|
void SetTabDlg( CertificateViewer* _pTabDlg )
|
|
|
|
{
|
|
|
|
mpDlg = _pTabDlg;
|
|
|
|
}
|
2004-07-12 12:15:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CertificateViewerGeneralTP : public CertificateViewerTP
|
|
|
|
{
|
|
|
|
private:
|
2014-08-09 11:29:36 +05:30
|
|
|
FixedImage* m_pCertImg;
|
|
|
|
FixedText* m_pHintNotTrustedFI;
|
|
|
|
FixedText* m_pIssuedToFI;
|
|
|
|
FixedText* m_pIssuedByFI;
|
2014-08-09 22:03:46 +02:00
|
|
|
FixedText* m_pValidFromDateFI;
|
|
|
|
FixedText* m_pValidToDateFI;
|
2014-08-09 11:29:36 +05:30
|
|
|
FixedImage* m_pKeyImg;
|
|
|
|
FixedText* m_pHintCorrespPrivKeyFI;
|
2004-07-12 12:15:31 +00:00
|
|
|
public:
|
|
|
|
CertificateViewerGeneralTP( Window* pParent, CertificateViewer* _pDlg );
|
|
|
|
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual void ActivatePage() SAL_OVERRIDE;
|
2004-07-12 12:15:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CertificateViewerDetailsTP : public CertificateViewerTP
|
|
|
|
{
|
|
|
|
private:
|
2014-08-02 19:04:56 +05:30
|
|
|
SvSimpleTableContainer* m_pElementsLBContainer;
|
|
|
|
SvSimpleTable* m_pElementsLB;
|
|
|
|
MultiLineEdit* m_pValueDetails;
|
2014-09-16 10:09:58 +02:00
|
|
|
vcl::Font m_aStdFont;
|
|
|
|
vcl::Font m_aFixedWidthFont;
|
2004-07-12 12:15:31 +00:00
|
|
|
|
|
|
|
DECL_LINK( ElementSelectHdl, void* );
|
|
|
|
void Clear( void );
|
2012-09-24 15:56:40 +04:00
|
|
|
void InsertElement( const OUString& _rField, const OUString& _rValue,
|
|
|
|
const OUString& _rDetails, bool _bFixedWidthFont = false );
|
2004-07-12 12:15:31 +00:00
|
|
|
public:
|
|
|
|
CertificateViewerDetailsTP( Window* pParent, CertificateViewer* _pDlg );
|
|
|
|
virtual ~CertificateViewerDetailsTP();
|
|
|
|
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual void ActivatePage() SAL_OVERRIDE;
|
2004-07-12 12:15:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CertificateViewerCertPathTP : public CertificateViewerTP
|
|
|
|
{
|
|
|
|
private:
|
2014-01-30 10:21:50 +00:00
|
|
|
SvTreeListBox* mpCertPathLB;
|
|
|
|
PushButton* mpViewCertPB;
|
|
|
|
VclMultiLineEdit* mpCertStatusML;
|
2005-01-18 13:33:04 +00:00
|
|
|
|
|
|
|
CertificateViewer* mpParent;
|
|
|
|
bool mbFirstActivateDone;
|
2004-07-27 08:00:36 +00:00
|
|
|
Image maCertImage;
|
2005-11-11 08:17:11 +00:00
|
|
|
Image maCertNotValidatedImage;
|
2012-09-24 15:56:40 +04:00
|
|
|
OUString msCertOK;
|
|
|
|
OUString msCertNotValidated;
|
2004-07-12 12:15:31 +00:00
|
|
|
|
2004-07-21 12:57:52 +00:00
|
|
|
DECL_LINK( ViewCertHdl, void* );
|
2004-07-12 12:15:31 +00:00
|
|
|
DECL_LINK( CertSelectHdl, void* );
|
|
|
|
void Clear( void );
|
2012-10-18 16:28:20 +02:00
|
|
|
SvTreeListEntry* InsertCert( SvTreeListEntry* _pParent, const OUString& _rName,
|
2013-03-30 00:32:52 +01:00
|
|
|
css::uno::Reference< css::security::XCertificate > rxCert,
|
2005-11-11 08:17:11 +00:00
|
|
|
bool bValid);
|
2004-07-21 12:57:52 +00:00
|
|
|
|
2004-07-12 12:15:31 +00:00
|
|
|
public:
|
|
|
|
CertificateViewerCertPathTP( Window* pParent, CertificateViewer* _pDlg );
|
|
|
|
virtual ~CertificateViewerCertPathTP();
|
|
|
|
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual void ActivatePage() SAL_OVERRIDE;
|
2004-07-12 12:15:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-04-18 18:50:28 +02:00
|
|
|
#endif // INCLUDED_XMLSECURITY_INC_XMLSECURITY_CERTIFICATEVIEWER_HXX
|
2004-07-12 12:15:31 +00:00
|
|
|
|
2010-10-27 12:45:03 +01:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|