blob: 0716436f77d5c58664466b75d494d0549546046b (
plain)
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
|
/*
* Copyright (C) 2012-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 "dialogs/GUIDialogContextMenu.h"
#include "guilib/GUIDialog.h"
#include "view/GUIViewControl.h"
#include <memory>
#include <vector>
class CAction;
class CFileItemList;
class CGUIMessage;
namespace PVR
{
class CPVRChannelGroup;
class CPVRClient;
class CGUIDialogPVRChannelManager : public CGUIDialog
{
public:
CGUIDialogPVRChannelManager();
~CGUIDialogPVRChannelManager() override;
bool OnMessage(CGUIMessage& message) override;
bool OnAction(const CAction& action) override;
void OnWindowLoaded() override;
void OnWindowUnload() override;
bool HasListItems() const override{ return true; }
CFileItemPtr GetCurrentListItem(int offset = 0) override;
void Open(const std::shared_ptr<CFileItem>& initialSelection);
void SetRadio(bool bIsRadio);
protected:
void OnInitWindow() override;
void OnDeinitWindow(int nextWindowID) override;
private:
void Clear();
void Update();
void PromptAndSaveList();
void SaveList();
void Renumber();
void SetData(int iItem);
void RenameChannel(const CFileItemPtr& pItem);
void ClearChannelOptions();
void EnableChannelOptions(bool bEnable);
bool OnPopupMenu(int iItem);
bool OnContextButton(int itemNumber, CONTEXT_BUTTON button);
bool OnActionMove(const CAction& action);
bool OnMessageClick(const CGUIMessage& message);
bool OnClickListChannels(const CGUIMessage& message);
bool OnClickButtonOK();
bool OnClickButtonApply();
bool OnClickButtonCancel();
bool OnClickButtonRadioTV();
bool OnClickButtonRadioActive();
bool OnClickButtonRadioParentalLocked();
bool OnClickButtonEditName();
bool OnClickButtonChannelLogo();
bool OnClickButtonUseEPG();
bool OnClickEPGSourceSpin();
bool OnClickButtonGroupManager();
bool OnClickButtonNewChannel();
bool OnClickButtonRefreshChannelLogos();
bool PersistChannel(const CFileItemPtr& pItem, const std::shared_ptr<CPVRChannelGroup>& group);
bool HasChangedItems() const;
void SetItemChanged(const CFileItemPtr& pItem);
bool m_bIsRadio = false;
bool m_bMovingMode = false;
bool m_bAllowNewChannel = false;
bool m_bAllowRenumber = false;
bool m_bAllowReorder = false;
std::shared_ptr<CFileItem> m_initialSelection;
int m_iSelected = 0;
CFileItemList* m_channelItems;
CGUIViewControl m_viewControl;
std::vector<std::shared_ptr<CPVRClient>> m_clientsWithSettingsList;
};
}
|