2017-05-19 07:45:26 +00:00
|
|
|
#ifndef EXPORTSWIDGET_H
|
|
|
|
#define EXPORTSWIDGET_H
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2019-02-22 16:50:45 +00:00
|
|
|
#include "core/Cutter.h"
|
2018-03-16 21:46:57 +00:00
|
|
|
#include "CutterDockWidget.h"
|
2018-10-10 12:34:46 +00:00
|
|
|
#include "CutterTreeWidget.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-10-10 11:33:55 +00:00
|
|
|
class ExportsWidget;
|
2017-05-19 07:45:26 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
namespace Ui {
|
|
|
|
class ExportsWidget;
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|
|
|
|
|
2018-05-03 07:52:30 +00:00
|
|
|
class ExportsModel : public QAbstractListModel
|
2017-05-19 07:45:26 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2018-10-10 11:33:55 +00:00
|
|
|
friend ExportsWidget;
|
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
private:
|
|
|
|
QList<ExportDescription> *exports;
|
|
|
|
|
|
|
|
public:
|
2018-04-23 07:53:35 +00:00
|
|
|
enum Column { OffsetColumn = 0, SizeColumn, TypeColumn, NameColumn, ColumnCount };
|
|
|
|
enum Role { ExportDescriptionRole = Qt::UserRole };
|
2017-05-19 07:45:26 +00:00
|
|
|
|
2018-05-04 07:58:32 +00:00
|
|
|
ExportsModel(QList<ExportDescription> *exports, QObject *parent = nullptr);
|
2017-05-19 07:45:26 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2018-04-24 18:40:40 +00:00
|
|
|
class ExportsProxyModel : public QSortFilterProxyModel
|
2017-05-19 07:45:26 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-05-04 07:58:32 +00:00
|
|
|
ExportsProxyModel(ExportsModel *source_model, QObject *parent = nullptr);
|
2017-05-19 07:45:26 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2018-04-23 07:53:35 +00:00
|
|
|
ExportsModel *exportsModel;
|
2018-04-24 18:40:40 +00:00
|
|
|
ExportsProxyModel *exportsProxyModel;
|
2017-05-19 07:45:26 +00:00
|
|
|
QList<ExportDescription> exports;
|
2018-10-10 12:34:46 +00:00
|
|
|
CutterTreeWidget *tree;
|
2017-05-19 07:45:26 +00:00
|
|
|
|
|
|
|
void setScrollMode();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EXPORTSWIDGET_H
|