summaryrefslogtreecommitdiffstats
path: root/xbmc/dialogs/GUIDialogSubMenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--xbmc/dialogs/GUIDialogSubMenu.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/xbmc/dialogs/GUIDialogSubMenu.cpp b/xbmc/dialogs/GUIDialogSubMenu.cpp
new file mode 100644
index 0000000..ab1cdb2
--- /dev/null
+++ b/xbmc/dialogs/GUIDialogSubMenu.cpp
@@ -0,0 +1,30 @@
+/*
+ * 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 "GUIDialogSubMenu.h"
+
+#include "guilib/GUIMessage.h"
+
+CGUIDialogSubMenu::CGUIDialogSubMenu(int id, const std::string &xmlFile)
+ : CGUIDialog(id, xmlFile.c_str())
+{
+}
+
+CGUIDialogSubMenu::~CGUIDialogSubMenu(void) = default;
+
+bool CGUIDialogSubMenu::OnMessage(CGUIMessage &message)
+{
+ if (message.GetMessage() == GUI_MSG_CLICKED)
+ {
+ // someone has been clicked - deinit...
+ CGUIDialog::OnMessage(message);
+ Close();
+ return true;
+ }
+ return CGUIDialog::OnMessage(message);
+}