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