Version 7.1.7.1, tag libreoffice-7.1.7.1
[LibreOffice.git] / svx / source / dialog / crashreportdlg.hxx
blobf913cabac43f41f26d4efa27775f66441a129ef7
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 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
17 public:
18 explicit CrashReportDialog(weld::Window* pParent);
19 virtual short run() override;
20 virtual ~CrashReportDialog() override;
22 private:
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);
36 #endif
38 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */