1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/*
* Copyright (C) 2016-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "pvr/IPVRComponent.h"
#include <memory>
class CFileItem;
namespace PVR
{
class CPVRRecording;
class CPVRGUIActionsRecordings : public IPVRComponent
{
public:
CPVRGUIActionsRecordings() = default;
~CPVRGUIActionsRecordings() override = default;
/*!
* @brief Open a dialog with information for a given recording.
* @param item containing a recording.
* @return true on success, false otherwise.
*/
bool ShowRecordingInfo(const CFileItem& item) const;
/*!
* @brief Open the recording settings dialog to edit a recording.
* @param item containing the recording to edit.
* @return true on success, false otherwise.
*/
bool EditRecording(const CFileItem& item) const;
/*!
* @brief Check if any recording settings can be edited.
* @param item containing the recording to edit.
* @return true on success, false otherwise.
*/
bool CanEditRecording(const CFileItem& item) const;
/*!
* @brief Delete a recording, always showing a confirmation dialog.
* @param item containing a recording to delete.
* @return true, if the recording was deleted successfully, false otherwise.
*/
bool DeleteRecording(const CFileItem& item) const;
/*!
* @brief Delete all watched recordings contained in the given folder, always showing a
* confirmation dialog.
* @param item containing a recording folder containing the items to delete.
* @return true, if the recordings were deleted successfully, false otherwise.
*/
bool DeleteWatchedRecordings(const CFileItem& item) const;
/*!
* @brief Delete all recordings from trash, always showing a confirmation dialog.
* @return true, if the recordings were permanently deleted successfully, false otherwise.
*/
bool DeleteAllRecordingsFromTrash() const;
/*!
* @brief Undelete a recording.
* @param item containing a recording to undelete.
* @return true, if the recording was undeleted successfully, false otherwise.
*/
bool UndeleteRecording(const CFileItem& item) const;
private:
CPVRGUIActionsRecordings(const CPVRGUIActionsRecordings&) = delete;
CPVRGUIActionsRecordings const& operator=(CPVRGUIActionsRecordings const&) = delete;
/*!
* @brief Open a dialog to confirm to delete a recording.
* @param item the recording to delete.
* @return true, to proceed with delete, false otherwise.
*/
bool ConfirmDeleteRecording(const CFileItem& item) const;
/*!
* @brief Open a dialog to confirm delete all watched recordings contained in the given folder.
* @param item containing a recording folder containing the items to delete.
* @return true, to proceed with delete, false otherwise.
*/
bool ConfirmDeleteWatchedRecordings(const CFileItem& item) const;
/*!
* @brief Open a dialog to confirm to permanently remove all deleted recordings.
* @return true, to proceed with delete, false otherwise.
*/
bool ConfirmDeleteAllRecordingsFromTrash() const;
/*!
* @brief Open the recording settings dialog.
* @param recording containing the recording the settings shall be displayed for.
* @return true, if the dialog was ended successfully, false otherwise.
*/
bool ShowRecordingSettings(const std::shared_ptr<CPVRRecording>& recording) const;
};
namespace GUI
{
// pretty scope and name
using Recordings = CPVRGUIActionsRecordings;
} // namespace GUI
} // namespace PVR
|