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 : #ifndef INCLUDED_CUI_SOURCE_OPTIONS_SECURITYOPTIONS_HXX
20 : #define INCLUDED_CUI_SOURCE_OPTIONS_SECURITYOPTIONS_HXX
21 :
22 : #include <vcl/button.hxx>
23 : #include <vcl/dialog.hxx>
24 : #include <vcl/fixed.hxx>
25 :
26 :
27 : class SvtSecurityOptions;
28 :
29 :
30 : namespace svx
31 : {
32 :
33 : class SecurityOptionsDialog : public ModalDialog
34 : {
35 : private:
36 : VclPtr<CheckBox> m_pSaveOrSendDocsCB;
37 : VclPtr<CheckBox> m_pSignDocsCB;
38 : VclPtr<CheckBox> m_pPrintDocsCB;
39 : VclPtr<CheckBox> m_pCreatePdfCB;
40 :
41 : VclPtr<CheckBox> m_pRemovePersInfoCB;
42 : VclPtr<CheckBox> m_pRecommPasswdCB;
43 : VclPtr<CheckBox> m_pCtrlHyperlinkCB;
44 : VclPtr<CheckBox> m_pBlockUntrustedRefererLinksCB;
45 :
46 : public:
47 : SecurityOptionsDialog( vcl::Window* pParent, SvtSecurityOptions* pOptions );
48 : virtual ~SecurityOptionsDialog();
49 : virtual void dispose() SAL_OVERRIDE;
50 :
51 0 : bool IsSaveOrSendDocsChecked() const { return m_pSaveOrSendDocsCB->IsChecked(); }
52 0 : bool IsSignDocsChecked() const { return m_pSignDocsCB->IsChecked(); }
53 0 : bool IsPrintDocsChecked() const { return m_pPrintDocsCB->IsChecked(); }
54 0 : bool IsCreatePdfChecked() const { return m_pCreatePdfCB->IsChecked(); }
55 0 : bool IsRemovePersInfoChecked() const { return m_pRemovePersInfoCB->IsChecked(); }
56 0 : bool IsRecommPasswdChecked() const { return m_pRecommPasswdCB->IsChecked(); }
57 0 : bool IsCtrlHyperlinkChecked() const { return m_pCtrlHyperlinkCB->IsChecked(); }
58 0 : bool IsBlockUntrustedRefererLinksChecked() const { return m_pBlockUntrustedRefererLinksCB->IsChecked(); }
59 : };
60 :
61 :
62 : }
63 :
64 :
65 : #endif // INCLUDED_CUI_SOURCE_OPTIONS_SECURITYOPTIONS_HXX
66 :
67 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|