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/filesystem/DirectoryHistory.h | 67 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 xbmc/filesystem/DirectoryHistory.h (limited to 'xbmc/filesystem/DirectoryHistory.h') diff --git a/xbmc/filesystem/DirectoryHistory.h b/xbmc/filesystem/DirectoryHistory.h new file mode 100644 index 0000000..49f1873 --- /dev/null +++ b/xbmc/filesystem/DirectoryHistory.h @@ -0,0 +1,67 @@ +/* + * 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. + */ + +#pragma once + +#include +#include +#include + +class CDirectoryHistory +{ +public: + class CHistoryItem + { + public: + CHistoryItem() = default; + virtual ~CHistoryItem() = default; + std::string m_strItem; + std::string m_strDirectory; + }; + + class CPathHistoryItem + { + public: + CPathHistoryItem() = default; + virtual ~CPathHistoryItem() = default; + + const std::string& GetPath(bool filter = false) const; + + std::string m_strPath; + std::string m_strFilterPath; + }; + + CDirectoryHistory() = default; + virtual ~CDirectoryHistory(); + + void SetSelectedItem(const std::string& strSelectedItem, const std::string& strDirectory); + const std::string& GetSelectedItem(const std::string& strDirectory) const; + void RemoveSelectedItem(const std::string& strDirectory); + + void AddPath(const std::string& strPath, const std::string &m_strFilterPath = ""); + void AddPathFront(const std::string& strPath, const std::string &m_strFilterPath = ""); + std::string GetParentPath(bool filter = false); + std::string RemoveParentPath(bool filter = false); + void ClearPathHistory(); + void ClearSearchHistory(); + void DumpPathHistory(); + + /*! \brief Returns whether a path is in the history. + \param path to test + \return true if the path is in the history, false otherwise. + */ + bool IsInHistory(const std::string &path) const; + +private: + static std::string preparePath(const std::string &strDirectory, bool tolower = true); + + typedef std::map HistoryMap; + HistoryMap m_vecHistory; + std::vector m_vecPathHistory; ///< History of traversed directories + static bool IsMusicSearchUrl(CPathHistoryItem &i); +}; -- cgit v1.2.3