File size: 8,097 Bytes
a5ffdcd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | /*******************************************************************************
*
This file is part of the LibreCAD project, a 2D CAD program
Copyright (C) 2024 LibreCAD.org
Copyright (C) 2024 sand1024
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
******************************************************************************/
#include "lc_layertreeview.h"
#include <QDragEnterEvent>
#include <QPainter>
#include <QStyledItemDelegate>
#include "lc_layertreeitem.h"
#include "lc_layertreemodel.h"
#include "lc_layertreemodel_options.h"
#include "lc_layertreewidget.h"
#include "rs_debug.h"
/**
* Delegate for painting grid lines within tree view - rect around cells for Name column.
* @brief The GridDelegate class
*/
class LayerTreeGridDelegate:public QStyledItemDelegate {
public:
explicit LayerTreeGridDelegate(LC_LayerTreeView *parent = nullptr, LC_LayerTreeModel* tm = nullptr):QStyledItemDelegate(parent){
if (parent){
treeModel = tm;
}
}
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override{
QStyledItemDelegate::paint(painter, option, index);
int col = index.column();
if (col > 0){
bool draw = true;
if (col == LC_LayerTreeModel::NAME){
LC_LayerTreeItem *layerItem = treeModel->getItemForIndex(index);
if (layerItem && (!layerItem->isVirtual())){
draw = false;
}
}
if (draw){
LC_LayerTreeModelOptions* options = treeModel->getOptions();
QColor color = options->itemsGridColor;
painter->save();
painter->setPen(color);
painter->drawRect(option.rect);
painter->restore();
}
}
}
private:
LC_LayerTreeModel* treeModel{nullptr};
};
LC_LayerTreeView::LC_LayerTreeView(QWidget *parent):QTreeView(parent){
}
void LC_LayerTreeView::setup(LC_LayerTreeModel *treeModel){
setModel(treeModel);
auto* delegate = new LayerTreeGridDelegate(this, treeModel);
setItemDelegate(delegate);
}
void LC_LayerTreeView::dragLeaveEvent(QDragLeaveEvent *event) {
RS_DEBUG->print(RS_Debug::D_WARNING, "dragLeaveEvent");
event->accept();
QModelIndex dropIndex = QModelIndex();
auto* widget = static_cast<LC_LayerTreeWidget*>(parentWidget());
widget->onDropEvent(dropIndex , LC_LayerTreeWidget::InvalidDrop);
}
void LC_LayerTreeView::dragEnterEvent(QDragEnterEvent *event) {
RS_DEBUG->print(RS_Debug::D_WARNING, "dragEnterEvent");
// we disable drag&drop here rather than on model and flags() level
LC_LayerTreeModel *layerTreeModel = getTreeModel();
bool dragDropEnabled = layerTreeModel->getOptions()->dragDropEnabled;
if (!dragDropEnabled){
return;
}
QModelIndex dropIndex = indexAt(event->position().toPoint());
auto* layerTree = dynamic_cast<LC_LayerTreeWidget*>(parentWidget());
if( !dropIndex.isValid()) {
return;
}
layerTree->onDragEnterEvent(dropIndex);
event->setDropAction( Qt::MoveAction );
event->accept();
}
void LC_LayerTreeView::dropEvent(QDropEvent* event) {
RS_DEBUG->print(RS_Debug::D_WARNING, "dropEvent");
if (event == nullptr) {
return;
}
event->accept();
QModelIndex dropIndex = indexAt(event->position().toPoint());
auto* widget = dynamic_cast<LC_LayerTreeWidget*>(parentWidget());
if (widget == nullptr) {
return;
}
int dropIndicator = dropIndicatorPosition();
if (!dropIndex.isValid()) {
// drop to empty space on viewpoint? Need to verify this case more
switch (dropIndicator) {
case QAbstractItemView::OnViewport:
widget->onDropEvent(dropIndex, LC_LayerTreeWidget::OnViewport);
break;
default:
widget->onDropEvent(dropIndex, LC_LayerTreeWidget::InvalidDrop);
}
return;
}
//bool bAbove = false; // boolean for the case when you are above an item
LC_LayerTreeWidget::DropIndicatorPosition position{};
if (!dropIndex.parent().isValid() && dropIndex.row() != -1) {
switch (dropIndicator) {
case QAbstractItemView::AboveItem:
// manage a boolean for the case when you are above an item
//bAbove = true;
position = LC_LayerTreeWidget::AboveItem;
break;
case QAbstractItemView::BelowItem:
position = LC_LayerTreeWidget::BelowItem;
// something when being below an item
break;
case QAbstractItemView::OnItem:
position = LC_LayerTreeWidget::OnItem;
// you're on an item, maybe add the current one as a child
break;
case QAbstractItemView::OnViewport:
// you are not on your tree
position = LC_LayerTreeWidget::OnViewport;
break;
default:
break;
}
}
widget->onDropEvent(dropIndex, position);
}
QStringList LC_LayerTreeView::saveTreeExpansionState() const {
QStringList treeExpansionState;
LC_LayerTreeModel *layerTreeModel = getTreeModel();
foreach (QModelIndex index, layerTreeModel->getPersistentIndexList()) {
if (this->isExpanded(index)){
treeExpansionState << index.data(Qt::UserRole).toString();
}
}
return treeExpansionState;
}
/**
* Restores previously saved state of expanded tree items
* @brief LC_LayerTreeWidget::restoreTreeExpansionState
* @param treeExpansionState
*/
void LC_LayerTreeView::restoreTreeExpansionState(QStringList treeExpansionState){
LC_LayerTreeModel *layerTreeModel = getTreeModel();
this->setUpdatesEnabled(false);
applyExpandState(treeExpansionState, layerTreeModel->index(0, 0, QModelIndex()));
this->setUpdatesEnabled(true);
treeExpansionState.clear();
}
LC_LayerTreeModel *LC_LayerTreeView::getTreeModel() const{
auto* layerTreeModel = dynamic_cast<LC_LayerTreeModel *>(model());
return layerTreeModel;
}
/** Utility method for recursive expansion of the tree
* @brief LC_LayerTreeWidget::expandChildren
* @param index
*/
void LC_LayerTreeView::expandChildren(const QModelIndex &index){
if (!index.isValid()){
return;
}
expand(index);
int childCount = index.model()->rowCount(index);
for (int i = 0; i < childCount; i++) {
const QModelIndex &child = model()->index(i, 0, index);
// Recursively call the function for each child node.
expandChildren(child);
}
}
/**
* Utility method for recursive expanding nodes starting from
* given index based on the list of expanded items
* @brief LC_LayerTreeWidget::applyExpandState
* @param expandedItems
* @param startIndex
*/
void LC_LayerTreeView::applyExpandState(QStringList &expandedItems, const QModelIndex& startIndex){
LC_LayerTreeModel* layerTreeModel = getTreeModel();
foreach (QString item, expandedItems) {
QModelIndexList matches = layerTreeModel->match(startIndex, Qt::UserRole, item);
foreach (QModelIndex index, matches) {
this->setExpanded(index, true);
applyExpandState(expandedItems, layerTreeModel->index(0, 0, index));
}
}
}
|