Fix keymap.
[vuplus_xbmc] / xbmc / addons / AddonStatusHandler.h
1 #pragma once
2 /*
3  *      Copyright (C) 2005-2013 Team XBMC
4  *      http://xbmc.org
5  *
6  *  This Program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2, or (at your option)
9  *  any later version.
10  *
11  *  This Program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with XBMC; see the file COPYING.  If not, see
18  *  <http://www.gnu.org/licenses/>.
19  *
20  */
21
22 #include "threads/Thread.h"
23 #include "IAddon.h"
24 #include "include/xbmc_addon_types.h"
25 #include "threads/CriticalSection.h"
26
27 namespace ADDON
28 {
29   /**
30   * Class - CAddonStatusHandler
31   * Used to informate the user about occurred errors and
32   * changes inside Add-on's, and ask him what to do.
33   * It can executed in the same thread as the calling
34   * function or in a seperate thread.
35   */
36   class CAddonStatusHandler : private CThread
37   {
38     public:
39       CAddonStatusHandler(const CStdString &addonID, ADDON_STATUS status, CStdString message, bool sameThread = true);
40       ~CAddonStatusHandler();
41
42       /* Thread handling */
43       virtual void Process();
44       virtual void OnStartup();
45       virtual void OnExit();
46
47     private:
48       static CCriticalSection   m_critSection;
49       AddonPtr                  m_addon;
50       ADDON_STATUS              m_status;
51       CStdString                m_message;
52   };
53
54
55 }