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 INCLUDED_SVX_SOURCE_DIALOG_CRASHREPORTDLG_HXX
11 #define INCLUDED_SVX_SOURCE_DIALOG_CRASHREPORTDLG_HXX
13 #include <vcl/weld.hxx>
15 class CrashReportDialog
: public weld::GenericDialogController
18 explicit CrashReportDialog(weld::Window
* pParent
);
19 virtual short run() override
;
20 virtual ~CrashReportDialog() override
;
23 std::unique_ptr
<weld::Button
> mxBtnSend
;
24 std::unique_ptr
<weld::Button
> mxBtnCancel
;
25 std::unique_ptr
<weld::Button
> mxBtnClose
;
26 std::unique_ptr
<weld::Label
> mxEditPreUpload
;
27 std::unique_ptr
<weld::TextView
> mxEditPostUpload
;
28 std::unique_ptr
<weld::TextView
> mxFtBugReport
;
29 std::unique_ptr
<weld::CheckButton
> mxCBSafeMode
;
31 OUString maSuccessMsg
;
33 DECL_LINK(BtnHdl
, weld::Button
&, void);
38 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */