|
MythTV master
|
#include <mythfrontend/playbackbox.h>
Classes | |
| class | PbbJobQueue |
Public Types | |
| enum | ViewType : std::uint8_t { TitlesOnly = 0 , TitlesCategories = 1 , TitlesCategoriesRecGroups = 2 , TitlesRecGroups = 3 , Categories = 4 , CategoriesRecGroups = 5 , RecGroups = 6 , ViewTypes = 7 } |
| enum | ViewTitleSort : std::uint8_t { TitleSortAlphabetical = 0 , TitleSortRecPriority = 1 , TitleSortMethods = 2 } |
| enum | ViewMask : std::uint16_t { 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 : std::uint8_t { kDeleteRecording , kStopRecording , kForceDeleteRecording } |
| enum | DeleteFlags : std::uint8_t { kNoDelFlags = 0x00 , kForgetHistory = 0x01 , kForce = 0x02 , kIgnore = 0x04 , kAllRemaining = 0x08 } |
| enum | killStateType : std::uint8_t { kNvpToPlay , kNvpToStop , kDone } |
Public Slots | |
| void | displayRecGroup (const QString &newRecGroup="") |
| void | groupSelectorClosed (void) |
Public Slots inherited from ScheduleCommon | |
| virtual void | ShowDetails (void) const |
| Show the Program Details screen. More... | |
Public Slots inherited from MythScreenType | |
| virtual void | Close () |
Public Slots inherited from MythUIType | |
| void | LoseFocus (void) |
| bool | TakeFocus (void) |
| void | Activate (void) |
| 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) |
Public Member Functions inherited from MythScreenType | |
| MythScreenType (MythScreenStack *parent, const QString &name, bool fullscreen=true) | |
| ~MythScreenType () override | |
| virtual bool | Create (void) |
| bool | keyPressEvent (QKeyEvent *event) override |
| Key event handler. More... | |
| 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... | |
| virtual void | ShowMenu (void) |
| 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 |
Public Member Functions inherited from MythUIComposite | |
| MythUIComposite (QObject *parent, const QString &name) | |
| ~MythUIComposite () override=default | |
| virtual void | SetTextFromMap (const InfoMap &infoMap) |
| virtual void | ResetMap (const InfoMap &infoMap) |
Public Member Functions inherited from MythUIType | |
| 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) |
| void | SetFocusedName (const QString &widgetname) |
| QString | GetFocusedName (void) const |
| 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 bool | keyPressEvent (QKeyEvent *event) |
| Key event handler. More... | |
| virtual bool | inputMethodEvent (QInputMethodEvent *event) |
| Input Method event handler. More... | |
| virtual bool | gestureEvent (MythGestureEvent *event) |
| Mouse click/movement handler, receives mouse gesture events from the QCoreApplication event loop. More... | |
| 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... | |
| virtual MythPainter * | GetPainter (void) |
| 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 Public Member Functions inherited from XMLParseBase | |
| 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 |
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_groupAlphaList {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_currentLetter |
| QMap< QString, QString > | m_groupAlphabet |
| 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} |
| bool | m_alwaysShowWatchedProgress {false} |
| class PlaybackBox::PbbJobQueue | m_jobQueue |
Static Private Attributes | |
| static constexpr int | kNumArtImages = 3 |
Friends | |
| class | PlaybackBoxListItem |
| class | ChangeView |
Additional Inherited Members | |
Signals inherited from MythScreenType | |
| void | Exiting () |
Signals inherited from MythUIType | |
| void | RequestUpdate (void) |
| void | RequestRegionUpdate (const QRect &) |
| void | TakingFocus (void) |
| void | LosingFocus (void) |
| void | VisibilityChanged (bool Visible) |
| void | Showing (void) |
| void | Hiding (void) |
| void | Enabling (void) |
| void | Disabling (void) |
| void | FinishedMoving (void) |
| void | FinishedFading (void) |
| void | DependChanged (bool isDefault) |
Protected Member Functions inherited from ScheduleCommon | |
| ScheduleCommon (MythScreenStack *parent, const QString &name) | |
| ~ScheduleCommon () override=default | |
| virtual void | AddGroupMenuItems (MythMenu *sortGroupMenu) |
| void | customEvent (QEvent *event) override |
| virtual ProgramInfo * | GetCurrentProgram (void) const |
Protected Member Functions inherited from MythScreenType | |
| 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... | |
| virtual void | Load (void) |
| Load data which will ultimately be displayed on-screen or used to determine what appears on-screen (See Warning) More... | |
| virtual void | Init (void) |
| Used after calling Load() to assign data to widgets and other UI initilisation which is prohibited in Load() 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) |
Protected Member Functions inherited from MythUIType | |
| ~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 bool | ParseElement (const QString &filename, QDomElement &element, bool showWarnings) |
| Parse the xml definition of this widget setting the state of the object accordingly. More... | |
| virtual void | CopyFrom (MythUIType *base) |
| Copy this widgets state from another. More... | |
| virtual void | CreateCopy (MythUIType *parent) |
| Copy the state of this widget to the one given, it must be of the same type. More... | |
| virtual void | Finalize (void) |
| Perform any post-xml parsing initialisation tasks. More... | |
Static Protected Member Functions inherited from ScheduleCommon | |
| 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 ProgGroupBy::Type | GetProgramListGroupBy (void) |
Static Protected Member Functions inherited from MythUIType | |
| static int | NormX (int width) |
| static int | NormY (int height) |
Protected Attributes inherited from MythScreenType | |
| 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 |
Protected Attributes inherited from MythUIType | |
| 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 |
| QString | m_focusedName |
| 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 61 of file playbackbox.h.
|
private |
Definition at line 419 of file playbackbox.h.
| enum PlaybackBox::DeleteFlags : std::uint8_t |
| Enumerator | |
|---|---|
| kNoDelFlags | |
| kForgetHistory | |
| kForce | |
| kIgnore | |
| kAllRemaining | |
Definition at line 106 of file playbackbox.h.
| enum PlaybackBox::DeletePopupType : std::uint8_t |
| Enumerator | |
|---|---|
| kDeleteRecording | |
| kStopRecording | |
| kForceDeleteRecording | |
Definition at line 99 of file playbackbox.h.
| enum PlaybackBox::killStateType : std::uint8_t |
| Enumerator | |
|---|---|
| kNvpToPlay | |
| kNvpToStop | |
| kDone | |
Definition at line 115 of file playbackbox.h.
| Enumerator | |
|---|---|
| VIEW_NONE | |
| VIEW_TITLES | |
| VIEW_CATEGORIES | |
| VIEW_RECGROUPS | |
| VIEW_WATCHLIST | |
| VIEW_SEARCHES | |
| VIEW_LIVETVGRP | |
| VIEW_WATCHED | |
Definition at line 87 of file playbackbox.h.
| enum PlaybackBox::ViewTitleSort : std::uint8_t |
| Enumerator | |
|---|---|
| TitleSortAlphabetical | |
| TitleSortRecPriority | |
| TitleSortMethods | |
Definition at line 81 of file playbackbox.h.
| enum PlaybackBox::ViewType : std::uint8_t |
| Enumerator | |
|---|---|
| TitlesOnly | |
| TitlesCategories | |
| TitlesCategoriesRecGroups | |
| TitlesRecGroups | |
| Categories | |
| CategoriesRecGroups | |
| RecGroups | |
| ViewTypes | |
Definition at line 69 of file playbackbox.h.
| PlaybackBox::PlaybackBox | ( | MythScreenStack * | parent, |
| const QString & | name, | ||
| TV * | player = nullptr, |
||
| bool | showTV = false |
||
| ) |
Definition at line 386 of file playbackbox.cpp.
Referenced by RunPlaybackBox().
|
override |
Definition at line 477 of file playbackbox.cpp.
|
protectedslot |
Definition at line 3506 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 3370 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 2561 of file playbackbox.cpp.
Referenced by Create().
|
protectedslot |
Definition at line 3171 of file playbackbox.cpp.
Referenced by customEvent().
|
protectedslot |
Definition at line 643 of file playbackbox.cpp.
Referenced by displayRecGroup().
|
protectedslot |
Definition at line 2285 of file playbackbox.cpp.
Referenced by createPlayFromMenu().
|
protectedslot |
Definition at line 2292 of file playbackbox.cpp.
Referenced by createPlayFromMenu().
|
protectedslot |
Definition at line 2566 of file playbackbox.cpp.
Referenced by Create().
|
overridevirtual |
Reimplemented from MythScreenType.
Definition at line 496 of file playbackbox.cpp.
|
protectedslot |
Definition at line 3069 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 2975 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 2781 of file playbackbox.cpp.
Referenced by createPlaylistMenu().
|
protectedslot |
Definition at line 2724 of file playbackbox.cpp.
Referenced by ShowActionPopup(), and ShowGroupPopup().
|
protectedslot |
Definition at line 2763 of file playbackbox.cpp.
Referenced by createPlaylistMenu().
|
private |
|
private |
|
staticprivate |
Definition at line 3318 of file playbackbox.cpp.
Referenced by createJobMenu(), createPlayFromMenu(), createRecordingMenu(), createStorageMenu(), ShowActionPopup(), ShowDeletePopup(), ShowPlayGroupChanger(), and ShowRecGroupChanger().
|
protectedslot |
Definition at line 3024 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 3003 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
protectedslot |
Definition at line 3129 of file playbackbox.cpp.
Referenced by createJobMenu(), and doCreateTranscodingProfilesMenu().
|
override |
Definition at line 3993 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 198 of file playbackbox.h.
Referenced by Delete(), DeleteForce(), DeleteForceAllRemaining(), DeleteForgetHistory(), DeleteIgnore(), DeleteIgnoreAllRemaining(), ShowActionPopup(), and ShowDeletePopup().
|
protectedslot |
Definition at line 3555 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 200 of file playbackbox.h.
Referenced by ShowDeletePopup().
|
inlineprotectedslot |
Definition at line 202 of file playbackbox.h.
Referenced by ShowDeletePopup().
|
inlineprotectedslot |
Definition at line 199 of file playbackbox.h.
Referenced by ShowDeletePopup().
|
inlineprotectedslot |
Definition at line 201 of file playbackbox.h.
Referenced by ShowDeletePopup().
|
inlineprotectedslot |
Definition at line 204 of file playbackbox.h.
Referenced by ShowDeletePopup().
|
protectedslot |
Definition at line 2306 of file playbackbox.cpp.
Referenced by keyPressEvent().
|
private |
Definition at line 2924 of file playbackbox.cpp.
Referenced by ShowActionPopup(), ShowDeletePopup(), and ShowGroupPopup().
|
slot |
Definition at line 611 of file playbackbox.cpp.
Referenced by Init(), keyPressEvent(), SelectNextRecGroup(), showGroupFilter(), and updateRecGroup().
|
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 3386 of file playbackbox.cpp.
Referenced by createRecordingMenu().
|
protectedslot |
Definition at line 3450 of file playbackbox.cpp.
|
protectedslot |
Definition at line 3455 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 238 of file playbackbox.h.
Referenced by changeProfileAndTranscode().
|
inlineprotectedslot |
Definition at line 240 of file playbackbox.h.
|
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.
|
protectedslot |
Definition at line 3340 of file playbackbox.cpp.
Referenced by createPlaylistMenu(), doPlaylistAllowRerecord(), doPlaylistWatchedSetting(), PlaylistDelete(), setPlayGroup(), and setRecGroup().
|
inlineprotectedslot |
Definition at line 172 of file playbackbox.h.
|
protectedslot |
Definition at line 3417 of file playbackbox.cpp.
Referenced by doBeginFlagging(), doBeginLookup(), doBeginTranscoding(), doBeginUserJob1(), doBeginUserJob2(), doBeginUserJob3(), and doBeginUserJob4().
|
protectedslot |
Definition at line 3359 of file playbackbox.cpp.
Referenced by createPlaylistMenu().
|
protectedslot |
Definition at line 3398 of file playbackbox.cpp.
Referenced by createPlaylistStorageMenu().
|
inlineprotectedslot |
Definition at line 247 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 249 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 244 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 251 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 253 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 255 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 257 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 265 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
inlineprotectedslot |
Definition at line 264 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
protectedslot |
Definition at line 4807 of file playbackbox.cpp.
Referenced by doPlaylistExpireSetOff(), and doPlaylistExpireSetOn().
|
protectedslot |
Definition at line 3460 of file playbackbox.cpp.
Referenced by doPlaylistBeginFlagging(), doPlaylistBeginLookup(), doPlaylistBeginTranscoding(), doPlaylistBeginUserJob1(), doPlaylistBeginUserJob2(), doPlaylistBeginUserJob3(), and doPlaylistBeginUserJob4().
|
protectedslot |
Definition at line 3365 of file playbackbox.cpp.
Referenced by createPlaylistMenu().
|
inlineprotectedslot |
Definition at line 268 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
inlineprotectedslot |
Definition at line 267 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
protectedslot |
Definition at line 4824 of file playbackbox.cpp.
Referenced by doPlaylistWatchedSetOff(), and doPlaylistWatchedSetOn().
|
private |
Definition at line 312 of file playbackbox.cpp.
Referenced by ItemVisible(), and UpdateUIListItem().
|
private |
Definition at line 292 of file playbackbox.cpp.
Referenced by ItemVisible(), and UpdateUIListItem().
|
protectedslot |
Definition at line 2556 of file playbackbox.cpp.
Referenced by Create().
|
private |
Definition at line 4667 of file playbackbox.cpp.
Referenced by PlaybackBox().
|
private |
Definition at line 3606 of file playbackbox.cpp.
Referenced by createPlaylistJobMenu(), customEvent(), doClearPlaylist(), doJobQueueJob(), doPlaylistAllowRerecord(), doPlaylistExpireSetting(), doPlaylistJobQueueJob(), doPlaylistWatchedSetting(), FindProgramInUILists(), HandleUpdateItemEvent(), PlaylistDelete(), RemoveProgram(), setPlayGroup(), setRecGroup(), ShowDeletePopup(), ShowPlayGroupChanger(), ShowRecGroupChanger(), stopPlaylistJobQueueJob(), and UpdateUILists().
|
private |
Definition at line 3612 of file playbackbox.cpp.
|
overrideprivatevirtual |
Reimplemented from ScheduleCommon.
Definition at line 2355 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(), StopSelected(), and updateRecList().
|
private |
Definition at line 4662 of file playbackbox.cpp.
Referenced by checkPassword(), displayRecGroup(), showRecGroupPasswordChanger(), and UpdateUILists().
|
slot |
Definition at line 4612 of file playbackbox.cpp.
Referenced by showGroupFilter().
|
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 1085 of file playbackbox.cpp.
Referenced by customEvent().
|
private |
Definition at line 4423 of file playbackbox.cpp.
Referenced by customEvent().
|
private |
Definition at line 4346 of file playbackbox.cpp.
Referenced by customEvent().
Definition at line 4429 of file playbackbox.cpp.
Referenced by customEvent().
|
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 575 of file playbackbox.cpp.
|
private |
Definition at line 1321 of file playbackbox.cpp.
|
protectedslot |
Definition at line 930 of file playbackbox.cpp.
Referenced by Create(), and ItemVisible().
|
inlineprotectedslot |
Definition at line 144 of file playbackbox.h.
Referenced by Create().
|
protectedslot |
Definition at line 1042 of file playbackbox.cpp.
Referenced by Create().
|
overridevirtual |
Key event handler.
| event | Keypress event |
Reimplemented from MythScreenType.
Definition at line 3852 of file playbackbox.cpp.
Referenced by keyPressEvent().
|
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 569 of file playbackbox.cpp.
|
protectedslot |
Definition at line 653 of file playbackbox.cpp.
Referenced by displayRecGroup().
|
private |
Definition at line 2465 of file playbackbox.cpp.
Referenced by customEvent(), and PlayX().
|
inlineprotectedslot |
Definition at line 151 of file playbackbox.h.
Referenced by Create(), keyPressEvent(), PlayFromAnyMark(), selected(), and ShowActionPopup().
|
protectedslot |
Definition at line 2187 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 155 of file playbackbox.h.
Referenced by createPlayFromMenu(), and PlayFromBeginning().
|
protectedslot |
Definition at line 2225 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 153 of file playbackbox.h.
Referenced by createPlayFromMenu(), and PlayFromBookmark().
|
protectedslot |
Definition at line 2206 of file playbackbox.cpp.
|
inlineprotectedslot |
Definition at line 157 of file playbackbox.h.
Referenced by createPlayFromMenu(), and PlayFromLastPlayPos().
|
protectedslot |
Definition at line 2244 of file playbackbox.cpp.
Definition at line 3516 of file playbackbox.cpp.
Referenced by PlaylistDeleteForgetHistory(), and PlaylistDeleteKeepHistory().
|
inlineprotectedslot |
Definition at line 260 of file playbackbox.h.
Referenced by createPlaylistMenu().
|
inlineprotectedslot |
Definition at line 261 of file playbackbox.h.
Referenced by createPlaylistMenu().
|
protectedslot |
Definition at line 2165 of file playbackbox.cpp.
Referenced by doPlayList(), and doPlayListRandom().
|
private |
Definition at line 2263 of file playbackbox.cpp.
Referenced by PlayFromAnyMark(), PlayFromBeginning(), PlayFromBookmark(), PlayFromLastPlayPos(), and processNetworkControlCommand().
|
protectedslot |
Definition at line 2380 of file playbackbox.cpp.
Referenced by DisplayPopupMenu().
|
private |
Definition at line 3790 of file playbackbox.cpp.
Referenced by processNetworkControlCommands().
|
private |
Definition at line 3766 of file playbackbox.cpp.
Referenced by keyPressEvent().
|
private |
|
private |
Definition at line 2524 of file playbackbox.cpp.
Referenced by Delete().
|
static |
Definition at line 372 of file playbackbox.cpp.
Referenced by SetFuncPtrs().
|
protectedslot |
Definition at line 4861 of file playbackbox.cpp.
Referenced by showMetadataEditor().
|
protectedslot |
Definition at line 4477 of file playbackbox.cpp.
Referenced by showViewChanger().
|
private |
Definition at line 4446 of file playbackbox.cpp.
Referenced by customEvent(), HandleRecordingAddEvent(), HandleUpdateItemEvent(), and Play().
|
protectedslot |
Definition at line 2372 of file playbackbox.cpp.
|
private |
Definition at line 1484 of file playbackbox.cpp.
Referenced by keyPressEvent(), and UpdateUILists().
|
protectedslot |
Definition at line 1569 of file playbackbox.cpp.
Referenced by Create().
|
protectedslot |
Definition at line 4623 of file playbackbox.cpp.
Referenced by checkPassword(), and displayRecGroup().
|
inline |
Definition at line 134 of file playbackbox.h.
|
private |
Definition at line 788 of file playbackbox.cpp.
Referenced by ItemLoaded(), and UpdateUIListItem().
|
protectedslot |
Definition at line 5001 of file playbackbox.cpp.
Referenced by ShowPlayGroupChanger().
|
protectedslot |
Definition at line 4928 of file playbackbox.cpp.
Referenced by setRecGroup(), and ShowRecGroupChanger().
|
protectedslot |
Definition at line 5058 of file playbackbox.cpp.
Referenced by showRecGroupPasswordChanger().
|
private |
Definition at line 3186 of file playbackbox.cpp.
Referenced by popupClosed(), and ShowMenu().
|
protectedslot |
Definition at line 3593 of file playbackbox.cpp.
Referenced by keyPressEvent(), and ShowActionPopup().
|
staticprivate |
Definition at line 2668 of file playbackbox.cpp.
Referenced by customEvent(), popupClosed(), and ShowMenu().
|
private |
Definition at line 2571 of file playbackbox.cpp.
Referenced by askDelete(), askStop(), customEvent(), and deleteSelected().
|
protectedslot |
Definition at line 4486 of file playbackbox.cpp.
Referenced by Init(), keyPressEvent(), passwordClosed(), and ShowGroupPopup().
|
protectedslot |
Definition at line 2424 of file playbackbox.cpp.
Referenced by popupClosed(), and ShowMenu().
|
protectedslot |
Definition at line 4452 of file playbackbox.cpp.
Referenced by keyPressEvent(), and ShowGroupPopup().
|
overrideprivatevirtual |
Reimplemented from MythScreenType.
Definition at line 2942 of file playbackbox.cpp.
Referenced by keyPressEvent().
|
protectedslot |
Definition at line 4841 of file playbackbox.cpp.
Referenced by createRecordingMenu().
Used to change the play group of a program or playlist.
Definition at line 4761 of file playbackbox.cpp.
Referenced by ShowPlayGroupChangerNoPlaylist(), and ShowPlayGroupChangerUsePlaylist().
|
inlineprotectedslot |
Definition at line 183 of file playbackbox.h.
Referenced by createStorageMenu().
|
inlineprotectedslot |
Definition at line 182 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
Used to change the recording group of a program or playlist.
Definition at line 4696 of file playbackbox.cpp.
Referenced by ShowRecGroupChangerNoPlaylist(), and ShowRecGroupChangerUsePlaylist().
|
inlineprotectedslot |
Definition at line 181 of file playbackbox.h.
Referenced by createStorageMenu().
|
inlineprotectedslot |
Definition at line 180 of file playbackbox.h.
Referenced by createPlaylistStorageMenu().
|
protectedslot |
Definition at line 5035 of file playbackbox.cpp.
Referenced by ShowGroupPopup().
|
protectedslot |
Definition at line 3577 of file playbackbox.cpp.
Referenced by keyPressEvent(), and ShowActionPopup().
|
protectedslot |
Definition at line 4462 of file playbackbox.cpp.
Referenced by keyPressEvent(), and ShowGroupPopup().
|
inlineprotectedslot |
Definition at line 248 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
protectedslot |
Definition at line 3481 of file playbackbox.cpp.
Referenced by stopPlaylistFlagging(), stopPlaylistLookup(), stopPlaylistTranscoding(), stopPlaylistUserJob1(), stopPlaylistUserJob2(), stopPlaylistUserJob3(), and stopPlaylistUserJob4().
|
inlineprotectedslot |
Definition at line 250 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 246 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 252 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 254 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 256 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
inlineprotectedslot |
Definition at line 258 of file playbackbox.h.
Referenced by createPlaylistJobMenu().
|
protectedslot |
Definition at line 2299 of file playbackbox.cpp.
Referenced by ShowDeletePopup().
|
protectedslot |
Definition at line 602 of file playbackbox.cpp.
Referenced by Create().
|
protectedslot |
Definition at line 3666 of file playbackbox.cpp.
Referenced by createStorageMenu().
|
inlineprotectedslot |
Definition at line 216 of file playbackbox.h.
Referenced by ChangeView::Create().
|
inlineprotectedslot |
Definition at line 220 of file playbackbox.h.
Referenced by ChangeView::Create().
|
private |
Definition at line 3741 of file playbackbox.cpp.
|
protectedslot |
Definition at line 3723 of file playbackbox.cpp.
Referenced by createPlaylistMenu(), keyPressEvent(), RemoveProgram(), ShowActionPopup(), ShowGroupPopup(), togglePlayListItem(), and togglePlayListTitle().
|
protectedslot |
Definition at line 3712 of file playbackbox.cpp.
Referenced by createPlaylistMenu(), keyPressEvent(), and ShowGroupPopup().
|
protectedslot |
Definition at line 3684 of file playbackbox.cpp.
Referenced by createStorageMenu().
|
inlineprotectedslot |
Definition at line 217 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 215 of file playbackbox.h.
Referenced by ChangeView::Create().
|
protectedslot |
Definition at line 3702 of file playbackbox.cpp.
Referenced by toggleCategoryView(), toggleLiveTVView(), toggleRecGroupView(), toggleSearchView(), toggleTitleView(), toggleWatchedView(), and toggleWatchListView().
|
protectedslot |
Definition at line 3643 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
inlineprotectedslot |
Definition at line 221 of file playbackbox.h.
Referenced by ChangeView::Create().
|
inlineprotectedslot |
Definition at line 218 of file playbackbox.h.
Referenced by ChangeView::Create().
|
protectedslot |
Definition at line 3548 of file playbackbox.cpp.
Referenced by ShowActionPopup().
|
private |
Definition at line 660 of file playbackbox.cpp.
Referenced by updateRecList().
|
private |
Definition at line 1160 of file playbackbox.cpp.
Referenced by toggleAutoExpire(), togglePreserveEpisode(), toggleWatched(), updateGroupInfo(), and UpdateUIListItem().
|
private |
|
protectedslot |
Definition at line 1478 of file playbackbox.cpp.
Referenced by Create().
|
protectedslot |
Definition at line 1500 of file playbackbox.cpp.
Referenced by Create(), and UpdateUIGroupList().
|
private |
Definition at line 1412 of file playbackbox.cpp.
Referenced by UpdateUILists().
|
private |
Definition at line 807 of file playbackbox.cpp.
|
private |
Definition at line 757 of file playbackbox.cpp.
Referenced by customEvent(), HandleUpdateItemEvent(), ItemSelected(), and UpdateUIListItem().
|
private |
Definition at line 1715 of file playbackbox.cpp.
Referenced by customEvent(), doPlaylistAllowRerecord(), doPlaylistWatchedSetting(), Init(), keyPressEvent(), setGroupFilter(), setRecGroup(), toggleView(), and toggleWatched().
|
private |
Definition at line 1383 of file playbackbox.cpp.
Referenced by UpdateUILists().
|
private |
Definition at line 1326 of file playbackbox.cpp.
Referenced by customEvent(), and UpdateUILists().
|
friend |
Definition at line 65 of file playbackbox.h.
Referenced by showViewChanger().
|
friend |
Definition at line 64 of file playbackbox.h.
Referenced by updateRecList().
|
static |
Definition at line 122 of file playbackbox.h.
Referenced by createJobMenu().
|
staticconstexprprivate |
Definition at line 371 of file playbackbox.h.
Referenced by Play(), PlaybackBox(), UpdateUIListItem(), and ~PlaybackBox().
|
private |
allOrder controls the ordering of the "All Programs" list
Definition at line 393 of file playbackbox.h.
Referenced by PlaybackBox(), and UpdateUILists().
Definition at line 473 of file playbackbox.h.
Referenced by ItemVisible(), and PlaybackBox().
|
private |
Definition at line 370 of file playbackbox.h.
Referenced by PlaybackBox(), and UpdateUIListItem().
|
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 404 of file playbackbox.h.
Referenced by checkPassword(), displayRecGroup(), and UpdateUILists().
|
private |
Group currently selected.
Definition at line 438 of file playbackbox.h.
Referenced by customEvent(), updateRecList(), and UpdateUIGroupList().
|
private |
Definition at line 398 of file playbackbox.h.
Referenced by selectUIGroupsAlphabet(), and updateRecList().
|
private |
Definition at line 375 of file playbackbox.h.
Referenced by updateGroupInfo(), and UpdateUIListItem().
|
private |
Recording[s] currently selected for deletion.
Definition at line 436 of file playbackbox.h.
Referenced by askDelete(), askStop(), customEvent(), Delete(), deleteSelected(), ShowActionPopup(), ShowDeletePopup(), and Undelete().
Definition at line 416 of file playbackbox.h.
Referenced by popupClosed().
Definition at line 468 of file playbackbox.h.
Referenced by groupSelectorClosed(), passwordClosed(), and setGroupFilter().
|
private |
Definition at line 399 of file playbackbox.h.
Referenced by selectUIGroupsAlphabet(), UpdateUIGroupList(), and UpdateUILists().
|
private |
Definition at line 359 of file playbackbox.h.
Referenced by Create(), SwitchList(), updateRecList(), and UpdateUIGroupList().
|
private |
Definition at line 402 of file playbackbox.h.
Referenced by PlaybackBox(), setGroupFilter(), updateGroupInfo(), UpdateUIGroupList(), and UpdateUIListItem().
|
private |
Definition at line 360 of file playbackbox.h.
Referenced by Create(), createPlaylistMenu(), customEvent(), HandleRecordingRemoveEvent(), Init(), ItemLoaded(), keyPressEvent(), saveRecMetadata(), selectUIGroupsAlphabet(), setGroupFilter(), ShowActionPopup(), ShowAllRecordings(), ShowGroupPopup(), ShowMenu(), showRecGroupPasswordChanger(), ShowRecordedEpisodes(), SwitchList(), togglePlayListTitle(), UpdateUIGroupList(), UpdateUIListItem(), and UpdateUILists().
Definition at line 470 of file playbackbox.h.
Referenced by displayRecGroup(), groupSelectorClosed(), and showGroupFilter().
Definition at line 454 of file playbackbox.h.
|
private |
Main helper thread.
Definition at line 464 of file playbackbox.h.
Referenced by customEvent(), HandleRecordingRemoveEvent(), ItemVisible(), Play(), PlaylistDelete(), popupClosed(), RemoveProgram(), ShowMenu(), StopSelected(), Undelete(), updateGroupInfo(), UpdateUIListItem(), and UpdateUsageUI().
Definition at line 428 of file playbackbox.h.
Referenced by updateRecList(), and UpdateUILists().
|
private |
Referenced by extract_commflag_state(), and extract_job_state().
|
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 412 of file playbackbox.h.
Referenced by customEvent(), DisplayPopupMenu(), popupClosed(), and ShowMenu().
|
mutableprivate |
Definition at line 457 of file playbackbox.h.
Referenced by customEvent(), keyPressEvent(), and processNetworkControlCommands().
Does the recording list need to be refilled.
Definition at line 451 of file playbackbox.h.
Referenced by customEvent(), Play(), updateRecList(), and UpdateUIGroupList().
|
private |
Definition at line 458 of file playbackbox.h.
Referenced by customEvent(), keyPressEvent(), and processNetworkControlCommands().
|
private |
Definition at line 405 of file playbackbox.h.
Referenced by checkPassword(), and displayRecGroup().
|
private |
Definition at line 363 of file playbackbox.h.
Referenced by Create(), and updateRecList().
Definition at line 442 of file playbackbox.h.
Referenced by setPlayGroup(), setRecGroup(), ShowPlayGroupChanger(), and ShowRecGroupChanger().
Definition at line 471 of file playbackbox.h.
Referenced by checkPassword(), displayRecGroup(), and passwordClosed().
|
private |
Definition at line 461 of file playbackbox.h.
Referenced by Create(), Init(), ItemLoaded(), Play(), PlaybackBox(), PlayX(), ShowActionPopup(), ShowGroupPopup(), UpdateUIListItem(), and ~PlaybackBox().
|
private |
Definition at line 462 of file playbackbox.h.
Referenced by PlayX(), and ~PlaybackBox().
playingSomething is set to true iff a full screen recording is playing
Definition at line 448 of file playbackbox.h.
Referenced by customEvent(), Play(), processNetworkControlCommand(), and updateRecList().
|
private |
list of selected items "play list"
Definition at line 441 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().
|
private |
list of items being played.
Definition at line 443 of file playbackbox.h.
Referenced by customEvent(), Play(), and playSelectedPlaylist().
|
private |
Definition at line 413 of file playbackbox.h.
Referenced by DisplayPopupMenu(), ShowActionPopup(), ShowDeletePopup(), and ShowGroupPopup().
|
private |
Definition at line 414 of file playbackbox.h.
Referenced by DisplayPopupMenu(), PlaybackBox(), showGroupFilter(), showIconHelp(), ShowPlayGroupChanger(), ShowRecGroupChanger(), showRecGroupPasswordChanger(), and showViewChanger().
|
private |
Definition at line 365 of file playbackbox.h.
Referenced by Create(), HandlePreviewEvent(), updateGroupInfo(), and UpdateUIListItem().
|
private |
Outstanding preview image requests.
Definition at line 466 of file playbackbox.h.
Referenced by customEvent(), HandlePreviewEvent(), ItemVisible(), and UpdateUIListItem().
|
private |
lists of programs by page
Definition at line 426 of file playbackbox.h.
Referenced by FindProgramInUILists(), HandleRecordingRemoveEvent(), togglePlayListTitle(), updateGroupInfo(), updateRecList(), UpdateUIGroupList(), and UpdateUILists().
|
private |
Definition at line 445 of file playbackbox.h.
Referenced by Create(), customEvent(), HandlePreviewEvent(), HandleRecordingAddEvent(), HandleRecordingRemoveEvent(), Load(), ScheduleUpdateUIList(), updateRecList(), and UpdateUILists().
|
private |
total number of recordings in DB
Definition at line 427 of file playbackbox.h.
Referenced by Init(), and UpdateUILists().
|
private |
Definition at line 403 of file playbackbox.h.
Referenced by Init(), PlaybackBox(), setGroupFilter(), setInitialRecGroup(), SetRecGroupPassword(), showGroupFilter(), ShowGroupPopup(), showRecGroupPasswordChanger(), UpdateUIGroupList(), and UpdateUILists().
|
private |
Definition at line 432 of file playbackbox.h.
Referenced by keyPressEvent(), PlaybackBox(), SelectNextRecGroup(), UpdateUILists(), and UpdateUIRecGroupList().
|
private |
Definition at line 358 of file playbackbox.h.
Referenced by Create(), UpdateUILists(), and UpdateUIRecGroupList().
|
private |
Definition at line 421 of file playbackbox.h.
Referenced by fillRecGroupPasswordCache(), getRecGroupPassword(), and SetRecGroupPassword().
|
private |
Definition at line 430 of file playbackbox.h.
Referenced by keyPressEvent(), SelectNextRecGroup(), UpdateUILists(), and UpdateUIRecGroupList().
|
mutableprivate |
Definition at line 431 of file playbackbox.h.
Referenced by keyPressEvent(), SelectNextRecGroup(), and UpdateUILists().
|
private |
Definition at line 420 of file playbackbox.h.
Referenced by PlaybackBox(), setGroupFilter(), showGroupFilter(), ShowGroupPopup(), and UpdateUILists().
|
private |
Definition at line 367 of file playbackbox.h.
Referenced by Create(), and UpdateUIListItem().
|
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 |
list of pages
Definition at line 425 of file playbackbox.h.
Referenced by Init(), keyPressEvent(), UpdateUIGroupList(), and UpdateUILists().
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.
Definition at line 469 of file playbackbox.h.
Referenced by groupSelectorClosed(), passwordClosed(), setGroupFilter(), and showGroupFilter().
|
private |
Definition at line 408 of file playbackbox.h.
Referenced by createPlaylistMenu(), keyPressEvent(), PlaybackBox(), saveViewChanges(), showGroupFilter(), showViewChanger(), toggleView(), toggleWatched(), and UpdateUILists().
|
private |
Definition at line 368 of file playbackbox.h.
Referenced by Create(), and UpdateUIListItem().
|
private |
Definition at line 407 of file playbackbox.h.
Referenced by keyPressEvent(), ShowActionPopup(), and UpdateUILists().
|
private |
Definition at line 406 of file playbackbox.h.
Referenced by 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 |
adjust exclusion of a title from the Watch List after a delete
Definition at line 391 of file playbackbox.h.
Referenced by PlaybackBox().
|
private |
add 1 to the Watch List scord up to this many days
Definition at line 389 of file playbackbox.h.
Referenced by PlaybackBox().
use the Watch List as the initial view
Definition at line 385 of file playbackbox.h.
Referenced by PlaybackBox(), and UpdateUILists().