fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / svtools / source / dialogs / restartdialog.cxx
blob81655a5dc8c35daa41fdef3740159d922fac73e0
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 #include "sal/config.h"
12 #include <cassert>
14 #include "com/sun/star/task/OfficeRestartManager.hpp"
15 #include "com/sun/star/task/XInteractionHandler.hpp"
16 #include "com/sun/star/uno/Reference.hxx"
17 #include "com/sun/star/uno/XComponentContext.hpp"
18 #include "svtools/restartdialog.hxx"
19 #include "tools/link.hxx"
20 #include "vcl/button.hxx"
21 #include "vcl/dialog.hxx"
22 #include "vcl/window.hxx"
24 namespace {
26 class RestartDialog: public ModalDialog {
27 public:
28 RestartDialog(Window * parent, svtools::RestartReason reason):
29 ModalDialog(parent, "RestartDialog", "svt/ui/restartdialog.ui")
31 get(btnYes_, "yes");
32 get(btnNo_, "no");
33 switch (reason) {
34 case svtools::RESTART_REASON_JAVA:
35 get(reason_, "reason_java");
36 break;
37 case svtools::RESTART_REASON_PDF_AS_STANDARD_JOB_FORMAT:
38 get(reason_, "reason_pdf");
39 break;
40 case svtools::RESTART_REASON_BIBLIOGRAPHY_INSTALL:
41 get(reason_, "reason_bibliography_install");
42 break;
43 case svtools::RESTART_REASON_MODIFIED_SIDEBAR:
44 get(reason_, "reason_sidebar");
45 break;
46 default:
47 assert(false); // this cannot happen
49 reason_->Show();
50 btnYes_->SetClickHdl(LINK(this, RestartDialog, hdlYes));
51 btnNo_->SetClickHdl(LINK(this, RestartDialog, hdlNo));
54 private:
55 DECL_LINK(hdlYes, void *);
56 DECL_LINK(hdlNo, void *);
58 Window * reason_;
59 PushButton * btnYes_;
60 PushButton * btnNo_;
63 IMPL_LINK_NOARG(RestartDialog, hdlYes) {
64 EndDialog(true);
65 return 0;
68 IMPL_LINK_NOARG(RestartDialog, hdlNo) {
69 EndDialog(false);
70 return 0;
75 void svtools::executeRestartDialog(
76 css::uno::Reference< css::uno::XComponentContext > const & context,
77 Window * parent, RestartReason reason)
79 if (RestartDialog(parent, reason).Execute()) {
80 css::task::OfficeRestartManager::get(context)->requestRestart(
81 css::uno::Reference< css::task::XInteractionHandler >());
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */