Merge pull request #4314 from MartijnKaijser/beta1
[vuplus_xbmc] / xbmc / video / dialogs / GUIDialogSubtitles.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 <string>
24 #include "guilib/GUIDialog.h"
25 #include "threads/CriticalSection.h"
26 #include "utils/JobManager.h"
27
28 enum SUBTITLE_STORAGEMODE
29 {
30   SUBTITLE_STORAGEMODE_MOVIEPATH = 0,
31   SUBTITLE_STORAGEMODE_CUSTOMPATH
32 };
33
34 class CFileItem;
35 class CFileItemList;
36
37 class CGUIDialogSubtitles : public CGUIDialog, CJobQueue
38 {
39 public:
40   CGUIDialogSubtitles(void);
41   virtual ~CGUIDialogSubtitles(void);
42   virtual bool OnMessage(CGUIMessage& message);
43   virtual void OnInitWindow();
44
45 protected:
46   virtual void Process(unsigned int currentTime, CDirtyRegionList &dirtyregions);
47   virtual void OnJobComplete(unsigned int jobID, bool success, CJob *job);
48
49   bool SetService(const std::string &service);
50   const CFileItemPtr GetService() const;
51   void FillServices();
52   void ClearServices();
53   void ClearSubtitles();
54
55   enum STATUS { NO_SERVICES = 0, SEARCHING, SEARCH_COMPLETE, DOWNLOADING };
56   void UpdateStatus(STATUS status);
57
58   void Search(const std::string &search="");
59   void OnSearchComplete(const CFileItemList *items);
60
61   void Download(const CFileItem &subtitle);
62   void OnDownloadComplete(const CFileItemList *items, const std::string &language);
63
64   void SetSubtitles(const std::string &subtitle);
65
66   CCriticalSection m_critsection;
67   CFileItemList* m_subtitles;
68   CFileItemList* m_serviceItems;
69   std::string    m_currentService;
70   std::string    m_status;
71   CStdString     m_strManualSearch;
72   bool           m_pausedOnRun;
73   bool           m_updateSubsList; ///< true if we need to update our subs list
74 };