Merge pull request #4857 from t-nelson/Gotham_13.2_backports
[vuplus_xbmc] / xbmc / filesystem / FavouritesDirectory.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2005-2013 Team XBMC
5  *      http://xbmc.org
6  *
7  *  This Program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This Program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with XBMC; see the file COPYING.  If not, see
19  *  <http://www.gnu.org/licenses/>.
20  *
21  */
22
23 #include "utils/StdString.h"
24 #include "IDirectory.h"
25
26 class CFileItemList;
27 class CFileItem;
28
29 namespace XFILE
30 {
31
32   class CFavouritesDirectory : public IDirectory
33   {
34   public:
35     virtual bool GetDirectory(const CStdString& strPath, CFileItemList &items);
36     virtual bool Exists(const char* strPath);
37     static bool Load(CFileItemList &items);
38     static bool LoadFavourites(const CStdString& strPath, CFileItemList& items);
39
40     static bool AddOrRemove(CFileItem *item, int contextWindow);
41     static bool Save(const CFileItemList& items);
42     static bool IsFavourite(CFileItem *item, int contextWindow);
43
44     static CStdString GetExecutePath(const CFileItem &item, int contextWindow);
45     static CStdString GetExecutePath(const CFileItem &item, const std::string &contextWindow);
46   private:
47   };
48   
49 }