MythTV  master
videodlg.h
Go to the documentation of this file.
1 #ifndef VIDEODLG_H_
2 #define VIDEODLG_H_
3 
4 // Qt
5 #include <QPointer>
6 #include <QStringList>
7 
8 // MythTV
13 
14 class MythUIText;
15 class MythUIButtonList;
16 class MythUIButtonTree;
18 class MythUIBusyDialog;
19 class MythUIImage;
20 class MythUIStateType;
21 class MythDialogBox;
22 class MythGenericTree;
23 class MetadataFactory;
24 class VideoMetadata;
25 class VideoScanner;
26 class MythMenu;
27 
28 class QUrl;
29 
31 
33 {
34  Q_OBJECT
35 
36  public:
37  enum DialogType { DLG_DEFAULT = 0, DLG_BROWSER = 0x1, DLG_GALLERY = 0x2,
38  DLG_TREE = 0x4, DLG_MANAGER = 0x8, dtLast };
39 
40  enum BrowseType { BRS_FOLDER = 0, BRS_GENRE = 0x1, BRS_CATEGORY = 0x2,
41  BRS_YEAR = 0x4, BRS_DIRECTOR = 0x8, BRS_CAST = 0x10,
43  BRS_TVMOVIE = 0x80, BRS_STUDIO = 0x100, btLast };
44 
46  using VideoListDeathDelayPtr = QPointer<class VideoListDeathDelay>;
47 
49 
50  public:
51  VideoDialog(MythScreenStack *lparent, const QString& lname,
52  const VideoListPtr& video_list, DialogType type,
53  BrowseType browse);
54  ~VideoDialog() override;
55 
56  bool Create() override; // MythScreenType
57  bool keyPressEvent(QKeyEvent *levent) override; // MythScreenType
58 
59  private:
60  void searchStart();
61 
62  public slots:
63  void searchComplete(const QString& string);
64 
65  protected slots:
66  void Init() override;
67  void Load() override;
68 
69  private slots:
70  void UpdatePosition();
71  void UpdateText(MythUIButtonListItem *item);
73  void SetCurrentNode(MythGenericTree *node);
74 
75  void playVideo();
76  void playVideoAlt();
77  void playFolder();
78  void playVideoWithTrailers();
79  void playTrailer();
80 
81  void SwitchTree();
82  void SwitchGallery();
83  void SwitchBrowse();
84  void SwitchManager();
86  void SwitchVideoGenreGroup();
88  void SwitchVideoYearGroup();
91  void SwitchVideoCastGroup();
95 
96  void EditMetadata();
97  void VideoSearch(MythGenericTree *node,
98  bool automode = false);
99  void VideoSearch() { VideoSearch(nullptr, false); }
100  void VideoAutoSearch(MythGenericTree *node);
101  void VideoAutoSearch() { VideoAutoSearch(nullptr); }
102  void ResetMetadata();
103  void ToggleWatched();
104  void ToggleProcess();
105  void RemoveVideo();
106  void OnRemoveVideo(bool dodelete);
107 
108  void VideoMenu();
112  void DisplayMenu();
116 
117  void popupClosed(const QString& which, int result);
118 
119  void PromptToScan();
120 
121  void ChangeFilter();
122 
123  void ToggleBrowseMode();
124  void ToggleFlatView();
125 
126  void ViewPlot();
127  void ShowCastDialog();
128  void ShowHomepage();
129  bool DoItemDetailShow();
130  void DoItemDetailShow2() { static_cast<void>(DoItemDetailShow()); }
131  void ShowPlayerSettings();
132  void ShowExtensionSettings();
133  void ShowMetadataSettings();
134 
135  void OnParentalChange(int amount);
136 
137  // Called when the underlying data for an item changes
139 
140  void doVideoScan();
141 
142  protected slots:
143  void scanFinished(bool dbChanged);
144  void reloadData();
145  void refreshData();
146  void UpdateItem(MythUIButtonListItem *item);
147 
148  protected:
149  void customEvent(QEvent *levent) override; // MythUIType
150 
153 
154  virtual void loadData();
155  void fetchVideos();
156  static QString RemoteImageCheck(const QString& host, const QString& filename);
157  static QString GetCoverImage(MythGenericTree *node);
158  QString GetFirstImage(MythGenericTree *node, const QString& type,
159  const QString& gpnode = QString(), int levels = 0);
160  static QString GetScreenshot(MythGenericTree *node);
161  static QString GetBanner(MythGenericTree *node);
162  static QString GetFanart(MythGenericTree *node);
163 
165 
166  void handleDirSelect(MythGenericTree *node);
168  bool goBack();
170  void shiftParental(int amount);
171  bool createPopup();
172  void createBusyDialog(const QString &title);
173  void createFetchDialog(VideoMetadata *metadata);
174  void dismissFetchDialog(VideoMetadata *metadata, bool ok);
175  void createOkDialog(const QString& title);
176 
177  void SwitchLayout(DialogType type, BrowseType browse);
178 
179  void StartVideoImageSet(VideoMetadata *metadata);
180 
181  void SavePosition(void);
182 
183  private slots:
184 
185  void OnVideoImageSetDone(VideoMetadata *metadata);
186  void OnVideoSearchDone(MetadataLookup *lookup);
187 
188  private:
193 
196 
199 
202 
205  MythUIImage *m_banner {nullptr};
206  MythUIImage *m_fanart {nullptr};
207 
214 
216 
217  class VideoDialogPrivate *m_d {nullptr};
218 };
219 
220 class VideoListDeathDelay : public QObject
221 {
222  Q_OBJECT
223 
224  public:
225  explicit VideoListDeathDelay(const VideoDialog::VideoListPtr& toSave);
226  ~VideoListDeathDelay() override;
227 
229  // When exiting MythVideo, we delay destroying the data for kDelayTimeMS
230  // milliseconds, and reuse the data (possibly avoiding a rescan) if the user
231  // restarts MythVideo within that time period.
232  static constexpr std::chrono::milliseconds kDelayTimeMS { 3s };
233 
234  private slots:
235  void OnTimeUp();
236 
237  private:
238  class VideoListDeathDelayPrivate *m_d {nullptr};
239 };
240 
241 #endif
VideoDialog::GetBanner
static QString GetBanner(MythGenericTree *node)
Find the Banner for a given node.
Definition: videodlg.cpp:1803
VideoMetadata
Definition: videometadata.h:24
esTimeout
@ esTimeout
Definition: videodlg.h:30
VideoDialog::m_d
class VideoDialogPrivate * m_d
Definition: videodlg.h:217
RefCountHandler
Definition: referencecounterlist.h:17
VideoDialog::CreateMetadataBrowseMenu
MythMenu * CreateMetadataBrowseMenu()
Create a MythMenu for MythVideo Metadata Browse modes.
Definition: videodlg.cpp:2500
VideoDialog::OnVideoImageSetDone
void OnVideoImageSetDone(VideoMetadata *metadata)
Definition: videodlg.cpp:3248
VideoDialog::playVideoAlt
void playVideoAlt()
Play the selected item in an alternate player.
Definition: videodlg.cpp:2947
MythUIImage
Image widget, displays a single image or multiple images in sequence.
Definition: mythuiimage.h:97
VideoDialog::CreateSettingsMenu
MythMenu * CreateSettingsMenu()
Create a MythMenu for MythVideo Settings.
Definition: videodlg.cpp:2441
VideoDialog::BRS_USERRATING
@ BRS_USERRATING
Definition: videodlg.h:42
VideoDialog::StartVideoImageSet
void StartVideoImageSet(VideoMetadata *metadata)
Definition: videodlg.cpp:3499
VideoDialog::playTrailer
void playTrailer()
Play the trailer associated with the selected item.
Definition: videodlg.cpp:3076
VideoDialog::ShowMetadataSettings
void ShowMetadataSettings()
Pop up a MythUI Menu for MythVideo Metadata Settings.
Definition: videodlg.cpp:2472
VideoDialog::m_menuPopup
MythDialogBox * m_menuPopup
Definition: videodlg.h:189
VideoDialog::SwitchManager
void SwitchManager()
Switch to Video Manager View.
Definition: videodlg.cpp:2715
VideoDialog::BRS_INSERTDATE
@ BRS_INSERTDATE
Definition: videodlg.h:42
simple_ref_ptr< class VideoList >
VideoDialog::createPopup
bool createPopup()
parentalcontrols.h
VideoDialog::refreshData
void refreshData()
Reloads the tree without invalidating the data.
Definition: videodlg.cpp:1061
VideoDialog::DLG_BROWSER
@ DLG_BROWSER
Definition: videodlg.h:37
VideoDialog::VideoAutoSearch
void VideoAutoSearch()
Definition: videodlg.h:101
VideoDialog::SwitchVideoGenreGroup
void SwitchVideoGenreGroup()
Switch to Genre browse mode.
Definition: videodlg.cpp:2733
MythScreenStack
Definition: mythscreenstack.h:16
VideoListDeathDelay::~VideoListDeathDelay
~VideoListDeathDelay() override
Definition: videodlg.cpp:828
VideoDialog::dismissFetchDialog
void dismissFetchDialog(VideoMetadata *metadata, bool ok)
Definition: videodlg.cpp:2008
VideoDialog::SwitchVideoInsertDateGroup
void SwitchVideoInsertDateGroup()
Switch to Insert Date browse mode.
Definition: videodlg.cpp:2796
VideoDialog::handleSelect
void handleSelect(MythUIButtonListItem *item)
Handle SELECT action for a given MythUIButtonListItem.
Definition: videodlg.cpp:2654
VideoDialog::ShowHomepage
void ShowHomepage()
Definition: videodlg.cpp:2892
esOK
@ esOK
Definition: videodlg.h:30
VideoDialog::CreateManageMenu
MythMenu * CreateManageMenu()
Create a MythMenu for metadata management.
Definition: videodlg.cpp:2570
VideoDialog::m_userRatingState
MythUIStateType * m_userRatingState
Definition: videodlg.h:211
MythScreenType
Screen in which all other widgets are contained and rendered.
Definition: mythscreentype.h:45
VideoDialog::Load
void Load() override
Called after the screen is created by MythScreenStack.
Definition: videodlg.cpp:1048
VideoDialog::m_videoLevelState
MythUIStateType * m_videoLevelState
Definition: videodlg.h:210
VideoDialog::GetSavedVideoList
static VideoListDeathDelayPtr & GetSavedVideoList()
Definition: videodlg.cpp:843
VideoListDeathDelay::VideoListDeathDelay
VideoListDeathDelay(const VideoDialog::VideoListPtr &toSave)
Definition: videodlg.cpp:821
VideoDialog::EditMetadata
void EditMetadata()
Definition: videodlg.cpp:3414
VideoDialog::CreateViewMenu
MythMenu * CreateViewMenu()
Create a MythMenu for MythVideo Views.
Definition: videodlg.cpp:2405
VideoDialog::SwitchVideoUserRatingGroup
void SwitchVideoUserRatingGroup()
Switch to User Rating browse mode.
Definition: videodlg.cpp:2787
VideoDialog::BRS_STUDIO
@ BRS_STUDIO
Definition: videodlg.h:43
VideoDialog::m_fanart
MythUIImage * m_fanart
Definition: videodlg.h:206
VideoDialog::m_studioState
MythUIStateType * m_studioState
Definition: videodlg.h:213
VideoDialog::shiftParental
void shiftParental(int amount)
Shift the parental level for the library by an integer amount.
Definition: videodlg.cpp:3108
VideoDialog::BRS_CATEGORY
@ BRS_CATEGORY
Definition: videodlg.h:40
VideoDialog::DialogType
DialogType
Definition: videodlg.h:37
VideoDialog::m_positionText
MythUIText * m_positionText
Definition: videodlg.h:200
VideoDialog::m_busyPopup
MythUIBusyDialog * m_busyPopup
Definition: videodlg.h:190
VideoDialog::m_videoButtonTree
MythUIButtonTree * m_videoButtonTree
Definition: videodlg.h:195
VideoDialog::BRS_CAST
@ BRS_CAST
Definition: videodlg.h:41
MetadataLookup
Definition: metadatacommon.h:87
VideoDialog::m_trailerState
MythUIStateType * m_trailerState
Definition: videodlg.h:208
VideoListDeathDelay
Definition: videodlg.h:220
VideoDialog::GetFirstImage
QString GetFirstImage(MythGenericTree *node, const QString &type, const QString &gpnode=QString(), int levels=0)
Find the first image of "type" within a folder structure.
Definition: videodlg.cpp:1638
VideoDialog::GetItemByMetadata
virtual MythUIButtonListItem * GetItemByMetadata(VideoMetadata *metadata)
Definition: videodlg.cpp:3271
VideoDialog::searchComplete
void searchComplete(const QString &string)
After using incremental search, move to the selected item.
Definition: videodlg.cpp:2066
VideoDialog::m_banner
MythUIImage * m_banner
Definition: videodlg.h:205
VideoListDeathDelay::GetSaved
VideoDialog::VideoListPtr GetSaved()
Definition: videodlg.cpp:833
MythUIButtonListItem
Definition: mythuibuttonlist.h:41
VideoDialog::SwitchVideoTVMovieGroup
void SwitchVideoTVMovieGroup()
Switch to Television/Movie browse mode.
Definition: videodlg.cpp:2805
VideoDialog::GetScreenshot
static QString GetScreenshot(MythGenericTree *node)
Find the Screenshot for a given node.
Definition: videodlg.cpp:1763
VideoDialog::BRS_TVMOVIE
@ BRS_TVMOVIE
Definition: videodlg.h:43
VideoDialog::playVideoWithTrailers
void playVideoWithTrailers()
Play the selected item w/ a User selectable # of trailers.
Definition: videodlg.cpp:3043
VideoDialog::GetFanart
static QString GetFanart(MythGenericTree *node)
Find the Fanart for a given node.
Definition: videodlg.cpp:1838
VideoDialog::scanFinished
void scanFinished(bool dbChanged)
Definition: videodlg.cpp:1076
VideoDialog::SwitchBrowse
void SwitchBrowse()
Switch to Browser View.
Definition: videodlg.cpp:2706
VideoDialog::OnVideoSearchListSelection
void OnVideoSearchListSelection(RefCountHandler< MetadataLookup > lookup)
Definition: videodlg.cpp:3367
VideoDialog::m_titleText
MythUIText * m_titleText
Definition: videodlg.h:197
VideoDialog::m_crumbText
MythUIText * m_crumbText
Definition: videodlg.h:201
VideoDialog::m_metadataFactory
MetadataFactory * m_metadataFactory
Definition: videodlg.h:215
VideoDialog::goBack
bool goBack()
Move one level up in the tree.
Definition: videodlg.cpp:2140
VideoDialog::m_popupStack
MythScreenStack * m_popupStack
Definition: videodlg.h:191
VideoDialog::RemoteImageCheck
static QString RemoteImageCheck(const QString &host, const QString &filename)
Search for a given (image) filename in the Video SG.
Definition: videodlg.cpp:1352
VideoDialog::VideoListDeathDelayPtr
QPointer< class VideoListDeathDelay > VideoListDeathDelayPtr
Definition: videodlg.h:46
ParentalLevel::Level
Level
Definition: parentalcontrols.h:12
VideoDialog::VideoSearch
void VideoSearch()
Definition: videodlg.h:99
VideoDialog::PromptToScan
void PromptToScan()
Definition: videodlg.cpp:3702
MythDialogBox
Basic menu dialog, message and a list of options.
Definition: mythdialogbox.h:166
VideoDialog::SwitchVideoYearGroup
void SwitchVideoYearGroup()
Switch to Year browse mode.
Definition: videodlg.cpp:2751
VideoDialog::SwitchTree
void SwitchTree()
Switch to Tree (List) View.
Definition: videodlg.cpp:2688
VideoDialog::ShowCastDialog
void ShowCastDialog()
Display the Cast if the selected item.
Definition: videodlg.cpp:2882
VideoDialog::DLG_GALLERY
@ DLG_GALLERY
Definition: videodlg.h:37
VideoListDeathDelay::m_d
class VideoListDeathDelayPrivate * m_d
Definition: videodlg.h:238
VideoDialog::GetItemCurrent
virtual MythUIButtonListItem * GetItemCurrent()
Definition: videodlg.cpp:3261
VideoDialog::btLast
@ btLast
Definition: videodlg.h:43
VideoDialog::Init
void Init() override
Definition: videodlg.cpp:1042
VideoDialog::m_mainStack
MythScreenStack * m_mainStack
Definition: videodlg.h:192
DialogType
DialogType
Definition: nettree.h:20
VideoDialog::searchStart
void searchStart()
Create an incremental search dialog for the current tree level.
Definition: videodlg.cpp:2104
VideoDialog::BRS_YEAR
@ BRS_YEAR
Definition: videodlg.h:41
VideoDialog::SwitchVideoDirectorGroup
void SwitchVideoDirectorGroup()
Switch to Director browse mode.
Definition: videodlg.cpp:2760
VideoDialog::SetCurrentNode
void SetCurrentNode(MythGenericTree *node)
Switch to a given MythGenericTree node.
Definition: videodlg.cpp:2164
MythUIButtonTree
A tree widget for displaying and navigating a MythGenericTree()
Definition: mythuibuttontree.h:16
VideoDialog::SwitchVideoFolderGroup
void SwitchVideoFolderGroup()
Switch to Folder (filesystem) browse mode.
Definition: videodlg.cpp:2724
VideoDialog::BRS_DIRECTOR
@ BRS_DIRECTOR
Definition: videodlg.h:41
VideoDialog::SwitchLayout
void SwitchLayout(DialogType type, BrowseType browse)
Handle a layout or browse mode switch.
Definition: videodlg.cpp:2814
VideoDialog::SwitchVideoCastGroup
void SwitchVideoCastGroup()
Switch to Cast browse mode.
Definition: videodlg.cpp:2778
MythUIBusyDialog
Definition: mythprogressdialog.h:36
VideoDialog::setParentalLevel
void setParentalLevel(ParentalLevel::Level level)
Set the parental level for the library.
Definition: videodlg.cpp:3099
VideoDialog::BRS_FOLDER
@ BRS_FOLDER
Definition: videodlg.h:40
VideoDialog::RemoveVideo
void RemoveVideo()
Definition: videodlg.cpp:3432
VideoDialog::ToggleProcess
void ToggleProcess()
Definition: videodlg.cpp:2589
VideoDialog::handleDynamicDirSelect
void handleDynamicDirSelect(MythGenericTree *node)
Request the latest metadata for a folder.
Definition: videodlg.cpp:2642
VideoDialog::CreateInfoMenu
MythMenu * CreateInfoMenu()
Create a MythMenu for Info pertaining to the selected item.
Definition: videodlg.cpp:2543
esError
@ esError
Definition: videodlg.h:30
VideoDialog::m_parentalLevelState
MythUIStateType * m_parentalLevelState
Definition: videodlg.h:209
VideoDialog::createOkDialog
void createOkDialog(const QString &title)
Create a MythUI "OK" Dialog.
Definition: videodlg.cpp:2052
VideoDialog
Definition: videodlg.h:32
VideoDialog::doVideoScan
void doVideoScan()
Definition: videodlg.cpp:3694
VideoDialog::ShowExtensionSettings
void ShowExtensionSettings()
Pop up a MythUI Menu for MythVideo filte Type Settings.
Definition: videodlg.cpp:2486
VideoDialog::Create
bool Create() override
Definition: videodlg.cpp:901
VideoDialog::CreatePlayMenu
MythMenu * CreatePlayMenu()
Create a "Play Menu" for MythVideo. Appears if multiple play options exist.
Definition: videodlg.cpp:2325
VideoDialog::m_watchedState
MythUIStateType * m_watchedState
Definition: videodlg.h:212
MetadataFactory
Definition: metadatafactory.h:85
VideoDialog::loadData
virtual void loadData()
load the data used to build the ButtonTree/List for MythVideo.
Definition: videodlg.cpp:1113
VideoDialog::SwitchVideoCategoryGroup
void SwitchVideoCategoryGroup()
Switch to Category browse mode.
Definition: videodlg.cpp:2742
VideoDialog::~VideoDialog
~VideoDialog() override
Definition: videodlg.cpp:867
VideoDialog::customEvent
void customEvent(QEvent *levent) override
Definition: videodlg.cpp:3154
VideoListDeathDelayPrivate
Definition: videodlg.cpp:804
VideoDialog::popupClosed
void popupClosed(const QString &which, int result)
Definition: videodlg.cpp:2390
VideoDialog::UpdatePosition
void UpdatePosition()
Called after the screen is created by MythScreenStack.
Definition: videodlg.cpp:2176
VideoDialog::createBusyDialog
void createBusyDialog(const QString &title)
Create a busy dialog, used during metadata search, etc.
Definition: videodlg.cpp:1968
VideoDialog::VideoDialog
VideoDialog(MythScreenStack *lparent, const QString &lname, const VideoListPtr &video_list, DialogType type, BrowseType browse)
Definition: videodlg.cpp:848
MythMenu
Definition: mythdialogbox.h:99
VideoDialog::handleDirSelect
void handleDirSelect(MythGenericTree *node)
Descend into a selected folder.
Definition: videodlg.cpp:2632
MythUIText
All purpose text widget, displays a text string.
Definition: mythuitext.h:28
VideoDialog::DLG_DEFAULT
@ DLG_DEFAULT
Definition: videodlg.h:37
VideoDialog::dtLast
@ dtLast
Definition: videodlg.h:38
VideoDialog::reloadData
void reloadData()
Reloads the tree after having invalidated the data.
Definition: videodlg.cpp:1103
VideoDialog::ShowPlayerSettings
void ShowPlayerSettings()
Pop up a MythUI Menu for MythVideo Player Settings.
Definition: videodlg.cpp:2458
VideoDialog::DoItemDetailShow2
void DoItemDetailShow2()
Definition: videodlg.h:130
VideoDialog::BRS_GENRE
@ BRS_GENRE
Definition: videodlg.h:40
VideoDialog::BrowseType
BrowseType
Definition: videodlg.h:40
VideoDialogPrivate
Definition: videodlg.cpp:672
VideoDialog::DLG_MANAGER
@ DLG_MANAGER
Definition: videodlg.h:38
VideoDialog::ChangeFilter
void ChangeFilter()
Change the filtering of the library.
Definition: videodlg.cpp:3118
VideoDialog::OnVideoSearchDone
void OnVideoSearchDone(MetadataLookup *lookup)
Definition: videodlg.cpp:3577
MythGenericTree
Definition: mythgenerictree.h:27
VideoDialog::ToggleWatched
void ToggleWatched()
Definition: videodlg.cpp:3351
VideoDialog::UpdateText
void UpdateText(MythUIButtonListItem *item)
Update the visible text values for a given ButtonListItem.
Definition: videodlg.cpp:2193
VideoDialog::GetMetadata
static VideoMetadata * GetMetadata(MythUIButtonListItem *item)
Retrieve the Database Metadata for a given MythUIButtonListItem.
Definition: videodlg.cpp:3135
VideoDialog::OnParentalChange
void OnParentalChange(int amount)
Definition: videodlg.cpp:3396
VideoDialog::createFetchDialog
void createFetchDialog(VideoMetadata *metadata)
Create a fetch notification, used during metadata search.
Definition: videodlg.cpp:1986
VideoDialog::m_coverImage
MythUIImage * m_coverImage
Definition: videodlg.h:203
ImageDownloadErrorState
ImageDownloadErrorState
Definition: videodlg.h:30
VideoDialog::SavePosition
void SavePosition(void)
Definition: videodlg.cpp:877
VideoDialog::fetchVideos
void fetchVideos()
Build the buttonlist/tree.
Definition: videodlg.cpp:1313
VideoDialog::SwitchGallery
void SwitchGallery()
Switch to Gallery View.
Definition: videodlg.cpp:2697
VideoListDeathDelay::kDelayTimeMS
static constexpr std::chrono::milliseconds kDelayTimeMS
Definition: videodlg.h:232
VideoDialog::playVideo
void playVideo()
Play the selected item.
Definition: videodlg.cpp:2936
VideoListDeathDelay::OnTimeUp
void OnTimeUp()
Definition: videodlg.cpp:838
quicksp.h
VideoDialog::playFolder
void playFolder()
Play all the items in the selected folder.
Definition: videodlg.cpp:2959
VideoScanner
Definition: videoscan.h:22
VideoDialog::DLG_TREE
@ DLG_TREE
Definition: videodlg.h:38
VideoDialog::m_screenshot
MythUIImage * m_screenshot
Definition: videodlg.h:204
VideoDialog::SwitchVideoStudioGroup
void SwitchVideoStudioGroup()
Switch to Studio browse mode.
Definition: videodlg.cpp:2769
VideoDialog::ResetMetadata
void ResetMetadata()
Definition: videodlg.cpp:3486
VideoDialog::OnRemoveVideo
void OnRemoveVideo(bool dodelete)
Definition: videodlg.cpp:3451
VideoDialog::ToggleFlatView
void ToggleFlatView()
Toggle Flat View.
Definition: videodlg.cpp:2617
VideoDialog::UpdateItem
void UpdateItem(MythUIButtonListItem *item)
Update the visible representation of a MythUIButtonListItem.
Definition: videodlg.cpp:1220
VideoDialog::m_novideoText
MythUIText * m_novideoText
Definition: videodlg.h:198
MythUIButtonList
List widget, displays list items in a variety of themeable arrangements and can trigger signals when ...
Definition: mythuibuttonlist.h:191
VideoDialog::DisplayMenu
void DisplayMenu()
Pop up a MythUI Menu for MythVideo Global Functions. Bound to MENU.
Definition: videodlg.cpp:2363
build_compdb.filename
filename
Definition: build_compdb.py:21
VideoDialog::VideoMenu
void VideoMenu()
Pop up a MythUI "Playback Menu" for MythVideo. Bound to INFO.
Definition: videodlg.cpp:2260
VideoDialog::ToggleBrowseMode
void ToggleBrowseMode()
Toggle the browseable status for the selected item.
Definition: videodlg.cpp:2605
VideoDialog::m_videoButtonList
MythUIButtonList * m_videoButtonList
Definition: videodlg.h:194
VideoDialog::ViewPlot
void ViewPlot()
Display a MythUI Popup with the selected item's plot.
Definition: videodlg.cpp:2844
VideoDialog::GetCoverImage
static QString GetCoverImage(MythGenericTree *node)
A "hunt" for cover art to apply for a folder item.
Definition: videodlg.cpp:1408
metadatacommon.h
MythUIStateType
This widget is used for grouping other widgets for display when a particular named state is called....
Definition: mythuistatetype.h:22
mythscreentype.h
VideoDialog::keyPressEvent
bool keyPressEvent(QKeyEvent *levent) override
Handle keypresses and keybindings.
Definition: videodlg.cpp:1873
VideoDialog::DoItemDetailShow
bool DoItemDetailShow()
Display the Item Detail Popup.
Definition: videodlg.cpp:2858