summaryrefslogtreecommitdiffstats
path: root/xbmc/messaging/helpers/DialogOKHelper.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 18:07:22 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 18:07:22 +0000
commitc04dcc2e7d834218ef2d4194331e383402495ae1 (patch)
tree7333e38d10d75386e60f336b80c2443c1166031d /xbmc/messaging/helpers/DialogOKHelper.cpp
parentInitial commit. (diff)
downloadkodi-c04dcc2e7d834218ef2d4194331e383402495ae1.tar.xz
kodi-c04dcc2e7d834218ef2d4194331e383402495ae1.zip
Adding upstream version 2:20.4+dfsg.upstream/2%20.4+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'xbmc/messaging/helpers/DialogOKHelper.cpp')
-rw-r--r--xbmc/messaging/helpers/DialogOKHelper.cpp59
1 files changed, 59 insertions, 0 deletions
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<void*>(&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<void*>(&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<void*>(&options)) > 0)
+ return true;
+ return false;
+}
+
+}
+}
+}