[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / dialogs / GUIDialogSimpleMenu.h
blobbf7ccae980991cf86ac6a238c35ab5d905f7c312
1 /*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include "filesystem/Directory.h"
13 #include <string>
15 class CFileItem;
16 class CFileItemList;
18 class CGUIDialogSimpleMenu
20 public:
22 /*! \brief Show dialog allowing selection of wanted playback item */
23 static bool ShowPlaySelection(CFileItem& item, bool forceSelection = false);
24 static bool ShowPlaySelection(CFileItem& item, const std::string& directory);
26 protected:
27 static bool GetDirectoryItems(const std::string &path, CFileItemList &items, const XFILE::CDirectory::CHints &hints);