LibreOffice Module svx (master) 1
crashreportdlg.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 */
9
10#ifndef INCLUDED_SVX_SOURCE_DIALOG_CRASHREPORTDLG_HXX
11#define INCLUDED_SVX_SOURCE_DIALOG_CRASHREPORTDLG_HXX
12
13#include <vcl/weld.hxx>
14
16{
17public:
18 explicit CrashReportDialog(weld::Window* pParent);
19 virtual short run() override;
20 virtual ~CrashReportDialog() override;
21
22private:
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::Label> mxEditPostUpload;
28 std::unique_ptr<weld::LinkButton> mxLinkButton;
29 std::unique_ptr<weld::Label> mxFtBugReport;
30 std::unique_ptr<weld::CheckButton> mxCBSafeMode;
31 std::unique_ptr<weld::LinkButton> mxPrivacyPolicyButton;
32
34
35 DECL_LINK(BtnHdl, weld::Button&, void);
36 DECL_STATIC_LINK(CrashReportDialog, InstallLOKNotifierHdl, void*,
38};
39
40#endif
41
42/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
std::unique_ptr< weld::LinkButton > mxLinkButton
virtual ~CrashReportDialog() override
std::unique_ptr< weld::Button > mxBtnClose
std::unique_ptr< weld::LinkButton > mxPrivacyPolicyButton
std::unique_ptr< weld::CheckButton > mxCBSafeMode
DECL_STATIC_LINK(CrashReportDialog, InstallLOKNotifierHdl, void *, vcl::ILibreOfficeKitNotifier *)
std::unique_ptr< weld::Button > mxBtnCancel
std::unique_ptr< weld::Button > mxBtnSend
std::unique_ptr< weld::Label > mxEditPreUpload
std::unique_ptr< weld::Label > mxFtBugReport
DECL_LINK(BtnHdl, weld::Button &, void)
std::unique_ptr< weld::Label > mxEditPostUpload
virtual short run() override
CrashReportDialog(weld::Window *pParent)