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 :
34 :
35 : //= class SecurityOptionsDialog
36 :
37 : class SecurityOptionsDialog : public ModalDialog
38 : {
39 : private:
40 : CheckBox* m_pSaveOrSendDocsCB;
41 : CheckBox* m_pSignDocsCB;
42 : CheckBox* m_pPrintDocsCB;
43 : CheckBox* m_pCreatePdfCB;
44 :
45 : CheckBox* m_pRemovePersInfoCB;
46 : CheckBox* m_pRecommPasswdCB;
47 : CheckBox* m_pCtrlHyperlinkCB;
48 : CheckBox* m_pBlockUntrustedRefererLinksCB;
49 :
50 : public:
51 : SecurityOptionsDialog( Window* pParent, SvtSecurityOptions* pOptions );
52 : virtual ~SecurityOptionsDialog();
53 :
54 0 : bool IsSaveOrSendDocsChecked() const { return m_pSaveOrSendDocsCB->IsChecked(); }
55 0 : bool IsSignDocsChecked() const { return m_pSignDocsCB->IsChecked(); }
56 0 : bool IsPrintDocsChecked() const { return m_pPrintDocsCB->IsChecked(); }
57 0 : bool IsCreatePdfChecked() const { return m_pCreatePdfCB->IsChecked(); }
58 0 : bool IsRemovePersInfoChecked() const { return m_pRemovePersInfoCB->IsChecked(); }
59 0 : bool IsRecommPasswdChecked() const { return m_pRecommPasswdCB->IsChecked(); }
60 0 : bool IsCtrlHyperlinkChecked() const { return m_pCtrlHyperlinkCB->IsChecked(); }
61 0 : bool IsBlockUntrustedRefererLinksChecked() const { return m_pBlockUntrustedRefererLinksCB->IsChecked(); }
62 : };
63 :
64 :
65 : } // namespace svx
66 :
67 :
68 : #endif // INCLUDED_CUI_SOURCE_OPTIONS_SECURITYOPTIONS_HXX
69 :
70 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|