2017-05-19 07:45:26 +00:00
|
|
|
#ifndef EXPORTSWIDGET_H
|
|
|
|
#define EXPORTSWIDGET_H
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2018-03-04 17:42:02 +00:00
|
|
|
#include "Cutter.h"
|
2018-03-16 21:46:57 +00:00
|
|
|
#include "CutterDockWidget.h"
|
2017-11-19 12:56:10 +00:00
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
|
|
|
|
class MainWindow;
|
|
|
|
class QTreeWidget;
|
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
namespace Ui {
|
|
|
|
class ExportsWidget;
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class MainWindow;
|
|
|
|
class QTreeWidgetItem;
|
|
|
|
|
|
|
|
|
|
|
|
class ExportsModel: public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private:
|
|
|
|
QList<ExportDescription> *exports;
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum Columns { OFFSET = 0, SIZE, TYPE, NAME, COUNT };
|
|
|
|
static const int ExportDescriptionRole = Qt::UserRole;
|
|
|
|
|
|
|
|
ExportsModel(QList<ExportDescription> *exports, QObject *parent = 0);
|
|
|
|
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
|
|
|
|
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
|
|
|
|
|
|
|
void beginReloadExports();
|
|
|
|
void endReloadExports();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ExportsSortFilterProxyModel : public QSortFilterProxyModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ExportsSortFilterProxyModel(ExportsModel *source_model, QObject *parent = 0);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool filterAcceptsRow(int row, const QModelIndex &parent) const override;
|
|
|
|
bool lessThan(const QModelIndex &left, const QModelIndex &right) const override;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-03-16 21:46:57 +00:00
|
|
|
class ExportsWidget : public CutterDockWidget
|
2017-05-19 07:45:26 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-03-16 21:46:57 +00:00
|
|
|
explicit ExportsWidget(MainWindow *main, QAction *action = nullptr);
|
2017-05-19 07:45:26 +00:00
|
|
|
~ExportsWidget();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_exportsTreeView_doubleClicked(const QModelIndex &index);
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
void refreshExports();
|
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
private:
|
2017-10-02 09:41:28 +00:00
|
|
|
std::unique_ptr<Ui::ExportsWidget> ui;
|
2017-05-19 07:45:26 +00:00
|
|
|
|
|
|
|
ExportsModel *exports_model;
|
|
|
|
ExportsSortFilterProxyModel *exports_proxy_model;
|
|
|
|
QList<ExportDescription> exports;
|
|
|
|
|
|
|
|
void setScrollMode();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // EXPORTSWIDGET_H
|