Code Search for Developers
 
 
  

Playlist.h from marsyas at Krugle


Show Playlist.h syntax highlighted

#ifndef PLAYLIST_H
#define PLAYLIST_H

#include <QDebug>
#include <QWidget>
#include <QListWidget>

#include "Tracklist.h"
#include "../Music/MusicCollection.h"

class Playlist : public QListWidget
{
	Q_OBJECT
public:
	Playlist(Tracklist *tracklist, QWidget *parent=0);
	~Playlist();

public slots:
	void playlistClicked(int currentRow);
	void updatePlaylist();

protected:
	void mousePressEvent(QMouseEvent *event);

private:
	Tracklist *_tracklist;
	MusicCollection *_library;
};

#endif /* PLAYLIST_H */




See more files for this project here

marsyas

Marsyas (Music Analysis, Retrieval and Synthesis for Audio Signals) is a framework for developing systems for audio processing. It provides an general architecture for connecting audio, soundfiles, signal processing blocks and machine learning.

Project homepage: http://sourceforge.net/projects/marsyas
Programming language(s): C++
License: other

  Grid.cpp
  Grid.h
  Keypad.cpp
  Keypad.h
  PlayBox.cpp
  PlayBox.h
  Playlist.cpp
  Playlist.h
  PlaylistItem.cpp
  PlaylistItem.h
  PlaylistModel.cpp
  PlaylistModel.h
  Tracklist.cpp
  Tracklist.h