Worked much on the Medialib.
This commit is contained in:
parent
28f9bd246b
commit
b7d5afc0ca
18 changed files with 737 additions and 155 deletions
24
MediaAlbumList.h
Normal file
24
MediaAlbumList.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#ifndef __MEDIAALBUMLIST_H__
|
||||
#define __MEDIAALBUMLIST_H__
|
||||
|
||||
class MediaAlbumList;
|
||||
|
||||
#include "Medialib.h"
|
||||
|
||||
class MediaAlbumList : public MedialibList
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
MediaAlbumList (QWidget *parent, const QString &name);
|
||||
~MediaAlbumList () {}
|
||||
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