diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-09-16 00:21:50 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-09-16 00:21:50 +0200 |
commit | b10761711234b69cf8509bacb055f7d5c3c021e8 (patch) | |
tree | 238a0532ca7a295e8ae9420faf9b49459ee82d6b /application/groupview | |
parent | 0a187d0ad36f1223334a260b0c51c0b1b2935298 (diff) | |
download | MultiMC-b10761711234b69cf8509bacb055f7d5c3c021e8.tar MultiMC-b10761711234b69cf8509bacb055f7d5c3c021e8.tar.gz MultiMC-b10761711234b69cf8509bacb055f7d5c3c021e8.tar.lz MultiMC-b10761711234b69cf8509bacb055f7d5c3c021e8.tar.xz MultiMC-b10761711234b69cf8509bacb055f7d5c3c021e8.zip |
GH-1121 select instance after creating it
Diffstat (limited to 'application/groupview')
-rw-r--r-- | application/groupview/GroupView.cpp | 91 | ||||
-rw-r--r-- | application/groupview/GroupView.h | 8 |
2 files changed, 6 insertions, 93 deletions
diff --git a/application/groupview/GroupView.cpp b/application/groupview/GroupView.cpp index 89694b87..ab9e71cf 100644 --- a/application/groupview/GroupView.cpp +++ b/application/groupview/GroupView.cpp @@ -221,7 +221,7 @@ void GroupView::mousePressEvent(QMouseEvent *event) QPoint visualPos = event->pos(); QPoint geometryPos = event->pos() + offset(); - + QPersistentModelIndex index = indexAt(visualPos); m_pressedIndex = index; @@ -697,95 +697,6 @@ bool GroupView::isDragEventAccepted(QDropEvent *event) QPair<VisualGroup *, int> GroupView::rowDropPos(const QPoint &pos) { return qMakePair<VisualGroup*, int>(nullptr, -1); - // FIXME: PIXIE DUST. - /* - // check that we aren't on a category header and calculate which category we're in - VisualGroup *category = 0; - { - int y = 0; - for (auto cat : m_groups) - { - if (pos.y() > y && pos.y() < (y + cat->headerHeight())) - { - return qMakePair<VisualGroup*, int>(nullptr, -1); - } - y += cat->totalHeight() + m_categoryMargin; - if (pos.y() < y) - { - category = cat; - break; - } - } - if (category == 0) - { - return qMakePair<VisualGroup*, int>(nullptr, -1); - } - } - - QList<QModelIndex> indices = category->items(); - - // calculate the internal column - int internalColumn = -1; - { - const int itemWidth = this->itemWidth(); - if (pos.x() >= (itemWidth * itemsPerRow())) - { - internalColumn = itemsPerRow(); - } - else - { - for (int i = 0, c = 0; i < contentWidth(); i += itemWidth + 10 , ++c) - { - if (pos.x() > (i - itemWidth / 2) && pos.x() <= (i + itemWidth / 2)) - { - internalColumn = c; - break; - } - } - } - if (internalColumn == -1) - { - return qMakePair<VisualGroup*, int>(nullptr, -1); - } - } - - // calculate the internal row - int internalRow = -1; - { - // FIXME rework the drag and drop code - const int top = category->verticalPosition(); - for (int r = 0, h = top; r < category->numRows(); - h += itemHeightForCategoryRow(category, r), ++r) - { - if (pos.y() > h && pos.y() < (h + itemHeightForCategoryRow(category, r))) - { - internalRow = r; - break; - } - } - if (internalRow == -1) - { - return qMakePair<VisualGroup*, int>(nullptr, -1); - } - // this happens if we're in the margin between a one category and another - // categories header - if (internalRow > (indices.size() / itemsPerRow())) - { - return qMakePair<VisualGroup*, int>(nullptr, -1); - } - } - - // flaten the internalColumn/internalRow to one row - int categoryRow = internalRow * itemsPerRow() + internalColumn; - - // this is used if we're past the last item - if (categoryRow >= indices.size()) - { - return qMakePair(category, indices.last().row() + 1); - } - - return qMakePair(category, indices.at(categoryRow).row()); - */ } QPoint GroupView::offset() const diff --git a/application/groupview/GroupView.h b/application/groupview/GroupView.h index 93e45ed7..b97d3a3c 100644 --- a/application/groupview/GroupView.h +++ b/application/groupview/GroupView.h @@ -50,13 +50,15 @@ public: { return m_spacing; }; -protected -slots: + +public slots: + virtual void updateGeometries() override; + +protected slots: virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector<int> &roles) override; virtual void rowsInserted(const QModelIndex &parent, int start, int end) override; virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end) override; - virtual void updateGeometries() override; void modelReset(); protected: |