From c04dcc2e7d834218ef2d4194331e383402495ae1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 20:07:22 +0200 Subject: Adding upstream version 2:20.4+dfsg. Signed-off-by: Daniel Baumann --- xbmc/messaging/helpers/DialogOKHelper.cpp | 59 +++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 xbmc/messaging/helpers/DialogOKHelper.cpp (limited to 'xbmc/messaging/helpers/DialogOKHelper.cpp') diff --git a/xbmc/messaging/helpers/DialogOKHelper.cpp b/xbmc/messaging/helpers/DialogOKHelper.cpp new file mode 100644 index 0000000..71e8a79 --- /dev/null +++ b/xbmc/messaging/helpers/DialogOKHelper.cpp @@ -0,0 +1,59 @@ +/* + * Copyright (C) 2005-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#include "DialogOKHelper.h" + +#include "ServiceBroker.h" +#include "messaging/ApplicationMessenger.h" + +namespace KODI +{ +namespace MESSAGING +{ +namespace HELPERS +{ +bool ShowOKDialogText(CVariant heading, CVariant text) +{ + DialogOKMessage options; + options.heading = std::move(heading); + options.text = std::move(text); + + if (CServiceBroker::GetAppMessenger()->SendMsg(TMSG_GUI_DIALOG_OK, -1, -1, + static_cast(&options)) > 0) + return true; + return false; +} + +void UpdateOKDialogText(CVariant heading, CVariant text) +{ + DialogOKMessage options; + options.heading = std::move(heading); + options.text = std::move(text); + options.show = false; + + CServiceBroker::GetAppMessenger()->SendMsg(TMSG_GUI_DIALOG_OK, -1, -1, + static_cast(&options)); +} + +bool ShowOKDialogLines(CVariant heading, CVariant line0, CVariant line1, CVariant line2) +{ + DialogOKMessage options; + options.heading = std::move(heading); + options.lines[0] = std::move(line0); + options.lines[1] = std::move(line1); + options.lines[2] = std::move(line2); + + if (CServiceBroker::GetAppMessenger()->SendMsg(TMSG_GUI_DIALOG_OK, -1, -1, + static_cast(&options)) > 0) + return true; + return false; +} + +} +} +} -- cgit v1.2.3