bump product version to 5.0.4.1
[LibreOffice.git] / cui / source / options / securityoptions.hxx
blob19884eefa9a46e71cc0bf6fb8882a85c5eb3b715
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_CUI_SOURCE_OPTIONS_SECURITYOPTIONS_HXX
20 #define INCLUDED_CUI_SOURCE_OPTIONS_SECURITYOPTIONS_HXX
22 #include <vcl/button.hxx>
23 #include <vcl/dialog.hxx>
24 #include <vcl/fixed.hxx>
27 class SvtSecurityOptions;
30 namespace svx
33 class SecurityOptionsDialog : public ModalDialog
35 private:
36 VclPtr<CheckBox> m_pSaveOrSendDocsCB;
37 VclPtr<CheckBox> m_pSignDocsCB;
38 VclPtr<CheckBox> m_pPrintDocsCB;
39 VclPtr<CheckBox> m_pCreatePdfCB;
41 VclPtr<CheckBox> m_pRemovePersInfoCB;
42 VclPtr<CheckBox> m_pRecommPasswdCB;
43 VclPtr<CheckBox> m_pCtrlHyperlinkCB;
44 VclPtr<CheckBox> m_pBlockUntrustedRefererLinksCB;
46 public:
47 SecurityOptionsDialog( vcl::Window* pParent, SvtSecurityOptions* pOptions );
48 virtual ~SecurityOptionsDialog();
49 virtual void dispose() SAL_OVERRIDE;
51 bool IsSaveOrSendDocsChecked() const { return m_pSaveOrSendDocsCB->IsChecked(); }
52 bool IsSignDocsChecked() const { return m_pSignDocsCB->IsChecked(); }
53 bool IsPrintDocsChecked() const { return m_pPrintDocsCB->IsChecked(); }
54 bool IsCreatePdfChecked() const { return m_pCreatePdfCB->IsChecked(); }
55 bool IsRemovePersInfoChecked() const { return m_pRemovePersInfoCB->IsChecked(); }
56 bool IsRecommPasswdChecked() const { return m_pRecommPasswdCB->IsChecked(); }
57 bool IsCtrlHyperlinkChecked() const { return m_pCtrlHyperlinkCB->IsChecked(); }
58 bool IsBlockUntrustedRefererLinksChecked() const { return m_pBlockUntrustedRefererLinksCB->IsChecked(); }
65 #endif // INCLUDED_CUI_SOURCE_OPTIONS_SECURITYOPTIONS_HXX
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */