Worked much on the Medialib.
This commit is contained in:
parent
28f9bd246b
commit
b7d5afc0ca
18 changed files with 737 additions and 155 deletions
24
MediaArtistList.h
Normal file
24
MediaArtistList.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#ifndef __MEDIAARTISTLIST_H__
|
||||
#define __MEDIAARTISTLIST_H__
|
||||
|
||||
class MediaArtistList;
|
||||
|
||||
#include "Medialib.h"
|
||||
|
||||
class MediaArtistList : public MedialibList
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
MediaArtistList (QWidget *parent, const QString &name);
|
||||
~MediaArtistList () {}
|
||||
QStringList mimeTypes (void) const;
|
||||
void refresh (void);
|
||||
|
||||
public slots:
|
||||
void queryCallback (uint, QList<QHash<QString, QString> >);
|
||||
QMimeData *mimeData(const QList<QListWidgetItem*> items) const;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue