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 : * 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 : #include "docsignature.hxx"
21 : #include "scriptdocument.hxx"
22 :
23 : #include <sfx2/objsh.hxx>
24 : #include <sfx2/signaturestate.hxx>
25 :
26 : //........................................................................
27 : namespace basctl
28 : {
29 : //........................................................................
30 :
31 : /** === begin UNO using === **/
32 : using ::com::sun::star::uno::Reference;
33 : using ::com::sun::star::uno::UNO_QUERY;
34 : using ::com::sun::star::uno::UNO_QUERY_THROW;
35 : using ::com::sun::star::uno::Exception;
36 : using ::com::sun::star::uno::RuntimeException;
37 : using ::com::sun::star::frame::XModel;
38 : /** === end UNO using === **/
39 :
40 : //====================================================================
41 : //= DocumentSignature::Impl
42 : //====================================================================
43 : struct DocumentSignature::Impl
44 : {
45 : SfxObjectShell* pShell;
46 :
47 0 : Impl () : pShell(0) { }
48 : };
49 :
50 : //====================================================================
51 : //= DocumentSignature
52 : //====================================================================
53 : //--------------------------------------------------------------------
54 0 : DocumentSignature::DocumentSignature (ScriptDocument const& rDocument) :
55 0 : m_pImpl(new Impl)
56 : {
57 0 : if (rDocument.isDocument())
58 : {
59 0 : Reference<XModel> xDocument(rDocument.getDocument());
60 : // find object shell for document
61 0 : SfxObjectShell* pShell = SfxObjectShell::GetFirst();
62 0 : while ( pShell )
63 : {
64 0 : if ( pShell->GetModel() == xDocument )
65 0 : break;
66 0 : pShell = SfxObjectShell::GetNext( *pShell );
67 : }
68 0 : m_pImpl->pShell = pShell;
69 : }
70 0 : }
71 :
72 : //--------------------------------------------------------------------
73 0 : DocumentSignature::~DocumentSignature()
74 : {
75 0 : }
76 :
77 : //--------------------------------------------------------------------
78 0 : bool DocumentSignature::supportsSignatures() const
79 : {
80 0 : return ( m_pImpl->pShell != NULL );
81 : }
82 :
83 : //--------------------------------------------------------------------
84 0 : void DocumentSignature::signScriptingContent() const
85 : {
86 : OSL_PRECOND( supportsSignatures(), "DocumentSignature::signScriptingContent: signatures not supported by this document!" );
87 0 : if ( m_pImpl->pShell )
88 0 : m_pImpl->pShell->SignScriptingContent();
89 0 : }
90 :
91 : //--------------------------------------------------------------------
92 0 : sal_uInt16 DocumentSignature::getScriptingSignatureState() const
93 : {
94 0 : if ( m_pImpl->pShell )
95 0 : return m_pImpl->pShell->GetScriptingSignatureState();
96 0 : return SIGNATURESTATE_NOSIGNATURES;
97 : }
98 :
99 : //........................................................................
100 : } // namespace basctl
101 : //........................................................................
102 :
103 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|