##// END OF EJS Templates
A lot of refactoring:...
A lot of refactoring: QLopPlot now handle more than one plot. File browser uses QFileSystemModel and QItemView Wrapped QCustomPlot.

File last commit:

r6:665de41c4c74 default
r6:665de41c4c74 default
Show More
filesystemmodel.h
16 lines | 362 B | text/x-c | CLexer
#ifndef FILESYSTEMMODEL_H
#define FILESYSTEMMODEL_H
#include <QObject>
#include <QFileSystemModel>
class FileSystemModel : public QFileSystemModel
{
public:
FileSystemModel(QObject* parent=0);
~FileSystemModel();
Qt::DropActions supportedDropActions() const;
Qt::ItemFlags flags(const QModelIndex &index) const;
};
#endif // FILESYSTEMMODEL_H