Merge pull request #4676 from jmarshallnz/dont_set_scraper_on_tvshow_on_nfo
[vuplus_xbmc] / xbmc / utils / Splash.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 "StdString.h"
24 #include "threads/Thread.h"
25
26 class CGUITextLayout;
27 class CGUIImage;
28
29 class CSplash : public CThread
30 {
31 public:
32   CSplash(const CStdString& imageName);
33   virtual ~CSplash();
34
35   bool Start();
36   void Stop();
37
38   // In case you don't want to use another thread
39   void Show();
40   void Show(const CStdString& message);
41   void Hide();
42
43 private:
44   virtual void Process();
45   virtual void OnStartup();
46   virtual void OnExit();
47
48   float fade;
49   CStdString m_ImageName;
50
51   CGUITextLayout* m_messageLayout;
52   CGUIImage* m_image;
53   bool m_layoutWasLoading;
54 #ifdef HAS_DX
55   D3DGAMMARAMP newRamp;
56   D3DGAMMARAMP oldRamp;
57
58 #endif
59 };