1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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
22 FixedLine m_aCertPathFL
;
23 FixedText m_aCertPathFT
;
24 SvxSimpleTableContainer m_aCertPathListContainer
;
25 svx::SvxRadioButtonListBox m_aCertPathList
;
27 FixedLine m_aButtonsFL
;
29 CancelButton m_aCancelBtn
;
30 HelpButton m_aHelpBtn
;
31 OUString m_sAddDialogText
;
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
);
41 CertPathDialog(Window
* pParent
);
44 OUString
getDirectory() const;
49 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */