Code Search for Developers
 
 
  

PlayBox.h from marsyas at Krugle


Show PlayBox.h syntax highlighted

#ifndef PLAYBOX_H
#define PLAYBOX_H

#include <iostream>
#include <QLabel>
#include <QFont>
#include <QGroupBox>
#include <QGridLayout>
#include "../Music/MusicTrack.h"

class PlayBox : public QGroupBox
{
public:
	PlayBox(QWidget *parent=0);

	void updateCurrentlyPlaying(MusicTrack *track);

private:
	QLabel *_title;
	QLabel *_artist;
	QLabel *_album;
	QLabel *_location;
	QLabel *_genre;
	QLabel *_kind;
	QLabel *_year;
	QLabel *_length;
};

#endif /* PLAYBOX_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