You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
codeine/src/app/playlistFile.h

37 lines
865 B

// (C) 2005 Max Howell (max.howell@methylblue.com)
// See COPYING file for licensing information
#ifndef CODEINE_PLAYLIST_FILE_H
#define CODEINE_PLAYLIST_FILE_H
#include <kurl.h>
class PlaylistFile
{
public:
PlaylistFile( const KURL &url );
~PlaylistFile();
enum FileFormat { M3U, PLS, Unknown, NotPlaylistFile = Unknown };
bool isPlaylist() const { return m_type != Unknown; }
bool isValid() const { return m_isValid; }
KURL firstUrl() const { return m_contents.isEmpty() ? KURL() : m_contents.first(); }
TQString error() const { return m_error; }
private:
/// both only return first url currently
void parsePlsFile( TQTextStream& );
void parseM3uFile( TQTextStream& );
KURL m_url;
bool m_isRemoteFile;
bool m_isValid;
TQString m_error;
FileFormat m_type;
TQString m_path;
KURL::List m_contents;
};
#endif