Add toolbar actions to context menu in library's table view

This commit is contained in:
Beta
2014-06-22 03:34:05 +02:00
commit e6a2d58dec
752 changed files with 69370 additions and 0 deletions

16
common/library_item.h Normal file
View File

@ -0,0 +1,16 @@
#ifndef __LIBRARY_ITEM_H
#define __LIBRARY_ITEM_H
#include <QObject>
class LibraryItem
{
public:
virtual bool isDir() = 0;
QString name;
QString path;
qulonglong parentId;
qulonglong id;
};
#endif