diff options
author | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-07-25 21:33:35 +0000 |
---|---|---|
committer | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-07-25 21:33:35 +0000 |
commit | 6d085c1c2c9fd7270f96d22b1781d28005ff3674 (patch) | |
tree | 4277a65883efc53d6fb4d6252a3ccfb6f937ade2 /vdr_menu.h | |
parent | c5ced15ac3cb7365914b75378ac8d746480e65df (diff) | |
download | vdr-plugin-muggle-6d085c1c2c9fd7270f96d22b1781d28005ff3674.tar.gz vdr-plugin-muggle-6d085c1c2c9fd7270f96d22b1781d28005ff3674.tar.bz2 |
Removed bugs in finding track files and playlist indexing.
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@105 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'vdr_menu.h')
-rw-r--r-- | vdr_menu.h | 21 |
1 files changed, 14 insertions, 7 deletions
@@ -2,12 +2,12 @@ * \file vdr_menu.h * \brief Implements menu handling for broswing media libraries within VDR * - * \version $Revision: 1.12 $ - * \date $Date: 2004/07/09 12:22:00 $ + * \version $Revision: 1.13 $ + * \date $Date: 2004/07/25 21:33:35 $ * \author Ralf Klueber, Lars von Wedel, Andreas Kellner - * \author Responsible author: $Author: LarsAC $ + * \author Responsible author: $Author: lvw $ * - * $Id: vdr_menu.h,v 1.12 2004/07/09 12:22:00 LarsAC Exp $ + * $Id: vdr_menu.h,v 1.13 2004/07/25 21:33:35 lvw Exp $ */ #ifndef _VDR_MENU_H @@ -17,10 +17,11 @@ #include <vector> #include <osd.h> -#include <config.h> #include "i18n.h" +class cCommands; + class mgMedia; class mgSelectionTreeNode; class mgPlaylist; @@ -53,7 +54,7 @@ class mgMainMenu : public cOsdMenu public: mgMainMenu(mgMedia *media, mgSelectionTreeNode *root, - mgPlaylist *playlist, cCommands playlist_commands ); + mgPlaylist *playlist, cCommands *playlist_commands ); mgSelectionTreeNode *CurrentNode(); mgMenuTreeItem *CurrentItem(); @@ -90,11 +91,14 @@ class mgMainMenu : public cOsdMenu void RenamePlaylist(); void DisplayPlaylistSubmenu(); eOSState PlaylistSubmenuAction( int n ); + void DisplayPlaylistCommands(); + eOSState ExecutePlaylistCommand( int current ); // Filter view handling void DisplayFilter(); void DisplayFilterSelector(); + private: void Play(mgPlaylist *plist); @@ -108,7 +112,7 @@ class mgMainMenu : public cOsdMenu MuggleStatus m_state; std::list<int> m_history; - cCommands m_playlist_commands; + cCommands *m_playlist_commands; int m_last_osd_index; }; @@ -118,6 +122,9 @@ class mgMainMenu : public cOsdMenu /************************************************************ * * $Log: vdr_menu.h,v $ + * Revision 1.13 2004/07/25 21:33:35 lvw + * Removed bugs in finding track files and playlist indexing. + * * Revision 1.12 2004/07/09 12:22:00 LarsAC * Untested extensions for exporting plalists * |