Merge pull request #4630 from Red-F/gotham-resume-pvr-lastplayedposition
[vuplus_xbmc] / xbmc / dialogs / GUIDialogCache.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 "filesystem/File.h"
24 #include "threads/Thread.h"
25 #include "threads/SystemClock.h"
26
27 class CGUIDialogProgress;
28
29 class CGUIDialogCache : public CThread, public XFILE::IFileCallback
30 {
31 public:
32   CGUIDialogCache(DWORD dwDelay = 0, const CStdString& strHeader="", const CStdString& strMsg="");
33   virtual ~CGUIDialogCache();
34   void SetHeader(const CStdString& strHeader);
35   void SetHeader(int nHeader);
36   void SetMessage(const CStdString& strMessage);
37   bool IsCanceled() const;
38   void ShowProgressBar(bool bOnOff);
39   void SetPercentage(int iPercentage);
40
41   void Close(bool bForceClose = false);
42
43   virtual void Process();
44   virtual bool OnFileCallback(void* pContext, int ipercent, float avgSpeed);
45
46 protected:
47
48   void OpenDialog();
49
50   XbmcThreads::EndTime m_endtime;
51   CGUIDialogProgress* m_pDlg;
52   CStdString m_strLinePrev;
53   CStdString m_strLinePrev2;
54   CStdString m_strHeader;
55   bool bSentCancel;
56   bool m_bOpenTried;
57 };