bump product version to 4.1.6.2
[LibreOffice.git] / cui / source / options / certpath.hxx
blobe82f50e16eaf9ba30ffd61beac71af0df88a3adc
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/.
8 */
10 #ifndef _CUI_CERTPATH_HXX
11 #define _CUI_CERTPATH_HXX
13 #include <sfx2/basedlgs.hxx>
14 #include <svx/simptabl.hxx>
15 #include <vcl/button.hxx>
16 #include <vcl/fixed.hxx>
17 #include "radiobtnbox.hxx"
19 class CertPathDialog : public ModalDialog
21 private:
22 FixedLine m_aCertPathFL;
23 FixedText m_aCertPathFT;
24 SvxSimpleTableContainer m_aCertPathListContainer;
25 svx::SvxRadioButtonListBox m_aCertPathList;
26 PushButton m_aAddBtn;
27 FixedLine m_aButtonsFL;
28 OKButton m_aOKBtn;
29 CancelButton m_aCancelBtn;
30 HelpButton m_aHelpBtn;
31 OUString m_sAddDialogText;
32 OUString m_sManual;
34 DECL_LINK(CheckHdl_Impl, SvxSimpleTable *);
35 DECL_LINK(AddHdl_Impl, void *);
36 DECL_LINK(OKHdl_Impl, void *);
38 void HandleCheckEntry(SvTreeListEntry* _pEntry);
39 void AddCertPath(const OUString &rProfile, const OUString &rPath);
40 public:
41 CertPathDialog(Window* pParent);
42 ~CertPathDialog();
44 OUString getDirectory() const;
47 #endif
49 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */