MythTV
master
programs
mythfrontend
prevreclist.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2017 Peter G Bennett <pbennett@mythtv.org>
3
*
4
* This file is part of MythTV.
5
*
6
* MythTV is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU Public License as
8
* published by the Free Software Foundation; either
9
* version 2 of the License, or (at your option) any later version.
10
*
11
* MythTV 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 MythTV. If not, see <http://www.gnu.org/licenses/>.
18
*/
19
20
#ifndef PREVRECLIST_H_
21
#define PREVRECLIST_H_
22
23
// mythfrontend
24
#include "
schedulecommon.h
"
25
#include "
programinfo.h
"
26
27
class
MythMenu
;
28
29
class
PrevRecordedList
:
public
ScheduleCommon
30
{
31
Q_OBJECT
32
public
:
33
explicit
PrevRecordedList
(
MythScreenStack
*parent,
uint
recid = 0,
34
QString title = QString());
35
~PrevRecordedList
()
override
;
36
bool
Create
(
void
)
override
;
// MythScreenType
37
bool
keyPressEvent
(QKeyEvent *e)
override
;
// MythScreenType
38
void
customEvent
(QEvent *event)
override
;
// ScheduleCommon
39
40
protected
slots:
41
void
ShowMenu
(
void
)
override
;
// MythScreenType
42
void
ShowItemMenu
(
void
);
43
void
updateInfo
(
void
);
44
void
showListLoseFocus
(
void
);
45
void
showListTakeFocus
(
void
);
46
void
DeleteOldEpisode
(
bool
ok);
47
void
AllowRecord
(
void
);
48
void
PreventRecord
(
void
);
49
void
DeleteOldSeries
(
bool
ok);
50
void
ShowDeleteOldSeriesMenu
(
void
);
51
void
ShowDeleteOldEpisodeMenu
(
void
);
52
53
protected
:
54
void
Init
(
void
)
override
;
// MythScreenType
55
void
Load
(
void
)
override
;
// MythScreenType
56
57
bool
LoadTitles
(
void
);
58
bool
LoadDates
(
void
);
59
void
UpdateTitleList
(
void
);
60
void
UpdateShowList
(
void
);
61
void
UpdateList
(
MythUIButtonList
*bnList,
62
ProgramList
*progData,
bool
isShows)
const
;
63
void
LoadShowsByTitle
(
void
);
64
void
LoadShowsByDate
(
void
);
65
66
ProgramInfo
*
GetCurrentProgram
(
void
)
const override
;
// ScheduleCommon
67
68
// Left hand list - titles or dates
69
ProgramList
m_titleData
;
70
MythUIButtonList
*
m_titleList
{
nullptr
};
71
// Right hand list - show details
72
ProgramList
m_showData
;
73
MythUIButtonList
*
m_showList
{
nullptr
};
74
// MythUIStateType *m_groupByState {nullptr};
75
76
MythUIText
*
m_curviewText
{
nullptr
};
77
MythUIText
*
m_help1Text
{
nullptr
};
78
MythUIText
*
m_help2Text
{
nullptr
};
79
80
InfoMap
m_infoMap
;
81
82
bool
m_titleGroup
{
true
};
83
bool
m_reverseSort
{
false
};
84
bool
m_allowEvents
{
true
};
85
uint
m_recid
{0};
86
QString
m_title
;
87
QString
m_where
;
88
bool
m_loadShows
{
false
};
89
};
90
91
#endif
PrevRecordedList::DeleteOldSeries
void DeleteOldSeries(bool ok)
Definition:
prevreclist.cpp:774
PrevRecordedList::m_curviewText
MythUIText * m_curviewText
Definition:
prevreclist.h:76
PrevRecordedList::ShowDeleteOldEpisodeMenu
void ShowDeleteOldEpisodeMenu(void)
Definition:
prevreclist.cpp:724
PrevRecordedList::updateInfo
void updateInfo(void)
Definition:
prevreclist.cpp:342
PrevRecordedList::m_help1Text
MythUIText * m_help1Text
Definition:
prevreclist.h:77
PrevRecordedList::UpdateShowList
void UpdateShowList(void)
Definition:
prevreclist.cpp:307
PrevRecordedList::m_titleList
MythUIButtonList * m_titleList
Definition:
prevreclist.h:70
PrevRecordedList::m_reverseSort
bool m_reverseSort
Definition:
prevreclist.h:83
PrevRecordedList::ShowDeleteOldSeriesMenu
void ShowDeleteOldSeriesMenu(void)
Definition:
prevreclist.cpp:762
MythScreenStack
Definition:
mythscreenstack.h:16
PrevRecordedList::PreventRecord
void PreventRecord(void)
Definition:
prevreclist.cpp:701
PrevRecordedList::m_recid
uint m_recid
Definition:
prevreclist.h:85
PrevRecordedList::UpdateList
void UpdateList(MythUIButtonList *bnList, ProgramList *progData, bool isShows) const
Definition:
prevreclist.cpp:312
PrevRecordedList::LoadShowsByDate
void LoadShowsByDate(void)
Definition:
prevreclist.cpp:433
PrevRecordedList::Init
void Init(void) override
Used after calling Load() to assign data to widgets and other UI initilisation which is prohibited in...
Definition:
prevreclist.cpp:132
PrevRecordedList::ShowItemMenu
void ShowItemMenu(void)
Definition:
prevreclist.cpp:580
PrevRecordedList::customEvent
void customEvent(QEvent *event) override
Definition:
prevreclist.cpp:608
schedulecommon.h
PrevRecordedList::Load
void Load(void) override
Load data which will ultimately be displayed on-screen or used to determine what appears on-screen (S...
Definition:
prevreclist.cpp:150
PrevRecordedList::showListTakeFocus
void showListTakeFocus(void)
Definition:
prevreclist.cpp:412
InfoMap
QHash< QString, QString > InfoMap
Definition:
mythtypes.h:15
PrevRecordedList::m_loadShows
bool m_loadShows
Definition:
prevreclist.h:88
PrevRecordedList::m_where
QString m_where
Definition:
prevreclist.h:87
PrevRecordedList::m_showData
ProgramList m_showData
Definition:
prevreclist.h:72
programinfo.h
PrevRecordedList::m_showList
MythUIButtonList * m_showList
Definition:
prevreclist.h:73
PrevRecordedList::~PrevRecordedList
~PrevRecordedList() override
Definition:
prevreclist.cpp:86
PrevRecordedList::m_titleData
ProgramList m_titleData
Definition:
prevreclist.h:69
PrevRecordedList
Definition:
prevreclist.h:29
PrevRecordedList::LoadDates
bool LoadDates(void)
Definition:
prevreclist.cpp:239
ScheduleCommon
Definition:
schedulecommon.h:15
PrevRecordedList::LoadShowsByTitle
void LoadShowsByTitle(void)
Definition:
prevreclist.cpp:418
PrevRecordedList::UpdateTitleList
void UpdateTitleList(void)
Definition:
prevreclist.cpp:302
uint
unsigned int uint
Definition:
compat.h:140
PrevRecordedList::GetCurrentProgram
ProgramInfo * GetCurrentProgram(void) const override
Definition:
prevreclist.cpp:716
PrevRecordedList::m_allowEvents
bool m_allowEvents
Definition:
prevreclist.h:84
PrevRecordedList::m_infoMap
InfoMap m_infoMap
Definition:
prevreclist.h:80
AutoDeleteDeque< ProgramInfo * >
PrevRecordedList::LoadTitles
bool LoadTitles(void)
Definition:
prevreclist.cpp:200
MythMenu
Definition:
mythdialogbox.h:99
ProgramInfo
Holds information on recordings and videos.
Definition:
programinfo.h:67
MythUIText
All purpose text widget, displays a text string.
Definition:
mythuitext.h:30
PrevRecordedList::Create
bool Create(void) override
Definition:
prevreclist.cpp:103
PrevRecordedList::ShowMenu
void ShowMenu(void) override
Definition:
prevreclist.cpp:547
PrevRecordedList::m_title
QString m_title
Definition:
prevreclist.h:86
PrevRecordedList::m_titleGroup
bool m_titleGroup
Definition:
prevreclist.h:82
PrevRecordedList::m_help2Text
MythUIText * m_help2Text
Definition:
prevreclist.h:78
PrevRecordedList::keyPressEvent
bool keyPressEvent(QKeyEvent *e) override
Key event handler.
Definition:
prevreclist.cpp:466
PrevRecordedList::PrevRecordedList
PrevRecordedList(MythScreenStack *parent, uint recid=0, QString title=QString())
Definition:
prevreclist.cpp:56
PrevRecordedList::showListLoseFocus
void showListLoseFocus(void)
Definition:
prevreclist.cpp:405
MythUIButtonList
List widget, displays list items in a variety of themeable arrangements and can trigger signals when ...
Definition:
mythuibuttonlist.h:151
PrevRecordedList::AllowRecord
void AllowRecord(void)
Definition:
prevreclist.cpp:687
PrevRecordedList::DeleteOldEpisode
void DeleteOldEpisode(bool ok)
Definition:
prevreclist.cpp:736
Generated on Mon Apr 19 2021 03:19:01 for MythTV by
1.8.17