2014-01-31 21:51:45 +00:00
|
|
|
#pragma once
|
2013-12-24 10:47:30 +00:00
|
|
|
|
|
|
|
#include <QListView>
|
|
|
|
#include <QLineEdit>
|
|
|
|
|
2013-12-30 22:39:10 +00:00
|
|
|
struct CategorizedViewRoles
|
|
|
|
{
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
CategoryRole = Qt::UserRole,
|
|
|
|
ProgressValueRole,
|
|
|
|
ProgressMaximumRole
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-01-31 21:51:45 +00:00
|
|
|
struct Group;
|
2013-12-31 16:26:36 +00:00
|
|
|
|
2014-01-31 21:51:45 +00:00
|
|
|
class GroupView : public QListView
|
2013-12-24 10:47:30 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2014-01-31 21:51:45 +00:00
|
|
|
GroupView(QWidget *parent = 0);
|
|
|
|
~GroupView();
|
2013-12-24 10:47:30 +00:00
|
|
|
|
|
|
|
virtual QRect visualRect(const QModelIndex &index) const;
|
2013-12-26 20:16:03 +00:00
|
|
|
QModelIndex indexAt(const QPoint &point) const;
|
2014-01-31 21:51:45 +00:00
|
|
|
void setSelection(const QRect &rect,
|
|
|
|
const QItemSelectionModel::SelectionFlags commands) override;
|
2013-12-24 10:47:30 +00:00
|
|
|
|
2014-01-31 21:51:45 +00:00
|
|
|
protected
|
|
|
|
slots:
|
|
|
|
void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight,
|
|
|
|
const QVector<int> &roles);
|
2013-12-24 10:47:30 +00:00
|
|
|
virtual void rowsInserted(const QModelIndex &parent, int start, int end);
|
|
|
|
virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
|
|
|
|
virtual void updateGeometries();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual bool isIndexHidden(const QModelIndex &index) const;
|
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *event) override;
|
|
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
|
|
|
void mouseDoubleClickEvent(QMouseEvent *event) override;
|
|
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
void resizeEvent(QResizeEvent *event) override;
|
|
|
|
|
|
|
|
void dragEnterEvent(QDragEnterEvent *event) override;
|
|
|
|
void dragMoveEvent(QDragMoveEvent *event) override;
|
|
|
|
void dragLeaveEvent(QDragLeaveEvent *event) override;
|
|
|
|
void dropEvent(QDropEvent *event) override;
|
|
|
|
|
2013-12-26 20:16:03 +00:00
|
|
|
void startDrag(Qt::DropActions supportedActions) override;
|
|
|
|
|
2013-12-24 10:47:30 +00:00
|
|
|
private:
|
2014-01-31 21:51:45 +00:00
|
|
|
friend struct Group;
|
2013-12-24 10:47:30 +00:00
|
|
|
|
2014-01-31 21:51:45 +00:00
|
|
|
QList<Group *> m_categories;
|
2013-12-24 10:47:30 +00:00
|
|
|
|
|
|
|
int m_leftMargin;
|
|
|
|
int m_rightMargin;
|
2013-12-30 17:46:12 +00:00
|
|
|
int m_bottomMargin;
|
2013-12-24 10:47:30 +00:00
|
|
|
int m_categoryMargin;
|
|
|
|
|
2014-01-31 21:51:45 +00:00
|
|
|
// bool m_updatesDisabled;
|
2013-12-24 10:47:30 +00:00
|
|
|
|
2014-01-31 21:51:45 +00:00
|
|
|
Group *category(const QModelIndex &index) const;
|
|
|
|
Group *category(const QString &cat) const;
|
|
|
|
Group *categoryAt(const QPoint &pos) const;
|
2013-12-24 10:47:30 +00:00
|
|
|
|
|
|
|
int itemsPerRow() const;
|
|
|
|
int contentWidth() const;
|
|
|
|
|
|
|
|
private:
|
2013-12-30 17:45:40 +00:00
|
|
|
int itemWidth() const;
|
2013-12-31 16:26:36 +00:00
|
|
|
int categoryRowHeight(const QModelIndex &index) const;
|
2013-12-24 10:47:30 +00:00
|
|
|
|
|
|
|
/*QLineEdit *m_categoryEditor;
|
|
|
|
Category *m_editedCategory;
|
|
|
|
void startCategoryEditor(Category *category);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void endCategoryEditor();*/
|
2013-12-26 20:16:03 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QPoint m_pressedPosition;
|
|
|
|
QPersistentModelIndex m_pressedIndex;
|
|
|
|
bool m_pressedAlreadySelected;
|
2014-01-31 21:51:45 +00:00
|
|
|
Group *m_pressedCategory;
|
2013-12-26 20:16:03 +00:00
|
|
|
QItemSelectionModel::SelectionFlag m_ctrlDragSelectionFlag;
|
|
|
|
QPoint m_lastDragPosition;
|
|
|
|
|
2013-12-30 17:45:40 +00:00
|
|
|
QPair<int, int> categoryInternalPosition(const QModelIndex &index) const;
|
2013-12-31 16:26:36 +00:00
|
|
|
int categoryInternalRowTop(const QModelIndex &index) const;
|
2014-01-31 21:51:45 +00:00
|
|
|
int itemHeightForCategoryRow(const Group *category,
|
|
|
|
const int internalRow) const;
|
2013-12-30 17:45:40 +00:00
|
|
|
|
2013-12-26 20:16:03 +00:00
|
|
|
QPixmap renderToPixmap(const QModelIndexList &indices, QRect *r) const;
|
2014-01-31 21:51:45 +00:00
|
|
|
QList<QPair<QRect, QModelIndex>> draggablePaintPairs(const QModelIndexList &indices,
|
|
|
|
QRect *r) const;
|
2013-12-26 20:16:03 +00:00
|
|
|
|
|
|
|
bool isDragEventAccepted(QDropEvent *event);
|
|
|
|
|
2014-01-31 21:51:45 +00:00
|
|
|
QPair<Group *, int> rowDropPos(const QPoint &pos);
|
2013-12-30 17:46:12 +00:00
|
|
|
|
|
|
|
QPoint offset() const;
|
2013-12-24 10:47:30 +00:00
|
|
|
};
|