diff options
| author | manuel <manuel@mausz.at> | 2015-03-03 16:53:59 +0100 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2015-03-03 16:53:59 +0100 |
| commit | ffca21f2743a7b367fa212799c6e2fea6190dd5d (patch) | |
| tree | 0608ea3a29cf644ec9ab204e2b4bb9bfaae1c381 /xbmc/addons/GUIDialogAddonInfo.h | |
| download | kodi-pvr-build-ffca21f2743a7b367fa212799c6e2fea6190dd5d.tar.gz kodi-pvr-build-ffca21f2743a7b367fa212799c6e2fea6190dd5d.tar.bz2 kodi-pvr-build-ffca21f2743a7b367fa212799c6e2fea6190dd5d.zip | |
initial commit for kodi master
Diffstat (limited to 'xbmc/addons/GUIDialogAddonInfo.h')
| -rw-r--r-- | xbmc/addons/GUIDialogAddonInfo.h | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/xbmc/addons/GUIDialogAddonInfo.h b/xbmc/addons/GUIDialogAddonInfo.h new file mode 100644 index 0000000..53b7a27 --- /dev/null +++ b/xbmc/addons/GUIDialogAddonInfo.h | |||
| @@ -0,0 +1,80 @@ | |||
| 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 "guilib/GUIDialog.h" | ||
| 24 | #include "addons/IAddon.h" | ||
| 25 | #include "utils/Job.h" | ||
| 26 | |||
| 27 | class CGUIDialogAddonInfo : | ||
| 28 | public CGUIDialog, | ||
| 29 | public IJobCallback | ||
| 30 | { | ||
| 31 | public: | ||
| 32 | CGUIDialogAddonInfo(void); | ||
| 33 | virtual ~CGUIDialogAddonInfo(void); | ||
| 34 | virtual bool OnMessage(CGUIMessage& message); | ||
| 35 | virtual bool OnAction(const CAction &action); | ||
| 36 | |||
| 37 | virtual CFileItemPtr GetCurrentListItem(int offset = 0) { return m_item; } | ||
| 38 | virtual bool HasListItems() const { return true; } | ||
| 39 | |||
| 40 | static bool ShowForItem(const CFileItemPtr& item); | ||
| 41 | |||
| 42 | // job callback | ||
| 43 | void OnJobComplete(unsigned int jobID, bool success, CJob* job); | ||
| 44 | protected: | ||
| 45 | void OnInitWindow(); | ||
| 46 | |||
| 47 | /*! \brief Set the item to display addon info on. | ||
| 48 | \param item to display | ||
| 49 | \return true if we can display information, false otherwise | ||
| 50 | */ | ||
| 51 | bool SetItem(const CFileItemPtr &item); | ||
| 52 | void UpdateControls(); | ||
| 53 | |||
| 54 | void OnUpdate(); | ||
| 55 | void OnInstall(); | ||
| 56 | void OnUninstall(); | ||
| 57 | void OnEnable(bool enable); | ||
| 58 | void OnSettings(); | ||
| 59 | void OnChangeLog(); | ||
| 60 | void OnRollback(); | ||
| 61 | void OnLaunch(); | ||
| 62 | |||
| 63 | /*! \brief check if the add-on is a dependency of others, and if so prompt the user. | ||
| 64 | \param heading the label for the heading of the prompt dialog | ||
| 65 | \param line2 the action that could not be completed. | ||
| 66 | \return true if prompted, false otherwise. | ||
| 67 | */ | ||
| 68 | bool PromptIfDependency(int heading, int line2); | ||
| 69 | |||
| 70 | CFileItemPtr m_item; | ||
| 71 | ADDON::AddonPtr m_addon; | ||
| 72 | ADDON::AddonPtr m_localAddon; | ||
| 73 | unsigned int m_jobid; | ||
| 74 | bool m_changelog; | ||
| 75 | |||
| 76 | // rollback data | ||
| 77 | void GrabRollbackVersions(); | ||
| 78 | std::vector<std::string> m_rollbackVersions; | ||
| 79 | }; | ||
| 80 | |||
