On MacOS platform, add menu bar (system-wide) items.

This commit is contained in:
Daisuke Cato
2016-10-15 09:17:35 +09:00
commit 23dc126a37
986 changed files with 90440 additions and 0 deletions

18
common/library_item.h Normal file
View File

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