MythTV
master
|
#include <playbackbox.h>
Classes | |
class | PbbJobQueue |
Public Types | |
enum | ViewType { TitlesOnly = 0, TitlesCategories = 1, TitlesCategoriesRecGroups = 2, TitlesRecGroups = 3, Categories = 4, CategoriesRecGroups = 5, RecGroups = 6, ViewTypes } |
enum | ViewTitleSort { TitleSortAlphabetical = 0, TitleSortRecPriority = 1, TitleSortMethods } |
enum | ViewMask { VIEW_NONE = 0x0000, VIEW_TITLES = 0x0001, VIEW_CATEGORIES = 0x0002, VIEW_RECGROUPS = 0x0004, VIEW_WATCHLIST = 0x0008, VIEW_SEARCHES = 0x0010, VIEW_LIVETVGRP = 0x0020, VIEW_WATCHED = 0x8000 } |
enum | DeletePopupType { kDeleteRecording, kStopRecording, kForceDeleteRecording } |
enum | DeleteFlags { kNoFlags = 0x00, kForgetHistory = 0x01, kForce = 0x02, kIgnore = 0x04, kAllRemaining = 0x08 } |
enum | killStateType { kNvpToPlay, kNvpToStop, kDone } |
Public Slots | |
void | displayRecGroup (const QString &newRecGroup="") |
void | groupSelectorClosed (void) |
![]() | |
virtual void | ShowDetails (void) const |
Show the Program Details screen. More... | |
![]() | |
virtual void | Close () |
![]() | |
void | LoseFocus () |
bool | TakeFocus () |
void | Activate () |
void | Hide (void) |
void | Show (void) |
void | Refresh (void) |
void | UpdateDependState (bool isDefault) |
void | UpdateDependState (MythUIType *dependee, bool isDefault) |
Public Member Functions | |
PlaybackBox (MythScreenStack *parent, const QString &name, TV *player=nullptr, bool showTV=false) | |
~PlaybackBox (void) override | |
bool | Create (void) override |
void | Load (void) override |
Load data which will ultimately be displayed on-screen or used to determine what appears on-screen (See Warning) More... | |
void | Init (void) override |
Used after calling Load() to assign data to widgets and other UI initilisation which is prohibited in Load() More... | |
bool | keyPressEvent (QKeyEvent *event) override |
Key event handler. More... | |
void | customEvent (QEvent *event) override |
void | setInitialRecGroup (const QString &initialGroup) |
![]() | |
MythScreenType (MythScreenStack *parent, const QString &name, bool fullscreen=true) | |
~MythScreenType () override | |
bool | inputMethodEvent (QInputMethodEvent *event) override |
Input Method event handler. More... | |
bool | gestureEvent (MythGestureEvent *event) override |
Mouse click/movement handler, receives mouse gesture events from the QCoreApplication event loop. More... | |
void | doInit (void) |
void | LoadInForeground (void) |
bool | IsInitialized (void) const |
Has Init() been called on this screen? More... | |
bool | IsFullscreen (void) const |
void | SetFullscreen (bool full) |
MythUIType * | GetFocusWidget (void) const |
bool | SetFocusWidget (MythUIType *widget=nullptr) |
virtual bool | NextPrevWidgetFocus (bool up_or_down) |
void | BuildFocusList (void) |
MythScreenStack * | GetScreenStack () const |
virtual void | aboutToHide (void) |
virtual void | aboutToShow (void) |
bool | IsDeleting (void) const |
void | SetDeleting (bool deleting) |
bool | IsLoading (void) const |
bool | IsLoaded (void) const |
MythPainter * | GetPainter (void) override |
![]() | |
MythUIComposite (QObject *parent, const QString &name) | |
~MythUIComposite () override=default | |
virtual void | SetTextFromMap (const InfoMap &infoMap) |
virtual void | ResetMap (const InfoMap &infoMap) |
![]() | |
MythUIType (QObject *parent, const QString &name) | |
virtual void | Reset (void) |
Reset the widget to it's original state, should not reset changes made by the theme. More... | |
void | AddChild (MythUIType *child) |
Add a child UIType. More... | |
MythUIType * | GetChild (const QString &name) const |
Get a named child of this UIType. More... | |
MythUIType * | GetChildAt (QPoint p, bool recursive=true, bool focusable=true) const |
Return the first MythUIType at the given coordinates. More... | |
QList< MythUIType * > * | GetAllChildren (void) |
Return a list of all child widgets. More... | |
QList< MythUIType * > | GetAllDescendants (void) |
void | DeleteChild (const QString &name) |
Delete a named child of this UIType. More... | |
void | DeleteChild (MythUIType *child) |
Delete the given UIType if it is a child of this UIType. More... | |
void | DeleteAllChildren (void) |
Delete all child widgets. More... | |
bool | NeedsRedraw (void) const |
void | ResetNeedsRedraw (void) |
void | SetRedraw (void) |
void | SetChildNeedsRedraw (MythUIType *child) |
bool | CanTakeFocus (void) const |
Return if this widget can accept input focus. More... | |
void | SetCanTakeFocus (bool set=true) |
Set whether this widget can take focus. More... | |
void | SetFocusOrder (int order) |
bool | IsEnabled (void) const |
void | SetEnabled (bool enable) |
bool | MoveToTop (void) |
bool | MoveChildToTop (MythUIType *child) |
void | ActivateAnimations (MythUIAnimation::Trigger trigger) |
QList< MythUIAnimation * > * | GetAnimations (void) |
virtual void | Pulse (void) |
Pulse is called 70 times a second to trigger a single frame of an animation. More... | |
void | Draw (MythPainter *p, int xoffset, int yoffset, int alphaMod=255, QRect clipRect=QRect()) |
void | SetPosition (int x, int y) |
Convenience method, calls SetPosition(const MythPoint&) Override that instead to change functionality. More... | |
void | SetPosition (QPoint point) |
virtual void | SetPosition (const MythPoint &point) |
virtual MythPoint | GetPosition (void) const |
virtual void | SetSize (QSize size) |
virtual void | SetMinSize (const MythPoint &size) |
Set the minimum size of this widget, for widgets which can be rescaled. More... | |
virtual QSize | GetMinSize (void) const |
virtual void | SetArea (const MythRect &rect) |
virtual void | AdjustMinArea (int delta_x, int delta_y, int delta_w, int delta_h) |
Adjust the size of a sibling. More... | |
virtual void | VanishSibling (void) |
virtual void | SetMinAreaParent (MythRect actual_area, MythRect allowed_area, MythUIType *child) |
Adjust the size of sibling objects within the button. More... | |
virtual void | SetMinArea (const MythRect &rect) |
Set the minimum area based on the given size. More... | |
virtual MythRect | GetArea (void) const |
If the object has a minimum area defined, return it, other wise return the default area. More... | |
virtual MythRect | GetFullArea (void) const |
virtual void | RecalculateArea (bool recurse=true) |
void | ExpandArea (QRect rect) |
virtual QRegion | GetDirtyArea (void) const |
bool | IsVisible (bool recurse=false) const |
virtual void | SetVisible (bool visible) |
void | MoveTo (QPoint destXY, QPoint speedXY) |
void | AdjustAlpha (int mode, int alphachange, int minalpha=0, int maxalpha=255) |
void | SetAlpha (int newalpha) |
int | GetAlpha (void) const |
virtual void | mediaEvent (MythMediaEvent *event) |
Media/Device status event handler, received from MythMediaMonitor. More... | |
MythFontProperties * | GetFont (const QString &text) const |
bool | AddFont (const QString &text, MythFontProperties *fontProp) |
void | SetHelpText (const QString &text) |
QString | GetHelpText (void) const |
void | SetXMLLocation (const QString &filename, int where) |
QString | GetXMLLocation (void) const |
void | SetXMLName (const QString &name) |
QString | GetXMLName (void) const |
bool | IsDeferredLoading (bool recurse=false) const |
void | SetDeferLoad (bool defer) |
virtual void | LoadNow (void) |
Cause images in this and child widgets to be loaded. More... | |
bool | ContainsPoint (QPoint point) const |
Check if the given point falls within this widgets area. More... | |
void | SetPainter (MythPainter *painter) |
void | SetCentre (UIEffects::Centre centre) |
void | SetZoom (float zoom) |
void | SetHorizontalZoom (float zoom) |
void | SetVerticalZoom (float zoom) |
void | SetAngle (float angle) |
void | SetDependIsDefault (bool isDefault) |
void | SetReverseDependence (MythUIType *dependee, bool reverse) |
void | SetDependsMap (QMap< QString, QString > dependsMap) |
QMap< QString, QString > | GetDependsMap () const |
Static Public Member Functions | |
static void * | RunPlaybackBox (void *player, bool showTV) |
![]() | |
static QString | getFirstText (QDomElement &element) |
static bool | parseBool (const QString &text) |
static bool | parseBool (QDomElement &element) |
static MythPoint | parsePoint (const QString &text, bool normalize=true) |
static MythPoint | parsePoint (QDomElement &element, bool normalize=true) |
static QSize | parseSize (const QString &text, bool normalize=true) |
static QSize | parseSize (QDomElement &element, bool normalize=true) |
static MythRect | parseRect (const QString &text, bool normalize=true) |
static MythRect | parseRect (QDomElement &element, bool normalize=true) |
static int | parseAlignment (const QString &text) |
static int | parseAlignment (QDomElement &element) |
static QBrush | parseGradient (const QDomElement &element) |
static QString | parseText (QDomElement &element) |
static MythUIType * | GetGlobalObjectStore (void) |
static void | ClearGlobalObjectStore (void) |
static void | ParseChildren (const QString &filename, QDomElement &element, MythUIType *parent, bool showWarnings) |
static MythUIType * | ParseUIType (const QString &filename, QDomElement &element, const QString &type, MythUIType *parent, MythScreenType *screen, bool showWarnings, QMap< QString, QString > &parentDependsMap) |
static bool | WindowExists (const QString &xmlfile, const QString &windowname) |
static bool | LoadWindowFromXML (const QString &xmlfile, const QString &windowname, MythUIType *parent) |
static bool | LoadBaseTheme (void) |
static bool | LoadBaseTheme (const QString &baseTheme) |
static bool | CopyWindowFromBase (const QString &windowname, MythScreenType *win) |
Static Public Attributes | |
static std::array< PlaybackBoxCb, kMaxJobs *2 > | kMySlots |
Protected Slots | |
void | updateRecList (MythUIButtonListItem *sel_item) |
void | ItemSelected (MythUIButtonListItem *item) |
void | ItemVisible (MythUIButtonListItem *item) |
void | ItemLoaded (MythUIButtonListItem *item) |
void | selected (MythUIButtonListItem *item) |
void | updateRecGroup (MythUIButtonListItem *sel_item) |
void | PlayFromAnyMark (MythUIButtonListItem *item) |
void | PlayFromAnyMark () |
void | PlayFromBookmark (MythUIButtonListItem *item) |
void | PlayFromBookmark () |
void | PlayFromBeginning (MythUIButtonListItem *item) |
void | PlayFromBeginning () |
void | PlayFromLastPlayPos (MythUIButtonListItem *item) |
void | PlayFromLastPlayPos () |
void | deleteSelected (MythUIButtonListItem *item) |
void | ClearBookmark () |
void | ClearLastPlayPos () |
void | SwitchList (void) |
void | ShowGroupPopup (void) |
void | StopSelected (void) |
void | showMetadataEditor () |
void | showGroupFilter () |
void | showRecGroupPasswordChanger () |
MythMenu * | createPlayFromMenu () |
MythMenu * | createRecordingMenu () |
MythMenu * | createJobMenu () |
MythMenu * | createTranscodingProfilesMenu () |
void | doCreateTranscodingProfilesMenu () |
MythMenu * | createStorageMenu () |
MythMenu * | createPlaylistMenu () |
MythMenu * | createPlaylistStorageMenu () |
MythMenu * | createPlaylistJobMenu () |
void | changeProfileAndTranscode (int id) |
void | showIconHelp () |
void | ShowRecGroupChangerUsePlaylist (void) |
void | ShowRecGroupChangerNoPlaylist (void) |
void | ShowPlayGroupChangerUsePlaylist (void) |
void | ShowPlayGroupChangerNoPlaylist (void) |
void | ShowRecGroupChanger (bool use_playlist=false) |
Used to change the recording group of a program or playlist. More... | |
void | ShowPlayGroupChanger (bool use_playlist=false) |
Used to change the play group of a program or playlist. More... | |
void | popupClosed (const QString &which, int result) |
void | doPlayListRandom () |
void | askStop () |
void | doAllowRerecord () |
Callback function when Allow Re-record is pressed in Watch Recordings. More... | |
void | askDelete () |
void | Undelete (void) |
void | Delete (PlaybackBox::DeleteFlags flags) |
void | Delete () |
void | DeleteForgetHistory (void) |
void | DeleteForce (void) |
void | DeleteIgnore (void) |
void | DeleteForceAllRemaining (void) |
void | DeleteIgnoreAllRemaining (void) |
void | ShowRecordedEpisodes () |
void | ShowAllRecordings () |
void | toggleWatched () |
void | toggleAutoExpire () |
void | togglePreserveEpisode () |
void | toggleView (PlaybackBox::ViewMask itemMask, bool setOn) |
void | toggleTitleView (bool setOn) |
void | toggleCategoryView (bool setOn) |
void | toggleRecGroupView (bool setOn) |
void | toggleWatchListView (bool setOn) |
void | toggleSearchView (bool setOn) |
void | toggleLiveTVView (bool setOn) |
void | toggleWatchedView (bool setOn) |
void | setGroupFilter (const QString &newRecGroup) |
void | setRecGroup (QString newRecGroup) |
void | setPlayGroup (QString newPlayGroup) |
void | saveRecMetadata (const QString &newTitle, const QString &newSubtitle, const QString &newDescription, const QString &newInetref, uint season, uint episode) |
void | SetRecGroupPassword (const QString &newPassword) |
void | doJobQueueJob (int jobType, int jobFlags=0) |
void | doPlaylistJobQueueJob (int jobType, int jobFlags=0) |
void | stopPlaylistJobQueueJob (int jobType) |
void | doBeginFlagging () |
void | doBeginLookup () |
void | doBeginTranscoding () |
void | doBeginUserJob1 () |
void | doBeginUserJob2 () |
void | doBeginUserJob3 () |
void | doBeginUserJob4 () |
void | doPlaylistBeginTranscoding () |
void | stopPlaylistTranscoding () |
void | doPlaylistBeginFlagging () |
void | stopPlaylistFlagging () |
void | doPlaylistBeginLookup () |
void | stopPlaylistLookup () |
void | doPlaylistBeginUserJob1 () |
void | stopPlaylistUserJob1 () |
void | doPlaylistBeginUserJob2 () |
void | stopPlaylistUserJob2 () |
void | doPlaylistBeginUserJob3 () |
void | stopPlaylistUserJob3 () |
void | doPlaylistBeginUserJob4 () |
void | stopPlaylistUserJob4 () |
void | doClearPlaylist () |
void | PlaylistDeleteForgetHistory (void) |
void | PlaylistDeleteKeepHistory (void) |
void | PlaylistDelete (bool forgetHistory=false) |
void | doPlaylistExpireSetting (bool turnOn) |
void | doPlaylistExpireSetOn () |
void | doPlaylistExpireSetOff () |
void | doPlaylistWatchedSetting (bool turnOn) |
void | doPlaylistWatchedSetOn () |
void | doPlaylistWatchedSetOff () |
void | doPlaylistAllowRerecord () |
void | togglePlayListTitle (void) |
void | togglePlayListItem (void) |
void | playSelectedPlaylist (bool Random) |
void | doPlayList (void) |
void | showViewChanger (void) |
void | saveViewChanges (void) |
void | checkPassword (const QString &password) |
void | passwordClosed (void) |
void | fanartLoad (void) |
void | bannerLoad (void) |
void | coverartLoad (void) |
![]() | |
virtual void | EditRecording (bool may_watch_now=false) |
Creates a dialog for editing the recording status, blocking until user leaves dialog. More... | |
virtual void | EditRecording (MythUIButtonListItem *) |
virtual void | QuickRecord (void) |
Create a kSingleRecord or bring up recording dialog. More... | |
virtual void | ShowPrevious (void) const |
Show the previous recordings for this recording rule. More... | |
virtual void | ShowPrevious (uint ruleid, const QString &title) const |
Show the previous recordings for this recording rule. More... | |
virtual void | ShowUpcoming (void) const |
Show the upcoming recordings for this title. More... | |
virtual void | ShowUpcomingScheduled (void) const |
Show the upcoming recordings for this recording rule. More... | |
virtual void | ShowChannelSearch (void) const |
Show the channel search. More... | |
virtual void | ShowGuide (void) const |
Show the program guide. More... | |
virtual void | EditScheduled (void) |
Creates a dialog for editing the recording schedule. More... | |
virtual void | EditCustom (void) |
Creates a dialog for creating a custom recording rule. More... | |
Private Types | |
using | RecGroup = QPair< QString, QString > |
Private Member Functions | |
bool | UpdateUILists (void) |
void | UpdateUIGroupList (const QStringList &groupPreferences) |
void | UpdateUIRecGroupList (void) |
void | SelectNextRecGroup (void) |
void | UpdateProgressBar (void) |
void | PlayX (const ProgramInfo &pginfo, bool ignoreBookmark, bool ignoreProgStart, bool ignoreLastPlayPos, bool underNetworkControl) |
bool | Play (const ProgramInfo &rec, bool inPlaylist, bool ignoreBookmark, bool ignoreProgStart, bool ignoreLastPlayPos, bool underNetworkControl) |
ProgramInfo * | GetCurrentProgram (void) const override |
void | togglePlayListItem (ProgramInfo *pginfo) |
void | randomizePlayList (void) |
void | processNetworkControlCommands (void) |
void | processNetworkControlCommand (const QString &command) |
ProgramInfo * | FindProgramInUILists (const ProgramInfo &pginfo) |
ProgramInfo * | FindProgramInUILists (uint recordingID, const QString &recgroup="NotLiveTV") |
void | RemoveProgram (uint recordingID, bool forgetHistory, bool forceMetadataDelete) |
void | ShowDeletePopup (DeletePopupType type) |
void | ShowActionPopup (const ProgramInfo &pginfo) |
QString | getRecGroupPassword (const QString &recGroup) |
void | fillRecGroupPasswordCache (void) |
bool | IsUsageUIVisible (void) const |
void | updateIcons (const ProgramInfo *pginfo=nullptr) |
void | UpdateUsageUI (void) |
void | updateGroupInfo (const QString &groupname, const QString &grouplabel) |
void | SetItemIcons (MythUIButtonListItem *item, ProgramInfo *pginfo) |
void | UpdateUIListItem (ProgramInfo *pginfo, bool force_preview_reload) |
void | UpdateUIListItem (MythUIButtonListItem *item, bool is_sel, bool force_preview_reload=true) |
void | HandlePreviewEvent (const QStringList &list) |
Updates the UI properties for a new preview file. More... | |
void | HandleRecordingRemoveEvent (uint recordingID) |
void | HandleRecordingAddEvent (const ProgramInfo &evinfo) |
void | HandleUpdateItemEvent (uint recordingId, uint flags) |
void | ScheduleUpdateUIList (void) |
void | ShowMenu (void) override |
bool | CreatePopupMenu (const QString &title) |
void | DisplayPopupMenu (void) |
bool | CreatePopupMenuPlaylist (void) |
QString | extract_job_state (const ProgramInfo &pginfo) |
QString | extract_commflag_state (const ProgramInfo &pginfo) |
Static Private Member Functions | |
static void | ShowAvailabilityPopup (const ProgramInfo &pginfo) |
static QString | CreateProgramInfoString (const ProgramInfo &pginfo) |
Private Attributes | |
MythUIButtonList * | m_recgroupList {nullptr} |
MythUIButtonList * | m_groupList {nullptr} |
MythUIButtonList * | m_recordingList {nullptr} |
MythUIText * | m_noRecordingsText {nullptr} |
MythUIImage * | m_previewImage {nullptr} |
MythUIProgressBar * | m_recordedProgress {nullptr} |
MythUIProgressBar * | m_watchedProgress {nullptr} |
QString | m_artHostOverride |
std::array< MythUIImage *, kNumArtImages > | m_artImage {} |
std::array< QTimer *, kNumArtImages > | m_artTimer {} |
InfoMap | m_currentMap |
bool | m_titleView {false} |
titleView controls showing titles in group list More... | |
bool | m_useCategories {false} |
useCategories controls showing categories in group list More... | |
bool | m_useRecGroups {false} |
useRecGroups controls showing of recording groups in group list More... | |
bool | m_watchListStart {false} |
use the Watch List as the initial view More... | |
bool | m_watchListAutoExpire {false} |
exclude recording not marked for auto-expire from the Watch List More... | |
int | m_watchListMaxAge {60} |
add 1 to the Watch List scord up to this many days More... | |
std::chrono::hours | m_watchListBlackOut {std::chrono::days(2)} |
adjust exclusion of a title from the Watch List after a delete More... | |
int | m_allOrder |
allOrder controls the ordering of the "All Programs" list More... | |
int | m_listOrder {1} |
listOrder controls the ordering of the recordings in the list More... | |
QString | m_groupDisplayName |
QString | m_recGroup |
QString | m_curGroupPassword |
QString | m_newRecGroup |
QString | m_watchGroupName |
QString | m_watchGroupLabel |
ViewMask | m_viewMask {VIEW_TITLES} |
MythDialogBox * | m_menuDialog {nullptr} |
MythMenu * | m_popupMenu {nullptr} |
MythScreenStack * | m_popupStack {nullptr} |
bool | m_doToggleMenu {true} |
QMap< QString, QString > | m_recGroupType |
QMap< QString, QString > | m_recGroupPwCache |
QStringList | m_titleList |
list of pages More... | |
ProgramMap | m_progLists |
lists of programs by page More... | |
int | m_progsInDB {0} |
total number of recordings in DB More... | |
bool | m_isFilling {false} |
QStringList | m_recGroups |
QMutex | m_recGroupsLock |
int | m_recGroupIdx {-1} |
QStringList | m_delList |
Recording[s] currently selected for deletion. More... | |
QString | m_currentGroup |
Group currently selected. More... | |
QList< uint > | m_playList |
list of selected items "play list" More... | |
bool | m_opOnPlaylist {false} |
QList< uint > | m_playListPlay |
list of items being played. More... | |
ProgramInfoCache | m_programInfoCache |
bool | m_playingSomething {false} |
playingSomething is set to true iff a full screen recording is playing More... | |
bool | m_needUpdate {false} |
Does the recording list need to be refilled. More... | |
bool | m_haveGroupInfoSet {false} |
QMutex | m_ncLock |
std::deque< QString > | m_networkControlCommands |
TV * | m_player {nullptr} |
QStringList | m_playerSelectedNewShow |
PlaybackBoxHelper | m_helper |
Main helper thread. More... | |
QSet< QString > | m_previewTokens |
Outstanding preview image requests. More... | |
bool | m_firstGroup {true} |
bool | m_usingGroupSelector {false} |
bool | m_groupSelected {false} |
bool | m_passwordEntered {false} |
class PlaybackBox::PbbJobQueue | m_jobQueue |
Static Private Attributes | |
constexpr static int | kNumArtImages = 3 |
Friends | |
class | PlaybackBoxListItem |
class | ChangeView |
Additional Inherited Members | |
![]() | |
void | Exiting () |
![]() | |
void | RequestUpdate () |
void | RequestRegionUpdate (const QRect &) |
void | TakingFocus () |
void | LosingFocus () |
void | VisibilityChanged (bool Visible) |
void | Showing () |
void | Hiding () |
void | Enabling () |
void | Disabling () |
void | FinishedMoving () |
void | FinishedFading () |
void | DependChanged (bool isDefault) |
![]() | |
ScheduleCommon (MythScreenStack *parent, const QString &name) | |
~ScheduleCommon () override=default | |
void | customEvent (QEvent *event) override |
![]() | |
MythScreenType (MythUIType *parent, const QString &name, bool fullscreen=true) | |
void | CopyFrom (MythUIType *base) override |
Copy this widgets state from another. More... | |
void | CreateCopy (MythUIType *parent) override |
Copy the state of this widget to the one given, it must be of the same type. More... | |
bool | ParseElement (const QString &filename, QDomElement &element, bool showWarnings) override |
Parse the xml definition of this widget setting the state of the object accordingly. More... | |
void | LoadInBackground (const QString &message="") |
void | ReloadInBackground (void) |
void | OpenBusyPopup (const QString &message="") |
void | CloseBusyPopup (void) |
void | SetBusyPopupMessage (const QString &message) |
void | ResetBusyPopup (void) |
![]() | |
~MythUIType () override | |
void | customEvent (QEvent *event) override |
virtual void | DrawSelf (MythPainter *p, int xoffset, int yoffset, int alphaMod, QRect clipRect) |
void | AddFocusableChildrenToList (FocusInfoType &focusList) |
void | HandleAlphaPulse () |
Handle one frame of an alpha (transparency) change animation. More... | |
void | HandleMovementPulse () |
Handle one frame of a movement animation. More... | |
int | CalcAlpha (int alphamod) const |
void | ConnectDependants (bool recurse=false) |
virtual void | Finalize (void) |
Perform any post-xml parsing initialisation tasks. More... | |
![]() | |
static void | ShowUpcoming (const QString &title, const QString &seriesid) |
Show the upcoming recordings for this title. More... | |
static void | EditScheduled (ProgramInfo *pginfo) |
Creates a dialog for editing the recording schedule. More... | |
static void | EditScheduled (RecordingInfo *recinfo) |
Creates a dialog for editing the recording schedule. More... | |
static void | MakeOverride (RecordingInfo *recinfo) |
Creates a dialog for editing an override recording schedule. More... | |
![]() | |
static int | NormX (int width) |
static int | NormY (int height) |
![]() | |
bool | m_fullScreen {false} |
bool | m_isDeleting {false} |
QSemaphore | m_loadLock {1} |
volatile bool | m_isLoading {false} |
volatile bool | m_isLoaded {false} |
bool | m_isInitialized {false} |
MythUIType * | m_currentFocusWidget {nullptr} |
FocusInfoType | m_focusWidgetList |
MythScreenStack * | m_screenStack {nullptr} |
MythUIBusyDialog * | m_busyPopup {nullptr} |
QRegion | m_savedMask |
![]() | |
QList< MythUIType * > | m_childrenList |
QMap< QString, QString > | m_dependsMap |
QList< QPair< MythUIType *, bool > > | m_dependsValue |
QList< int > | m_dependOperator |
bool | m_visible {true} |
bool | m_hasFocus {false} |
bool | m_canHaveFocus {false} |
bool | m_enabled {true} |
bool | m_enableInitiator {false} |
bool | m_initiator {false} |
bool | m_vanish {false} |
bool | m_vanished {false} |
bool | m_isDependDefault {false} |
QMap< MythUIType *, bool > | m_reverseDepend |
int | m_focusOrder {0} |
MythRect | m_area {0,0,0,0} |
MythRect | m_minArea {0,0,0,0} |
MythPoint | m_minSize |
QRegion | m_dirtyRegion {0,0,0,0} |
bool | m_needsRedraw {false} |
UIEffects | m_effects |
int | m_alphaChangeMode {0} |
int | m_alphaChange {0} |
int | m_alphaMin {0} |
int | m_alphaMax {255} |
bool | m_moving {false} |
QPoint | m_xyDestination {0,0} |
QPoint | m_xySpeed {0,0} |
FontMap * | m_fonts {nullptr} |
MythUIType * | m_parent {nullptr} |
MythPainter * | m_painter {nullptr} |
QList< MythUIAnimation * > | m_animations |
QString | m_helptext |
QString | m_xmlName |
QString | m_xmlLocation |
bool | m_deferload {false} |
QColor | m_borderColor {Qt::black} |
Definition at line 63 of file playbackbox.h.
|
private |
Definition at line 415 of file playbackbox.h.
Enumerator | |
---|---|
TitlesOnly | |
TitlesCategories | |
TitlesCategoriesRecGroups | |
TitlesRecGroups | |
Categories | |
CategoriesRecGroups | |
RecGroups | |
ViewTypes |
Definition at line 71 of file playbackbox.h.
Enumerator | |
---|---|
TitleSortAlphabetical | |
TitleSortRecPriority | |
TitleSortMethods |
Definition at line 83 of file playbackbox.h.
Enumerator | |
---|---|
VIEW_NONE | |
VIEW_TITLES | |
VIEW_CATEGORIES | |
VIEW_RECGROUPS | |
VIEW_WATCHLIST | |
VIEW_SEARCHES | |
VIEW_LIVETVGRP | |
VIEW_WATCHED |
Definition at line 89 of file playbackbox.h.
Enumerator | |
---|---|
kDeleteRecording | |
kStopRecording | |
kForceDeleteRecording |
Definition at line 101 of file playbackbox.h.
Enumerator | |
---|---|
kNoFlags | |
kForgetHistory | |
kForce | |
kIgnore | |
kAllRemaining |
Definition at line 108 of file playbackbox.h.
Enumerator | |
---|---|
kNvpToPlay | |
kNvpToStop | |
kDone |
Definition at line 117 of file playbackbox.h.
PlaybackBox::PlaybackBox | ( | MythScreenStack * | parent, |
const QString & | name, | ||
TV * | player = nullptr , |
||
bool | showTV = false |
||
) |
Definition at line 385 of file playbackbox.cpp.
Referenced by RunPlaybackBox().
|
override |
Definition at line 474 of file playbackbox.cpp.
|
overridevirtual |
Reimplemented from MythScreenType.
Definition at line 493 of file playbackbox.cpp.
|
overridevirtual |
Load data which will ultimately be displayed on-screen or used to determine what appears on-screen (See Warning)
Reimplemented from MythScreenType.
Definition at line 558 of file playbackbox.cpp.
|
overridevirtual |
Used after calling Load() to assign data to widgets and other UI initilisation which is prohibited in Load()
Reimplemented from MythScreenType.
Definition at line 564 of file playbackbox.cpp.
|
overridevirtual |
Key event handler.
event | Keypress event |
Reimplemented from MythScreenType.
Definition at line 3775 of file playbackbox.cpp.
|
override |
Definition at line 3908 of file playbackbox.cpp.
|
inline |
Definition at line 136 of file playbackbox.h.
|
static |
Definition at line 371 of file playbackbox.cpp.
Referenced by SetFuncPtrs().
|
slot |
Definition at line 599 of file playbackbox.cpp.
Referenced by Init(), keyPressEvent(), SelectNextRecGroup(), showGroupFilter(), and updateRecGroup().
|
slot |
Definition at line 4519 of file playbackbox.cpp.
Referenced by showGroupFilter().
|
protectedslot |
Definition at line 1474 of file playbackbox.cpp.
Referenced by Create(), and UpdateUIGroupList().
|
inlineprotectedslot |
Definition at line 145 of file playbackbox.h.
Referenced by Create().
|
protectedslot |
Definition at line 1030 of file playbackbox.cpp.
Referenced by Create().
|
protectedslot |
Definition at line 918 of file playbackbox.cpp.
Referenced by Create(), and ItemVisible().
|
protectedslot |
Definition at line 2306 of file playbackbox.cpp.
|
protectedslot |
Definition at line 1452 of file playbackbox.cpp.
Referenced by Create().
|
protectedslot |
Definition at line 2121 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 152 of file playbackbox.h.
Referenced by Create(), keyPressEvent(), PlayFromAnyMark(), selected(), and ShowActionPopup().
|
protectedslot |
Definition at line 2140 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 154 of file playbackbox.h.
Referenced by createPlayFromMenu(), and PlayFromBookmark().
|
protectedslot |
Definition at line 2159 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 156 of file playbackbox.h.
Referenced by createPlayFromMenu(), and PlayFromBeginning().
|
protectedslot |
Definition at line 2178 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 158 of file playbackbox.h.
Referenced by createPlayFromMenu(), and PlayFromLastPlayPos().
|
protectedslot |
Definition at line 2240 of file playbackbox.cpp.
Referenced by keyPressEvent().
|
protectedslot |
Definition at line 2219 of file playbackbox.cpp.
Referenced by createPlayFromMenu().
|
protectedslot |
Definition at line 2226 of file playbackbox.cpp.
Referenced by createPlayFromMenu().
|
protectedslot |
Definition at line 591 of file playbackbox.cpp.
Referenced by Create().
|
protectedslot |
Definition at line 2356 of file playbackbox.cpp.
Referenced by popupClosed(), and ShowMenu().
|
protectedslot |
Definition at line 2233 of file playbackbox.cpp.
Referenced by ShowDeletePopup().
|
protectedslot |
Definition at line 4740 of file playbackbox.cpp.
Referenced by createRecordingMenu().
|
protectedslot |
Definition at line 4397 of file playbackbox.cpp.
Referenced by Init(), keyPressEvent(), passwordClosed(), and ShowGroupPopup().
|
protectedslot |
Definition at line 4932 of file playbackbox.cpp.
Referenced by ShowGroupPopup().
|
protectedslot |
Definition at line 2899 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 2948 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 2993 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 3053 of file playbackbox.cpp.
Referenced by createJobMenu(), and doCreateTranscodingProfilesMenu().
|
inlineprotectedslot |
Definition at line 173 of file playbackbox.h.
|
protectedslot |
Definition at line 2927 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 2654 of file playbackbox.cpp.
Referenced by ShowActionPopup(), and ShowGroupPopup().
|
protectedslot |
Definition at line 2691 of file playbackbox.cpp.
Referenced by createPlaylistMenu().
|
protectedslot |
Definition at line 2709 of file playbackbox.cpp.
Referenced by createPlaylistMenu().
|
protectedslot |
Definition at line 3095 of file playbackbox.cpp.
Referenced by customEvent().
|
protectedslot |
Definition at line 4365 of file playbackbox.cpp.
Referenced by keyPressEvent(), and ShowGroupPopup().
|
inlineprotectedslot |
Definition at line 181 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
inlineprotectedslot |
Definition at line 182 of file playbackbox.h.
Referenced by createStorageMenu().
|
inlineprotectedslot |
Definition at line 183 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
inlineprotectedslot |
Definition at line 184 of file playbackbox.h.
Referenced by createStorageMenu().
Used to change the recording group of a program or playlist.
Definition at line 4603 of file playbackbox.cpp.
Referenced by ShowRecGroupChangerNoPlaylist(), and ShowRecGroupChangerUsePlaylist().
Used to change the play group of a program or playlist.
Definition at line 4664 of file playbackbox.cpp.
Referenced by ShowPlayGroupChangerNoPlaylist(), and ShowPlayGroupChangerUsePlaylist().
|
protectedslot |
Definition at line 2314 of file playbackbox.cpp.
Referenced by DisplayPopupMenu().
|
protectedslot |
Definition at line 3288 of file playbackbox.cpp.
Referenced by createPlaylistMenu().
|
protectedslot |
Definition at line 3293 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Callback function when Allow Re-record is pressed in Watch Recordings.
Hide the current program from the scheduler by calling ForgetHistory This will allow it to re-record without deleting
Definition at line 3309 of file playbackbox.cpp.
Referenced by createRecordingMenu().
|
protectedslot |
Definition at line 3429 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 3471 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 3478 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 199 of file playbackbox.h.
Referenced by Delete(), DeleteForce(), DeleteForceAllRemaining(), DeleteForgetHistory(), DeleteIgnore(), DeleteIgnoreAllRemaining(), ShowActionPopup(), and ShowDeletePopup().
|
inlineprotectedslot |
Definition at line 200 of file playbackbox.h.
Referenced by ShowDeletePopup().
|
inlineprotectedslot |
Definition at line 201 of file playbackbox.h.
Referenced by ShowDeletePopup().
|
inlineprotectedslot |
Definition at line 202 of file playbackbox.h.
Referenced by ShowDeletePopup().
|
inlineprotectedslot |
Definition at line 203 of file playbackbox.h.
Referenced by ShowDeletePopup().
|
inlineprotectedslot |
Definition at line 205 of file playbackbox.h.
Referenced by ShowDeletePopup().
|
protectedslot |
Definition at line 3500 of file playbackbox.cpp.
Referenced by keyPressEvent(), and ShowActionPopup().
|
protectedslot |
Definition at line 3516 of file playbackbox.cpp.
Referenced by keyPressEvent(), and ShowActionPopup().
|
protectedslot |
Definition at line 3566 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 3589 of file playbackbox.cpp.
Referenced by createStorageMenu().
|
protectedslot |
Definition at line 3607 of file playbackbox.cpp.
Referenced by createStorageMenu().
|
protectedslot |
Definition at line 3625 of file playbackbox.cpp.
Referenced by toggleCategoryView(), toggleLiveTVView(), toggleRecGroupView(), toggleSearchView(), toggleTitleView(), toggleWatchedView(), and toggleWatchListView().
|
inlineprotectedslot |
Definition at line 216 of file playbackbox.h.
Referenced by ChangeView::Create().
|
inlineprotectedslot |
Definition at line 217 of file playbackbox.h.
Referenced by ChangeView::Create().
|
inlineprotectedslot |
Definition at line 218 of file playbackbox.h.
Referenced by ChangeView::Create().
|
inlineprotectedslot |
Definition at line 219 of file playbackbox.h.
Referenced by ChangeView::Create().
|
inlineprotectedslot |
Definition at line 220 of file playbackbox.h.
Referenced by ChangeView::Create().
|
inlineprotectedslot |
Definition at line 221 of file playbackbox.h.
Referenced by ChangeView::Create().
|
inlineprotectedslot |
Definition at line 222 of file playbackbox.h.
Referenced by ChangeView::Create().
|
protectedslot |
Definition at line 4530 of file playbackbox.cpp.
Referenced by checkPassword(), and displayRecGroup().
|
protectedslot |
Definition at line 4825 of file playbackbox.cpp.
Referenced by ShowRecGroupChanger().
|
protectedslot |
Definition at line 4898 of file playbackbox.cpp.
Referenced by ShowPlayGroupChanger().
|
protectedslot |
Definition at line 4758 of file playbackbox.cpp.
Referenced by showMetadataEditor().
|
protectedslot |
Definition at line 4953 of file playbackbox.cpp.
Referenced by showRecGroupPasswordChanger().
|
protectedslot |
Definition at line 3340 of file playbackbox.cpp.
Referenced by doBeginFlagging(), doBeginLookup(), doBeginTranscoding(), doBeginUserJob1(), doBeginUserJob2(), doBeginUserJob3(), and doBeginUserJob4().
|
protectedslot |
Definition at line 3383 of file playbackbox.cpp.
Referenced by doPlaylistBeginFlagging(), doPlaylistBeginLookup(), doPlaylistBeginTranscoding(), doPlaylistBeginUserJob1(), doPlaylistBeginUserJob2(), doPlaylistBeginUserJob3(), and doPlaylistBeginUserJob4().
|
protectedslot |
Definition at line 3404 of file playbackbox.cpp.
Referenced by stopPlaylistFlagging(), stopPlaylistLookup(), stopPlaylistTranscoding(), stopPlaylistUserJob1(), stopPlaylistUserJob2(), stopPlaylistUserJob3(), and stopPlaylistUserJob4().
|
protectedslot |
Definition at line 3373 of file playbackbox.cpp.
|
protectedslot |
Definition at line 3378 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 239 of file playbackbox.h.
Referenced by changeProfileAndTranscode().
|
inlineprotectedslot |
Definition at line 241 of file playbackbox.h.
|
inlineprotectedslot |
Definition at line 242 of file playbackbox.h.
|
inlineprotectedslot |
Definition at line 243 of file playbackbox.h.
|
inlineprotectedslot |
Definition at line 244 of file playbackbox.h.
|
inlineprotectedslot |
Definition at line 245 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 247 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 248 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 249 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 250 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 251 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 252 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 253 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 254 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 255 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 256 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 257 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 258 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 259 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
protectedslot |
Definition at line 3263 of file playbackbox.cpp.
Referenced by createPlaylistMenu(), doPlaylistAllowRerecord(), doPlaylistWatchedSetting(), PlaylistDelete(), setPlayGroup(), and setRecGroup().
|
inlineprotectedslot |
Definition at line 261 of file playbackbox.h.
Referenced by createPlaylistMenu().
|
inlineprotectedslot |
Definition at line 262 of file playbackbox.h.
Referenced by createPlaylistMenu().
Definition at line 3439 of file playbackbox.cpp.
Referenced by PlaylistDeleteForgetHistory(), and PlaylistDeleteKeepHistory().
|
protectedslot |
Definition at line 4706 of file playbackbox.cpp.
Referenced by doPlaylistExpireSetOff(), and doPlaylistExpireSetOn().
|
inlineprotectedslot |
Definition at line 265 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
inlineprotectedslot |
Definition at line 266 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
protectedslot |
Definition at line 4723 of file playbackbox.cpp.
Referenced by doPlaylistWatchedSetOff(), and doPlaylistWatchedSetOn().
|
inlineprotectedslot |
Definition at line 268 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
inlineprotectedslot |
Definition at line 269 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
protectedslot |
Definition at line 3321 of file playbackbox.cpp.
Referenced by createPlaylistStorageMenu().
|
protectedslot |
Definition at line 3635 of file playbackbox.cpp.
Referenced by createPlaylistMenu(), keyPressEvent(), and ShowGroupPopup().
|
protectedslot |
Definition at line 3646 of file playbackbox.cpp.
Referenced by createPlaylistMenu(), keyPressEvent(), RemoveProgram(), ShowActionPopup(), ShowGroupPopup(), and togglePlayListTitle().
|
protectedslot |
Definition at line 2099 of file playbackbox.cpp.
Referenced by doPlayList(), and doPlayListRandom().
|
protectedslot |
Definition at line 3282 of file playbackbox.cpp.
Referenced by createPlaylistMenu().
|
protectedslot |
Definition at line 4375 of file playbackbox.cpp.
Referenced by keyPressEvent(), and ShowGroupPopup().
|
protectedslot |
Definition at line 4388 of file playbackbox.cpp.
Referenced by showViewChanger().
|
protectedslot |
Definition at line 631 of file playbackbox.cpp.
Referenced by displayRecGroup().
|
protectedslot |
Definition at line 641 of file playbackbox.cpp.
Referenced by displayRecGroup().
|
protectedslot |
Definition at line 2488 of file playbackbox.cpp.
Referenced by Create().
|
protectedslot |
Definition at line 2493 of file playbackbox.cpp.
Referenced by Create().
|
protectedslot |
Definition at line 2498 of file playbackbox.cpp.
Referenced by Create().
|
private |
Definition at line 1660 of file playbackbox.cpp.
Referenced by customEvent(), doPlaylistAllowRerecord(), doPlaylistWatchedSetting(), Init(), keyPressEvent(), setGroupFilter(), setRecGroup(), toggleView(), and toggleWatched().
|
private |
Definition at line 1400 of file playbackbox.cpp.
Referenced by UpdateUILists().
|
private |
Definition at line 1371 of file playbackbox.cpp.
Referenced by UpdateUILists().
|
private |
Definition at line 1458 of file playbackbox.cpp.
Referenced by keyPressEvent(), and UpdateUILists().
|
private |
|
private |
Definition at line 2197 of file playbackbox.cpp.
Referenced by PlayFromAnyMark(), PlayFromBeginning(), PlayFromBookmark(), PlayFromLastPlayPos(), and processNetworkControlCommand().
|
private |
Definition at line 2397 of file playbackbox.cpp.
Referenced by customEvent(), and PlayX().
|
overrideprivatevirtual |
Reimplemented from ScheduleCommon.
Definition at line 2289 of file playbackbox.cpp.
Referenced by askDelete(), askStop(), changeProfileAndTranscode(), ClearBookmark(), ClearLastPlayPos(), createJobMenu(), createPlayFromMenu(), createRecordingMenu(), createStorageMenu(), doAllowRerecord(), doJobQueueJob(), popupClosed(), setPlayGroup(), setRecGroup(), ShowAllRecordings(), ShowDeletePopup(), ShowGroupPopup(), ShowMenu(), showMetadataEditor(), ShowPlayGroupChanger(), ShowRecGroupChanger(), ShowRecordedEpisodes(), and StopSelected().
|
private |
Definition at line 3664 of file playbackbox.cpp.
|
private |
|
private |
Definition at line 3689 of file playbackbox.cpp.
Referenced by keyPressEvent().
|
private |
Definition at line 3713 of file playbackbox.cpp.
Referenced by processNetworkControlCommands().
|
private |
Definition at line 3529 of file playbackbox.cpp.
Referenced by createPlaylistJobMenu(), customEvent(), doClearPlaylist(), doJobQueueJob(), doPlaylistAllowRerecord(), doPlaylistExpireSetting(), doPlaylistJobQueueJob(), doPlaylistWatchedSetting(), HandleUpdateItemEvent(), PlaylistDelete(), RemoveProgram(), setPlayGroup(), setRecGroup(), ShowDeletePopup(), ShowPlayGroupChanger(), ShowRecGroupChanger(), stopPlaylistJobQueueJob(), and UpdateUILists().
|
private |
Definition at line 3535 of file playbackbox.cpp.
|
private |
Definition at line 2456 of file playbackbox.cpp.
Referenced by Delete().
|
private |
Definition at line 2503 of file playbackbox.cpp.
Referenced by askDelete(), askStop(), customEvent(), and deleteSelected().
|
staticprivate |
Definition at line 2598 of file playbackbox.cpp.
Referenced by customEvent(), popupClosed(), and ShowMenu().
|
private |
Definition at line 3110 of file playbackbox.cpp.
Referenced by popupClosed(), and ShowMenu().
|
private |
Definition at line 4569 of file playbackbox.cpp.
Referenced by checkPassword(), displayRecGroup(), showRecGroupPasswordChanger(), and UpdateUILists().
|
private |
Definition at line 4574 of file playbackbox.cpp.
Referenced by PlaybackBox().
|
private |
Definition at line 1309 of file playbackbox.cpp.
|
private |
Definition at line 1147 of file playbackbox.cpp.
Referenced by toggleAutoExpire(), togglePreserveEpisode(), toggleWatched(), updateGroupInfo(), and UpdateUIListItem().
|
private |
Definition at line 1314 of file playbackbox.cpp.
Referenced by customEvent(), and UpdateUILists().
|
private |
Definition at line 648 of file playbackbox.cpp.
Referenced by updateRecList().
|
private |
Definition at line 776 of file playbackbox.cpp.
Referenced by ItemLoaded(), and UpdateUIListItem().
|
private |
Definition at line 745 of file playbackbox.cpp.
Referenced by customEvent(), HandleUpdateItemEvent(), and ItemSelected().
|
private |
Definition at line 795 of file playbackbox.cpp.
|
private |
Updates the UI properties for a new preview file.
This first update the image property of the MythUIButtonListItem with the new preview file, then if it is selected and there is a preview image UI item in the theme that it's filename property gets updated as well.
Definition at line 1072 of file playbackbox.cpp.
Referenced by customEvent().
|
private |
Definition at line 4259 of file playbackbox.cpp.
Referenced by customEvent().
|
private |
Definition at line 4336 of file playbackbox.cpp.
Referenced by customEvent().
Definition at line 4342 of file playbackbox.cpp.
Referenced by customEvent().
|
private |
Definition at line 4359 of file playbackbox.cpp.
Referenced by customEvent(), HandleRecordingAddEvent(), HandleUpdateItemEvent(), and Play().
|
overrideprivatevirtual |
Reimplemented from MythScreenType.
Definition at line 2868 of file playbackbox.cpp.
Referenced by keyPressEvent().
|
private |
|
private |
Definition at line 2852 of file playbackbox.cpp.
Referenced by ShowActionPopup(), ShowDeletePopup(), and ShowGroupPopup().
|
private |
|
staticprivate |
Definition at line 3241 of file playbackbox.cpp.
Referenced by createJobMenu(), createPlayFromMenu(), createRecordingMenu(), createStorageMenu(), ShowActionPopup(), ShowDeletePopup(), ShowPlayGroupChanger(), and ShowRecGroupChanger().
|
private |
Definition at line 291 of file playbackbox.cpp.
Referenced by ItemVisible(), and UpdateUIListItem().
|
private |
Definition at line 311 of file playbackbox.cpp.
Referenced by ItemVisible(), and UpdateUIListItem().
|
friend |
Definition at line 66 of file playbackbox.h.
Referenced by updateRecList().
|
friend |
Definition at line 67 of file playbackbox.h.
Referenced by showViewChanger().
|
static |
|
private |
Definition at line 359 of file playbackbox.h.
Referenced by Create(), UpdateUILists(), and UpdateUIRecGroupList().
|
private |
Definition at line 360 of file playbackbox.h.
Referenced by Create(), createPlaylistMenu(), customEvent(), HandleRecordingRemoveEvent(), Init(), ItemLoaded(), keyPressEvent(), saveRecMetadata(), setGroupFilter(), ShowActionPopup(), ShowAllRecordings(), ShowGroupPopup(), ShowMenu(), showRecGroupPasswordChanger(), ShowRecordedEpisodes(), SwitchList(), togglePlayListTitle(), UpdateUIGroupList(), UpdateUIListItem(), and UpdateUILists().
|
private |
Definition at line 361 of file playbackbox.h.
Referenced by Create(), customEvent(), doClearPlaylist(), GetCurrentProgram(), HandlePreviewEvent(), HandleRecordingRemoveEvent(), Init(), keyPressEvent(), Play(), PlayFromAnyMark(), PlayFromBeginning(), PlayFromBookmark(), PlayFromLastPlayPos(), PlaylistDelete(), RemoveProgram(), saveRecMetadata(), setGroupFilter(), ShowAllRecordings(), ShowRecordedEpisodes(), SwitchList(), toggleAutoExpire(), togglePlayListItem(), togglePreserveEpisode(), toggleWatched(), updateRecList(), UpdateUIListItem(), and UpdateUILists().
|
private |
Definition at line 363 of file playbackbox.h.
Referenced by Create(), and updateRecList().
|
private |
Definition at line 365 of file playbackbox.h.
Referenced by Create(), HandlePreviewEvent(), updateGroupInfo(), and UpdateUIListItem().
|
private |
Definition at line 367 of file playbackbox.h.
Referenced by Create(), and UpdateUIListItem().
|
private |
Definition at line 368 of file playbackbox.h.
Referenced by Create(), and UpdateUIListItem().
|
private |
Definition at line 370 of file playbackbox.h.
Referenced by PlaybackBox(), and UpdateUIListItem().
|
staticconstexprprivate |
Definition at line 371 of file playbackbox.h.
Referenced by Play(), PlaybackBox(), UpdateUIListItem(), and ~PlaybackBox().
|
private |
Definition at line 372 of file playbackbox.h.
Referenced by bannerLoad(), coverartLoad(), Create(), customEvent(), fanartLoad(), Play(), PlaybackBox(), updateGroupInfo(), UpdateUIListItem(), and ~PlaybackBox().
|
private |
Definition at line 373 of file playbackbox.h.
Referenced by Create(), customEvent(), Play(), PlaybackBox(), updateGroupInfo(), UpdateUIListItem(), and ~PlaybackBox().
|
private |
Definition at line 375 of file playbackbox.h.
Referenced by updateGroupInfo(), and UpdateUIListItem().
titleView controls showing titles in group list
Definition at line 379 of file playbackbox.h.
useCategories controls showing categories in group list
Definition at line 381 of file playbackbox.h.
useRecGroups controls showing of recording groups in group list
Definition at line 383 of file playbackbox.h.
use the Watch List as the initial view
Definition at line 385 of file playbackbox.h.
Referenced by PlaybackBox(), and UpdateUILists().
exclude recording not marked for auto-expire from the Watch List
Definition at line 387 of file playbackbox.h.
Referenced by PlaybackBox(), and UpdateUILists().
|
private |
add 1 to the Watch List scord up to this many days
Definition at line 389 of file playbackbox.h.
Referenced by PlaybackBox().
|
private |
adjust exclusion of a title from the Watch List after a delete
Definition at line 391 of file playbackbox.h.
Referenced by PlaybackBox().
|
private |
allOrder controls the ordering of the "All Programs" list
Definition at line 393 of file playbackbox.h.
Referenced by PlaybackBox(), and UpdateUILists().
|
private |
listOrder controls the ordering of the recordings in the list
Definition at line 395 of file playbackbox.h.
Referenced by PlaybackBox(), and UpdateUILists().
|
private |
Definition at line 398 of file playbackbox.h.
Referenced by PlaybackBox(), setGroupFilter(), updateGroupInfo(), UpdateUIGroupList(), and UpdateUIListItem().
|
private |
Definition at line 399 of file playbackbox.h.
Referenced by Init(), PlaybackBox(), setGroupFilter(), setInitialRecGroup(), SetRecGroupPassword(), showGroupFilter(), ShowGroupPopup(), showRecGroupPasswordChanger(), UpdateUIGroupList(), and UpdateUILists().
|
private |
Definition at line 400 of file playbackbox.h.
Referenced by checkPassword(), displayRecGroup(), and UpdateUILists().
|
private |
Definition at line 401 of file playbackbox.h.
Referenced by checkPassword(), and displayRecGroup().
|
private |
Definition at line 402 of file playbackbox.h.
Referenced by UpdateUILists().
|
private |
Definition at line 403 of file playbackbox.h.
Referenced by keyPressEvent(), ShowActionPopup(), and UpdateUILists().
|
private |
Definition at line 404 of file playbackbox.h.
Referenced by createPlaylistMenu(), keyPressEvent(), PlaybackBox(), saveViewChanges(), showGroupFilter(), showViewChanger(), toggleView(), toggleWatched(), and UpdateUILists().
|
private |
Definition at line 408 of file playbackbox.h.
Referenced by customEvent(), DisplayPopupMenu(), popupClosed(), and ShowMenu().
|
private |
Definition at line 409 of file playbackbox.h.
Referenced by DisplayPopupMenu(), ShowActionPopup(), ShowDeletePopup(), and ShowGroupPopup().
|
private |
Definition at line 410 of file playbackbox.h.
Referenced by DisplayPopupMenu(), PlaybackBox(), showGroupFilter(), showIconHelp(), ShowPlayGroupChanger(), ShowRecGroupChanger(), showRecGroupPasswordChanger(), and showViewChanger().
Definition at line 412 of file playbackbox.h.
Referenced by popupClosed().
|
private |
Definition at line 416 of file playbackbox.h.
Referenced by PlaybackBox(), setGroupFilter(), showGroupFilter(), ShowGroupPopup(), and UpdateUILists().
|
private |
Definition at line 417 of file playbackbox.h.
Referenced by fillRecGroupPasswordCache(), getRecGroupPassword(), and SetRecGroupPassword().
|
private |
list of pages
Definition at line 421 of file playbackbox.h.
Referenced by Init(), keyPressEvent(), UpdateUIGroupList(), and UpdateUILists().
|
private |
lists of programs by page
Definition at line 422 of file playbackbox.h.
Referenced by FindProgramInUILists(), HandleRecordingRemoveEvent(), togglePlayListTitle(), updateGroupInfo(), updateRecList(), UpdateUIGroupList(), and UpdateUILists().
|
private |
total number of recordings in DB
Definition at line 423 of file playbackbox.h.
Referenced by Init(), and UpdateUILists().
Definition at line 424 of file playbackbox.h.
Referenced by updateRecList(), and UpdateUILists().
|
private |
Definition at line 426 of file playbackbox.h.
Referenced by keyPressEvent(), SelectNextRecGroup(), UpdateUILists(), and UpdateUIRecGroupList().
|
mutableprivate |
Definition at line 427 of file playbackbox.h.
Referenced by keyPressEvent(), SelectNextRecGroup(), and UpdateUILists().
|
private |
Definition at line 428 of file playbackbox.h.
Referenced by keyPressEvent(), PlaybackBox(), SelectNextRecGroup(), UpdateUILists(), and UpdateUIRecGroupList().
|
private |
Recording[s] currently selected for deletion.
Definition at line 432 of file playbackbox.h.
Referenced by askDelete(), askStop(), customEvent(), Delete(), deleteSelected(), ShowActionPopup(), ShowDeletePopup(), and Undelete().
|
private |
Group currently selected.
Definition at line 434 of file playbackbox.h.
Referenced by customEvent(), updateRecList(), and UpdateUIGroupList().
|
private |
list of selected items "play list"
Definition at line 437 of file playbackbox.h.
Referenced by createPlaylistJobMenu(), createPlaylistMenu(), createPlaylistStorageMenu(), doClearPlaylist(), doPlaylistAllowRerecord(), doPlaylistExpireSetting(), doPlaylistJobQueueJob(), doPlaylistWatchedSetting(), keyPressEvent(), PlaylistDelete(), playSelectedPlaylist(), RemoveProgram(), SetItemIcons(), setPlayGroup(), setRecGroup(), ShowActionPopup(), ShowGroupPopup(), ShowPlayGroupChanger(), ShowRecGroupChanger(), stopPlaylistJobQueueJob(), togglePlayListItem(), and UpdateUILists().
Definition at line 438 of file playbackbox.h.
Referenced by setPlayGroup(), setRecGroup(), ShowPlayGroupChanger(), and ShowRecGroupChanger().
|
private |
list of items being played.
Definition at line 439 of file playbackbox.h.
Referenced by customEvent(), Play(), and playSelectedPlaylist().
|
private |
Definition at line 441 of file playbackbox.h.
Referenced by Create(), customEvent(), HandlePreviewEvent(), HandleRecordingAddEvent(), HandleRecordingRemoveEvent(), Load(), ScheduleUpdateUIList(), updateRecList(), and UpdateUILists().
playingSomething is set to true iff a full screen recording is playing
Definition at line 444 of file playbackbox.h.
Referenced by customEvent(), Play(), processNetworkControlCommand(), and updateRecList().
Does the recording list need to be refilled.
Definition at line 447 of file playbackbox.h.
Referenced by customEvent(), Play(), updateRecList(), and UpdateUIGroupList().
Definition at line 450 of file playbackbox.h.
|
mutableprivate |
Definition at line 453 of file playbackbox.h.
Referenced by customEvent(), keyPressEvent(), and processNetworkControlCommands().
|
private |
Definition at line 454 of file playbackbox.h.
Referenced by customEvent(), keyPressEvent(), and processNetworkControlCommands().
|
private |
Definition at line 457 of file playbackbox.h.
Referenced by Create(), Init(), ItemLoaded(), Play(), PlaybackBox(), PlayX(), ShowActionPopup(), ShowGroupPopup(), UpdateUIListItem(), and ~PlaybackBox().
|
private |
Definition at line 458 of file playbackbox.h.
Referenced by PlayX(), and ~PlaybackBox().
|
private |
Main helper thread.
Definition at line 460 of file playbackbox.h.
Referenced by customEvent(), HandleRecordingRemoveEvent(), ItemVisible(), Play(), PlaylistDelete(), popupClosed(), RemoveProgram(), ShowMenu(), StopSelected(), Undelete(), updateGroupInfo(), UpdateUIListItem(), and UpdateUsageUI().
|
private |
Outstanding preview image requests.
Definition at line 462 of file playbackbox.h.
Referenced by customEvent(), HandlePreviewEvent(), ItemVisible(), and UpdateUIListItem().
Definition at line 464 of file playbackbox.h.
Referenced by groupSelectorClosed(), passwordClosed(), and setGroupFilter().
Definition at line 465 of file playbackbox.h.
Referenced by groupSelectorClosed(), passwordClosed(), setGroupFilter(), and showGroupFilter().
Definition at line 466 of file playbackbox.h.
Referenced by displayRecGroup(), groupSelectorClosed(), and showGroupFilter().
Definition at line 467 of file playbackbox.h.
Referenced by checkPassword(), displayRecGroup(), and passwordClosed().
|
private |
Referenced by extract_commflag_state(), and extract_job_state().