2016-05-22 14:51:09 +00:00
|
|
|
/*
|
2020-06-15 17:42:37 +02:00
|
|
|
Copyright 2006-2020 The QElectroTech Team
|
2016-05-22 14:51:09 +00:00
|
|
|
This file is part of QElectroTech.
|
|
|
|
|
|
|
|
QElectroTech 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.
|
|
|
|
|
|
|
|
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include "elementstreeview.h"
|
|
|
|
#include "elementcollectionitem.h"
|
|
|
|
#include "elementslocation.h"
|
|
|
|
#include "elementfactory.h"
|
|
|
|
#include "qeticons.h"
|
|
|
|
#include "element.h"
|
|
|
|
|
|
|
|
#include <QDrag>
|
2016-06-05 16:34:46 +00:00
|
|
|
#include <QStandardItemModel>
|
2016-05-22 14:51:09 +00:00
|
|
|
|
|
|
|
static int MAX_DND_PIXMAP_WIDTH = 500;
|
|
|
|
static int MAX_DND_PIXMAP_HEIGHT = 375;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief ElementsTreeView::ElementsTreeView
|
|
|
|
* @param parent
|
|
|
|
*/
|
|
|
|
ElementsTreeView::ElementsTreeView(QWidget *parent) :
|
|
|
|
QTreeView(parent)
|
|
|
|
{}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief ElementsTreeView::startDrag
|
|
|
|
* Reimplemented from QTreeView
|
|
|
|
* @param supportedActions
|
|
|
|
*/
|
|
|
|
void ElementsTreeView::startDrag(Qt::DropActions supportedActions)
|
|
|
|
{
|
|
|
|
QModelIndex index = currentIndex();
|
|
|
|
|
|
|
|
if (!index.isValid()) {
|
|
|
|
QTreeView::startDrag(supportedActions);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-30 15:24:29 +00:00
|
|
|
if (QStandardItemModel *qsim = static_cast<QStandardItemModel *>(model())) {
|
|
|
|
if (ElementCollectionItem *eci = static_cast<ElementCollectionItem *>(qsim->itemFromIndex(index))) {
|
2016-06-05 16:34:46 +00:00
|
|
|
ElementsLocation loc (eci->collectionPath());
|
|
|
|
if (loc.exist()) {
|
|
|
|
startElementDrag(loc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-05-22 14:51:09 +00:00
|
|
|
}
|
2016-06-05 16:34:46 +00:00
|
|
|
QTreeView::startDrag(supportedActions);
|
2016-05-22 14:51:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief ElementsTreeView::startElementDrag
|
|
|
|
* Build a QDrag according to the content of @location
|
|
|
|
* @param location : location to use for create the content of the QDrag
|
|
|
|
*/
|
|
|
|
void ElementsTreeView::startElementDrag(const ElementsLocation &location)
|
|
|
|
{
|
|
|
|
if (!location.exist())
|
|
|
|
return;
|
|
|
|
|
2018-07-30 15:24:29 +00:00
|
|
|
QDrag *drag = new QDrag(this);
|
2016-05-22 14:51:09 +00:00
|
|
|
|
|
|
|
QString location_str = location.toString();
|
2018-07-30 15:24:29 +00:00
|
|
|
QMimeData *mime_data = new QMimeData();
|
2016-05-22 14:51:09 +00:00
|
|
|
mime_data->setText(location_str);
|
|
|
|
|
|
|
|
if (location.isDirectory())
|
|
|
|
{
|
|
|
|
mime_data->setData("application/x-qet-category-uri", location_str.toLatin1());
|
|
|
|
drag->setPixmap(QET::Icons::Folder.pixmap(22, 22));
|
|
|
|
}
|
|
|
|
else if (location.isElement())
|
|
|
|
{
|
|
|
|
mime_data->setData("application/x-qet-element-uri", location_str.toLatin1());
|
|
|
|
|
|
|
|
//Build the element for set the pixmap of the QDrag
|
|
|
|
int elmt_creation_state;
|
2017-08-05 02:06:59 +00:00
|
|
|
Element *temp_elmt = ElementFactory::Instance()->createElement(location, nullptr, &elmt_creation_state);
|
2016-05-22 14:51:09 +00:00
|
|
|
if (elmt_creation_state)
|
|
|
|
{
|
|
|
|
delete temp_elmt;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QPixmap elmt_pixmap(temp_elmt->pixmap());
|
|
|
|
QPoint elmt_hotspot(temp_elmt->hotspot());
|
|
|
|
|
|
|
|
//Adjust the size of the pixmap if he is too big
|
|
|
|
QPoint elmt_pixmap_size(elmt_pixmap.width(), elmt_pixmap.height());
|
|
|
|
if (elmt_pixmap.width() > MAX_DND_PIXMAP_WIDTH || elmt_pixmap.height() > MAX_DND_PIXMAP_HEIGHT)
|
|
|
|
{
|
|
|
|
elmt_pixmap = elmt_pixmap.scaled(MAX_DND_PIXMAP_WIDTH, MAX_DND_PIXMAP_HEIGHT, Qt::KeepAspectRatio);
|
|
|
|
elmt_hotspot = QPoint(
|
|
|
|
elmt_hotspot.x() * elmt_pixmap.width() / elmt_pixmap_size.x(),
|
|
|
|
elmt_hotspot.y() * elmt_pixmap.height() / elmt_pixmap_size.y()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
drag->setPixmap(elmt_pixmap);
|
|
|
|
drag->setHotSpot(elmt_hotspot);
|
|
|
|
|
2016-05-22 16:13:08 +00:00
|
|
|
|
2016-05-22 14:51:09 +00:00
|
|
|
delete temp_elmt;
|
|
|
|
}
|
|
|
|
|
|
|
|
drag->setMimeData(mime_data);
|
2016-05-22 16:13:08 +00:00
|
|
|
drag->exec(Qt::CopyAction);
|
2016-05-22 14:51:09 +00:00
|
|
|
}
|